ETH Price: $3,376.98 (-1.95%)
Gas: 2 Gwei

Token

The Little Surfers (TLS)
 

Overview

Max Total Supply

5,555 TLS

Holders

1,174

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
857412.eth
Balance
4 TLS
0xf72002c1316df7d6afe7a7cc126a9de95dab8050
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:
TheLittleSurfers

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-13
*/

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 generally not needed starting with Solidity 0.8, since 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 subtraction 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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (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: contracts/the_little_surfers.sol



pragma solidity ^0.8.4;







contract TheLittleSurfers is ERC721A, Ownable, ReentrancyGuard {
    using SafeMath for uint256;
    using Strings for uint256;

    bool public preSaleActive = true;
    bool public publicSaleActive = false;

    bool public paused = true;
    bool public revealed = false;

    uint256 public maxSupply = 5555;
    uint256 public preSalePrice = 0.08 ether;
    uint256 public preSaleOgPrice = 0.05 ether;
    uint256 public publicSalePrice = 0.1 ether;

    uint256 public maxPreSale = 7;
    uint256 public maxPreSaleOg = 8;
    uint256 public maxPublicSale = 5;

    string private _baseURIextended;
    
    string public NETWORK_PROVENANCE = "4544338203310281430";
    string public notRevealedUri = "ipfs://QmdSHzmB6EEBkuBzc84Gg5QaewjwZX1KkiTykN2HJBU6ZB";

    mapping(address => bool) public isWhiteListed;
    mapping(address => bool) public isOgListed;
    mapping(address => uint256) public preSaleCounter;
    mapping(address => uint256) public publicSaleCounter;

    constructor(string memory name, string memory symbol) ERC721A(name, symbol) ReentrancyGuard() {
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function preSaleMint(uint256 _amount) external payable nonReentrant{
        require(preSaleActive, "TLS Pre Sale is not Active");
        require(isWhiteListed[msg.sender] || isOgListed[msg.sender], "TLS User is not White/OG Listed");
        if(isOgListed[msg.sender])
        {
            require(preSaleCounter[msg.sender].add(_amount) <= maxPreSaleOg, "TLS Maximum Pre Sale OG Minting Limit Reached");
            require(preSaleOgPrice*_amount <= msg.value, "TLS ETH Value Sent for Pre Sale Og is not enough");
        }
        else{
            require(preSaleCounter[msg.sender].add(_amount) <= maxPreSale, "TLS Maximum Pre Sale Minting Limit Reached");
            require(preSalePrice*_amount <= msg.value, "TLS ETH Value Sent for Pre Sale is not enough");
        }
        mint(_amount, true);
    }

    function publicSaleMint(uint256 _amount) external payable nonReentrant {
        require(publicSaleActive, "TLS Public Sale is not Active");
        require(publicSaleCounter[msg.sender].add(_amount) <= maxPublicSale, "TLS Maximum Minting Limit Reached");
        mint(_amount, false);
    }

    function mint(uint256 amount,bool state) internal {
        require(!paused, "TLS Minting is Paused");
        require(totalSupply().add(amount) <= maxSupply, "TLS Maximum Supply Reached");
        if(state){
            preSaleCounter[msg.sender] = preSaleCounter[msg.sender].add(amount);
        }
        else{
            require(publicSalePrice*amount <= msg.value, "TLS ETH Value Sent for Public Sale is not enough");
            publicSaleCounter[msg.sender] = publicSaleCounter[msg.sender].add(amount);
        }
        _safeMint(msg.sender, amount);
    }

    function _baseURI() internal view virtual override returns (string memory){
        return _baseURIextended;
    }

    function setBaseURI(string calldata baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function togglePauseState() external onlyOwner {
        paused = !paused;
    }

    function togglePreSale() external onlyOwner {
        preSaleActive = !preSaleActive;
        publicSaleActive = false;
    }

    function togglePublicSale() external onlyOwner {
        publicSaleActive = !publicSaleActive;
        preSaleActive = false;
    }

    function addWhiteListedAddresses(address[] memory _address) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            isWhiteListed[_address[i]] = true;
        }
    }

    function addOgListedAddresses(address[] memory _address) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            isOgListed[_address[i]] = true;
        }
    }

    function setPreSalePrice(uint256 _preSalePrice) external onlyOwner {
        preSalePrice = _preSalePrice;
    }

    function setPublicSalePrice(uint256 _publicSalePrice) external onlyOwner {
        publicSalePrice = _publicSalePrice;
    }

    function airDrop(address[] memory _address) external onlyOwner {
        require(totalSupply().add(_address.length) <= maxSupply, "TLS Maximum Supply Reached");
        for(uint i=0; i < _address.length; i++){
            _safeMint(_address[i], 1);
        }
    }

    function reveal() external onlyOwner {
        revealed = true;
    }

    function withdrawTotal() external onlyOwner {
        uint balance = address(this).balance;
        payable(address(0x3e89Fbf78021D067060CC91496E604EFb69cbb15)).transfer(balance.mul(125).div(10000));
        payable(address(0xebD47AaebdeEBE67DFB2092DB728e86cC62fFac6)).transfer(balance.mul(125).div(10000));
        payable(address(0x345A8760D24CAd15E00387FCA6Da6Cbb85334482)).transfer(balance.mul(30).div(100)); // Mystery pearls
        payable(address(0xB6cD3e633b4D1072557c236767c38C26e09039b7)).transfer(balance.mul(10).div(100)); // DAO
        payable(address(0x8102c63993151973c0F334CE3bFB3B48B611e1C1)).transfer(balance.mul(15).div(100)); // Operational budget
        payable(address(0xB6cD3e633b4D1072557c236767c38C26e09039b7)).transfer(balance.mul(10).div(100));
        payable(address(0x70148a9f077D4836d9a790ce1c1b637FAB2A9d8f)).transfer(balance.mul(15).div(100));

        balance = address(this).balance;
        payable(address(0xF1e25b6935aC967dC62A39Af295c1E6d5F725940)).transfer(balance); // 27.5, rest of balance
    }

    function setNotRevealedURI(string memory _notRevealedUri) external onlyOwner {
        notRevealedUri = _notRevealedUri;
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "TLS URI For Token Non-existent");
        if(!revealed){
            return notRevealedUri;
        }
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ?
        string(abi.encodePacked(currentBaseURI,_tokenId.toString(),".json")) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"NETWORK_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"addOgListedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"addWhiteListedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isOgListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreSaleOg","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleOgPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedUri","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSalePrice","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"}],"name":"setPublicSalePrice","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":[],"name":"togglePauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":"withdrawTotal","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff0219169083151502179055506000600a60036101000a81548160ff0219169083151502179055506115b3600b5567011c37937e080000600c5566b1a2bc2ec50000600d5567016345785d8a0000600e556007600f55600860105560056011556040518060400160405280601381526020017f343534343333383230333331303238313433300000000000000000000000000081525060139080519060200190620000f5929190620002ae565b506040518060600160405280603581526020016200576f603591396014908051906020019062000127929190620002ae565b503480156200013557600080fd5b50604051620057a4380380620057a483398181016040528101906200015b9190620003d0565b8181816002908051906020019062000175929190620002ae565b5080600390805190602001906200018e929190620002ae565b506200019f620001d760201b60201c565b6000819055505050620001c7620001bb620001e060201b60201c565b620001e860201b60201c565b60016009819055505050620005b3565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bc90620004d8565b90600052602060002090601f016020900481019282620002e057600085556200032c565b82601f10620002fb57805160ff19168380011785556200032c565b828001600101855582156200032c579182015b828111156200032b5782518255916020019190600101906200030e565b5b5090506200033b91906200033f565b5090565b5b808211156200035a57600081600090555060010162000340565b5090565b6000620003756200036f846200046c565b62000443565b9050828152602081018484840111156200038e57600080fd5b6200039b848285620004a2565b509392505050565b600082601f830112620003b557600080fd5b8151620003c78482602086016200035e565b91505092915050565b60008060408385031215620003e457600080fd5b600083015167ffffffffffffffff811115620003ff57600080fd5b6200040d85828601620003a3565b925050602083015167ffffffffffffffff8111156200042b57600080fd5b6200043985828601620003a3565b9150509250929050565b60006200044f62000462565b90506200045d82826200050e565b919050565b6000604051905090565b600067ffffffffffffffff8211156200048a576200048962000573565b5b6200049582620005a2565b9050602081019050919050565b60005b83811015620004c2578082015181840152602081019050620004a5565b83811115620004d2576000848401525b50505050565b60006002820490506001821680620004f157607f821691505b6020821081141562000508576200050762000544565b5b50919050565b6200051982620005a2565b810181811067ffffffffffffffff821117156200053b576200053a62000573565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6151ac80620005c36000396000f3fe6080604052600436106102915760003560e01c806377b185681161015a578063b88d4fde116100c1578063e222c7f91161007a578063e222c7f9146109ae578063e757c17d146109c5578063e985e9c5146109f0578063f2c4ce1e14610a2d578063f2fde38b14610a56578063fad3f8f714610a7f57610291565b8063b88d4fde146108b0578063bc8893b4146108d9578063c31d3e8e14610904578063c87b56dd1461092f578063ca3cb5221461096c578063d5abeb011461098357610291565b806395d89b411161011357806395d89b41146107d35780639b6860c8146107fe578063a22cb46514610829578063a475b5dd14610852578063a6cb850c14610869578063b3ab66b01461089457610291565b806377b18568146106e45780637835c6351461070f578063791a25191461072b5780637d7eee4214610754578063844947081461077d5780638da5cb5b146107a857610291565b8063234318bc116101fe57806355f804b3116101b757806355f804b3146105c25780635c975abb146105eb5780636352211e146106165780636f9170f61461065357806370a0823114610690578063715018a6146106cd57610291565b8063234318bc146104a057806323b872dd146104dd5780632ff912a014610506578063421649651461053157806342842e0e1461056e578063518302271461059757610291565b8063081c8c4411610250578063081c8c44146103a4578063095ea7b3146103cf5780630bcb106a146103f8578063108076fe1461042157806318160ddd1461045e57806318e06e821461048957610291565b80628803d314610296578062b6849f146102ad57806301ffc9a7146102d65780630395ba311461031357806306fdde031461033c578063081812fc14610367575b600080fd5b3480156102a257600080fd5b506102ab610aaa565b005b3480156102b957600080fd5b506102d460048036038101906102cf9190614205565b610b52565b005b3480156102e257600080fd5b506102fd60048036038101906102f89190614246565b610c9b565b60405161030a91906146dd565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190614205565b610d7d565b005b34801561034857600080fd5b50610351610eb4565b60405161035e91906146f8565b60405180910390f35b34801561037357600080fd5b5061038e6004803603810190610389919061431e565b610f46565b60405161039b9190614676565b60405180910390f35b3480156103b057600080fd5b506103b9610fc2565b6040516103c691906146f8565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906141c9565b611050565b005b34801561040457600080fd5b5061041f600480360381019061041a9190614205565b61115b565b005b34801561042d57600080fd5b506104486004803603810190610443919061405e565b611292565b60405161045591906148fa565b60405180910390f35b34801561046a57600080fd5b506104736112aa565b60405161048091906148fa565b60405180910390f35b34801561049557600080fd5b5061049e6112c1565b005b3480156104ac57600080fd5b506104c760048036038101906104c2919061405e565b61172c565b6040516104d491906146dd565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906140c3565b61174c565b005b34801561051257600080fd5b5061051b61175c565b60405161052891906146f8565b60405180910390f35b34801561053d57600080fd5b506105586004803603810190610553919061405e565b6117ea565b60405161056591906148fa565b60405180910390f35b34801561057a57600080fd5b50610595600480360381019061059091906140c3565b611802565b005b3480156105a357600080fd5b506105ac611822565b6040516105b991906146dd565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e49190614298565b611835565b005b3480156105f757600080fd5b506106006118c7565b60405161060d91906146dd565b60405180910390f35b34801561062257600080fd5b5061063d6004803603810190610638919061431e565b6118da565b60405161064a9190614676565b60405180910390f35b34801561065f57600080fd5b5061067a6004803603810190610675919061405e565b6118f0565b60405161068791906146dd565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b2919061405e565b611910565b6040516106c491906148fa565b60405180910390f35b3480156106d957600080fd5b506106e26119e0565b005b3480156106f057600080fd5b506106f9611a68565b60405161070691906148fa565b60405180910390f35b6107296004803603810190610724919061431e565b611a6e565b005b34801561073757600080fd5b50610752600480360381019061074d919061431e565b611e25565b005b34801561076057600080fd5b5061077b6004803603810190610776919061431e565b611eab565b005b34801561078957600080fd5b50610792611f31565b60405161079f91906146dd565b60405180910390f35b3480156107b457600080fd5b506107bd611f44565b6040516107ca9190614676565b60405180910390f35b3480156107df57600080fd5b506107e8611f6e565b6040516107f591906146f8565b60405180910390f35b34801561080a57600080fd5b50610813612000565b60405161082091906148fa565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b919061418d565b612006565b005b34801561085e57600080fd5b5061086761217e565b005b34801561087557600080fd5b5061087e612217565b60405161088b91906148fa565b60405180910390f35b6108ae60048036038101906108a9919061431e565b61221d565b005b3480156108bc57600080fd5b506108d760048036038101906108d29190614112565b612366565b005b3480156108e557600080fd5b506108ee6123e2565b6040516108fb91906146dd565b60405180910390f35b34801561091057600080fd5b506109196123f5565b60405161092691906148fa565b60405180910390f35b34801561093b57600080fd5b506109566004803603810190610951919061431e565b6123fb565b60405161096391906146f8565b60405180910390f35b34801561097857600080fd5b50610981612549565b005b34801561098f57600080fd5b5061099861260c565b6040516109a591906148fa565b60405180910390f35b3480156109ba57600080fd5b506109c3612612565b005b3480156109d157600080fd5b506109da6126d5565b6040516109e791906148fa565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a129190614087565b6126db565b604051610a2491906146dd565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f91906142dd565b61276f565b005b348015610a6257600080fd5b50610a7d6004803603810190610a78919061405e565b612805565b005b348015610a8b57600080fd5b50610a946128fd565b604051610aa191906148fa565b60405180910390f35b610ab2612903565b73ffffffffffffffffffffffffffffffffffffffff16610ad0611f44565b73ffffffffffffffffffffffffffffffffffffffff1614610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d906147fa565b60405180910390fd5b600a60029054906101000a900460ff1615600a60026101000a81548160ff021916908315150217905550565b610b5a612903565b73ffffffffffffffffffffffffffffffffffffffff16610b78611f44565b73ffffffffffffffffffffffffffffffffffffffff1614610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc5906147fa565b60405180910390fd5b600b54610bec8251610bde6112aa565b61290b90919063ffffffff16565b1115610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249061485a565b60405180910390fd5b60005b8151811015610c9757610c84828281518110610c75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001612921565b8080610c8f90614c39565b915050610c30565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d765750610d758261293f565b5b9050919050565b610d85612903565b73ffffffffffffffffffffffffffffffffffffffff16610da3611f44565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906147fa565b60405180910390fd5b60005b8151811015610eb057600160166000848481518110610e44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ea890614c39565b915050610dfc565b5050565b606060028054610ec390614bd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610eef90614bd6565b8015610f3c5780601f10610f1157610100808354040283529160200191610f3c565b820191906000526020600020905b815481529060010190602001808311610f1f57829003601f168201915b5050505050905090565b6000610f51826129a9565b610f87576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60148054610fcf90614bd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffb90614bd6565b80156110485780601f1061101d57610100808354040283529160200191611048565b820191906000526020600020905b81548152906001019060200180831161102b57829003601f168201915b505050505081565b600061105b826118da565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110c3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166110e2612903565b73ffffffffffffffffffffffffffffffffffffffff161415801561111457506111128161110d612903565b6126db565b155b1561114b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111568383836129f7565b505050565b611163612903565b73ffffffffffffffffffffffffffffffffffffffff16611181611f44565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906147fa565b60405180910390fd5b60005b815181101561128e57600160156000848481518110611222577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061128690614c39565b9150506111da565b5050565b60176020528060005260406000206000915090505481565b60006112b4612aa9565b6001546000540303905090565b6112c9612903565b73ffffffffffffffffffffffffffffffffffffffff166112e7611f44565b73ffffffffffffffffffffffffffffffffffffffff161461133d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611334906147fa565b60405180910390fd5b6000479050733e89fbf78021d067060cc91496e604efb69cbb1573ffffffffffffffffffffffffffffffffffffffff166108fc61139861271061138a607d86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156113c3573d6000803e3d6000fd5b5073ebd47aaebdeebe67dfb2092db728e86cc62ffac673ffffffffffffffffffffffffffffffffffffffff166108fc61141a61271061140c607d86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611445573d6000803e3d6000fd5b5073345a8760d24cad15e00387fca6da6cbb8533448273ffffffffffffffffffffffffffffffffffffffff166108fc61149b606461148d601e86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156114c6573d6000803e3d6000fd5b5073b6cd3e633b4d1072557c236767c38c26e09039b773ffffffffffffffffffffffffffffffffffffffff166108fc61151c606461150e600a86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611547573d6000803e3d6000fd5b50738102c63993151973c0f334ce3bfb3b48b611e1c173ffffffffffffffffffffffffffffffffffffffff166108fc61159d606461158f600f86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156115c8573d6000803e3d6000fd5b5073b6cd3e633b4d1072557c236767c38c26e09039b773ffffffffffffffffffffffffffffffffffffffff166108fc61161e6064611610600a86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611649573d6000803e3d6000fd5b507370148a9f077d4836d9a790ce1c1b637fab2a9d8f73ffffffffffffffffffffffffffffffffffffffff166108fc61169f6064611691600f86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156116ca573d6000803e3d6000fd5b5047905073f1e25b6935ac967dc62a39af295c1e6d5f72594073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611728573d6000803e3d6000fd5b5050565b60166020528060005260406000206000915054906101000a900460ff1681565b611757838383612ade565b505050565b6013805461176990614bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461179590614bd6565b80156117e25780601f106117b7576101008083540402835291602001916117e2565b820191906000526020600020905b8154815290600101906020018083116117c557829003601f168201915b505050505081565b60186020528060005260406000206000915090505481565b61181d83838360405180602001604052806000815250612366565b505050565b600a60039054906101000a900460ff1681565b61183d612903565b73ffffffffffffffffffffffffffffffffffffffff1661185b611f44565b73ffffffffffffffffffffffffffffffffffffffff16146118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a8906147fa565b60405180910390fd5b8181601291906118c2929190613cd9565b505050565b600a60029054906101000a900460ff1681565b60006118e582612f94565b600001519050919050565b60156020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611978576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6119e8612903565b73ffffffffffffffffffffffffffffffffffffffff16611a06611f44565b73ffffffffffffffffffffffffffffffffffffffff1614611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a53906147fa565b60405180910390fd5b611a666000613223565b565b600d5481565b60026009541415611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab9061487a565b60405180910390fd5b6002600981905550600a60009054906101000a900460ff16611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b02906148ba565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bac5750601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906147ba565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d2857601054611c9282601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290b90919063ffffffff16565b1115611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca9061481a565b60405180910390fd5b3481600d54611ce29190614a92565b1115611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a9061483a565b60405180910390fd5b611e0f565b600f54611d7d82601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290b90919063ffffffff16565b1115611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db59061477a565b60405180910390fd5b3481600c54611dcd9190614a92565b1115611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e059061479a565b60405180910390fd5b5b611e1a8160016132e9565b600160098190555050565b611e2d612903565b73ffffffffffffffffffffffffffffffffffffffff16611e4b611f44565b73ffffffffffffffffffffffffffffffffffffffff1614611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e98906147fa565b60405180910390fd5b80600e8190555050565b611eb3612903565b73ffffffffffffffffffffffffffffffffffffffff16611ed1611f44565b73ffffffffffffffffffffffffffffffffffffffff1614611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e906147fa565b60405180910390fd5b80600c8190555050565b600a60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611f7d90614bd6565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa990614bd6565b8015611ff65780601f10611fcb57610100808354040283529160200191611ff6565b820191906000526020600020905b815481529060010190602001808311611fd957829003601f168201915b5050505050905090565b600e5481565b61200e612903565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612073576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612080612903565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661212d612903565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161217291906146dd565b60405180910390a35050565b612186612903565b73ffffffffffffffffffffffffffffffffffffffff166121a4611f44565b73ffffffffffffffffffffffffffffffffffffffff16146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f1906147fa565b60405180910390fd5b6001600a60036101000a81548160ff021916908315150217905550565b60105481565b60026009541415612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a9061487a565b60405180910390fd5b6002600981905550600a60019054906101000a900460ff166122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b19061475a565b60405180910390fd5b60115461230f82601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290b90919063ffffffff16565b1115612350576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123479061489a565b60405180910390fd5b61235b8160006132e9565b600160098190555050565b612371848484612ade565b6123908373ffffffffffffffffffffffffffffffffffffffff1661352b565b80156123a557506123a38484848461354e565b155b156123dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a60019054906101000a900460ff1681565b60115481565b6060612406826129a9565b612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243c906147da565b60405180910390fd5b600a60039054906101000a900460ff166124eb576014805461246690614bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461249290614bd6565b80156124df5780601f106124b4576101008083540402835291602001916124df565b820191906000526020600020905b8154815290600101906020018083116124c257829003601f168201915b50505050509050612544565b60006124f56136ae565b905060008151116125155760405180602001604052806000815250612540565b8061251f84613740565b604051602001612530929190614647565b6040516020818303038152906040525b9150505b919050565b612551612903565b73ffffffffffffffffffffffffffffffffffffffff1661256f611f44565b73ffffffffffffffffffffffffffffffffffffffff16146125c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bc906147fa565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff021916908315150217905550565b600b5481565b61261a612903565b73ffffffffffffffffffffffffffffffffffffffff16612638611f44565b73ffffffffffffffffffffffffffffffffffffffff161461268e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612685906147fa565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff0219169083151502179055506000600a60006101000a81548160ff021916908315150217905550565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612777612903565b73ffffffffffffffffffffffffffffffffffffffff16612795611f44565b73ffffffffffffffffffffffffffffffffffffffff16146127eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e2906147fa565b60405180910390fd5b8060149080519060200190612801929190613d5f565b5050565b61280d612903565b73ffffffffffffffffffffffffffffffffffffffff1661282b611f44565b73ffffffffffffffffffffffffffffffffffffffff1614612881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612878906147fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e89061473a565b60405180910390fd5b6128fa81613223565b50565b600f5481565b600033905090565b600081836129199190614a0b565b905092915050565b61293b8282604051806020016040528060008152506138ed565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816129b4612aa9565b111580156129c3575060005482105b80156129f0575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008183612ac09190614a92565b905092915050565b60008183612ad69190614a61565b905092915050565b6000612ae982612f94565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b54576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612b75612903565b73ffffffffffffffffffffffffffffffffffffffff161480612ba45750612ba385612b9e612903565b6126db565b5b80612be95750612bb2612903565b73ffffffffffffffffffffffffffffffffffffffff16612bd184610f46565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c22576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c89576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c9685858560016138ff565b612ca2600084876129f7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f22576000548214612f2157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f8d8585856001613905565b5050505050565b612f9c613de5565b600082905080612faa612aa9565b11158015612fb9575060005481105b156131ec576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516131ea57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130ce57809250505061321e565b5b6001156131e957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131e457809250505061321e565b6130cf565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60029054906101000a900460ff1615613339576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133309061471a565b60405180910390fd5b600b54613356836133486112aa565b61290b90919063ffffffff16565b1115613397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338e9061485a565b60405180910390fd5b8015613437576133ef82601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290b90919063ffffffff16565b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061351d565b3482600e546134469190614a92565b1115613487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347e906148da565b60405180910390fd5b6134d982601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290b90919063ffffffff16565b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6135273383612921565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613574612903565b8786866040518563ffffffff1660e01b81526004016135969493929190614691565b602060405180830381600087803b1580156135b057600080fd5b505af19250505080156135e157506040513d601f19601f820116820180604052508101906135de919061426f565b60015b61365b573d8060008114613611576040519150601f19603f3d011682016040523d82523d6000602084013e613616565b606091505b50600081511415613653576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546136bd90614bd6565b80601f01602080910402602001604051908101604052809291908181526020018280546136e990614bd6565b80156137365780601f1061370b57610100808354040283529160200191613736565b820191906000526020600020905b81548152906001019060200180831161371957829003601f168201915b5050505050905090565b60606000821415613788576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138e8565b600082905060005b600082146137ba5780806137a390614c39565b915050600a826137b39190614a61565b9150613790565b60008167ffffffffffffffff8111156137fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561382e5781602001600182028036833780820191505090505b5090505b600085146138e1576001826138479190614aec565b9150600a856138569190614c82565b60306138629190614a0b565b60f81b81838151811061389e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138da9190614a61565b9450613832565b8093505050505b919050565b6138fa838383600161390b565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613978576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156139b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139c060008683876138ff565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613b8a5750613b898773ffffffffffffffffffffffffffffffffffffffff1661352b565b5b15613c50575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613bff600088848060010195508861354e565b613c35576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613b90578260005414613c4b57600080fd5b613cbc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613c51575b816000819055505050613cd26000868387613905565b5050505050565b828054613ce590614bd6565b90600052602060002090601f016020900481019282613d075760008555613d4e565b82601f10613d2057803560ff1916838001178555613d4e565b82800160010185558215613d4e579182015b82811115613d4d578235825591602001919060010190613d32565b5b509050613d5b9190613e28565b5090565b828054613d6b90614bd6565b90600052602060002090601f016020900481019282613d8d5760008555613dd4565b82601f10613da657805160ff1916838001178555613dd4565b82800160010185558215613dd4579182015b82811115613dd3578251825591602001919060010190613db8565b5b509050613de19190613e28565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613e41576000816000905550600101613e29565b5090565b6000613e58613e538461493a565b614915565b90508083825260208201905082856020860282011115613e7757600080fd5b60005b85811015613ea75781613e8d8882613f2d565b845260208401935060208301925050600181019050613e7a565b5050509392505050565b6000613ec4613ebf84614966565b614915565b905082815260208101848484011115613edc57600080fd5b613ee7848285614b94565b509392505050565b6000613f02613efd84614997565b614915565b905082815260208101848484011115613f1a57600080fd5b613f25848285614b94565b509392505050565b600081359050613f3c8161511a565b92915050565b600082601f830112613f5357600080fd5b8135613f63848260208601613e45565b91505092915050565b600081359050613f7b81615131565b92915050565b600081359050613f9081615148565b92915050565b600081519050613fa581615148565b92915050565b600082601f830112613fbc57600080fd5b8135613fcc848260208601613eb1565b91505092915050565b60008083601f840112613fe757600080fd5b8235905067ffffffffffffffff81111561400057600080fd5b60208301915083600182028301111561401857600080fd5b9250929050565b600082601f83011261403057600080fd5b8135614040848260208601613eef565b91505092915050565b6000813590506140588161515f565b92915050565b60006020828403121561407057600080fd5b600061407e84828501613f2d565b91505092915050565b6000806040838503121561409a57600080fd5b60006140a885828601613f2d565b92505060206140b985828601613f2d565b9150509250929050565b6000806000606084860312156140d857600080fd5b60006140e686828701613f2d565b93505060206140f786828701613f2d565b925050604061410886828701614049565b9150509250925092565b6000806000806080858703121561412857600080fd5b600061413687828801613f2d565b945050602061414787828801613f2d565b935050604061415887828801614049565b925050606085013567ffffffffffffffff81111561417557600080fd5b61418187828801613fab565b91505092959194509250565b600080604083850312156141a057600080fd5b60006141ae85828601613f2d565b92505060206141bf85828601613f6c565b9150509250929050565b600080604083850312156141dc57600080fd5b60006141ea85828601613f2d565b92505060206141fb85828601614049565b9150509250929050565b60006020828403121561421757600080fd5b600082013567ffffffffffffffff81111561423157600080fd5b61423d84828501613f42565b91505092915050565b60006020828403121561425857600080fd5b600061426684828501613f81565b91505092915050565b60006020828403121561428157600080fd5b600061428f84828501613f96565b91505092915050565b600080602083850312156142ab57600080fd5b600083013567ffffffffffffffff8111156142c557600080fd5b6142d185828601613fd5565b92509250509250929050565b6000602082840312156142ef57600080fd5b600082013567ffffffffffffffff81111561430957600080fd5b6143158482850161401f565b91505092915050565b60006020828403121561433057600080fd5b600061433e84828501614049565b91505092915050565b61435081614b20565b82525050565b61435f81614b32565b82525050565b6000614370826149c8565b61437a81856149de565b935061438a818560208601614ba3565b61439381614d6f565b840191505092915050565b60006143a9826149d3565b6143b381856149ef565b93506143c3818560208601614ba3565b6143cc81614d6f565b840191505092915050565b60006143e2826149d3565b6143ec8185614a00565b93506143fc818560208601614ba3565b80840191505092915050565b60006144156015836149ef565b915061442082614d80565b602082019050919050565b60006144386026836149ef565b915061444382614da9565b604082019050919050565b600061445b601d836149ef565b915061446682614df8565b602082019050919050565b600061447e602a836149ef565b915061448982614e21565b604082019050919050565b60006144a1602d836149ef565b91506144ac82614e70565b604082019050919050565b60006144c4601f836149ef565b91506144cf82614ebf565b602082019050919050565b60006144e7601e836149ef565b91506144f282614ee8565b602082019050919050565b600061450a600583614a00565b915061451582614f11565b600582019050919050565b600061452d6020836149ef565b915061453882614f3a565b602082019050919050565b6000614550602d836149ef565b915061455b82614f63565b604082019050919050565b60006145736030836149ef565b915061457e82614fb2565b604082019050919050565b6000614596601a836149ef565b91506145a182615001565b602082019050919050565b60006145b9601f836149ef565b91506145c48261502a565b602082019050919050565b60006145dc6021836149ef565b91506145e782615053565b604082019050919050565b60006145ff601a836149ef565b915061460a826150a2565b602082019050919050565b60006146226030836149ef565b915061462d826150cb565b604082019050919050565b61464181614b8a565b82525050565b600061465382856143d7565b915061465f82846143d7565b915061466a826144fd565b91508190509392505050565b600060208201905061468b6000830184614347565b92915050565b60006080820190506146a66000830187614347565b6146b36020830186614347565b6146c06040830185614638565b81810360608301526146d28184614365565b905095945050505050565b60006020820190506146f26000830184614356565b92915050565b60006020820190508181036000830152614712818461439e565b905092915050565b6000602082019050818103600083015261473381614408565b9050919050565b600060208201905081810360008301526147538161442b565b9050919050565b600060208201905081810360008301526147738161444e565b9050919050565b6000602082019050818103600083015261479381614471565b9050919050565b600060208201905081810360008301526147b381614494565b9050919050565b600060208201905081810360008301526147d3816144b7565b9050919050565b600060208201905081810360008301526147f3816144da565b9050919050565b6000602082019050818103600083015261481381614520565b9050919050565b6000602082019050818103600083015261483381614543565b9050919050565b6000602082019050818103600083015261485381614566565b9050919050565b6000602082019050818103600083015261487381614589565b9050919050565b60006020820190508181036000830152614893816145ac565b9050919050565b600060208201905081810360008301526148b3816145cf565b9050919050565b600060208201905081810360008301526148d3816145f2565b9050919050565b600060208201905081810360008301526148f381614615565b9050919050565b600060208201905061490f6000830184614638565b92915050565b600061491f614930565b905061492b8282614c08565b919050565b6000604051905090565b600067ffffffffffffffff82111561495557614954614d40565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561498157614980614d40565b5b61498a82614d6f565b9050602081019050919050565b600067ffffffffffffffff8211156149b2576149b1614d40565b5b6149bb82614d6f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a1682614b8a565b9150614a2183614b8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5657614a55614cb3565b5b828201905092915050565b6000614a6c82614b8a565b9150614a7783614b8a565b925082614a8757614a86614ce2565b5b828204905092915050565b6000614a9d82614b8a565b9150614aa883614b8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ae157614ae0614cb3565b5b828202905092915050565b6000614af782614b8a565b9150614b0283614b8a565b925082821015614b1557614b14614cb3565b5b828203905092915050565b6000614b2b82614b6a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bc1578082015181840152602081019050614ba6565b83811115614bd0576000848401525b50505050565b60006002820490506001821680614bee57607f821691505b60208210811415614c0257614c01614d11565b5b50919050565b614c1182614d6f565b810181811067ffffffffffffffff82111715614c3057614c2f614d40565b5b80604052505050565b6000614c4482614b8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c7757614c76614cb3565b5b600182019050919050565b6000614c8d82614b8a565b9150614c9883614b8a565b925082614ca857614ca7614ce2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f544c53204d696e74696e67206973205061757365640000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f544c53205075626c69632053616c65206973206e6f7420416374697665000000600082015250565b7f544c53204d6178696d756d205072652053616c65204d696e74696e67204c696d60008201527f6974205265616368656400000000000000000000000000000000000000000000602082015250565b7f544c53204554482056616c75652053656e7420666f72205072652053616c652060008201527f6973206e6f7420656e6f75676800000000000000000000000000000000000000602082015250565b7f544c532055736572206973206e6f742057686974652f4f47204c697374656400600082015250565b7f544c532055524920466f7220546f6b656e204e6f6e2d6578697374656e740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544c53204d6178696d756d205072652053616c65204f47204d696e74696e672060008201527f4c696d6974205265616368656400000000000000000000000000000000000000602082015250565b7f544c53204554482056616c75652053656e7420666f72205072652053616c652060008201527f4f67206973206e6f7420656e6f75676800000000000000000000000000000000602082015250565b7f544c53204d6178696d756d20537570706c792052656163686564000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f544c53204d6178696d756d204d696e74696e67204c696d69742052656163686560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f544c53205072652053616c65206973206e6f7420416374697665000000000000600082015250565b7f544c53204554482056616c75652053656e7420666f72205075626c696320536160008201527f6c65206973206e6f7420656e6f75676800000000000000000000000000000000602082015250565b61512381614b20565b811461512e57600080fd5b50565b61513a81614b32565b811461514557600080fd5b50565b61515181614b3e565b811461515c57600080fd5b50565b61516881614b8a565b811461517357600080fd5b5056fea264697066735822122036813863afd98b73d04a8bbc8bbfe910e09ee3868703ab961c9acee29281fbbc64736f6c63430008040033697066733a2f2f516d6453487a6d42364545426b75427a633834476735516165776a775a58314b6b6954796b4e32484a4255365a42000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012546865204c6974746c65205375726665727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544c530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102915760003560e01c806377b185681161015a578063b88d4fde116100c1578063e222c7f91161007a578063e222c7f9146109ae578063e757c17d146109c5578063e985e9c5146109f0578063f2c4ce1e14610a2d578063f2fde38b14610a56578063fad3f8f714610a7f57610291565b8063b88d4fde146108b0578063bc8893b4146108d9578063c31d3e8e14610904578063c87b56dd1461092f578063ca3cb5221461096c578063d5abeb011461098357610291565b806395d89b411161011357806395d89b41146107d35780639b6860c8146107fe578063a22cb46514610829578063a475b5dd14610852578063a6cb850c14610869578063b3ab66b01461089457610291565b806377b18568146106e45780637835c6351461070f578063791a25191461072b5780637d7eee4214610754578063844947081461077d5780638da5cb5b146107a857610291565b8063234318bc116101fe57806355f804b3116101b757806355f804b3146105c25780635c975abb146105eb5780636352211e146106165780636f9170f61461065357806370a0823114610690578063715018a6146106cd57610291565b8063234318bc146104a057806323b872dd146104dd5780632ff912a014610506578063421649651461053157806342842e0e1461056e578063518302271461059757610291565b8063081c8c4411610250578063081c8c44146103a4578063095ea7b3146103cf5780630bcb106a146103f8578063108076fe1461042157806318160ddd1461045e57806318e06e821461048957610291565b80628803d314610296578062b6849f146102ad57806301ffc9a7146102d65780630395ba311461031357806306fdde031461033c578063081812fc14610367575b600080fd5b3480156102a257600080fd5b506102ab610aaa565b005b3480156102b957600080fd5b506102d460048036038101906102cf9190614205565b610b52565b005b3480156102e257600080fd5b506102fd60048036038101906102f89190614246565b610c9b565b60405161030a91906146dd565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190614205565b610d7d565b005b34801561034857600080fd5b50610351610eb4565b60405161035e91906146f8565b60405180910390f35b34801561037357600080fd5b5061038e6004803603810190610389919061431e565b610f46565b60405161039b9190614676565b60405180910390f35b3480156103b057600080fd5b506103b9610fc2565b6040516103c691906146f8565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f191906141c9565b611050565b005b34801561040457600080fd5b5061041f600480360381019061041a9190614205565b61115b565b005b34801561042d57600080fd5b506104486004803603810190610443919061405e565b611292565b60405161045591906148fa565b60405180910390f35b34801561046a57600080fd5b506104736112aa565b60405161048091906148fa565b60405180910390f35b34801561049557600080fd5b5061049e6112c1565b005b3480156104ac57600080fd5b506104c760048036038101906104c2919061405e565b61172c565b6040516104d491906146dd565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906140c3565b61174c565b005b34801561051257600080fd5b5061051b61175c565b60405161052891906146f8565b60405180910390f35b34801561053d57600080fd5b506105586004803603810190610553919061405e565b6117ea565b60405161056591906148fa565b60405180910390f35b34801561057a57600080fd5b50610595600480360381019061059091906140c3565b611802565b005b3480156105a357600080fd5b506105ac611822565b6040516105b991906146dd565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e49190614298565b611835565b005b3480156105f757600080fd5b506106006118c7565b60405161060d91906146dd565b60405180910390f35b34801561062257600080fd5b5061063d6004803603810190610638919061431e565b6118da565b60405161064a9190614676565b60405180910390f35b34801561065f57600080fd5b5061067a6004803603810190610675919061405e565b6118f0565b60405161068791906146dd565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b2919061405e565b611910565b6040516106c491906148fa565b60405180910390f35b3480156106d957600080fd5b506106e26119e0565b005b3480156106f057600080fd5b506106f9611a68565b60405161070691906148fa565b60405180910390f35b6107296004803603810190610724919061431e565b611a6e565b005b34801561073757600080fd5b50610752600480360381019061074d919061431e565b611e25565b005b34801561076057600080fd5b5061077b6004803603810190610776919061431e565b611eab565b005b34801561078957600080fd5b50610792611f31565b60405161079f91906146dd565b60405180910390f35b3480156107b457600080fd5b506107bd611f44565b6040516107ca9190614676565b60405180910390f35b3480156107df57600080fd5b506107e8611f6e565b6040516107f591906146f8565b60405180910390f35b34801561080a57600080fd5b50610813612000565b60405161082091906148fa565b60405180910390f35b34801561083557600080fd5b50610850600480360381019061084b919061418d565b612006565b005b34801561085e57600080fd5b5061086761217e565b005b34801561087557600080fd5b5061087e612217565b60405161088b91906148fa565b60405180910390f35b6108ae60048036038101906108a9919061431e565b61221d565b005b3480156108bc57600080fd5b506108d760048036038101906108d29190614112565b612366565b005b3480156108e557600080fd5b506108ee6123e2565b6040516108fb91906146dd565b60405180910390f35b34801561091057600080fd5b506109196123f5565b60405161092691906148fa565b60405180910390f35b34801561093b57600080fd5b506109566004803603810190610951919061431e565b6123fb565b60405161096391906146f8565b60405180910390f35b34801561097857600080fd5b50610981612549565b005b34801561098f57600080fd5b5061099861260c565b6040516109a591906148fa565b60405180910390f35b3480156109ba57600080fd5b506109c3612612565b005b3480156109d157600080fd5b506109da6126d5565b6040516109e791906148fa565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a129190614087565b6126db565b604051610a2491906146dd565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f91906142dd565b61276f565b005b348015610a6257600080fd5b50610a7d6004803603810190610a78919061405e565b612805565b005b348015610a8b57600080fd5b50610a946128fd565b604051610aa191906148fa565b60405180910390f35b610ab2612903565b73ffffffffffffffffffffffffffffffffffffffff16610ad0611f44565b73ffffffffffffffffffffffffffffffffffffffff1614610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d906147fa565b60405180910390fd5b600a60029054906101000a900460ff1615600a60026101000a81548160ff021916908315150217905550565b610b5a612903565b73ffffffffffffffffffffffffffffffffffffffff16610b78611f44565b73ffffffffffffffffffffffffffffffffffffffff1614610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc5906147fa565b60405180910390fd5b600b54610bec8251610bde6112aa565b61290b90919063ffffffff16565b1115610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c249061485a565b60405180910390fd5b60005b8151811015610c9757610c84828281518110610c75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001612921565b8080610c8f90614c39565b915050610c30565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d765750610d758261293f565b5b9050919050565b610d85612903565b73ffffffffffffffffffffffffffffffffffffffff16610da3611f44565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906147fa565b60405180910390fd5b60005b8151811015610eb057600160166000848481518110610e44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ea890614c39565b915050610dfc565b5050565b606060028054610ec390614bd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610eef90614bd6565b8015610f3c5780601f10610f1157610100808354040283529160200191610f3c565b820191906000526020600020905b815481529060010190602001808311610f1f57829003601f168201915b5050505050905090565b6000610f51826129a9565b610f87576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60148054610fcf90614bd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ffb90614bd6565b80156110485780601f1061101d57610100808354040283529160200191611048565b820191906000526020600020905b81548152906001019060200180831161102b57829003601f168201915b505050505081565b600061105b826118da565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110c3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166110e2612903565b73ffffffffffffffffffffffffffffffffffffffff161415801561111457506111128161110d612903565b6126db565b155b1561114b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111568383836129f7565b505050565b611163612903565b73ffffffffffffffffffffffffffffffffffffffff16611181611f44565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce906147fa565b60405180910390fd5b60005b815181101561128e57600160156000848481518110611222577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061128690614c39565b9150506111da565b5050565b60176020528060005260406000206000915090505481565b60006112b4612aa9565b6001546000540303905090565b6112c9612903565b73ffffffffffffffffffffffffffffffffffffffff166112e7611f44565b73ffffffffffffffffffffffffffffffffffffffff161461133d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611334906147fa565b60405180910390fd5b6000479050733e89fbf78021d067060cc91496e604efb69cbb1573ffffffffffffffffffffffffffffffffffffffff166108fc61139861271061138a607d86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156113c3573d6000803e3d6000fd5b5073ebd47aaebdeebe67dfb2092db728e86cc62ffac673ffffffffffffffffffffffffffffffffffffffff166108fc61141a61271061140c607d86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611445573d6000803e3d6000fd5b5073345a8760d24cad15e00387fca6da6cbb8533448273ffffffffffffffffffffffffffffffffffffffff166108fc61149b606461148d601e86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156114c6573d6000803e3d6000fd5b5073b6cd3e633b4d1072557c236767c38c26e09039b773ffffffffffffffffffffffffffffffffffffffff166108fc61151c606461150e600a86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611547573d6000803e3d6000fd5b50738102c63993151973c0f334ce3bfb3b48b611e1c173ffffffffffffffffffffffffffffffffffffffff166108fc61159d606461158f600f86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156115c8573d6000803e3d6000fd5b5073b6cd3e633b4d1072557c236767c38c26e09039b773ffffffffffffffffffffffffffffffffffffffff166108fc61161e6064611610600a86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611649573d6000803e3d6000fd5b507370148a9f077d4836d9a790ce1c1b637fab2a9d8f73ffffffffffffffffffffffffffffffffffffffff166108fc61169f6064611691600f86612ab290919063ffffffff16565b612ac890919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156116ca573d6000803e3d6000fd5b5047905073f1e25b6935ac967dc62a39af295c1e6d5f72594073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611728573d6000803e3d6000fd5b5050565b60166020528060005260406000206000915054906101000a900460ff1681565b611757838383612ade565b505050565b6013805461176990614bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461179590614bd6565b80156117e25780601f106117b7576101008083540402835291602001916117e2565b820191906000526020600020905b8154815290600101906020018083116117c557829003601f168201915b505050505081565b60186020528060005260406000206000915090505481565b61181d83838360405180602001604052806000815250612366565b505050565b600a60039054906101000a900460ff1681565b61183d612903565b73ffffffffffffffffffffffffffffffffffffffff1661185b611f44565b73ffffffffffffffffffffffffffffffffffffffff16146118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a8906147fa565b60405180910390fd5b8181601291906118c2929190613cd9565b505050565b600a60029054906101000a900460ff1681565b60006118e582612f94565b600001519050919050565b60156020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611978576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6119e8612903565b73ffffffffffffffffffffffffffffffffffffffff16611a06611f44565b73ffffffffffffffffffffffffffffffffffffffff1614611a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a53906147fa565b60405180910390fd5b611a666000613223565b565b600d5481565b60026009541415611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab9061487a565b60405180910390fd5b6002600981905550600a60009054906101000a900460ff16611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b02906148ba565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bac5750601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be2906147ba565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d2857601054611c9282601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290b90919063ffffffff16565b1115611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca9061481a565b60405180910390fd5b3481600d54611ce29190614a92565b1115611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a9061483a565b60405180910390fd5b611e0f565b600f54611d7d82601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290b90919063ffffffff16565b1115611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db59061477a565b60405180910390fd5b3481600c54611dcd9190614a92565b1115611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e059061479a565b60405180910390fd5b5b611e1a8160016132e9565b600160098190555050565b611e2d612903565b73ffffffffffffffffffffffffffffffffffffffff16611e4b611f44565b73ffffffffffffffffffffffffffffffffffffffff1614611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e98906147fa565b60405180910390fd5b80600e8190555050565b611eb3612903565b73ffffffffffffffffffffffffffffffffffffffff16611ed1611f44565b73ffffffffffffffffffffffffffffffffffffffff1614611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e906147fa565b60405180910390fd5b80600c8190555050565b600a60009054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611f7d90614bd6565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa990614bd6565b8015611ff65780601f10611fcb57610100808354040283529160200191611ff6565b820191906000526020600020905b815481529060010190602001808311611fd957829003601f168201915b5050505050905090565b600e5481565b61200e612903565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612073576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612080612903565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661212d612903565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161217291906146dd565b60405180910390a35050565b612186612903565b73ffffffffffffffffffffffffffffffffffffffff166121a4611f44565b73ffffffffffffffffffffffffffffffffffffffff16146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f1906147fa565b60405180910390fd5b6001600a60036101000a81548160ff021916908315150217905550565b60105481565b60026009541415612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a9061487a565b60405180910390fd5b6002600981905550600a60019054906101000a900460ff166122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b19061475a565b60405180910390fd5b60115461230f82601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290b90919063ffffffff16565b1115612350576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123479061489a565b60405180910390fd5b61235b8160006132e9565b600160098190555050565b612371848484612ade565b6123908373ffffffffffffffffffffffffffffffffffffffff1661352b565b80156123a557506123a38484848461354e565b155b156123dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a60019054906101000a900460ff1681565b60115481565b6060612406826129a9565b612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243c906147da565b60405180910390fd5b600a60039054906101000a900460ff166124eb576014805461246690614bd6565b80601f016020809104026020016040519081016040528092919081815260200182805461249290614bd6565b80156124df5780601f106124b4576101008083540402835291602001916124df565b820191906000526020600020905b8154815290600101906020018083116124c257829003601f168201915b50505050509050612544565b60006124f56136ae565b905060008151116125155760405180602001604052806000815250612540565b8061251f84613740565b604051602001612530929190614647565b6040516020818303038152906040525b9150505b919050565b612551612903565b73ffffffffffffffffffffffffffffffffffffffff1661256f611f44565b73ffffffffffffffffffffffffffffffffffffffff16146125c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bc906147fa565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff021916908315150217905550565b600b5481565b61261a612903565b73ffffffffffffffffffffffffffffffffffffffff16612638611f44565b73ffffffffffffffffffffffffffffffffffffffff161461268e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612685906147fa565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff0219169083151502179055506000600a60006101000a81548160ff021916908315150217905550565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612777612903565b73ffffffffffffffffffffffffffffffffffffffff16612795611f44565b73ffffffffffffffffffffffffffffffffffffffff16146127eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e2906147fa565b60405180910390fd5b8060149080519060200190612801929190613d5f565b5050565b61280d612903565b73ffffffffffffffffffffffffffffffffffffffff1661282b611f44565b73ffffffffffffffffffffffffffffffffffffffff1614612881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612878906147fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e89061473a565b60405180910390fd5b6128fa81613223565b50565b600f5481565b600033905090565b600081836129199190614a0b565b905092915050565b61293b8282604051806020016040528060008152506138ed565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816129b4612aa9565b111580156129c3575060005482105b80156129f0575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008183612ac09190614a92565b905092915050565b60008183612ad69190614a61565b905092915050565b6000612ae982612f94565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b54576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612b75612903565b73ffffffffffffffffffffffffffffffffffffffff161480612ba45750612ba385612b9e612903565b6126db565b5b80612be95750612bb2612903565b73ffffffffffffffffffffffffffffffffffffffff16612bd184610f46565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c22576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c89576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c9685858560016138ff565b612ca2600084876129f7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f22576000548214612f2157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f8d8585856001613905565b5050505050565b612f9c613de5565b600082905080612faa612aa9565b11158015612fb9575060005481105b156131ec576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516131ea57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146130ce57809250505061321e565b5b6001156131e957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131e457809250505061321e565b6130cf565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60029054906101000a900460ff1615613339576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133309061471a565b60405180910390fd5b600b54613356836133486112aa565b61290b90919063ffffffff16565b1115613397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338e9061485a565b60405180910390fd5b8015613437576133ef82601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290b90919063ffffffff16565b601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061351d565b3482600e546134469190614a92565b1115613487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347e906148da565b60405180910390fd5b6134d982601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461290b90919063ffffffff16565b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6135273383612921565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613574612903565b8786866040518563ffffffff1660e01b81526004016135969493929190614691565b602060405180830381600087803b1580156135b057600080fd5b505af19250505080156135e157506040513d601f19601f820116820180604052508101906135de919061426f565b60015b61365b573d8060008114613611576040519150601f19603f3d011682016040523d82523d6000602084013e613616565b606091505b50600081511415613653576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546136bd90614bd6565b80601f01602080910402602001604051908101604052809291908181526020018280546136e990614bd6565b80156137365780601f1061370b57610100808354040283529160200191613736565b820191906000526020600020905b81548152906001019060200180831161371957829003601f168201915b5050505050905090565b60606000821415613788576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138e8565b600082905060005b600082146137ba5780806137a390614c39565b915050600a826137b39190614a61565b9150613790565b60008167ffffffffffffffff8111156137fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561382e5781602001600182028036833780820191505090505b5090505b600085146138e1576001826138479190614aec565b9150600a856138569190614c82565b60306138629190614a0b565b60f81b81838151811061389e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138da9190614a61565b9450613832565b8093505050505b919050565b6138fa838383600161390b565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613978576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156139b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139c060008683876138ff565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613b8a5750613b898773ffffffffffffffffffffffffffffffffffffffff1661352b565b5b15613c50575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613bff600088848060010195508861354e565b613c35576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613b90578260005414613c4b57600080fd5b613cbc565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613c51575b816000819055505050613cd26000868387613905565b5050505050565b828054613ce590614bd6565b90600052602060002090601f016020900481019282613d075760008555613d4e565b82601f10613d2057803560ff1916838001178555613d4e565b82800160010185558215613d4e579182015b82811115613d4d578235825591602001919060010190613d32565b5b509050613d5b9190613e28565b5090565b828054613d6b90614bd6565b90600052602060002090601f016020900481019282613d8d5760008555613dd4565b82601f10613da657805160ff1916838001178555613dd4565b82800160010185558215613dd4579182015b82811115613dd3578251825591602001919060010190613db8565b5b509050613de19190613e28565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613e41576000816000905550600101613e29565b5090565b6000613e58613e538461493a565b614915565b90508083825260208201905082856020860282011115613e7757600080fd5b60005b85811015613ea75781613e8d8882613f2d565b845260208401935060208301925050600181019050613e7a565b5050509392505050565b6000613ec4613ebf84614966565b614915565b905082815260208101848484011115613edc57600080fd5b613ee7848285614b94565b509392505050565b6000613f02613efd84614997565b614915565b905082815260208101848484011115613f1a57600080fd5b613f25848285614b94565b509392505050565b600081359050613f3c8161511a565b92915050565b600082601f830112613f5357600080fd5b8135613f63848260208601613e45565b91505092915050565b600081359050613f7b81615131565b92915050565b600081359050613f9081615148565b92915050565b600081519050613fa581615148565b92915050565b600082601f830112613fbc57600080fd5b8135613fcc848260208601613eb1565b91505092915050565b60008083601f840112613fe757600080fd5b8235905067ffffffffffffffff81111561400057600080fd5b60208301915083600182028301111561401857600080fd5b9250929050565b600082601f83011261403057600080fd5b8135614040848260208601613eef565b91505092915050565b6000813590506140588161515f565b92915050565b60006020828403121561407057600080fd5b600061407e84828501613f2d565b91505092915050565b6000806040838503121561409a57600080fd5b60006140a885828601613f2d565b92505060206140b985828601613f2d565b9150509250929050565b6000806000606084860312156140d857600080fd5b60006140e686828701613f2d565b93505060206140f786828701613f2d565b925050604061410886828701614049565b9150509250925092565b6000806000806080858703121561412857600080fd5b600061413687828801613f2d565b945050602061414787828801613f2d565b935050604061415887828801614049565b925050606085013567ffffffffffffffff81111561417557600080fd5b61418187828801613fab565b91505092959194509250565b600080604083850312156141a057600080fd5b60006141ae85828601613f2d565b92505060206141bf85828601613f6c565b9150509250929050565b600080604083850312156141dc57600080fd5b60006141ea85828601613f2d565b92505060206141fb85828601614049565b9150509250929050565b60006020828403121561421757600080fd5b600082013567ffffffffffffffff81111561423157600080fd5b61423d84828501613f42565b91505092915050565b60006020828403121561425857600080fd5b600061426684828501613f81565b91505092915050565b60006020828403121561428157600080fd5b600061428f84828501613f96565b91505092915050565b600080602083850312156142ab57600080fd5b600083013567ffffffffffffffff8111156142c557600080fd5b6142d185828601613fd5565b92509250509250929050565b6000602082840312156142ef57600080fd5b600082013567ffffffffffffffff81111561430957600080fd5b6143158482850161401f565b91505092915050565b60006020828403121561433057600080fd5b600061433e84828501614049565b91505092915050565b61435081614b20565b82525050565b61435f81614b32565b82525050565b6000614370826149c8565b61437a81856149de565b935061438a818560208601614ba3565b61439381614d6f565b840191505092915050565b60006143a9826149d3565b6143b381856149ef565b93506143c3818560208601614ba3565b6143cc81614d6f565b840191505092915050565b60006143e2826149d3565b6143ec8185614a00565b93506143fc818560208601614ba3565b80840191505092915050565b60006144156015836149ef565b915061442082614d80565b602082019050919050565b60006144386026836149ef565b915061444382614da9565b604082019050919050565b600061445b601d836149ef565b915061446682614df8565b602082019050919050565b600061447e602a836149ef565b915061448982614e21565b604082019050919050565b60006144a1602d836149ef565b91506144ac82614e70565b604082019050919050565b60006144c4601f836149ef565b91506144cf82614ebf565b602082019050919050565b60006144e7601e836149ef565b91506144f282614ee8565b602082019050919050565b600061450a600583614a00565b915061451582614f11565b600582019050919050565b600061452d6020836149ef565b915061453882614f3a565b602082019050919050565b6000614550602d836149ef565b915061455b82614f63565b604082019050919050565b60006145736030836149ef565b915061457e82614fb2565b604082019050919050565b6000614596601a836149ef565b91506145a182615001565b602082019050919050565b60006145b9601f836149ef565b91506145c48261502a565b602082019050919050565b60006145dc6021836149ef565b91506145e782615053565b604082019050919050565b60006145ff601a836149ef565b915061460a826150a2565b602082019050919050565b60006146226030836149ef565b915061462d826150cb565b604082019050919050565b61464181614b8a565b82525050565b600061465382856143d7565b915061465f82846143d7565b915061466a826144fd565b91508190509392505050565b600060208201905061468b6000830184614347565b92915050565b60006080820190506146a66000830187614347565b6146b36020830186614347565b6146c06040830185614638565b81810360608301526146d28184614365565b905095945050505050565b60006020820190506146f26000830184614356565b92915050565b60006020820190508181036000830152614712818461439e565b905092915050565b6000602082019050818103600083015261473381614408565b9050919050565b600060208201905081810360008301526147538161442b565b9050919050565b600060208201905081810360008301526147738161444e565b9050919050565b6000602082019050818103600083015261479381614471565b9050919050565b600060208201905081810360008301526147b381614494565b9050919050565b600060208201905081810360008301526147d3816144b7565b9050919050565b600060208201905081810360008301526147f3816144da565b9050919050565b6000602082019050818103600083015261481381614520565b9050919050565b6000602082019050818103600083015261483381614543565b9050919050565b6000602082019050818103600083015261485381614566565b9050919050565b6000602082019050818103600083015261487381614589565b9050919050565b60006020820190508181036000830152614893816145ac565b9050919050565b600060208201905081810360008301526148b3816145cf565b9050919050565b600060208201905081810360008301526148d3816145f2565b9050919050565b600060208201905081810360008301526148f381614615565b9050919050565b600060208201905061490f6000830184614638565b92915050565b600061491f614930565b905061492b8282614c08565b919050565b6000604051905090565b600067ffffffffffffffff82111561495557614954614d40565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561498157614980614d40565b5b61498a82614d6f565b9050602081019050919050565b600067ffffffffffffffff8211156149b2576149b1614d40565b5b6149bb82614d6f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a1682614b8a565b9150614a2183614b8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5657614a55614cb3565b5b828201905092915050565b6000614a6c82614b8a565b9150614a7783614b8a565b925082614a8757614a86614ce2565b5b828204905092915050565b6000614a9d82614b8a565b9150614aa883614b8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ae157614ae0614cb3565b5b828202905092915050565b6000614af782614b8a565b9150614b0283614b8a565b925082821015614b1557614b14614cb3565b5b828203905092915050565b6000614b2b82614b6a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bc1578082015181840152602081019050614ba6565b83811115614bd0576000848401525b50505050565b60006002820490506001821680614bee57607f821691505b60208210811415614c0257614c01614d11565b5b50919050565b614c1182614d6f565b810181811067ffffffffffffffff82111715614c3057614c2f614d40565b5b80604052505050565b6000614c4482614b8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c7757614c76614cb3565b5b600182019050919050565b6000614c8d82614b8a565b9150614c9883614b8a565b925082614ca857614ca7614ce2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f544c53204d696e74696e67206973205061757365640000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f544c53205075626c69632053616c65206973206e6f7420416374697665000000600082015250565b7f544c53204d6178696d756d205072652053616c65204d696e74696e67204c696d60008201527f6974205265616368656400000000000000000000000000000000000000000000602082015250565b7f544c53204554482056616c75652053656e7420666f72205072652053616c652060008201527f6973206e6f7420656e6f75676800000000000000000000000000000000000000602082015250565b7f544c532055736572206973206e6f742057686974652f4f47204c697374656400600082015250565b7f544c532055524920466f7220546f6b656e204e6f6e2d6578697374656e740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544c53204d6178696d756d205072652053616c65204f47204d696e74696e672060008201527f4c696d6974205265616368656400000000000000000000000000000000000000602082015250565b7f544c53204554482056616c75652053656e7420666f72205072652053616c652060008201527f4f67206973206e6f7420656e6f75676800000000000000000000000000000000602082015250565b7f544c53204d6178696d756d20537570706c792052656163686564000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f544c53204d6178696d756d204d696e74696e67204c696d69742052656163686560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f544c53205072652053616c65206973206e6f7420416374697665000000000000600082015250565b7f544c53204554482056616c75652053656e7420666f72205075626c696320536160008201527f6c65206973206e6f7420656e6f75676800000000000000000000000000000000602082015250565b61512381614b20565b811461512e57600080fd5b50565b61513a81614b32565b811461514557600080fd5b50565b61515181614b3e565b811461515c57600080fd5b50565b61516881614b8a565b811461517357600080fd5b5056fea264697066735822122036813863afd98b73d04a8bbc8bbfe910e09ee3868703ab961c9acee29281fbbc64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000012546865204c6974746c65205375726665727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544c530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): The Little Surfers
Arg [1] : symbol (string): TLS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 546865204c6974746c6520537572666572730000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 544c530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

77404:6214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80597:82;;;;;;;;;;;;;:::i;:::-;;81637:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37890:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81176:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41003:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42506:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78101:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42069:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80965:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78297:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37139:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81993:1052;;;;;;;;;;;;;:::i;:::-;;78248:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43371:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78038:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78353:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43612:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77657:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80478:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77625:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40811:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78196:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38259:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14530:103;;;;;;;;;;;;;:::i;:::-;;77779:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78633:826;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81503:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81381:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77541:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13879:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41172:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77828:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42782:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81914:71;;;;;;;;;;;;;:::i;:::-;;77915:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79467:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43868:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77580:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77953:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83189:426;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80687:128;;;;;;;;;;;;;:::i;:::-;;77694:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80823:134;;;;;;;;;;;;;:::i;:::-;;77732:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43140:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83053:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14788:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77879:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80597:82;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80665:6:::1;;;;;;;;;;;80664:7;80655:6;;:16;;;;;;;;;;;;;;;;;;80597:82::o:0;81637:269::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81757:9:::1;;81719:34;81737:8;:15;81719:13;:11;:13::i;:::-;:17;;:34;;;;:::i;:::-;:47;;81711:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;81812:6;81808:91;81826:8;:15;81822:1;:19;81808:91;;;81862:25;81872:8;81881:1;81872:11;;;;;;;;;;;;;;;;;;;;;;81885:1;81862:9;:25::i;:::-;81843:3;;;;;:::i;:::-;;;;81808:91;;;;81637:269:::0;:::o;37890:305::-;37992:4;38044:25;38029:40;;;:11;:40;;;;:105;;;;38101:33;38086:48;;;:11;:48;;;;38029:105;:158;;;;38151:36;38175:11;38151:23;:36::i;:::-;38029:158;38009:178;;37890:305;;;:::o;81176:197::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81268:9:::1;81263:103;81287:8;:15;81283:1;:19;81263:103;;;81350:4;81324:10;:23;81335:8;81344:1;81335:11;;;;;;;;;;;;;;;;;;;;;;81324:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;81304:3;;;;;:::i;:::-;;;;81263:103;;;;81176:197:::0;:::o;41003:100::-;41057:13;41090:5;41083:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41003:100;:::o;42506:204::-;42574:7;42599:16;42607:7;42599;:16::i;:::-;42594:64;;42624:34;;;;;;;;;;;;;;42594:64;42678:15;:24;42694:7;42678:24;;;;;;;;;;;;;;;;;;;;;42671:31;;42506:204;;;:::o;78101:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42069:371::-;42142:13;42158:24;42174:7;42158:15;:24::i;:::-;42142:40;;42203:5;42197:11;;:2;:11;;;42193:48;;;42217:24;;;;;;;;;;;;;;42193:48;42274:5;42258:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;42284:37;42301:5;42308:12;:10;:12::i;:::-;42284:16;:37::i;:::-;42283:38;42258:63;42254:138;;;42345:35;;;;;;;;;;;;;;42254:138;42404:28;42413:2;42417:7;42426:5;42404:8;:28::i;:::-;42069:371;;;:::o;80965:203::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81060:9:::1;81055:106;81079:8;:15;81075:1;:19;81055:106;;;81145:4;81116:13;:26;81130:8;81139:1;81130:11;;;;;;;;;;;;;;;;;;;;;;81116:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;81096:3;;;;;:::i;:::-;;;;81055:106;;;;80965:203:::0;:::o;78297:49::-;;;;;;;;;;;;;;;;;:::o;37139:303::-;37183:7;37408:15;:13;:15::i;:::-;37393:12;;37377:13;;:28;:46;37370:53;;37139:303;:::o;81993:1052::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82048:12:::1;82063:21;82048:36;;82111:42;82095:69;;:98;82165:27;82186:5;82165:16;82177:3;82165:7;:11;;:16;;;;:::i;:::-;:20;;:27;;;;:::i;:::-;82095:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;82220:42;82204:69;;:98;82274:27;82295:5;82274:16;82286:3;82274:7;:11;;:16;;;;:::i;:::-;:20;;:27;;;;:::i;:::-;82204:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;82329:42;82313:69;;:95;82383:24;82403:3;82383:15;82395:2;82383:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;82313:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;82453:42;82437:69;;:95;82507:24;82527:3;82507:15;82519:2;82507:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;82437:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;82566:42;82550:69;;:95;82620:24;82640:3;82620:15;82632:2;82620:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;82550:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;82694:42;82678:69;;:95;82748:24;82768:3;82748:15;82760:2;82748:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;82678:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;82800:42;82784:69;;:95;82854:24;82874:3;82854:15;82866:2;82854:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;82784:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;82902:21;82892:31;;82950:42;82934:69;;:78;83004:7;82934:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;14170:1;81993:1052::o:0;78248:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;43371:170::-;43505:28;43515:4;43521:2;43525:7;43505:9;:28::i;:::-;43371:170;;;:::o;78038:56::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78353:52::-;;;;;;;;;;;;;;;;;:::o;43612:185::-;43750:39;43767:4;43773:2;43777:7;43750:39;;;;;;;;;;;;:16;:39::i;:::-;43612:185;;;:::o;77657:28::-;;;;;;;;;;;;;:::o;80478:111::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80573:8:::1;;80554:16;:27;;;;;;;:::i;:::-;;80478:111:::0;;:::o;77625:25::-;;;;;;;;;;;;;:::o;40811:125::-;40875:7;40902:21;40915:7;40902:12;:21::i;:::-;:26;;;40895:33;;40811:125;;;:::o;78196:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;38259:206::-;38323:7;38364:1;38347:19;;:5;:19;;;38343:60;;;38375:28;;;;;;;;;;;;;;38343:60;38429:12;:19;38442:5;38429:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;38421:36;;38414:43;;38259:206;;;:::o;14530:103::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14595:30:::1;14622:1;14595:18;:30::i;:::-;14530:103::o:0;77779:42::-;;;;:::o;78633:826::-;8853:1;9451:7;;:19;;9443:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8853:1;9584:7;:18;;;;78719:13:::1;;;;;;;;;;;78711:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;78782:13;:25;78796:10;78782:25;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;78811:10;:22;78822:10;78811:22;;;;;;;;;;;;;;;;;;;;;;;;;78782:51;78774:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;78883:10;:22;78894:10;78883:22;;;;;;;;;;;;;;;;;;;;;;;;;78880:542;;;78982:12;;78939:39;78970:7;78939:14;:26;78954:10;78939:26;;;;;;;;;;;;;;;;:30;;:39;;;;:::i;:::-;:55;;78931:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;79093:9;79082:7;79067:14;;:22;;;;:::i;:::-;:35;;79059:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;78880:542;;;79247:10;;79204:39;79235:7;79204:14;:26;79219:10;79204:26;;;;;;;;;;;;;;;;:30;;:39;;;;:::i;:::-;:53;;79196:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;79351:9;79340:7;79327:12;;:20;;;;:::i;:::-;:33;;79319:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;78880:542;79432:19;79437:7;79446:4;79432;:19::i;:::-;8809:1:::0;9763:7;:22;;;;78633:826;:::o;81503:126::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81605:16:::1;81587:15;:34;;;;81503:126:::0;:::o;81381:114::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81474:13:::1;81459:12;:28;;;;81381:114:::0;:::o;77541:32::-;;;;;;;;;;;;;:::o;13879:87::-;13925:7;13952:6;;;;;;;;;;;13945:13;;13879:87;:::o;41172:104::-;41228:13;41261:7;41254:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41172:104;:::o;77828:42::-;;;;:::o;42782:287::-;42893:12;:10;:12::i;:::-;42881:24;;:8;:24;;;42877:54;;;42914:17;;;;;;;;;;;;;;42877:54;42989:8;42944:18;:32;42963:12;:10;:12::i;:::-;42944:32;;;;;;;;;;;;;;;:42;42977:8;42944:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;43042:8;43013:48;;43028:12;:10;:12::i;:::-;43013:48;;;43052:8;43013:48;;;;;;:::i;:::-;;;;;;;;42782:287;;:::o;81914:71::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81973:4:::1;81962:8;;:15;;;;;;;;;;;;;;;;;;81914:71::o:0;77915:31::-;;;;:::o;79467:295::-;8853:1;9451:7;;:19;;9443:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8853:1;9584:7;:18;;;;79557:16:::1;;;;;;;;;;;79549:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;79672:13;;79626:42;79660:7;79626:17;:29;79644:10;79626:29;;;;;;;;;;;;;;;;:33;;:42;;;;:::i;:::-;:59;;79618:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;79734:20;79739:7;79748:5;79734:4;:20::i;:::-;8809:1:::0;9763:7;:22;;;;79467:295;:::o;43868:369::-;44035:28;44045:4;44051:2;44055:7;44035:9;:28::i;:::-;44078:15;:2;:13;;;:15::i;:::-;:76;;;;;44098:56;44129:4;44135:2;44139:7;44148:5;44098:30;:56::i;:::-;44097:57;44078:76;44074:156;;;44178:40;;;;;;;;;;;;;;44074:156;43868:369;;;;:::o;77580:36::-;;;;;;;;;;;;;:::o;77953:32::-;;;;:::o;83189:426::-;83263:13;83297:17;83305:8;83297:7;:17::i;:::-;83289:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;83364:8;;;;;;;;;;;83360:61;;83395:14;83388:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83360:61;83431:28;83462:10;:8;:10::i;:::-;83431:41;;83521:1;83496:14;83490:28;:32;:117;;;;;;;;;;;;;;;;;83558:14;83573:19;:8;:17;:19::i;:::-;83541:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83490:117;83483:124;;;83189:426;;;;:::o;80687:128::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80759:13:::1;;;;;;;;;;;80758:14;80742:13;;:30;;;;;;;;;;;;;;;;;;80802:5;80783:16;;:24;;;;;;;;;;;;;;;;;;80687:128::o:0;77694:31::-;;;;:::o;80823:134::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80901:16:::1;;;;;;;;;;;80900:17;80881:16;;:36;;;;;;;;;;;;;;;;;;80944:5;80928:13;;:21;;;;;;;;;;;;;;;;;;80823:134::o:0;77732:40::-;;;;:::o;43140:164::-;43237:4;43261:18;:25;43280:5;43261:25;;;;;;;;;;;;;;;:35;43287:8;43261:35;;;;;;;;;;;;;;;;;;;;;;;;;43254:42;;43140:164;;;;:::o;83053:128::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83158:15:::1;83141:14;:32;;;;;;;;;;;;:::i;:::-;;83053:128:::0;:::o;14788:201::-;14110:12;:10;:12::i;:::-;14099:23;;:7;:5;:7::i;:::-;:23;;;14091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14897:1:::1;14877:22;;:8;:22;;;;14869:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14953:28;14972:8;14953:18;:28::i;:::-;14788:201:::0;:::o;77879:29::-;;;;:::o;12603:98::-;12656:7;12683:10;12676:17;;12603:98;:::o;2876:::-;2934:7;2965:1;2961;:5;;;;:::i;:::-;2954:12;;2876:98;;;;:::o;44674:104::-;44743:27;44753:2;44757:8;44743:27;;;;;;;;;;;;:9;:27::i;:::-;44674:104;;:::o;26686:157::-;26771:4;26810:25;26795:40;;;:11;:40;;;;26788:47;;26686:157;;;:::o;44492:174::-;44549:4;44592:7;44573:15;:13;:15::i;:::-;:26;;:53;;;;;44613:13;;44603:7;:23;44573:53;:85;;;;;44631:11;:20;44643:7;44631:20;;;;;;;;;;;:27;;;;;;;;;;;;44630:28;44573:85;44566:92;;44492:174;;;:::o;52649:196::-;52791:2;52764:15;:24;52780:7;52764:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52829:7;52825:2;52809:28;;52818:5;52809:28;;;;;;;;;;;;52649:196;;;:::o;78524:101::-;78589:7;78616:1;78609:8;;78524:101;:::o;3614:98::-;3672:7;3703:1;3699;:5;;;;:::i;:::-;3692:12;;3614:98;;;;:::o;4013:::-;4071:7;4102:1;4098;:5;;;;:::i;:::-;4091:12;;4013:98;;;;:::o;47592:2130::-;47707:35;47745:21;47758:7;47745:12;:21::i;:::-;47707:59;;47805:4;47783:26;;:13;:18;;;:26;;;47779:67;;47818:28;;;;;;;;;;;;;;47779:67;47859:22;47901:4;47885:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;47922:36;47939:4;47945:12;:10;:12::i;:::-;47922:16;:36::i;:::-;47885:73;:126;;;;47999:12;:10;:12::i;:::-;47975:36;;:20;47987:7;47975:11;:20::i;:::-;:36;;;47885:126;47859:153;;48030:17;48025:66;;48056:35;;;;;;;;;;;;;;48025:66;48120:1;48106:16;;:2;:16;;;48102:52;;;48131:23;;;;;;;;;;;;;;48102:52;48167:43;48189:4;48195:2;48199:7;48208:1;48167:21;:43::i;:::-;48275:35;48292:1;48296:7;48305:4;48275:8;:35::i;:::-;48636:1;48606:12;:18;48619:4;48606:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48680:1;48652:12;:16;48665:2;48652:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48698:31;48732:11;:20;48744:7;48732:20;;;;;;;;;;;48698:54;;48783:2;48767:8;:13;;;:18;;;;;;;;;;;;;;;;;;48833:15;48800:8;:23;;;:49;;;;;;;;;;;;;;;;;;49101:19;49133:1;49123:7;:11;49101:33;;49149:31;49183:11;:24;49195:11;49183:24;;;;;;;;;;;49149:58;;49251:1;49226:27;;:8;:13;;;;;;;;;;;;:27;;;49222:384;;;49436:13;;49421:11;:28;49417:174;;49490:4;49474:8;:13;;;:20;;;;;;;;;;;;;;;;;;49543:13;:28;;;49517:8;:23;;;:54;;;;;;;;;;;;;;;;;;49417:174;49222:384;47592:2130;;;49653:7;49649:2;49634:27;;49643:4;49634:27;;;;;;;;;;;;49672:42;49693:4;49699:2;49703:7;49712:1;49672:20;:42::i;:::-;47592:2130;;;;;:::o;39640:1109::-;39702:21;;:::i;:::-;39736:12;39751:7;39736:22;;39819:4;39800:15;:13;:15::i;:::-;:23;;:47;;;;;39834:13;;39827:4;:20;39800:47;39796:886;;;39868:31;39902:11;:17;39914:4;39902:17;;;;;;;;;;;39868:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39943:9;:16;;;39938:729;;40014:1;39988:28;;:9;:14;;;:28;;;39984:101;;40052:9;40045:16;;;;;;39984:101;40387:261;40394:4;40387:261;;;40427:6;;;;;;;;40472:11;:17;40484:4;40472:17;;;;;;;;;;;40460:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40546:1;40520:28;;:9;:14;;;:28;;;40516:109;;40588:9;40581:16;;;;;;40516:109;40387:261;;;39938:729;39796:886;;40710:31;;;;;;;;;;;;;;39640:1109;;;;:::o;15149:191::-;15223:16;15242:6;;;;;;;;;;;15223:25;;15268:8;15259:6;;:17;;;;;;;;;;;;;;;;;;15323:8;15292:40;;15313:8;15292:40;;;;;;;;;;;;15149:191;;:::o;79770:576::-;79840:6;;;;;;;;;;;79839:7;79831:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;79920:9;;79891:25;79909:6;79891:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:38;;79883:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;79974:5;79971:328;;;80024:38;80055:6;80024:14;:26;80039:10;80024:26;;;;;;;;;;;;;;;;:30;;:38;;;;:::i;:::-;79995:14;:26;80010:10;79995:26;;;;;;;;;;;;;;;:67;;;;79971:328;;;80137:9;80127:6;80111:15;;:22;;;;:::i;:::-;:35;;80103:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;80246:41;80280:6;80246:17;:29;80264:10;80246:29;;;;;;;;;;;;;;;;:33;;:41;;;;:::i;:::-;80214:17;:29;80232:10;80214:29;;;;;;;;;;;;;;;:73;;;;79971:328;80309:29;80319:10;80331:6;80309:9;:29::i;:::-;79770:576;;:::o;16580:326::-;16640:4;16897:1;16875:7;:19;;;:23;16868:30;;16580:326;;;:::o;53337:667::-;53500:4;53537:2;53521:36;;;53558:12;:10;:12::i;:::-;53572:4;53578:7;53587:5;53521:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53517:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53772:1;53755:6;:13;:18;53751:235;;;53801:40;;;;;;;;;;;;;;53751:235;53944:6;53938:13;53929:6;53925:2;53921:15;53914:38;53517:480;53650:45;;;53640:55;;;:6;:55;;;;53633:62;;;53337:667;;;;;;:::o;80354:116::-;80414:13;80446:16;80439:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80354:116;:::o;10165:723::-;10221:13;10451:1;10442:5;:10;10438:53;;;10469:10;;;;;;;;;;;;;;;;;;;;;10438:53;10501:12;10516:5;10501:20;;10532:14;10557:78;10572:1;10564:4;:9;10557:78;;10590:8;;;;;:::i;:::-;;;;10621:2;10613:10;;;;;:::i;:::-;;;10557:78;;;10645:19;10677:6;10667:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10645:39;;10695:154;10711:1;10702:5;:10;10695:154;;10739:1;10729:11;;;;;:::i;:::-;;;10806:2;10798:5;:10;;;;:::i;:::-;10785:2;:24;;;;:::i;:::-;10772:39;;10755:6;10762;10755:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;10835:2;10826:11;;;;;:::i;:::-;;;10695:154;;;10873:6;10859:21;;;;;10165:723;;;;:::o;45141:163::-;45264:32;45270:2;45274:8;45284:5;45291:4;45264:5;:32::i;:::-;45141:163;;;:::o;54652:159::-;;;;;:::o;55470:158::-;;;;;:::o;45563:1775::-;45702:20;45725:13;;45702:36;;45767:1;45753:16;;:2;:16;;;45749:48;;;45778:19;;;;;;;;;;;;;;45749:48;45824:1;45812:8;:13;45808:44;;;45834:18;;;;;;;;;;;;;;45808:44;45865:61;45895:1;45899:2;45903:12;45917:8;45865:21;:61::i;:::-;46238:8;46203:12;:16;46216:2;46203:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46302:8;46262:12;:16;46275:2;46262:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46361:2;46328:11;:25;46340:12;46328:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;46428:15;46378:11;:25;46390:12;46378:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;46461:20;46484:12;46461:35;;46511:11;46540:8;46525:12;:23;46511:37;;46569:4;:23;;;;;46577:15;:2;:13;;;:15::i;:::-;46569:23;46565:641;;;46613:314;46669:12;46665:2;46644:38;;46661:1;46644:38;;;;;;;;;;;;46710:69;46749:1;46753:2;46757:14;;;;;;46773:5;46710:30;:69::i;:::-;46705:174;;46815:40;;;;;;;;;;;;;;46705:174;46922:3;46906:12;:19;;46613:314;;47008:12;46991:13;;:29;46987:43;;47022:8;;;46987:43;46565:641;;;47071:120;47127:14;;;;;;47123:2;47102:40;;47119:1;47102:40;;;;;;;;;;;;47186:3;47170:12;:19;;47071:120;;46565:641;47236:12;47220:13;:28;;;;45563:1775;;47270:60;47299:1;47303:2;47307:12;47321:8;47270:20;:60::i;:::-;45563:1775;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1547:303::-;1618:5;1667:3;1660:4;1652:6;1648:17;1644:27;1634:2;;1685:1;1682;1675:12;1634:2;1725:6;1712:20;1750:94;1840:3;1832:6;1825:4;1817:6;1813:17;1750:94;:::i;:::-;1741:103;;1624:226;;;;;:::o;1856:133::-;1899:5;1937:6;1924:20;1915:29;;1953:30;1977:5;1953:30;:::i;:::-;1905:84;;;;:::o;1995:137::-;2040:5;2078:6;2065:20;2056:29;;2094:32;2120:5;2094:32;:::i;:::-;2046:86;;;;:::o;2138:141::-;2194:5;2225:6;2219:13;2210:22;;2241:32;2267:5;2241:32;:::i;:::-;2200:79;;;;:::o;2298:271::-;2353:5;2402:3;2395:4;2387:6;2383:17;2379:27;2369:2;;2420:1;2417;2410:12;2369:2;2460:6;2447:20;2485:78;2559:3;2551:6;2544:4;2536:6;2532:17;2485:78;:::i;:::-;2476:87;;2359:210;;;;;:::o;2589:352::-;2647:8;2657:6;2707:3;2700:4;2692:6;2688:17;2684:27;2674:2;;2725:1;2722;2715:12;2674:2;2761:6;2748:20;2738:30;;2791:18;2783:6;2780:30;2777:2;;;2823:1;2820;2813:12;2777:2;2860:4;2852:6;2848:17;2836:29;;2914:3;2906:4;2898:6;2894:17;2884:8;2880:32;2877:41;2874:2;;;2931:1;2928;2921:12;2874:2;2664:277;;;;;:::o;2961:273::-;3017:5;3066:3;3059:4;3051:6;3047:17;3043:27;3033:2;;3084:1;3081;3074:12;3033:2;3124:6;3111:20;3149:79;3224:3;3216:6;3209:4;3201:6;3197:17;3149:79;:::i;:::-;3140:88;;3023:211;;;;;:::o;3240:139::-;3286:5;3324:6;3311:20;3302:29;;3340:33;3367:5;3340:33;:::i;:::-;3292:87;;;;:::o;3385:262::-;3444:6;3493:2;3481:9;3472:7;3468:23;3464:32;3461:2;;;3509:1;3506;3499:12;3461:2;3552:1;3577:53;3622:7;3613:6;3602:9;3598:22;3577:53;:::i;:::-;3567:63;;3523:117;3451:196;;;;:::o;3653:407::-;3721:6;3729;3778:2;3766:9;3757:7;3753:23;3749:32;3746:2;;;3794:1;3791;3784:12;3746:2;3837:1;3862:53;3907:7;3898:6;3887:9;3883:22;3862:53;:::i;:::-;3852:63;;3808:117;3964:2;3990:53;4035:7;4026:6;4015:9;4011:22;3990:53;:::i;:::-;3980:63;;3935:118;3736:324;;;;;:::o;4066:552::-;4143:6;4151;4159;4208:2;4196:9;4187:7;4183:23;4179:32;4176:2;;;4224:1;4221;4214:12;4176:2;4267:1;4292:53;4337:7;4328:6;4317:9;4313:22;4292:53;:::i;:::-;4282:63;;4238:117;4394:2;4420:53;4465:7;4456:6;4445:9;4441:22;4420:53;:::i;:::-;4410:63;;4365:118;4522:2;4548:53;4593:7;4584:6;4573:9;4569:22;4548:53;:::i;:::-;4538:63;;4493:118;4166:452;;;;;:::o;4624:809::-;4719:6;4727;4735;4743;4792:3;4780:9;4771:7;4767:23;4763:33;4760:2;;;4809:1;4806;4799:12;4760:2;4852:1;4877:53;4922:7;4913:6;4902:9;4898:22;4877:53;:::i;:::-;4867:63;;4823:117;4979:2;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4950:118;5107:2;5133:53;5178:7;5169:6;5158:9;5154:22;5133:53;:::i;:::-;5123:63;;5078:118;5263:2;5252:9;5248:18;5235:32;5294:18;5286:6;5283:30;5280:2;;;5326:1;5323;5316:12;5280:2;5354:62;5408:7;5399:6;5388:9;5384:22;5354:62;:::i;:::-;5344:72;;5206:220;4750:683;;;;;;;:::o;5439:401::-;5504:6;5512;5561:2;5549:9;5540:7;5536:23;5532:32;5529:2;;;5577:1;5574;5567:12;5529:2;5620:1;5645:53;5690:7;5681:6;5670:9;5666:22;5645:53;:::i;:::-;5635:63;;5591:117;5747:2;5773:50;5815:7;5806:6;5795:9;5791:22;5773:50;:::i;:::-;5763:60;;5718:115;5519:321;;;;;:::o;5846:407::-;5914:6;5922;5971:2;5959:9;5950:7;5946:23;5942:32;5939:2;;;5987:1;5984;5977:12;5939:2;6030:1;6055:53;6100:7;6091:6;6080:9;6076:22;6055:53;:::i;:::-;6045:63;;6001:117;6157:2;6183:53;6228:7;6219:6;6208:9;6204:22;6183:53;:::i;:::-;6173:63;;6128:118;5929:324;;;;;:::o;6259:405::-;6343:6;6392:2;6380:9;6371:7;6367:23;6363:32;6360:2;;;6408:1;6405;6398:12;6360:2;6479:1;6468:9;6464:17;6451:31;6509:18;6501:6;6498:30;6495:2;;;6541:1;6538;6531:12;6495:2;6569:78;6639:7;6630:6;6619:9;6615:22;6569:78;:::i;:::-;6559:88;;6422:235;6350:314;;;;:::o;6670:260::-;6728:6;6777:2;6765:9;6756:7;6752:23;6748:32;6745:2;;;6793:1;6790;6783:12;6745:2;6836:1;6861:52;6905:7;6896:6;6885:9;6881:22;6861:52;:::i;:::-;6851:62;;6807:116;6735:195;;;;:::o;6936:282::-;7005:6;7054:2;7042:9;7033:7;7029:23;7025:32;7022:2;;;7070:1;7067;7060:12;7022:2;7113:1;7138:63;7193:7;7184:6;7173:9;7169:22;7138:63;:::i;:::-;7128:73;;7084:127;7012:206;;;;:::o;7224:395::-;7295:6;7303;7352:2;7340:9;7331:7;7327:23;7323:32;7320:2;;;7368:1;7365;7358:12;7320:2;7439:1;7428:9;7424:17;7411:31;7469:18;7461:6;7458:30;7455:2;;;7501:1;7498;7491:12;7455:2;7537:65;7594:7;7585:6;7574:9;7570:22;7537:65;:::i;:::-;7519:83;;;;7382:230;7310:309;;;;;:::o;7625:375::-;7694:6;7743:2;7731:9;7722:7;7718:23;7714:32;7711:2;;;7759:1;7756;7749:12;7711:2;7830:1;7819:9;7815:17;7802:31;7860:18;7852:6;7849:30;7846:2;;;7892:1;7889;7882:12;7846:2;7920:63;7975:7;7966:6;7955:9;7951:22;7920:63;:::i;:::-;7910:73;;7773:220;7701:299;;;;:::o;8006:262::-;8065:6;8114:2;8102:9;8093:7;8089:23;8085:32;8082:2;;;8130:1;8127;8120:12;8082:2;8173:1;8198:53;8243:7;8234:6;8223:9;8219:22;8198:53;:::i;:::-;8188:63;;8144:117;8072:196;;;;:::o;8274:118::-;8361:24;8379:5;8361:24;:::i;:::-;8356:3;8349:37;8339:53;;:::o;8398:109::-;8479:21;8494:5;8479:21;:::i;:::-;8474:3;8467:34;8457:50;;:::o;8513:360::-;8599:3;8627:38;8659:5;8627:38;:::i;:::-;8681:70;8744:6;8739:3;8681:70;:::i;:::-;8674:77;;8760:52;8805:6;8800:3;8793:4;8786:5;8782:16;8760:52;:::i;:::-;8837:29;8859:6;8837:29;:::i;:::-;8832:3;8828:39;8821:46;;8603:270;;;;;:::o;8879:364::-;8967:3;8995:39;9028:5;8995:39;:::i;:::-;9050:71;9114:6;9109:3;9050:71;:::i;:::-;9043:78;;9130:52;9175:6;9170:3;9163:4;9156:5;9152:16;9130:52;:::i;:::-;9207:29;9229:6;9207:29;:::i;:::-;9202:3;9198:39;9191:46;;8971:272;;;;;:::o;9249:377::-;9355:3;9383:39;9416:5;9383:39;:::i;:::-;9438:89;9520:6;9515:3;9438:89;:::i;:::-;9431:96;;9536:52;9581:6;9576:3;9569:4;9562:5;9558:16;9536:52;:::i;:::-;9613:6;9608:3;9604:16;9597:23;;9359:267;;;;;:::o;9632:366::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9778:220;;;:::o;10004:366::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10150:220;;;:::o;10376:366::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10522:220;;;:::o;10748:366::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10894:220;;;:::o;11120:366::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11266:220;;;:::o;11492:366::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11638:220;;;:::o;11864:366::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;12010:220;;;:::o;12236:400::-;12396:3;12417:84;12499:1;12494:3;12417:84;:::i;:::-;12410:91;;12510:93;12599:3;12510:93;:::i;:::-;12628:1;12623:3;12619:11;12612:18;;12400:236;;;:::o;12642:366::-;12784:3;12805:67;12869:2;12864:3;12805:67;:::i;:::-;12798:74;;12881:93;12970:3;12881:93;:::i;:::-;12999:2;12994:3;12990:12;12983:19;;12788:220;;;:::o;13014:366::-;13156:3;13177:67;13241:2;13236:3;13177:67;:::i;:::-;13170:74;;13253:93;13342:3;13253:93;:::i;:::-;13371:2;13366:3;13362:12;13355:19;;13160:220;;;:::o;13386:366::-;13528:3;13549:67;13613:2;13608:3;13549:67;:::i;:::-;13542:74;;13625:93;13714:3;13625:93;:::i;:::-;13743:2;13738:3;13734:12;13727:19;;13532:220;;;:::o;13758:366::-;13900:3;13921:67;13985:2;13980:3;13921:67;:::i;:::-;13914:74;;13997:93;14086:3;13997:93;:::i;:::-;14115:2;14110:3;14106:12;14099:19;;13904:220;;;:::o;14130:366::-;14272:3;14293:67;14357:2;14352:3;14293:67;:::i;:::-;14286:74;;14369:93;14458:3;14369:93;:::i;:::-;14487:2;14482:3;14478:12;14471:19;;14276:220;;;:::o;14502:366::-;14644:3;14665:67;14729:2;14724:3;14665:67;:::i;:::-;14658:74;;14741:93;14830:3;14741:93;:::i;:::-;14859:2;14854:3;14850:12;14843:19;;14648:220;;;:::o;14874:366::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;15020:220;;;:::o;15246:366::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15392:220;;;:::o;15618:118::-;15705:24;15723:5;15705:24;:::i;:::-;15700:3;15693:37;15683:53;;:::o;15742:701::-;16023:3;16045:95;16136:3;16127:6;16045:95;:::i;:::-;16038:102;;16157:95;16248:3;16239:6;16157:95;:::i;:::-;16150:102;;16269:148;16413:3;16269:148;:::i;:::-;16262:155;;16434:3;16427:10;;16027:416;;;;;:::o;16449:222::-;16542:4;16580:2;16569:9;16565:18;16557:26;;16593:71;16661:1;16650:9;16646:17;16637:6;16593:71;:::i;:::-;16547:124;;;;:::o;16677:640::-;16872:4;16910:3;16899:9;16895:19;16887:27;;16924:71;16992:1;16981:9;16977:17;16968:6;16924:71;:::i;:::-;17005:72;17073:2;17062:9;17058:18;17049:6;17005:72;:::i;:::-;17087;17155:2;17144:9;17140:18;17131:6;17087:72;:::i;:::-;17206:9;17200:4;17196:20;17191:2;17180:9;17176:18;17169:48;17234:76;17305:4;17296:6;17234:76;:::i;:::-;17226:84;;16877:440;;;;;;;:::o;17323:210::-;17410:4;17448:2;17437:9;17433:18;17425:26;;17461:65;17523:1;17512:9;17508:17;17499:6;17461:65;:::i;:::-;17415:118;;;;:::o;17539:313::-;17652:4;17690:2;17679:9;17675:18;17667:26;;17739:9;17733:4;17729:20;17725:1;17714:9;17710:17;17703:47;17767:78;17840:4;17831:6;17767:78;:::i;:::-;17759:86;;17657:195;;;;:::o;17858:419::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:131;18265:4;18139:131;:::i;:::-;18131:139;;18029:248;;;:::o;18283:419::-;18449:4;18487:2;18476:9;18472:18;18464:26;;18536:9;18530:4;18526:20;18522:1;18511:9;18507:17;18500:47;18564:131;18690:4;18564:131;:::i;:::-;18556:139;;18454:248;;;:::o;18708:419::-;18874:4;18912:2;18901:9;18897:18;18889:26;;18961:9;18955:4;18951:20;18947:1;18936:9;18932:17;18925:47;18989:131;19115:4;18989:131;:::i;:::-;18981:139;;18879:248;;;:::o;19133:419::-;19299:4;19337:2;19326:9;19322:18;19314:26;;19386:9;19380:4;19376:20;19372:1;19361:9;19357:17;19350:47;19414:131;19540:4;19414:131;:::i;:::-;19406:139;;19304:248;;;:::o;19558:419::-;19724:4;19762:2;19751:9;19747:18;19739:26;;19811:9;19805:4;19801:20;19797:1;19786:9;19782:17;19775:47;19839:131;19965:4;19839:131;:::i;:::-;19831:139;;19729:248;;;:::o;19983:419::-;20149:4;20187:2;20176:9;20172:18;20164:26;;20236:9;20230:4;20226:20;20222:1;20211:9;20207:17;20200:47;20264:131;20390:4;20264:131;:::i;:::-;20256:139;;20154:248;;;:::o;20408:419::-;20574:4;20612:2;20601:9;20597:18;20589:26;;20661:9;20655:4;20651:20;20647:1;20636:9;20632:17;20625:47;20689:131;20815:4;20689:131;:::i;:::-;20681:139;;20579:248;;;:::o;20833:419::-;20999:4;21037:2;21026:9;21022:18;21014:26;;21086:9;21080:4;21076:20;21072:1;21061:9;21057:17;21050:47;21114:131;21240:4;21114:131;:::i;:::-;21106:139;;21004:248;;;:::o;21258:419::-;21424:4;21462:2;21451:9;21447:18;21439:26;;21511:9;21505:4;21501:20;21497:1;21486:9;21482:17;21475:47;21539:131;21665:4;21539:131;:::i;:::-;21531:139;;21429:248;;;:::o;21683:419::-;21849:4;21887:2;21876:9;21872:18;21864:26;;21936:9;21930:4;21926:20;21922:1;21911:9;21907:17;21900:47;21964:131;22090:4;21964:131;:::i;:::-;21956:139;;21854:248;;;:::o;22108:419::-;22274:4;22312:2;22301:9;22297:18;22289:26;;22361:9;22355:4;22351:20;22347:1;22336:9;22332:17;22325:47;22389:131;22515:4;22389:131;:::i;:::-;22381:139;;22279:248;;;:::o;22533:419::-;22699:4;22737:2;22726:9;22722:18;22714:26;;22786:9;22780:4;22776:20;22772:1;22761:9;22757:17;22750:47;22814:131;22940:4;22814:131;:::i;:::-;22806:139;;22704:248;;;:::o;22958:419::-;23124:4;23162:2;23151:9;23147:18;23139:26;;23211:9;23205:4;23201:20;23197:1;23186:9;23182:17;23175:47;23239:131;23365:4;23239:131;:::i;:::-;23231:139;;23129:248;;;:::o;23383:419::-;23549:4;23587:2;23576:9;23572:18;23564:26;;23636:9;23630:4;23626:20;23622:1;23611:9;23607:17;23600:47;23664:131;23790:4;23664:131;:::i;:::-;23656:139;;23554:248;;;:::o;23808:419::-;23974:4;24012:2;24001:9;23997:18;23989:26;;24061:9;24055:4;24051:20;24047:1;24036:9;24032:17;24025:47;24089:131;24215:4;24089:131;:::i;:::-;24081:139;;23979:248;;;:::o;24233:222::-;24326:4;24364:2;24353:9;24349:18;24341:26;;24377:71;24445:1;24434:9;24430:17;24421:6;24377:71;:::i;:::-;24331:124;;;;:::o;24461:129::-;24495:6;24522:20;;:::i;:::-;24512:30;;24551:33;24579:4;24571:6;24551:33;:::i;:::-;24502:88;;;:::o;24596:75::-;24629:6;24662:2;24656:9;24646:19;;24636:35;:::o;24677:311::-;24754:4;24844:18;24836:6;24833:30;24830:2;;;24866:18;;:::i;:::-;24830:2;24916:4;24908:6;24904:17;24896:25;;24976:4;24970;24966:15;24958:23;;24759:229;;;:::o;24994:307::-;25055:4;25145:18;25137:6;25134:30;25131:2;;;25167:18;;:::i;:::-;25131:2;25205:29;25227:6;25205:29;:::i;:::-;25197:37;;25289:4;25283;25279:15;25271:23;;25060:241;;;:::o;25307:308::-;25369:4;25459:18;25451:6;25448:30;25445:2;;;25481:18;;:::i;:::-;25445:2;25519:29;25541:6;25519:29;:::i;:::-;25511:37;;25603:4;25597;25593:15;25585:23;;25374:241;;;:::o;25621:98::-;25672:6;25706:5;25700:12;25690:22;;25679:40;;;:::o;25725:99::-;25777:6;25811:5;25805:12;25795:22;;25784:40;;;:::o;25830:168::-;25913:11;25947:6;25942:3;25935:19;25987:4;25982:3;25978:14;25963:29;;25925:73;;;;:::o;26004:169::-;26088:11;26122:6;26117:3;26110:19;26162:4;26157:3;26153:14;26138:29;;26100:73;;;;:::o;26179:148::-;26281:11;26318:3;26303:18;;26293:34;;;;:::o;26333:305::-;26373:3;26392:20;26410:1;26392:20;:::i;:::-;26387:25;;26426:20;26444:1;26426:20;:::i;:::-;26421:25;;26580:1;26512:66;26508:74;26505:1;26502:81;26499:2;;;26586:18;;:::i;:::-;26499:2;26630:1;26627;26623:9;26616:16;;26377:261;;;;:::o;26644:185::-;26684:1;26701:20;26719:1;26701:20;:::i;:::-;26696:25;;26735:20;26753:1;26735:20;:::i;:::-;26730:25;;26774:1;26764:2;;26779:18;;:::i;:::-;26764:2;26821:1;26818;26814:9;26809:14;;26686:143;;;;:::o;26835:348::-;26875:7;26898:20;26916:1;26898:20;:::i;:::-;26893:25;;26932:20;26950:1;26932:20;:::i;:::-;26927:25;;27120:1;27052:66;27048:74;27045:1;27042:81;27037:1;27030:9;27023:17;27019:105;27016:2;;;27127:18;;:::i;:::-;27016:2;27175:1;27172;27168:9;27157:20;;26883:300;;;;:::o;27189:191::-;27229:4;27249:20;27267:1;27249:20;:::i;:::-;27244:25;;27283:20;27301:1;27283:20;:::i;:::-;27278:25;;27322:1;27319;27316:8;27313:2;;;27327:18;;:::i;:::-;27313:2;27372:1;27369;27365:9;27357:17;;27234:146;;;;:::o;27386:96::-;27423:7;27452:24;27470:5;27452:24;:::i;:::-;27441:35;;27431:51;;;:::o;27488:90::-;27522:7;27565:5;27558:13;27551:21;27540:32;;27530:48;;;:::o;27584:149::-;27620:7;27660:66;27653:5;27649:78;27638:89;;27628:105;;;:::o;27739:126::-;27776:7;27816:42;27809:5;27805:54;27794:65;;27784:81;;;:::o;27871:77::-;27908:7;27937:5;27926:16;;27916:32;;;:::o;27954:154::-;28038:6;28033:3;28028;28015:30;28100:1;28091:6;28086:3;28082:16;28075:27;28005:103;;;:::o;28114:307::-;28182:1;28192:113;28206:6;28203:1;28200:13;28192:113;;;28291:1;28286:3;28282:11;28276:18;28272:1;28267:3;28263:11;28256:39;28228:2;28225:1;28221:10;28216:15;;28192:113;;;28323:6;28320:1;28317:13;28314:2;;;28403:1;28394:6;28389:3;28385:16;28378:27;28314:2;28163:258;;;;:::o;28427:320::-;28471:6;28508:1;28502:4;28498:12;28488:22;;28555:1;28549:4;28545:12;28576:18;28566:2;;28632:4;28624:6;28620:17;28610:27;;28566:2;28694;28686:6;28683:14;28663:18;28660:38;28657:2;;;28713:18;;:::i;:::-;28657:2;28478:269;;;;:::o;28753:281::-;28836:27;28858:4;28836:27;:::i;:::-;28828:6;28824:40;28966:6;28954:10;28951:22;28930:18;28918:10;28915:34;28912:62;28909:2;;;28977:18;;:::i;:::-;28909:2;29017:10;29013:2;29006:22;28796:238;;;:::o;29040:233::-;29079:3;29102:24;29120:5;29102:24;:::i;:::-;29093:33;;29148:66;29141:5;29138:77;29135:2;;;29218:18;;:::i;:::-;29135:2;29265:1;29258:5;29254:13;29247:20;;29083:190;;;:::o;29279:176::-;29311:1;29328:20;29346:1;29328:20;:::i;:::-;29323:25;;29362:20;29380:1;29362:20;:::i;:::-;29357:25;;29401:1;29391:2;;29406:18;;:::i;:::-;29391:2;29447:1;29444;29440:9;29435:14;;29313:142;;;;:::o;29461:180::-;29509:77;29506:1;29499:88;29606:4;29603:1;29596:15;29630:4;29627:1;29620:15;29647:180;29695:77;29692:1;29685:88;29792:4;29789:1;29782:15;29816:4;29813:1;29806:15;29833:180;29881:77;29878:1;29871:88;29978:4;29975:1;29968:15;30002:4;29999:1;29992:15;30019:180;30067:77;30064:1;30057:88;30164:4;30161:1;30154:15;30188:4;30185:1;30178:15;30205:102;30246:6;30297:2;30293:7;30288:2;30281:5;30277:14;30273:28;30263:38;;30253:54;;;:::o;30313:171::-;30453:23;30449:1;30441:6;30437:14;30430:47;30419:65;:::o;30490:225::-;30630:34;30626:1;30618:6;30614:14;30607:58;30699:8;30694:2;30686:6;30682:15;30675:33;30596:119;:::o;30721:179::-;30861:31;30857:1;30849:6;30845:14;30838:55;30827:73;:::o;30906:229::-;31046:34;31042:1;31034:6;31030:14;31023:58;31115:12;31110:2;31102:6;31098:15;31091:37;31012:123;:::o;31141:232::-;31281:34;31277:1;31269:6;31265:14;31258:58;31350:15;31345:2;31337:6;31333:15;31326:40;31247:126;:::o;31379:181::-;31519:33;31515:1;31507:6;31503:14;31496:57;31485:75;:::o;31566:180::-;31706:32;31702:1;31694:6;31690:14;31683:56;31672:74;:::o;31752:155::-;31892:7;31888:1;31880:6;31876:14;31869:31;31858:49;:::o;31913:182::-;32053:34;32049:1;32041:6;32037:14;32030:58;32019:76;:::o;32101:232::-;32241:34;32237:1;32229:6;32225:14;32218:58;32310:15;32305:2;32297:6;32293:15;32286:40;32207:126;:::o;32339:235::-;32479:34;32475:1;32467:6;32463:14;32456:58;32548:18;32543:2;32535:6;32531:15;32524:43;32445:129;:::o;32580:176::-;32720:28;32716:1;32708:6;32704:14;32697:52;32686:70;:::o;32762:181::-;32902:33;32898:1;32890:6;32886:14;32879:57;32868:75;:::o;32949:220::-;33089:34;33085:1;33077:6;33073:14;33066:58;33158:3;33153:2;33145:6;33141:15;33134:28;33055:114;:::o;33175:176::-;33315:28;33311:1;33303:6;33299:14;33292:52;33281:70;:::o;33357:235::-;33497:34;33493:1;33485:6;33481:14;33474:58;33566:18;33561:2;33553:6;33549:15;33542:43;33463:129;:::o;33598:122::-;33671:24;33689:5;33671:24;:::i;:::-;33664:5;33661:35;33651:2;;33710:1;33707;33700:12;33651:2;33641:79;:::o;33726:116::-;33796:21;33811:5;33796:21;:::i;:::-;33789:5;33786:32;33776:2;;33832:1;33829;33822:12;33776:2;33766:76;:::o;33848:120::-;33920:23;33937:5;33920:23;:::i;:::-;33913:5;33910:34;33900:2;;33958:1;33955;33948:12;33900:2;33890:78;:::o;33974:122::-;34047:24;34065:5;34047:24;:::i;:::-;34040:5;34037:35;34027:2;;34086:1;34083;34076:12;34027:2;34017:79;:::o

Swarm Source

ipfs://36813863afd98b73d04a8bbc8bbfe910e09ee3868703ab961c9acee29281fbbc
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.