ETH Price: $3,447.84 (-2.72%)
Gas: 3 Gwei

Token

Kangaroos Wild World - Kangaroos (KangaroosKWW)
 

Overview

Max Total Supply

354 KangaroosKWW

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
7 KangaroosKWW
0xaa1bb5241f596bd65ba20da8814004a84b1b6b58
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:
KWWKangaroo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-20
*/

// SPDX-License-Identifier: MIT

// File: contracts/IKWWData.sol


pragma solidity ^0.8.4;

interface IKWWData { 
    struct KangarooDetails{
        //Timestamp of the date the kangaroo is born
        uint64 birthTime;
        //Dad token id 
        uint32 dadId;
        //Mom token id
        uint32 momId;
        //Couple token id 
        uint32 coupleId;
        //If the kangaroo is on boat, the boatId will be set here
        uint16 boatId;
        //If the kangaroo moved to another land, the new landId will be set here
	    uint16 landId;
        //The generation of the kangaroo (genesis - gen0) NOT CHANGING
		uint8 gen;
        //Status of the kangaroo in the game
        // 0 - Australian
        // 1 - Sailing
        // 2 - Kangaroo Island
        // 3 - Pregnant
		uint8 status;
        //Type of the kangaroo (Pirate, Native, etc.)
        uint8 bornState;
    }

    struct CoupleDetails{
        //Timestamp when the pregnancy started
        uint64 pregnancyStarted;
        uint8 babiesCounter;
        //false - wild world, true - hospital
        bool paidHospital;
        bool activePregnant;
    }

    function initKangaroo(uint32 tokenId, uint32 dadId, uint32 momId) external;
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (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 substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// 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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// 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: @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: contracts/ERC721AK.sol


// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721AK is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 1;

    uint256 internal immutable maxBatchSize;

    // 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) private _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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    function _safeMint(address to, uint256 quantity, uint32 dadId, uint32 momId) internal {
        _safeMint(to, quantity, "", dadId, momId);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data,
        uint32 dadId,
        uint32 momId
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
        _afterMinting(startTokenId, quantity, dadId, momId);
    }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, 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;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > currentIndex - 1) {
            endIndex = currentIndex - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    function _afterMinting(
        uint256 startTokenId,
        uint256 quantity,
        uint32 momId,
        uint32 dadId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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 {}
}

// File: contracts/KWWKangaroo.sol


pragma solidity ^0.8.4;








//KKKKKKKKK    KKKKKKKWWWWWWWW                           WWWWWWWWWWWWWWWW                           WWWWWWWW
//K:::::::K    K:::::KW::::::W                           W::::::WW::::::W                           W::::::W
//K:::::::K    K:::::KW::::::W                           W::::::WW::::::W                           W::::::W
//K:::::::K   K::::::KW::::::W                           W::::::WW::::::W                           W::::::W
//KK::::::K  K:::::KKK W:::::W           WWWWW           W:::::W  W:::::W           WWWWW           W:::::W
//  K:::::K K:::::K     W:::::W         W:::::W         W:::::W    W:::::W         W:::::W         W:::::W
//  K::::::K:::::K       W:::::W       W:::::::W       W:::::W      W:::::W       W:::::::W       W:::::W
//  K:::::::::::K         W:::::W     W:::::::::W     W:::::W        W:::::W     W:::::::::W     W:::::W
//  K:::::::::::K          W:::::W   W:::::W:::::W   W:::::W          W:::::W   W:::::W:::::W   W:::::W
//  K::::::K:::::K          W:::::W W:::::W W:::::W W:::::W            W:::::W W:::::W W:::::W W:::::W
//  K:::::K K:::::K          W:::::W:::::W   W:::::W:::::W              W:::::W:::::W   W:::::W:::::W
//KK::::::K  K:::::KKK        W:::::::::W     W:::::::::W                W:::::::::W     W:::::::::W
//K:::::::K   K::::::K         W:::::::W       W:::::::W                  W:::::::W       W:::::::W
//K:::::::K    K:::::K          W:::::W         W:::::W                    W:::::W         W:::::W
//K:::::::K    K:::::K           W:::W           W:::W                      W:::W           W:::W
//KKKKKKKKK    KKKKKKK            WWW             WWW                        WWW             WWW

contract KWWKangaroo is ERC721AK, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public price = 0.18 ether;
    uint256 public coupleEachPrice = 0.15 ether;
    uint256 public genesisSupply = 2004;
    
    string public baseUri = "";
    string public notRevealedUri = "";
    string public extension = ".json";

    bytes32 public whitelistMT;

    address withdrawAddress;
    
    uint8 public whitelistMaxAmount = 4;
    uint8 public publicMaxAmount = 4;

    bool public whitelistLive;
    bool public publicLive;
    bool public revealed;

    IKWWData dataContract;

    constructor()
        ERC721AK(
            "Kangaroos Wild World - Kangaroos",
            "KangaroosKWW",
            genesisSupply
        )
    {}

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = revealed ? baseUri : notRevealedUri;
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        extension
                    )
                )
                : "";
    }

    function getPriceForAmount(uint8 amount) public view returns(uint256){
        return uint256(amount).div(2).mul(coupleEachPrice.mul(2)) + uint256(amount).mod(2).mul(price);
    }

    function whitelistMint(uint8 amount, bytes32[] calldata proof)
        public
        payable
        isMintValid(amount)
    {
        require(address(dataContract) != address(0), "Data Contract not set");
        require(whitelistLive, "Whitelist sale is not live");
        require(amount > 0, "Amount not valid");
        uint256 currentPrice = getPriceForAmount(amount);
        require(msg.value >= currentPrice, "price is invalid");
        require(
            checkWhitelist(proof),
            "Your wallet is not whitelisted."
        );
        require(
            _numberMinted(msg.sender) + amount <= whitelistMaxAmount,
            "You've minted the maximum amount of kangaroos that you can"
        );
        _safeMint(msg.sender, amount);
    }

    function publicMint(uint8 amount) public payable isMintValid(amount) {
        require(address(dataContract) != address(0), "Data Contract not set");
        require(publicLive, "Public sale is not live");
        require(amount > 0, "Amount not valid");
        uint256 currentPrice = getPriceForAmount(amount);
        require(msg.value >= currentPrice, "price is invalid");
        require(
            _numberMinted(msg.sender) + amount <= publicMaxAmount,
            "You've minted the maximum amount of kangaroos that you can"
        );
        _safeMint(msg.sender, amount);
    }

    function birth(uint32 dadId, uint32 momId, address to, uint8 numBabies) public {
        require(address(dataContract) != address(0), "Data contract not initialized" );
        require(owner() == msg.sender || address(dataContract) == msg.sender, "permission denied");

        _safeMint(to, numBabies, dadId, momId);
    }

    function _afterMinting(uint256 startTokenId, uint256 quantity, uint32 dadId, uint32 momId) override internal {
        for(uint256 i = startTokenId; i < startTokenId + quantity; i++){
            dataContract.initKangaroo(uint32(i), dadId, momId);
        }
    }


    function checkWhitelist(bytes32[] memory proof)
        public
        view
        returns (bool)
    {
        return
            MerkleProof.verify(
                proof,
                whitelistMT,
                keccak256(abi.encodePacked(msg.sender))
            );
    }

    /**
    //
    // ONLY OWNER
    //
    **/

    function checkNumMinted(address user) public view returns (uint256) {
        return _numberMinted(user);
    }

    modifier isMintValid(uint256 amount) {
        require(
            totalSupply() + amount < genesisSupply + 1,
            "Not enough remaining for mint amount requested"
        );
        require(amount > 0, "Quantity needs to be more than 0");
        _;
    }

    function founderMint(uint256 count, address to)
        public
        onlyOwner
        isMintValid(count)
    {
        require(address(dataContract) != address(0), "Data Contract not set");
        _safeMint(to, count);
    }

    function setMaxAmount(uint8 _whitelist, uint8 _public) public onlyOwner {
        whitelistMaxAmount = _whitelist;
        publicMaxAmount = _public;
    }

    function setDataContract(address _contract) public onlyOwner{
        dataContract = IKWWData(_contract);
    }

    function setWithdrawAddress(address _addr) public onlyOwner {
        withdrawAddress = _addr;
    }

    function setGenesisSupply(uint256 _supply) public onlyOwner {
        genesisSupply = _supply;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function setCoupleEachPrice(uint256 _price) public onlyOwner {
        coupleEachPrice = _price;
    }

    function setBaseUri(string calldata _baseUri) public onlyOwner {
        baseUri = _baseUri;
    }

    function setNotRevealedUri(string calldata _uri) public onlyOwner {
        notRevealedUri = _uri;
    }

    function setExtention(string calldata _ext) public onlyOwner {
        extension = _ext;
    }

    function setWhitelistMerkleTree(bytes32 _whitelist) external onlyOwner {
        whitelistMT = _whitelist;
    }

    function setMintStages(bool _wl, bool _public) public onlyOwner {
        whitelistLive = _wl;
        publicLive = _public;
    }

    function toggleReveal() public onlyOwner {
        revealed = !revealed;
    }

    function withdraw() public onlyOwner{
        (bool os, ) = payable(withdrawAddress).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"dadId","type":"uint32"},{"internalType":"uint32","name":"momId","type":"uint32"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint8","name":"numBabies","type":"uint8"}],"name":"birth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"checkNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coupleEachPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"founderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisSupply","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":"uint8","name":"amount","type":"uint8"}],"name":"getPriceForAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"_price","type":"uint256"}],"name":"setCoupleEachPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setDataContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ext","type":"string"}],"name":"setExtention","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setGenesisSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_whitelist","type":"uint8"},{"internalType":"uint8","name":"_public","type":"uint8"}],"name":"setMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wl","type":"bool"},{"internalType":"bool","name":"_public","type":"bool"}],"name":"setMintStages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setNotRevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelist","type":"bytes32"}],"name":"setWhitelistMerkleTree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setWithdrawAddress","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":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMaxAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60016000908155600781905567027f7d0bdb920000600955670214e8348c4f0000600a556107d4600b5560c0604081905260a08290526200004491600c919062000210565b506040805160208101918290526000908190526200006591600d9162000210565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200009491600e9162000210565b506010805461ffff60a01b191661010160a21b179055348015620000b757600080fd5b506040518060400160405280602081526020017f4b616e6761726f6f732057696c6420576f726c64202d204b616e6761726f6f738152506040518060400160405280600c81526020016b4b616e6761726f6f734b575760a01b815250600b54600081116200017b5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200019090600190602086019062000210565b508151620001a690600290602085019062000210565b5060805250620001b8905033620001be565b620002f3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200021e90620002b6565b90600052602060002090601f0160209004810192826200024257600085556200028d565b82601f106200025d57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028d57825182559160200191906001019062000270565b506200029b9291506200029f565b5090565b5b808211156200029b5760008155600101620002a0565b600181811c90821680620002cb57607f821691505b60208210811415620002ed57634e487b7160e01b600052602260045260246000fd5b50919050565b6080516133b76200031d600039600081816121c5015281816121ef015261261e01526133b76000f3fe6080604052600436106102ff5760003560e01c8063715018a611610190578063b88d4fde116100dc578063ccf2b28f11610095578063e7559b1e1161006f578063e7559b1e146108b4578063e985e9c5146108d4578063f2fde38b1461091d578063fe2e96ba1461093d57600080fd5b8063ccf2b28f14610868578063d7224ba014610888578063db1d25441461089e57600080fd5b8063b88d4fde146107a7578063b8dde112146107c7578063ba70732b146107e7578063bb54cc2714610807578063c17ecd1214610828578063c87b56dd1461084857600080fd5b806395ec1ff711610149578063a035b1fe11610123578063a035b1fe14610730578063a0bcfc7f14610746578063a22cb46514610766578063b7f751d81461078657600080fd5b806395ec1ff7146106da5780639979a194146106fa5780639abc83201461071b57600080fd5b8063715018a61461063f578063858e83b5146106545780638da5cb5b146106675780638f7ea51b1461068557806391b7f5ed146106a557806395d89b41146106c557600080fd5b80633ccfd60b1161024f57806358381669116102085780635c69cbac116101e25780635c69cbac146105bf57806361dea65a146105df5780636352211e146105ff57806370a082311461061f57600080fd5b806358381669146105775780635b8ad4291461058a5780635bfbd7691461059f57600080fd5b80633ccfd60b146104cb57806342842e0e146104e05780634ad7b029146105005780634bbf179b146105205780634f6ccce714610536578063518302271461055657600080fd5b80630d78f936116102bc57806323b872dd1161029657806323b872dd146104565780632d5537b0146104765780632f745c591461048b5780633ab1a494146104ab57600080fd5b80630d78f936146103ea57806318160ddd1461040e5780631ddf074f1461042357600080fd5b806301ffc9a71461030457806303959bb71461033957806306fdde031461035b578063081812fc1461037d578063081c8c44146103b5578063095ea7b3146103ca575b600080fd5b34801561031057600080fd5b5061032461031f366004612cbb565b61095d565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b50610359610354366004612a3b565b6109ca565b005b34801561036757600080fd5b50610370610a1f565b6040516103309190612fd6565b34801561038957600080fd5b5061039d610398366004612ca2565b610ab1565b6040516001600160a01b039091168152602001610330565b3480156103c157600080fd5b50610370610b3c565b3480156103d657600080fd5b506103596103e5366004612baf565b610bca565b3480156103f657600080fd5b50610400600a5481565b604051908152602001610330565b34801561041a57600080fd5b50600054610400565b34801561042f57600080fd5b5060105461044490600160a01b900460ff1681565b60405160ff9091168152602001610330565b34801561046257600080fd5b50610359610471366004612a89565b610ce2565b34801561048257600080fd5b50610370610ced565b34801561049757600080fd5b506104006104a6366004612baf565b610cfa565b3480156104b757600080fd5b506103596104c6366004612a3b565b610e68565b3480156104d757600080fd5b50610359610eb4565b3480156104ec57600080fd5b506103596104fb366004612a89565b610f41565b34801561050c57600080fd5b5061035961051b366004612c86565b610f5c565b34801561052c57600080fd5b50610400600b5481565b34801561054257600080fd5b50610400610551366004612ca2565b610fba565b34801561056257600080fd5b5060105461032490600160c01b900460ff1681565b610359610585366004612df9565b61101c565b34801561059657600080fd5b50610359611276565b3480156105ab57600080fd5b506104006105ba366004612dde565b6112c1565b3480156105cb57600080fd5b506103596105da366004612ca2565b611309565b3480156105eb57600080fd5b506103596105fa366004612d8a565b611338565b34801561060b57600080fd5b5061039d61061a366004612ca2565b611417565b34801561062b57600080fd5b5061040061063a366004612a3b565b611429565b34801561064b57600080fd5b506103596114ba565b610359610662366004612dde565b6114f0565b34801561067357600080fd5b506008546001600160a01b031661039d565b34801561069157600080fd5b506103596106a0366004612ca2565b6116bb565b3480156106b157600080fd5b506103596106c0366004612ca2565b6116ea565b3480156106d157600080fd5b50610370611719565b3480156106e657600080fd5b506103596106f5366004612ca2565b611728565b34801561070657600080fd5b5060105461032490600160b01b900460ff1681565b34801561072757600080fd5b50610370611757565b34801561073c57600080fd5b5061040060095481565b34801561075257600080fd5b50610359610761366004612cf5565b611764565b34801561077257600080fd5b50610359610781366004612b85565b61179a565b34801561079257600080fd5b5060105461032490600160b81b900460ff1681565b3480156107b357600080fd5b506103596107c2366004612ac5565b61185f565b3480156107d357600080fd5b506103246107e2366004612bd9565b611892565b3480156107f357600080fd5b50610359610802366004612cf5565b6118d8565b34801561081357600080fd5b5060105461044490600160a81b900460ff1681565b34801561083457600080fd5b50610359610843366004612cf5565b61190e565b34801561085457600080fd5b50610370610863366004612ca2565b611944565b34801561087457600080fd5b50610400610883366004612a3b565b611aa3565b34801561089457600080fd5b5061040060075481565b3480156108aa57600080fd5b50610400600f5481565b3480156108c057600080fd5b506103596108cf366004612d67565b611aae565b3480156108e057600080fd5b506103246108ef366004612a56565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561092957600080fd5b50610359610938366004612a3b565b611b6b565b34801561094957600080fd5b50610359610958366004612e7f565b611c03565b60006001600160e01b031982166380ac58cd60e01b148061098e57506001600160e01b03198216635b5e139f60e01b145b806109a957506001600160e01b0319821663780e9d6360e01b145b806109c457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109fd5760405162461bcd60e51b81526004016109f49061307b565b60405180910390fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b606060018054610a2e906132a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a906132a9565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b6000610abe826000541190565b610b205760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016109f4565b506000908152600560205260409020546001600160a01b031690565b600d8054610b49906132a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b75906132a9565b8015610bc25780601f10610b9757610100808354040283529160200191610bc2565b820191906000526020600020905b815481529060010190602001808311610ba557829003601f168201915b505050505081565b6000610bd582611417565b9050806001600160a01b0316836001600160a01b03161415610c445760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109f4565b336001600160a01b0382161480610c605750610c6081336108ef565b610cd25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109f4565b610cdd838383611c61565b505050565b610cdd838383611cbd565b600e8054610b49906132a9565b6000610d0583611429565b8210610d5e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109f4565b600080549080805b83811015610e08576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610db957805192505b876001600160a01b0316836001600160a01b03161415610df55786841415610de7575093506109c492505050565b83610df1816132e4565b9450505b5080610e00816132e4565b915050610d66565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109f4565b6008546001600160a01b03163314610e925760405162461bcd60e51b81526004016109f49061307b565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610ede5760405162461bcd60e51b81526004016109f49061307b565b6010546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610f2b576040519150601f19603f3d011682016040523d82523d6000602084013e610f30565b606091505b5050905080610f3e57600080fd5b50565b610cdd8383836040518060200160405280600081525061185f565b6008546001600160a01b03163314610f865760405162461bcd60e51b81526004016109f49061307b565b6010805461ffff60b01b1916600160b01b9315159390930260ff60b81b191692909217600160b81b91151591909102179055565b6000805482106110185760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109f4565b5090565b8260ff16600b54600161102f91906131dc565b8161103960005490565b61104391906131dc565b106110605760405162461bcd60e51b81526004016109f490613132565b600081116110805760405162461bcd60e51b81526004016109f490613046565b6011546001600160a01b03166110a85760405162461bcd60e51b81526004016109f4906130b0565b601054600160b01b900460ff166111015760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206973206e6f74206c69766500000000000060448201526064016109f4565b60008460ff16116111475760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081b9bdd081d985b1a5960821b60448201526064016109f4565b6000611152856112c1565b9050803410156111975760405162461bcd60e51b815260206004820152601060248201526f1c1c9a58d9481a5cc81a5b9d985b1a5960821b60448201526064016109f4565b6111d384848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061189292505050565b61121f5760405162461bcd60e51b815260206004820152601f60248201527f596f75722077616c6c6574206973206e6f742077686974656c69737465642e0060448201526064016109f4565b60105460ff600160a01b909104811690861661123a33612044565b61124491906131dc565b11156112625760405162461bcd60e51b81526004016109f490612fe9565b61126f338660ff166120e2565b5050505050565b6008546001600160a01b031633146112a05760405162461bcd60e51b81526004016109f49061307b565b6010805460ff60c01b198116600160c01b9182900460ff1615909102179055565b6009546000906112df906112d960ff85166002612103565b9061210f565b600a546112ff906112f190600261210f565b6112d960ff8616600261211b565b6109c491906131dc565b6008546001600160a01b031633146113335760405162461bcd60e51b81526004016109f49061307b565b600b55565b6011546001600160a01b03166113905760405162461bcd60e51b815260206004820152601d60248201527f4461746120636f6e7472616374206e6f7420696e697469616c697a656400000060448201526064016109f4565b336113a36008546001600160a01b031690565b6001600160a01b031614806113c257506011546001600160a01b031633145b6114025760405162461bcd60e51b81526020600482015260116024820152701c195c9b5a5cdcda5bdb8819195b9a5959607a1b60448201526064016109f4565b611411828260ff168686612127565b50505050565b600061142282612143565b5192915050565b60006001600160a01b0382166114955760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109f4565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146114e45760405162461bcd60e51b81526004016109f49061307b565b6114ee60006122ed565b565b8060ff16600b54600161150391906131dc565b8161150d60005490565b61151791906131dc565b106115345760405162461bcd60e51b81526004016109f490613132565b600081116115545760405162461bcd60e51b81526004016109f490613046565b6011546001600160a01b031661157c5760405162461bcd60e51b81526004016109f4906130b0565b601054600160b81b900460ff166115d55760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206c69766500000000000000000060448201526064016109f4565b60008260ff161161161b5760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081b9bdd081d985b1a5960821b60448201526064016109f4565b6000611626836112c1565b90508034101561166b5760405162461bcd60e51b815260206004820152601060248201526f1c1c9a58d9481a5cc81a5b9d985b1a5960821b60448201526064016109f4565b60105460ff600160a81b909104811690841661168633612044565b61169091906131dc565b11156116ae5760405162461bcd60e51b81526004016109f490612fe9565b610cdd338460ff166120e2565b6008546001600160a01b031633146116e55760405162461bcd60e51b81526004016109f49061307b565b600a55565b6008546001600160a01b031633146117145760405162461bcd60e51b81526004016109f49061307b565b600955565b606060028054610a2e906132a9565b6008546001600160a01b031633146117525760405162461bcd60e51b81526004016109f49061307b565b600f55565b600c8054610b49906132a9565b6008546001600160a01b0316331461178e5760405162461bcd60e51b81526004016109f49061307b565b610cdd600c838361295a565b6001600160a01b0382163314156117f35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109f4565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61186a848484611cbd565b6118768484848461233f565b6114115760405162461bcd60e51b81526004016109f4906130df565b600f546040516bffffffffffffffffffffffff193360601b1660208201526000916109c4918491906034016040516020818303038152906040528051906020012061244d565b6008546001600160a01b031633146119025760405162461bcd60e51b81526004016109f49061307b565b610cdd600e838361295a565b6008546001600160a01b031633146119385760405162461bcd60e51b81526004016109f49061307b565b610cdd600d838361295a565b6060611951826000541190565b6119a75760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016109f4565b601054600090600160c01b900460ff166119c257600d6119c5565b600c5b80546119d0906132a9565b80601f01602080910402602001604051908101604052809291908181526020018280546119fc906132a9565b8015611a495780601f10611a1e57610100808354040283529160200191611a49565b820191906000526020600020905b815481529060010190602001808311611a2c57829003601f168201915b505050505090506000815111611a6e5760405180602001604052806000815250611a9c565b80611a7884612463565b600e604051602001611a8c93929190612ed5565b6040516020818303038152906040525b9392505050565b60006109c482612044565b6008546001600160a01b03163314611ad85760405162461bcd60e51b81526004016109f49061307b565b81600b546001611ae891906131dc565b81611af260005490565b611afc91906131dc565b10611b195760405162461bcd60e51b81526004016109f490613132565b60008111611b395760405162461bcd60e51b81526004016109f490613046565b6011546001600160a01b0316611b615760405162461bcd60e51b81526004016109f4906130b0565b610cdd82846120e2565b6008546001600160a01b03163314611b955760405162461bcd60e51b81526004016109f49061307b565b6001600160a01b038116611bfa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f4565b610f3e816122ed565b6008546001600160a01b03163314611c2d5760405162461bcd60e51b81526004016109f49061307b565b6010805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cc882612143565b80519091506000906001600160a01b0316336001600160a01b03161480611cff575033611cf484610ab1565b6001600160a01b0316145b80611d1157508151611d1190336108ef565b905080611d7b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109f4565b846001600160a01b031682600001516001600160a01b031614611def5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109f4565b6001600160a01b038416611e535760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109f4565b611e636000848460000151611c61565b6001600160a01b0385166000908152600460205260408120805460019290611e959084906001600160801b0316613227565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611ee1918591166131b1565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611f698460016131dc565b6000818152600360205260409020549091506001600160a01b0316611ffb57611f93816000541190565b15611ffb5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60006001600160a01b0382166120b65760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016109f4565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6120ff828260405180602001604052806000815250600080612561565b5050565b6000611a9c82846132ff565b6000611a9c8284613208565b6000611a9c82846131f4565b6114118484604051806020016040528060008152508585612561565b6040805180820190915260008082526020820152612162826000541190565b6121c15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109f4565b60007f00000000000000000000000000000000000000000000000000000000000000008310612222576122147f00000000000000000000000000000000000000000000000000000000000000008461324f565b61221f9060016131dc565b90505b825b81811061228c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561227957949350505050565b508061228481613292565b915050612224565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109f4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561244157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612383903390899088908890600401612f99565b602060405180830381600087803b15801561239d57600080fd5b505af19250505080156123cd575060408051601f3d908101601f191682019092526123ca91810190612cd8565b60015b612427573d8080156123fb576040519150601f19603f3d011682016040523d82523d6000602084013e612400565b606091505b50805161241f5760405162461bcd60e51b81526004016109f4906130df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612445565b5060015b949350505050565b60008261245a858461284d565b14949350505050565b6060816124875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124b1578061249b816132e4565b91506124aa9050600a836131f4565b915061248b565b60008167ffffffffffffffff8111156124cc576124cc613355565b6040519080825280601f01601f1916602001820160405280156124f6576020820181803683370190505b5090505b84156124455761250b60018361324f565b9150612518600a866132ff565b6125239060306131dc565b60f81b8183815181106125385761253861333f565b60200101906001600160f81b031916908160001a90535061255a600a866131f4565b94506124fa565b6000546001600160a01b0386166125c45760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109f4565b6125cf816000541190565b1561261c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109f4565b7f00000000000000000000000000000000000000000000000000000000000000008511156126975760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109f4565b6001600160a01b0386166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126f39089906131b1565b6001600160801b0316815260200187836020015161271191906131b1565b6001600160801b039081169091526001600160a01b03808a1660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b878110156128315760405182906001600160a01b038b16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127f560008a848a61233f565b6128115760405162461bcd60e51b81526004016109f4906130df565b8161281b816132e4565b9250508080612829906132e4565b9150506127a8565b506000819055612843838887876128c1565b5050505050505050565b600081815b84518110156128b957600085828151811061286f5761286f61333f565b6020026020010151905080831161289557600083815260208290526040902092506128a6565b600081815260208490526040902092505b50806128b1816132e4565b915050612852565b509392505050565b835b6128cd84866131dc565b81101561126f57601154604051638122d7b160e01b815263ffffffff80841660048301528086166024830152841660448201526001600160a01b0390911690638122d7b190606401600060405180830381600087803b15801561292f57600080fd5b505af1158015612943573d6000803e3d6000fd5b505050508080612952906132e4565b9150506128c3565b828054612966906132a9565b90600052602060002090601f01602090048101928261298857600085556129ce565b82601f106129a15782800160ff198235161785556129ce565b828001600101855582156129ce579182015b828111156129ce5782358255916020019190600101906129b3565b506110189291505b8082111561101857600081556001016129d6565b80356001600160a01b0381168114612a0157600080fd5b919050565b80358015158114612a0157600080fd5b803563ffffffff81168114612a0157600080fd5b803560ff81168114612a0157600080fd5b600060208284031215612a4d57600080fd5b611a9c826129ea565b60008060408385031215612a6957600080fd5b612a72836129ea565b9150612a80602084016129ea565b90509250929050565b600080600060608486031215612a9e57600080fd5b612aa7846129ea565b9250612ab5602085016129ea565b9150604084013590509250925092565b60008060008060808587031215612adb57600080fd5b612ae4856129ea565b93506020612af38187016129ea565b935060408601359250606086013567ffffffffffffffff80821115612b1757600080fd5b818801915088601f830112612b2b57600080fd5b813581811115612b3d57612b3d613355565b612b4f601f8201601f19168501613180565b91508082528984828501011115612b6557600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612b9857600080fd5b612ba1836129ea565b9150612a8060208401612a06565b60008060408385031215612bc257600080fd5b612bcb836129ea565b946020939093013593505050565b60006020808385031215612bec57600080fd5b823567ffffffffffffffff80821115612c0457600080fd5b818501915085601f830112612c1857600080fd5b813581811115612c2a57612c2a613355565b8060051b9150612c3b848301613180565b8181528481019084860184860187018a1015612c5657600080fd5b600095505b83861015612c79578035835260019590950194918601918601612c5b565b5098975050505050505050565b60008060408385031215612c9957600080fd5b612ba183612a06565b600060208284031215612cb457600080fd5b5035919050565b600060208284031215612ccd57600080fd5b8135611a9c8161336b565b600060208284031215612cea57600080fd5b8151611a9c8161336b565b60008060208385031215612d0857600080fd5b823567ffffffffffffffff80821115612d2057600080fd5b818501915085601f830112612d3457600080fd5b813581811115612d4357600080fd5b866020828501011115612d5557600080fd5b60209290920196919550909350505050565b60008060408385031215612d7a57600080fd5b82359150612a80602084016129ea565b60008060008060808587031215612da057600080fd5b612da985612a16565b9350612db760208601612a16565b9250612dc5604086016129ea565b9150612dd360608601612a2a565b905092959194509250565b600060208284031215612df057600080fd5b611a9c82612a2a565b600080600060408486031215612e0e57600080fd5b612e1784612a2a565b9250602084013567ffffffffffffffff80821115612e3457600080fd5b818601915086601f830112612e4857600080fd5b813581811115612e5757600080fd5b8760208260051b8501011115612e6c57600080fd5b6020830194508093505050509250925092565b60008060408385031215612e9257600080fd5b612e9b83612a2a565b9150612a8060208401612a2a565b60008151808452612ec1816020860160208601613266565b601f01601f19169290920160200192915050565b600084516020612ee88285838a01613266565b855191840191612efb8184848a01613266565b8554920191600090600181811c9080831680612f1857607f831692505b858310811415612f3657634e487b7160e01b85526022600452602485fd5b808015612f4a5760018114612f5b57612f88565b60ff19851688528388019550612f88565b60008b81526020902060005b85811015612f805781548a820152908401908801612f67565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fcc90830184612ea9565b9695505050505050565b602081526000611a9c6020830184612ea9565b6020808252603a908201527f596f75277665206d696e74656420746865206d6178696d756d20616d6f756e7460408201527f206f66206b616e6761726f6f73207468617420796f752063616e000000000000606082015260800190565b6020808252818101527f5175616e74697479206e6565647320746f206265206d6f7265207468616e2030604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526015908201527411185d184810dbdb9d1c9858dd081b9bdd081cd95d605a1b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252602e908201527f4e6f7420656e6f7567682072656d61696e696e6720666f72206d696e7420616d60408201526d1bdd5b9d081c995c5d595cdd195960921b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156131a9576131a9613355565b604052919050565b60006001600160801b038083168185168083038211156131d3576131d3613313565b01949350505050565b600082198211156131ef576131ef613313565b500190565b60008261320357613203613329565b500490565b600081600019048311821515161561322257613222613313565b500290565b60006001600160801b038381169083168181101561324757613247613313565b039392505050565b60008282101561326157613261613313565b500390565b60005b83811015613281578181015183820152602001613269565b838111156114115750506000910152565b6000816132a1576132a1613313565b506000190190565b600181811c908216806132bd57607f821691505b602082108114156132de57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132f8576132f8613313565b5060010190565b60008261330e5761330e613329565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f3e57600080fdfea26469706673582212208cfb835a27e737daa1933e4f4a838a473b1793b13f94ad5e61f68312f2617b2e64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c8063715018a611610190578063b88d4fde116100dc578063ccf2b28f11610095578063e7559b1e1161006f578063e7559b1e146108b4578063e985e9c5146108d4578063f2fde38b1461091d578063fe2e96ba1461093d57600080fd5b8063ccf2b28f14610868578063d7224ba014610888578063db1d25441461089e57600080fd5b8063b88d4fde146107a7578063b8dde112146107c7578063ba70732b146107e7578063bb54cc2714610807578063c17ecd1214610828578063c87b56dd1461084857600080fd5b806395ec1ff711610149578063a035b1fe11610123578063a035b1fe14610730578063a0bcfc7f14610746578063a22cb46514610766578063b7f751d81461078657600080fd5b806395ec1ff7146106da5780639979a194146106fa5780639abc83201461071b57600080fd5b8063715018a61461063f578063858e83b5146106545780638da5cb5b146106675780638f7ea51b1461068557806391b7f5ed146106a557806395d89b41146106c557600080fd5b80633ccfd60b1161024f57806358381669116102085780635c69cbac116101e25780635c69cbac146105bf57806361dea65a146105df5780636352211e146105ff57806370a082311461061f57600080fd5b806358381669146105775780635b8ad4291461058a5780635bfbd7691461059f57600080fd5b80633ccfd60b146104cb57806342842e0e146104e05780634ad7b029146105005780634bbf179b146105205780634f6ccce714610536578063518302271461055657600080fd5b80630d78f936116102bc57806323b872dd1161029657806323b872dd146104565780632d5537b0146104765780632f745c591461048b5780633ab1a494146104ab57600080fd5b80630d78f936146103ea57806318160ddd1461040e5780631ddf074f1461042357600080fd5b806301ffc9a71461030457806303959bb71461033957806306fdde031461035b578063081812fc1461037d578063081c8c44146103b5578063095ea7b3146103ca575b600080fd5b34801561031057600080fd5b5061032461031f366004612cbb565b61095d565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b50610359610354366004612a3b565b6109ca565b005b34801561036757600080fd5b50610370610a1f565b6040516103309190612fd6565b34801561038957600080fd5b5061039d610398366004612ca2565b610ab1565b6040516001600160a01b039091168152602001610330565b3480156103c157600080fd5b50610370610b3c565b3480156103d657600080fd5b506103596103e5366004612baf565b610bca565b3480156103f657600080fd5b50610400600a5481565b604051908152602001610330565b34801561041a57600080fd5b50600054610400565b34801561042f57600080fd5b5060105461044490600160a01b900460ff1681565b60405160ff9091168152602001610330565b34801561046257600080fd5b50610359610471366004612a89565b610ce2565b34801561048257600080fd5b50610370610ced565b34801561049757600080fd5b506104006104a6366004612baf565b610cfa565b3480156104b757600080fd5b506103596104c6366004612a3b565b610e68565b3480156104d757600080fd5b50610359610eb4565b3480156104ec57600080fd5b506103596104fb366004612a89565b610f41565b34801561050c57600080fd5b5061035961051b366004612c86565b610f5c565b34801561052c57600080fd5b50610400600b5481565b34801561054257600080fd5b50610400610551366004612ca2565b610fba565b34801561056257600080fd5b5060105461032490600160c01b900460ff1681565b610359610585366004612df9565b61101c565b34801561059657600080fd5b50610359611276565b3480156105ab57600080fd5b506104006105ba366004612dde565b6112c1565b3480156105cb57600080fd5b506103596105da366004612ca2565b611309565b3480156105eb57600080fd5b506103596105fa366004612d8a565b611338565b34801561060b57600080fd5b5061039d61061a366004612ca2565b611417565b34801561062b57600080fd5b5061040061063a366004612a3b565b611429565b34801561064b57600080fd5b506103596114ba565b610359610662366004612dde565b6114f0565b34801561067357600080fd5b506008546001600160a01b031661039d565b34801561069157600080fd5b506103596106a0366004612ca2565b6116bb565b3480156106b157600080fd5b506103596106c0366004612ca2565b6116ea565b3480156106d157600080fd5b50610370611719565b3480156106e657600080fd5b506103596106f5366004612ca2565b611728565b34801561070657600080fd5b5060105461032490600160b01b900460ff1681565b34801561072757600080fd5b50610370611757565b34801561073c57600080fd5b5061040060095481565b34801561075257600080fd5b50610359610761366004612cf5565b611764565b34801561077257600080fd5b50610359610781366004612b85565b61179a565b34801561079257600080fd5b5060105461032490600160b81b900460ff1681565b3480156107b357600080fd5b506103596107c2366004612ac5565b61185f565b3480156107d357600080fd5b506103246107e2366004612bd9565b611892565b3480156107f357600080fd5b50610359610802366004612cf5565b6118d8565b34801561081357600080fd5b5060105461044490600160a81b900460ff1681565b34801561083457600080fd5b50610359610843366004612cf5565b61190e565b34801561085457600080fd5b50610370610863366004612ca2565b611944565b34801561087457600080fd5b50610400610883366004612a3b565b611aa3565b34801561089457600080fd5b5061040060075481565b3480156108aa57600080fd5b50610400600f5481565b3480156108c057600080fd5b506103596108cf366004612d67565b611aae565b3480156108e057600080fd5b506103246108ef366004612a56565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561092957600080fd5b50610359610938366004612a3b565b611b6b565b34801561094957600080fd5b50610359610958366004612e7f565b611c03565b60006001600160e01b031982166380ac58cd60e01b148061098e57506001600160e01b03198216635b5e139f60e01b145b806109a957506001600160e01b0319821663780e9d6360e01b145b806109c457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109fd5760405162461bcd60e51b81526004016109f49061307b565b60405180910390fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b606060018054610a2e906132a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a906132a9565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b6000610abe826000541190565b610b205760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016109f4565b506000908152600560205260409020546001600160a01b031690565b600d8054610b49906132a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b75906132a9565b8015610bc25780601f10610b9757610100808354040283529160200191610bc2565b820191906000526020600020905b815481529060010190602001808311610ba557829003601f168201915b505050505081565b6000610bd582611417565b9050806001600160a01b0316836001600160a01b03161415610c445760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109f4565b336001600160a01b0382161480610c605750610c6081336108ef565b610cd25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109f4565b610cdd838383611c61565b505050565b610cdd838383611cbd565b600e8054610b49906132a9565b6000610d0583611429565b8210610d5e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109f4565b600080549080805b83811015610e08576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610db957805192505b876001600160a01b0316836001600160a01b03161415610df55786841415610de7575093506109c492505050565b83610df1816132e4565b9450505b5080610e00816132e4565b915050610d66565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109f4565b6008546001600160a01b03163314610e925760405162461bcd60e51b81526004016109f49061307b565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610ede5760405162461bcd60e51b81526004016109f49061307b565b6010546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610f2b576040519150601f19603f3d011682016040523d82523d6000602084013e610f30565b606091505b5050905080610f3e57600080fd5b50565b610cdd8383836040518060200160405280600081525061185f565b6008546001600160a01b03163314610f865760405162461bcd60e51b81526004016109f49061307b565b6010805461ffff60b01b1916600160b01b9315159390930260ff60b81b191692909217600160b81b91151591909102179055565b6000805482106110185760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109f4565b5090565b8260ff16600b54600161102f91906131dc565b8161103960005490565b61104391906131dc565b106110605760405162461bcd60e51b81526004016109f490613132565b600081116110805760405162461bcd60e51b81526004016109f490613046565b6011546001600160a01b03166110a85760405162461bcd60e51b81526004016109f4906130b0565b601054600160b01b900460ff166111015760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206973206e6f74206c69766500000000000060448201526064016109f4565b60008460ff16116111475760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081b9bdd081d985b1a5960821b60448201526064016109f4565b6000611152856112c1565b9050803410156111975760405162461bcd60e51b815260206004820152601060248201526f1c1c9a58d9481a5cc81a5b9d985b1a5960821b60448201526064016109f4565b6111d384848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061189292505050565b61121f5760405162461bcd60e51b815260206004820152601f60248201527f596f75722077616c6c6574206973206e6f742077686974656c69737465642e0060448201526064016109f4565b60105460ff600160a01b909104811690861661123a33612044565b61124491906131dc565b11156112625760405162461bcd60e51b81526004016109f490612fe9565b61126f338660ff166120e2565b5050505050565b6008546001600160a01b031633146112a05760405162461bcd60e51b81526004016109f49061307b565b6010805460ff60c01b198116600160c01b9182900460ff1615909102179055565b6009546000906112df906112d960ff85166002612103565b9061210f565b600a546112ff906112f190600261210f565b6112d960ff8616600261211b565b6109c491906131dc565b6008546001600160a01b031633146113335760405162461bcd60e51b81526004016109f49061307b565b600b55565b6011546001600160a01b03166113905760405162461bcd60e51b815260206004820152601d60248201527f4461746120636f6e7472616374206e6f7420696e697469616c697a656400000060448201526064016109f4565b336113a36008546001600160a01b031690565b6001600160a01b031614806113c257506011546001600160a01b031633145b6114025760405162461bcd60e51b81526020600482015260116024820152701c195c9b5a5cdcda5bdb8819195b9a5959607a1b60448201526064016109f4565b611411828260ff168686612127565b50505050565b600061142282612143565b5192915050565b60006001600160a01b0382166114955760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109f4565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146114e45760405162461bcd60e51b81526004016109f49061307b565b6114ee60006122ed565b565b8060ff16600b54600161150391906131dc565b8161150d60005490565b61151791906131dc565b106115345760405162461bcd60e51b81526004016109f490613132565b600081116115545760405162461bcd60e51b81526004016109f490613046565b6011546001600160a01b031661157c5760405162461bcd60e51b81526004016109f4906130b0565b601054600160b81b900460ff166115d55760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206c69766500000000000000000060448201526064016109f4565b60008260ff161161161b5760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081b9bdd081d985b1a5960821b60448201526064016109f4565b6000611626836112c1565b90508034101561166b5760405162461bcd60e51b815260206004820152601060248201526f1c1c9a58d9481a5cc81a5b9d985b1a5960821b60448201526064016109f4565b60105460ff600160a81b909104811690841661168633612044565b61169091906131dc565b11156116ae5760405162461bcd60e51b81526004016109f490612fe9565b610cdd338460ff166120e2565b6008546001600160a01b031633146116e55760405162461bcd60e51b81526004016109f49061307b565b600a55565b6008546001600160a01b031633146117145760405162461bcd60e51b81526004016109f49061307b565b600955565b606060028054610a2e906132a9565b6008546001600160a01b031633146117525760405162461bcd60e51b81526004016109f49061307b565b600f55565b600c8054610b49906132a9565b6008546001600160a01b0316331461178e5760405162461bcd60e51b81526004016109f49061307b565b610cdd600c838361295a565b6001600160a01b0382163314156117f35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109f4565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61186a848484611cbd565b6118768484848461233f565b6114115760405162461bcd60e51b81526004016109f4906130df565b600f546040516bffffffffffffffffffffffff193360601b1660208201526000916109c4918491906034016040516020818303038152906040528051906020012061244d565b6008546001600160a01b031633146119025760405162461bcd60e51b81526004016109f49061307b565b610cdd600e838361295a565b6008546001600160a01b031633146119385760405162461bcd60e51b81526004016109f49061307b565b610cdd600d838361295a565b6060611951826000541190565b6119a75760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b60648201526084016109f4565b601054600090600160c01b900460ff166119c257600d6119c5565b600c5b80546119d0906132a9565b80601f01602080910402602001604051908101604052809291908181526020018280546119fc906132a9565b8015611a495780601f10611a1e57610100808354040283529160200191611a49565b820191906000526020600020905b815481529060010190602001808311611a2c57829003601f168201915b505050505090506000815111611a6e5760405180602001604052806000815250611a9c565b80611a7884612463565b600e604051602001611a8c93929190612ed5565b6040516020818303038152906040525b9392505050565b60006109c482612044565b6008546001600160a01b03163314611ad85760405162461bcd60e51b81526004016109f49061307b565b81600b546001611ae891906131dc565b81611af260005490565b611afc91906131dc565b10611b195760405162461bcd60e51b81526004016109f490613132565b60008111611b395760405162461bcd60e51b81526004016109f490613046565b6011546001600160a01b0316611b615760405162461bcd60e51b81526004016109f4906130b0565b610cdd82846120e2565b6008546001600160a01b03163314611b955760405162461bcd60e51b81526004016109f49061307b565b6001600160a01b038116611bfa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f4565b610f3e816122ed565b6008546001600160a01b03163314611c2d5760405162461bcd60e51b81526004016109f49061307b565b6010805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cc882612143565b80519091506000906001600160a01b0316336001600160a01b03161480611cff575033611cf484610ab1565b6001600160a01b0316145b80611d1157508151611d1190336108ef565b905080611d7b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109f4565b846001600160a01b031682600001516001600160a01b031614611def5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109f4565b6001600160a01b038416611e535760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109f4565b611e636000848460000151611c61565b6001600160a01b0385166000908152600460205260408120805460019290611e959084906001600160801b0316613227565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611ee1918591166131b1565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611f698460016131dc565b6000818152600360205260409020549091506001600160a01b0316611ffb57611f93816000541190565b15611ffb5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60006001600160a01b0382166120b65760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016109f4565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6120ff828260405180602001604052806000815250600080612561565b5050565b6000611a9c82846132ff565b6000611a9c8284613208565b6000611a9c82846131f4565b6114118484604051806020016040528060008152508585612561565b6040805180820190915260008082526020820152612162826000541190565b6121c15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109f4565b60007f00000000000000000000000000000000000000000000000000000000000007d48310612222576122147f00000000000000000000000000000000000000000000000000000000000007d48461324f565b61221f9060016131dc565b90505b825b81811061228c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561227957949350505050565b508061228481613292565b915050612224565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109f4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561244157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612383903390899088908890600401612f99565b602060405180830381600087803b15801561239d57600080fd5b505af19250505080156123cd575060408051601f3d908101601f191682019092526123ca91810190612cd8565b60015b612427573d8080156123fb576040519150601f19603f3d011682016040523d82523d6000602084013e612400565b606091505b50805161241f5760405162461bcd60e51b81526004016109f4906130df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612445565b5060015b949350505050565b60008261245a858461284d565b14949350505050565b6060816124875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124b1578061249b816132e4565b91506124aa9050600a836131f4565b915061248b565b60008167ffffffffffffffff8111156124cc576124cc613355565b6040519080825280601f01601f1916602001820160405280156124f6576020820181803683370190505b5090505b84156124455761250b60018361324f565b9150612518600a866132ff565b6125239060306131dc565b60f81b8183815181106125385761253861333f565b60200101906001600160f81b031916908160001a90535061255a600a866131f4565b94506124fa565b6000546001600160a01b0386166125c45760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109f4565b6125cf816000541190565b1561261c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109f4565b7f00000000000000000000000000000000000000000000000000000000000007d48511156126975760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109f4565b6001600160a01b0386166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906126f39089906131b1565b6001600160801b0316815260200187836020015161271191906131b1565b6001600160801b039081169091526001600160a01b03808a1660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b878110156128315760405182906001600160a01b038b16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127f560008a848a61233f565b6128115760405162461bcd60e51b81526004016109f4906130df565b8161281b816132e4565b9250508080612829906132e4565b9150506127a8565b506000819055612843838887876128c1565b5050505050505050565b600081815b84518110156128b957600085828151811061286f5761286f61333f565b6020026020010151905080831161289557600083815260208290526040902092506128a6565b600081815260208490526040902092505b50806128b1816132e4565b915050612852565b509392505050565b835b6128cd84866131dc565b81101561126f57601154604051638122d7b160e01b815263ffffffff80841660048301528086166024830152841660448201526001600160a01b0390911690638122d7b190606401600060405180830381600087803b15801561292f57600080fd5b505af1158015612943573d6000803e3d6000fd5b505050508080612952906132e4565b9150506128c3565b828054612966906132a9565b90600052602060002090601f01602090048101928261298857600085556129ce565b82601f106129a15782800160ff198235161785556129ce565b828001600101855582156129ce579182015b828111156129ce5782358255916020019190600101906129b3565b506110189291505b8082111561101857600081556001016129d6565b80356001600160a01b0381168114612a0157600080fd5b919050565b80358015158114612a0157600080fd5b803563ffffffff81168114612a0157600080fd5b803560ff81168114612a0157600080fd5b600060208284031215612a4d57600080fd5b611a9c826129ea565b60008060408385031215612a6957600080fd5b612a72836129ea565b9150612a80602084016129ea565b90509250929050565b600080600060608486031215612a9e57600080fd5b612aa7846129ea565b9250612ab5602085016129ea565b9150604084013590509250925092565b60008060008060808587031215612adb57600080fd5b612ae4856129ea565b93506020612af38187016129ea565b935060408601359250606086013567ffffffffffffffff80821115612b1757600080fd5b818801915088601f830112612b2b57600080fd5b813581811115612b3d57612b3d613355565b612b4f601f8201601f19168501613180565b91508082528984828501011115612b6557600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612b9857600080fd5b612ba1836129ea565b9150612a8060208401612a06565b60008060408385031215612bc257600080fd5b612bcb836129ea565b946020939093013593505050565b60006020808385031215612bec57600080fd5b823567ffffffffffffffff80821115612c0457600080fd5b818501915085601f830112612c1857600080fd5b813581811115612c2a57612c2a613355565b8060051b9150612c3b848301613180565b8181528481019084860184860187018a1015612c5657600080fd5b600095505b83861015612c79578035835260019590950194918601918601612c5b565b5098975050505050505050565b60008060408385031215612c9957600080fd5b612ba183612a06565b600060208284031215612cb457600080fd5b5035919050565b600060208284031215612ccd57600080fd5b8135611a9c8161336b565b600060208284031215612cea57600080fd5b8151611a9c8161336b565b60008060208385031215612d0857600080fd5b823567ffffffffffffffff80821115612d2057600080fd5b818501915085601f830112612d3457600080fd5b813581811115612d4357600080fd5b866020828501011115612d5557600080fd5b60209290920196919550909350505050565b60008060408385031215612d7a57600080fd5b82359150612a80602084016129ea565b60008060008060808587031215612da057600080fd5b612da985612a16565b9350612db760208601612a16565b9250612dc5604086016129ea565b9150612dd360608601612a2a565b905092959194509250565b600060208284031215612df057600080fd5b611a9c82612a2a565b600080600060408486031215612e0e57600080fd5b612e1784612a2a565b9250602084013567ffffffffffffffff80821115612e3457600080fd5b818601915086601f830112612e4857600080fd5b813581811115612e5757600080fd5b8760208260051b8501011115612e6c57600080fd5b6020830194508093505050509250925092565b60008060408385031215612e9257600080fd5b612e9b83612a2a565b9150612a8060208401612a2a565b60008151808452612ec1816020860160208601613266565b601f01601f19169290920160200192915050565b600084516020612ee88285838a01613266565b855191840191612efb8184848a01613266565b8554920191600090600181811c9080831680612f1857607f831692505b858310811415612f3657634e487b7160e01b85526022600452602485fd5b808015612f4a5760018114612f5b57612f88565b60ff19851688528388019550612f88565b60008b81526020902060005b85811015612f805781548a820152908401908801612f67565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612fcc90830184612ea9565b9695505050505050565b602081526000611a9c6020830184612ea9565b6020808252603a908201527f596f75277665206d696e74656420746865206d6178696d756d20616d6f756e7460408201527f206f66206b616e6761726f6f73207468617420796f752063616e000000000000606082015260800190565b6020808252818101527f5175616e74697479206e6565647320746f206265206d6f7265207468616e2030604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526015908201527411185d184810dbdb9d1c9858dd081b9bdd081cd95d605a1b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252602e908201527f4e6f7420656e6f7567682072656d61696e696e6720666f72206d696e7420616d60408201526d1bdd5b9d081c995c5d595cdd195960921b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156131a9576131a9613355565b604052919050565b60006001600160801b038083168185168083038211156131d3576131d3613313565b01949350505050565b600082198211156131ef576131ef613313565b500190565b60008261320357613203613329565b500490565b600081600019048311821515161561322257613222613313565b500290565b60006001600160801b038381169083168181101561324757613247613313565b039392505050565b60008282101561326157613261613313565b500390565b60005b83811015613281578181015183820152602001613269565b838111156114115750506000910152565b6000816132a1576132a1613313565b506000190190565b600181811c908216806132bd57607f821691505b602082108114156132de57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132f8576132f8613313565b5060010190565b60008261330e5761330e613329565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f3e57600080fdfea26469706673582212208cfb835a27e737daa1933e4f4a838a473b1793b13f94ad5e61f68312f2617b2e64736f6c63430008070033

Deployed Bytecode Sourcemap

67689:6169:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37827:422;;;;;;;;;;-1:-1:-1;37827:422:0;;;;;:::i;:::-;;:::i;:::-;;;10567:14:1;;10560:22;10542:41;;10530:2;10515:18;37827:422:0;;;;;;;;72479:113;;;;;;;;;;-1:-1:-1;72479:113:0;;;;;:::i;:::-;;:::i;:::-;;39788:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41484:292::-;;;;;;;;;;-1:-1:-1;41484:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9865:32:1;;;9847:51;;9835:2;9820:18;41484:292:0;9701:203:1;67976:33:0;;;;;;;;;;;;;:::i;41004:414::-;;;;;;;;;;-1:-1:-1;41004:414:0;;;;;:::i;:::-;;:::i;67845:43::-;;;;;;;;;;;;;;;;;;;10740:25:1;;;10728:2;10713:18;67845:43:0;10594:177:1;36186:100:0;;;;;;;;;;-1:-1:-1;36239:7:0;36266:12;36186:100;;68129:35;;;;;;;;;;-1:-1:-1;68129:35:0;;;;-1:-1:-1;;;68129:35:0;;;;;;;;;24204:4:1;24192:17;;;24174:36;;24162:2;24147:18;68129:35:0;24032:184:1;42511:162:0;;;;;;;;;;-1:-1:-1;42511:162:0;;;;;:::i;:::-;;:::i;68016:33::-;;;;;;;;;;;;;:::i;36891:864::-;;;;;;;;;;-1:-1:-1;36891:864:0;;;;;:::i;:::-;;:::i;72600:102::-;;;;;;;;;;-1:-1:-1;72600:102:0;;;;;:::i;:::-;;:::i;73701:154::-;;;;;;;;;;;;;:::i;42744:177::-;;;;;;;;;;-1:-1:-1;42744:177:0;;;;;:::i;:::-;;:::i;73472:133::-;;;;;;;;;;-1:-1:-1;73472:133:0;;;;;:::i;:::-;;:::i;67895:35::-;;;;;;;;;;;;;;;;36363:228;;;;;;;;;;-1:-1:-1;36363:228:0;;;;;:::i;:::-;;:::i;68273:20::-;;;;;;;;;;-1:-1:-1;68273:20:0;;;;-1:-1:-1;;;68273:20:0;;;;;;69303:783;;;;;;:::i;:::-;;:::i;73613:80::-;;;;;;;;;;;;;:::i;69114:181::-;;;;;;;;;;-1:-1:-1;69114:181:0;;;;;:::i;:::-;;:::i;72710:102::-;;;;;;;;;;-1:-1:-1;72710:102:0;;;;;:::i;:::-;;:::i;70702:328::-;;;;;;;;;;-1:-1:-1;70702:328:0;;;;;:::i;:::-;;:::i;39597:124::-;;;;;;;;;;-1:-1:-1;39597:124:0;;;;;:::i;:::-;;:::i;38313:258::-;;;;;;;;;;-1:-1:-1;38313:258:0;;;;;:::i;:::-;;:::i;13281:103::-;;;;;;;;;;;;;:::i;70094:600::-;;;;;;:::i;:::-;;:::i;12630:87::-;;;;;;;;;;-1:-1:-1;12703:6:0;;-1:-1:-1;;;;;12703:6:0;12630:87;;72912:104;;;;;;;;;;-1:-1:-1;72912:104:0;;;;;:::i;:::-;;:::i;72820:84::-;;;;;;;;;;-1:-1:-1;72820:84:0;;;;;:::i;:::-;;:::i;39957:104::-;;;;;;;;;;;;;:::i;73350:114::-;;;;;;;;;;-1:-1:-1;73350:114:0;;;;;:::i;:::-;;:::i;68212:25::-;;;;;;;;;;-1:-1:-1;68212:25:0;;;;-1:-1:-1;;;68212:25:0;;;;;;67943:26;;;;;;;;;;;;;:::i;67805:33::-;;;;;;;;;;;;;;;;73024:100;;;;;;;;;;-1:-1:-1;73024:100:0;;;;;:::i;:::-;;:::i;41848:311::-;;;;;;;;;;-1:-1:-1;41848:311:0;;;;;:::i;:::-;;:::i;68244:22::-;;;;;;;;;;-1:-1:-1;68244:22:0;;;;-1:-1:-1;;;68244:22:0;;;;;;42992:355;;;;;;;;;;-1:-1:-1;42992:355:0;;;;;:::i;:::-;;:::i;71315:291::-;;;;;;;;;;-1:-1:-1;71315:291:0;;;;;:::i;:::-;;:::i;73246:96::-;;;;;;;;;;-1:-1:-1;73246:96:0;;;;;:::i;:::-;;:::i;68171:32::-;;;;;;;;;;-1:-1:-1;68171:32:0;;;;-1:-1:-1;;;68171:32:0;;;;;;73132:106;;;;;;;;;;-1:-1:-1;73132:106:0;;;;;:::i;:::-;;:::i;68496:610::-;;;;;;;;;;-1:-1:-1;68496:610:0;;;;;:::i;:::-;;:::i;71669:113::-;;;;;;;;;;-1:-1:-1;71669:113:0;;;;;:::i;:::-;;:::i;48055:43::-;;;;;;;;;;;;;;;;68058:26;;;;;;;;;;;;;;;;72070:235;;;;;;;;;;-1:-1:-1;72070:235:0;;;;;:::i;:::-;;:::i;42230:214::-;;;;;;;;;;-1:-1:-1;42230:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;42401:25:0;;;42372:4;42401:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42230:214;13539:201;;;;;;;;;;-1:-1:-1;13539:201:0;;;;;:::i;:::-;;:::i;72313:158::-;;;;;;;;;;-1:-1:-1;72313:158:0;;;;;:::i;:::-;;:::i;37827:422::-;37974:4;-1:-1:-1;;;;;;38016:40:0;;-1:-1:-1;;;38016:40:0;;:105;;-1:-1:-1;;;;;;;38073:48:0;;-1:-1:-1;;;38073:48:0;38016:105;:172;;;-1:-1:-1;;;;;;;38138:50:0;;-1:-1:-1;;;38138:50:0;38016:172;:225;;;-1:-1:-1;;;;;;;;;;25171:40:0;;;38205:36;37996:245;37827:422;-1:-1:-1;;37827:422:0:o;72479:113::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;;;;;;;;;72550:12:::1;:34:::0;;-1:-1:-1;;;;;;72550:34:0::1;-1:-1:-1::0;;;;;72550:34:0;;;::::1;::::0;;;::::1;::::0;;72479:113::o;39788:100::-;39842:13;39875:5;39868:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39788:100;:::o;41484:292::-;41588:7;41635:16;41643:7;43659:4;43693:12;-1:-1:-1;43683:22:0;43602:111;41635:16;41613:111;;;;-1:-1:-1;;;41613:111:0;;22516:2:1;41613:111:0;;;22498:21:1;22555:2;22535:18;;;22528:30;22594:34;22574:18;;;22567:62;-1:-1:-1;;;22645:18:1;;;22638:43;22698:19;;41613:111:0;22314:409:1;41613:111:0;-1:-1:-1;41744:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41744:24:0;;41484:292::o;67976:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41004:414::-;41077:13;41093:25;41110:7;41093:16;:25::i;:::-;41077:41;;41143:5;-1:-1:-1;;;;;41137:11:0;:2;-1:-1:-1;;;;;41137:11:0;;;41129:58;;;;-1:-1:-1;;;41129:58:0;;18985:2:1;41129:58:0;;;18967:21:1;19024:2;19004:18;;;18997:30;19063:34;19043:18;;;19036:62;-1:-1:-1;;;19114:18:1;;;19107:32;19156:19;;41129:58:0;18783:398:1;41129:58:0;11434:10;-1:-1:-1;;;;;41222:21:0;;;;:62;;-1:-1:-1;41247:37:0;41264:5;11434:10;42230:214;:::i;41247:37::-;41200:169;;;;-1:-1:-1;;;41200:169:0;;15541:2:1;41200:169:0;;;15523:21:1;15580:2;15560:18;;;15553:30;15619:34;15599:18;;;15592:62;15690:27;15670:18;;;15663:55;15735:19;;41200:169:0;15339:421:1;41200:169:0;41382:28;41391:2;41395:7;41404:5;41382:8;:28::i;:::-;41066:352;41004:414;;:::o;42511:162::-;42637:28;42647:4;42653:2;42657:7;42637:9;:28::i;68016:33::-;;;;;;;:::i;36891:864::-;37016:7;37057:16;37067:5;37057:9;:16::i;:::-;37049:5;:24;37041:71;;;;-1:-1:-1;;;37041:71:0;;11202:2:1;37041:71:0;;;11184:21:1;11241:2;11221:18;;;11214:30;11280:34;11260:18;;;11253:62;-1:-1:-1;;;11331:18:1;;;11324:32;11373:19;;37041:71:0;11000:398:1;37041:71:0;37123:22;36266:12;;;37123:22;;37255:426;37279:14;37275:1;:18;37255:426;;;37315:31;37349:14;;;:11;:14;;;;;;;;;37315:48;;;;;;;;;-1:-1:-1;;;;;37315:48:0;;;;;-1:-1:-1;;;37315:48:0;;;;;;;;;;;;37382:28;37378:103;;37451:14;;;-1:-1:-1;37378:103:0;37520:5;-1:-1:-1;;;;;37499:26:0;:17;-1:-1:-1;;;;;37499:26:0;;37495:175;;;37565:5;37550:11;:20;37546:77;;;-1:-1:-1;37602:1:0;-1:-1:-1;37595:8:0;;-1:-1:-1;;;37595:8:0;37546:77;37641:13;;;;:::i;:::-;;;;37495:175;-1:-1:-1;37295:3:0;;;;:::i;:::-;;;;37255:426;;;-1:-1:-1;37691:56:0;;-1:-1:-1;;;37691:56:0;;21333:2:1;37691:56:0;;;21315:21:1;21372:2;21352:18;;;21345:30;21411:34;21391:18;;;21384:62;-1:-1:-1;;;21462:18:1;;;21455:44;21516:19;;37691:56:0;21131:410:1;72600:102:0;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;72671:15:::1;:23:::0;;-1:-1:-1;;;;;;72671:23:0::1;-1:-1:-1::0;;;;;72671:23:0;;;::::1;::::0;;;::::1;::::0;;72600:102::o;73701:154::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;73770:15:::1;::::0;73762:63:::1;::::0;73749:7:::1;::::0;-1:-1:-1;;;;;73770:15:0::1;::::0;73799:21:::1;::::0;73749:7;73762:63;73749:7;73762:63;73799:21;73770:15;73762:63:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73748:77;;;73844:2;73836:11;;;::::0;::::1;;73737:118;73701:154::o:0;42744:177::-;42874:39;42891:4;42897:2;42901:7;42874:39;;;;;;;;;;;;:16;:39::i;73472:133::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;73547:13:::1;:19:::0;;-1:-1:-1;;;;73577:20:0;-1:-1:-1;;;73547:19:0;::::1;;::::0;;;::::1;-1:-1:-1::0;;;;73577:20:0;;;;;-1:-1:-1;;;73577:20:0;::::1;;::::0;;;::::1;;::::0;;73472:133::o;36363:228::-;36466:7;36266:12;;36499:5;:21;36491:69;;;;-1:-1:-1;;;36491:69:0;;13958:2:1;36491:69:0;;;13940:21:1;13997:2;13977:18;;;13970:30;14036:34;14016:18;;;14009:62;-1:-1:-1;;;14087:18:1;;;14080:33;14130:19;;36491:69:0;13756:399:1;36491:69:0;-1:-1:-1;36578:5:0;36363:228::o;69303:783::-;69420:6;71790:272;;71885:13;;71901:1;71885:17;;;;:::i;:::-;71876:6;71860:13;36239:7;36266:12;;36186:100;71860:13;:22;;;;:::i;:::-;:42;71838:138;;;;-1:-1:-1;;;71838:138:0;;;;;;;:::i;:::-;72004:1;71995:6;:10;71987:55;;;;-1:-1:-1;;;71987:55:0;;;;;;;:::i;:::-;69460:12:::1;::::0;-1:-1:-1;;;;;69460:12:0::1;69444:69;;;;-1:-1:-1::0;;;69444:69:0::1;;;;;;;:::i;:::-;69532:13;::::0;-1:-1:-1;;;69532:13:0;::::1;;;69524:52;;;::::0;-1:-1:-1;;;69524:52:0;;15186:2:1;69524:52:0::1;::::0;::::1;15168:21:1::0;15225:2;15205:18;;;15198:30;15264:28;15244:18;;;15237:56;15310:18;;69524:52:0::1;14984:350:1::0;69524:52:0::1;69604:1;69595:6;:10;;;69587:39;;;::::0;-1:-1:-1;;;69587:39:0;;12434:2:1;69587:39:0::1;::::0;::::1;12416:21:1::0;12473:2;12453:18;;;12446:30;-1:-1:-1;;;12492:18:1;;;12485:46;12548:18;;69587:39:0::1;12232:340:1::0;69587:39:0::1;69637:20;69660:25;69678:6;69660:17;:25::i;:::-;69637:48;;69717:12;69704:9;:25;;69696:54;;;::::0;-1:-1:-1;;;69696:54:0;;22930:2:1;69696:54:0::1;::::0;::::1;22912:21:1::0;22969:2;22949:18;;;22942:30;-1:-1:-1;;;22988:18:1;;;22981:46;23044:18;;69696:54:0::1;22728:340:1::0;69696:54:0::1;69783:21;69798:5;;69783:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;69783:14:0::1;::::0;-1:-1:-1;;;69783:21:0:i:1;:::-;69761:102;;;::::0;-1:-1:-1;;;69761:102:0;;16379:2:1;69761:102:0::1;::::0;::::1;16361:21:1::0;16418:2;16398:18;;;16391:30;16457:33;16437:18;;;16430:61;16508:18;;69761:102:0::1;16177:355:1::0;69761:102:0::1;69934:18;::::0;::::1;-1:-1:-1::0;;;69934:18:0;;::::1;::::0;::::1;::::0;69896:34;::::1;:25;69910:10;69896:13;:25::i;:::-;:34;;;;:::i;:::-;:56;;69874:164;;;;-1:-1:-1::0;;;69874:164:0::1;;;;;;;:::i;:::-;70049:29;70059:10;70071:6;70049:29;;:9;:29::i;:::-;69433:653;69303:783:::0;;;;:::o;73613:80::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;73677:8:::1;::::0;;-1:-1:-1;;;;73665:20:0;::::1;-1:-1:-1::0;;;73677:8:0;;;::::1;;;73676:9;73665:20:::0;;::::1;;::::0;;73613:80::o;69114:181::-;69281:5;;69175:7;;69254:33;;:22;:15;;;69274:1;69254:19;:22::i;:::-;:26;;:33::i;:::-;69228:15;;69201:50;;69228:22;;69248:1;69228:19;:22::i;:::-;69201;:15;;;69221:1;69201:19;:22::i;:50::-;:86;;;;:::i;72710:102::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;72781:13:::1;:23:::0;72710:102::o;70702:328::-;70808:12;;-1:-1:-1;;;;;70808:12:0;70792:78;;;;-1:-1:-1;;;70792:78:0;;17492:2:1;70792:78:0;;;17474:21:1;17531:2;17511:18;;;17504:30;17570:31;17550:18;;;17543:59;17619:18;;70792:78:0;17290:353:1;70792:78:0;70900:10;70889:7;12703:6;;-1:-1:-1;;;;;12703:6:0;;12630:87;70889:7;-1:-1:-1;;;;;70889:21:0;;:60;;;-1:-1:-1;70922:12:0;;-1:-1:-1;;;;;70922:12:0;70939:10;70914:35;70889:60;70881:90;;;;-1:-1:-1;;;70881:90:0;;17146:2:1;70881:90:0;;;17128:21:1;17185:2;17165:18;;;17158:30;-1:-1:-1;;;17204:18:1;;;17197:47;17261:18;;70881:90:0;16944:341:1;70881:90:0;70984:38;70994:2;70998:9;70984:38;;71009:5;71016;70984:9;:38::i;:::-;70702:328;;;;:::o;39597:124::-;39661:7;39688:20;39700:7;39688:11;:20::i;:::-;:25;;39597:124;-1:-1:-1;;39597:124:0:o;38313:258::-;38377:7;-1:-1:-1;;;;;38419:19:0;;38397:112;;;;-1:-1:-1;;;38397:112:0;;15967:2:1;38397:112:0;;;15949:21:1;16006:2;15986:18;;;15979:30;16045:34;16025:18;;;16018:62;-1:-1:-1;;;16096:18:1;;;16089:41;16147:19;;38397:112:0;15765:407:1;38397:112:0;-1:-1:-1;;;;;;38535:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38535:27:0;;38313:258::o;13281:103::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;13346:30:::1;13373:1;13346:18;:30::i;:::-;13281:103::o:0;70094:600::-;70155:6;71790:272;;71885:13;;71901:1;71885:17;;;;:::i;:::-;71876:6;71860:13;36239:7;36266:12;;36186:100;71860:13;:22;;;;:::i;:::-;:42;71838:138;;;;-1:-1:-1;;;71838:138:0;;;;;;;:::i;:::-;72004:1;71995:6;:10;71987:55;;;;-1:-1:-1;;;71987:55:0;;;;;;;:::i;:::-;70190:12:::1;::::0;-1:-1:-1;;;;;70190:12:0::1;70174:69;;;;-1:-1:-1::0;;;70174:69:0::1;;;;;;;:::i;:::-;70262:10;::::0;-1:-1:-1;;;70262:10:0;::::1;;;70254:46;;;::::0;-1:-1:-1;;;70254:46:0;;21748:2:1;70254:46:0::1;::::0;::::1;21730:21:1::0;21787:2;21767:18;;;21760:30;21826:25;21806:18;;;21799:53;21869:18;;70254:46:0::1;21546:347:1::0;70254:46:0::1;70328:1;70319:6;:10;;;70311:39;;;::::0;-1:-1:-1;;;70311:39:0;;12434:2:1;70311:39:0::1;::::0;::::1;12416:21:1::0;12473:2;12453:18;;;12446:30;-1:-1:-1;;;12492:18:1;;;12485:46;12548:18;;70311:39:0::1;12232:340:1::0;70311:39:0::1;70361:20;70384:25;70402:6;70384:17;:25::i;:::-;70361:48;;70441:12;70428:9;:25;;70420:54;;;::::0;-1:-1:-1;;;70420:54:0;;22930:2:1;70420:54:0::1;::::0;::::1;22912:21:1::0;22969:2;22949:18;;;22942:30;-1:-1:-1;;;22988:18:1;;;22981:46;23044:18;;70420:54:0::1;22728:340:1::0;70420:54:0::1;70545:15;::::0;::::1;-1:-1:-1::0;;;70545:15:0;;::::1;::::0;::::1;::::0;70507:34;::::1;:25;70521:10;70507:13;:25::i;:::-;:34;;;;:::i;:::-;:53;;70485:161;;;;-1:-1:-1::0;;;70485:161:0::1;;;;;;;:::i;:::-;70657:29;70667:10;70679:6;70657:29;;:9;:29::i;72912:104::-:0;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;72984:15:::1;:24:::0;72912:104::o;72820:84::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;72882:5:::1;:14:::0;72820:84::o;39957:104::-;40013:13;40046:7;40039:14;;;;;:::i;73350:114::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;73432:11:::1;:24:::0;73350:114::o;67943:26::-;;;;;;;:::i;73024:100::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;73098:18:::1;:7;73108:8:::0;;73098:18:::1;:::i;41848:311::-:0;-1:-1:-1;;;;;41966:24:0;;11434:10;41966:24;;41958:63;;;;-1:-1:-1;;;41958:63:0;;18211:2:1;41958:63:0;;;18193:21:1;18250:2;18230:18;;;18223:30;18289:28;18269:18;;;18262:56;18335:18;;41958:63:0;18009:350:1;41958:63:0;11434:10;42034:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42034:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42034:53:0;;;;;;;;;;42103:48;;10542:41:1;;;42034:42:0;;11434:10;42103:48;;10515:18:1;42103:48:0;;;;;;;41848:311;;:::o;42992:355::-;43151:28;43161:4;43167:2;43171:7;43151:9;:28::i;:::-;43212:48;43235:4;43241:2;43245:7;43254:5;43212:22;:48::i;:::-;43190:149;;;;-1:-1:-1;;;43190:149:0;;;;;;;:::i;71315:291::-;71514:11;;71554:28;;-1:-1:-1;;71571:10:0;7874:2:1;7870:15;7866:53;71554:28:0;;;7854:66:1;71411:4:0;;71453:145;;71490:5;;71514:11;7936:12:1;;71554:28:0;;;;;;;;;;;;71544:39;;;;;;71453:18;:145::i;73246:96::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;73318:16:::1;:9;73330:4:::0;;73318:16:::1;:::i;73132:106::-:0;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;73209:21:::1;:14;73226:4:::0;;73209:21:::1;:::i;68496:610::-:0;68614:13;68653:16;68661:7;43659:4;43693:12;-1:-1:-1;43683:22:0;43602:111;68653:16;68645:62;;;;-1:-1:-1;;;68645:62:0;;12032:2:1;68645:62:0;;;12014:21:1;12071:2;12051:18;;;12044:30;12110:34;12090:18;;;12083:62;-1:-1:-1;;;12161:18:1;;;12154:31;12202:19;;68645:62:0;11830:397:1;68645:62:0;68749:8;;68718:28;;-1:-1:-1;;;68749:8:0;;;;:35;;68770:14;68749:35;;;68760:7;68749:35;68718:66;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68846:1;68821:14;68815:28;:32;:283;;;;;;;;;;;;;;;;;68939:14;68980:18;:7;:16;:18::i;:::-;69025:9;68896:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68815:283;68795:303;68496:610;-1:-1:-1;;;68496:610:0:o;71669:113::-;71728:7;71755:19;71769:4;71755:13;:19::i;72070:235::-;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;72174:5:::1;71885:13;;71901:1;71885:17;;;;:::i;:::-;71876:6;71860:13;36239:7:::0;36266:12;;36186:100;71860:13:::1;:22;;;;:::i;:::-;:42;71838:138;;;;-1:-1:-1::0;;;71838:138:0::1;;;;;;;:::i;:::-;72004:1;71995:6;:10;71987:55;;;;-1:-1:-1::0;;;71987:55:0::1;;;;;;;:::i;:::-;72213:12:::2;::::0;-1:-1:-1;;;;;72213:12:0::2;72197:69;;;;-1:-1:-1::0;;;72197:69:0::2;;;;;;;:::i;:::-;72277:20;72287:2;72291:5;72277:9;:20::i;13539:201::-:0;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13628:22:0;::::1;13620:73;;;::::0;-1:-1:-1;;;13620:73:0;;12779:2:1;13620:73:0::1;::::0;::::1;12761:21:1::0;12818:2;12798:18;;;12791:30;12857:34;12837:18;;;12830:62;-1:-1:-1;;;12908:18:1;;;12901:36;12954:19;;13620:73:0::1;12577:402:1::0;13620:73:0::1;13704:28;13723:8;13704:18;:28::i;72313:158::-:0;12703:6;;-1:-1:-1;;;;;12703:6:0;11434:10;12850:23;12842:68;;;;-1:-1:-1;;;12842:68:0;;;;;;;:::i;:::-;72396:18:::1;:31:::0;;-1:-1:-1;;;;72438:25:0;-1:-1:-1;;;72396:31:0::1;::::0;;::::1;;-1:-1:-1::0;;;;72438:25:0;;-1:-1:-1;;;72438:25:0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;72313:158::o;47851:196::-;47966:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47966:29:0;-1:-1:-1;;;;;47966:29:0;;;;;;;;;48011:28;;47966:24;;48011:28;;;;;;;47851:196;;;:::o;46024:1709::-;46139:35;46177:20;46189:7;46177:11;:20::i;:::-;46252:18;;46139:58;;-1:-1:-1;46210:22:0;;-1:-1:-1;;;;;46236:34:0;11434:10;-1:-1:-1;;;;;46236:34:0;;:87;;;-1:-1:-1;11434:10:0;46287:20;46299:7;46287:11;:20::i;:::-;-1:-1:-1;;;;;46287:36:0;;46236:87;:154;;;-1:-1:-1;46357:18:0;;46340:50;;11434:10;42230:214;:::i;46340:50::-;46210:181;;46426:17;46404:117;;;;-1:-1:-1;;;46404:117:0;;18566:2:1;46404:117:0;;;18548:21:1;18605:2;18585:18;;;18578:30;18644:34;18624:18;;;18617:62;-1:-1:-1;;;18695:18:1;;;18688:48;18753:19;;46404:117:0;18364:414:1;46404:117:0;46578:4;-1:-1:-1;;;;;46556:26:0;:13;:18;;;-1:-1:-1;;;;;46556:26:0;;46534:114;;;;-1:-1:-1;;;46534:114:0;;16739:2:1;46534:114:0;;;16721:21:1;16778:2;16758:18;;;16751:30;16817:34;16797:18;;;16790:62;-1:-1:-1;;;16868:18:1;;;16861:36;16914:19;;46534:114:0;16537:402:1;46534:114:0;-1:-1:-1;;;;;46667:16:0;;46659:66;;;;-1:-1:-1;;;46659:66:0;;14362:2:1;46659:66:0;;;14344:21:1;14401:2;14381:18;;;14374:30;14440:34;14420:18;;;14413:62;-1:-1:-1;;;14491:18:1;;;14484:35;14536:19;;46659:66:0;14160:401:1;46659:66:0;46846:49;46863:1;46867:7;46876:13;:18;;;46846:8;:49::i;:::-;-1:-1:-1;;;;;46908:18:0;;;;;;:12;:18;;;;;:31;;46938:1;;46908:18;:31;;46938:1;;-1:-1:-1;;;;;46908:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;46908:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46950:16:0;;-1:-1:-1;46950:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;46950:16:0;;:29;;-1:-1:-1;;46950:29:0;;:::i;:::-;;;-1:-1:-1;;;;;46950:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47013:43:0;;;;;;;;-1:-1:-1;;;;;47013:43:0;;;;;;47039:15;47013:43;;;;;;;;;-1:-1:-1;46990:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;46990:66:0;-1:-1:-1;;;;;;46990:66:0;;;;;;;;;;;47318:11;47002:7;-1:-1:-1;47318:11:0;:::i;:::-;47385:1;47344:24;;;:11;:24;;;;;:29;47296:33;;-1:-1:-1;;;;;;47344:29:0;47340:288;;47408:20;47416:11;43659:4;43693:12;-1:-1:-1;43683:22:0;43602:111;47408:20;47404:213;;;47476:125;;;;;;;;47513:18;;-1:-1:-1;;;;;47476:125:0;;;;;;47554:28;;;;47476:125;;;;;;;;;;-1:-1:-1;47449:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;47449:152:0;-1:-1:-1;;;;;;47449:152:0;;;;;;;;;;;;47404:213;47664:7;47660:2;-1:-1:-1;;;;;47645:27:0;47654:4;-1:-1:-1;;;;;47645:27:0;;;;;;;;;;;46128:1605;;;46024:1709;;;:::o;38579:266::-;38640:7;-1:-1:-1;;;;;38682:19:0;;38660:118;;;;-1:-1:-1;;;38660:118:0;;14768:2:1;38660:118:0;;;14750:21:1;14807:2;14787:18;;;14780:30;14846:34;14826:18;;;14819:62;-1:-1:-1;;;14897:18:1;;;14890:47;14954:19;;38660:118:0;14566:413:1;38660:118:0;-1:-1:-1;;;;;;38804:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;38804:32:0;;-1:-1:-1;;;;;38804:32:0;;38579:266::o;43721:110::-;43790:33;43800:2;43804:8;43790:33;;;;;;;;;;;;43818:1;43821;43790:9;:33::i;:::-;43721:110;;:::o;5823:98::-;5881:7;5908:5;5912:1;5908;:5;:::i;4859:98::-;4917:7;4944:5;4948:1;4944;:5;:::i;5258:98::-;5316:7;5343:5;5347:1;5343;:5;:::i;43839:146::-;43936:41;43946:2;43950:8;43936:41;;;;;;;;;;;;43964:5;43971;43936:9;:41::i;38853:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;38988:16:0;38996:7;43659:4;43693:12;-1:-1:-1;43683:22:0;43602:111;38988:16;38980:71;;;;-1:-1:-1;;;38980:71:0;;13186:2:1;38980:71:0;;;13168:21:1;13225:2;13205:18;;;13198:30;13264:34;13244:18;;;13237:62;-1:-1:-1;;;13315:18:1;;;13308:40;13365:19;;38980:71:0;12984:406:1;38980:71:0;39064:26;39116:12;39105:7;:23;39101:103;;39166:22;39176:12;39166:7;:22;:::i;:::-;:26;;39191:1;39166:26;:::i;:::-;39145:47;;39101:103;39236:7;39216:242;39253:18;39245:4;:26;39216:242;;39296:31;39330:17;;;:11;:17;;;;;;;;;39296:51;;;;;;;;;-1:-1:-1;;;;;39296:51:0;;;;;-1:-1:-1;;;39296:51:0;;;;;;;;;;;;39366:28;39362:85;;39422:9;38853:682;-1:-1:-1;;;;38853:682:0:o;39362:85::-;-1:-1:-1;39273:6:0;;;;:::i;:::-;;;;39216:242;;;-1:-1:-1;39470:57:0;;-1:-1:-1;;;39470:57:0;;22100:2:1;39470:57:0;;;22082:21:1;22139:2;22119:18;;;22112:30;22178:34;22158:18;;;22151:62;-1:-1:-1;;;22229:18:1;;;22222:45;22284:19;;39470:57:0;21898:411:1;13900:191:0;13993:6;;;-1:-1:-1;;;;;14010:17:0;;;-1:-1:-1;;;;;;14010:17:0;;;;;;;14043:40;;13993:6;;;14010:17;13993:6;;14043:40;;13974:16;;14043:40;13963:128;13900:191;:::o;49722:985::-;49877:4;-1:-1:-1;;;;;49898:13:0;;15241:20;15289:8;49894:806;;49951:175;;-1:-1:-1;;;49951:175:0;;-1:-1:-1;;;;;49951:36:0;;;;;:175;;11434:10;;50045:4;;50072:7;;50102:5;;49951:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49951:175:0;;;;;;;;-1:-1:-1;;49951:175:0;;;;;;;;;;;;:::i;:::-;;;49930:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50313:13:0;;50309:321;;50356:109;;-1:-1:-1;;;50356:109:0;;;;;;;:::i;50309:321::-;50580:6;50574:13;50565:6;50561:2;50557:15;50550:38;49930:715;-1:-1:-1;;;;;;50190:55:0;-1:-1:-1;;;50190:55:0;;-1:-1:-1;50183:62:0;;49894:806;-1:-1:-1;50684:4:0;49894:806;49722:985;;;;;;:::o;9209:190::-;9334:4;9387;9358:25;9371:5;9378:4;9358:12;:25::i;:::-;:33;;9209:190;-1:-1:-1;;;;9209:190:0:o;32339:723::-;32395:13;32616:10;32612:53;;-1:-1:-1;;32643:10:0;;;;;;;;;;;;-1:-1:-1;;;32643:10:0;;;;;32339:723::o;32612:53::-;32690:5;32675:12;32731:78;32738:9;;32731:78;;32764:8;;;;:::i;:::-;;-1:-1:-1;32787:10:0;;-1:-1:-1;32795:2:0;32787:10;;:::i;:::-;;;32731:78;;;32819:19;32851:6;32841:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32841:17:0;;32819:39;;32869:154;32876:10;;32869:154;;32903:11;32913:1;32903:11;;:::i;:::-;;-1:-1:-1;32972:10:0;32980:2;32972:5;:10;:::i;:::-;32959:24;;:2;:24;:::i;:::-;32946:39;;32929:6;32936;32929:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;32929:56:0;;;;;;;;-1:-1:-1;33000:11:0;33009:2;33000:11;;:::i;:::-;;;32869:154;;44262:1508;44431:20;44454:12;-1:-1:-1;;;;;44485:16:0;;44477:62;;;;-1:-1:-1;;;44477:62:0;;20931:2:1;44477:62:0;;;20913:21:1;20970:2;20950:18;;;20943:30;21009:34;20989:18;;;20982:62;-1:-1:-1;;;21060:18:1;;;21053:31;21101:19;;44477:62:0;20729:397:1;44477:62:0;44684:21;44692:12;43659:4;43693:12;-1:-1:-1;43683:22:0;43602:111;44684:21;44683:22;44675:64;;;;-1:-1:-1;;;44675:64:0;;20158:2:1;44675:64:0;;;20140:21:1;20197:2;20177:18;;;20170:30;20236:31;20216:18;;;20209:59;20285:18;;44675:64:0;19956:353:1;44675:64:0;44770:12;44758:8;:24;;44750:71;;;;-1:-1:-1;;;44750:71:0;;23275:2:1;44750:71:0;;;23257:21:1;23314:2;23294:18;;;23287:30;23353:34;23333:18;;;23326:62;-1:-1:-1;;;23404:18:1;;;23397:32;23446:19;;44750:71:0;23073:398:1;44750:71:0;-1:-1:-1;;;;;44941:16:0;;44908:30;44941:16;;;:12;:16;;;;;;;;;44908:49;;;;;;;;;-1:-1:-1;;;;;44908:49:0;;;;;-1:-1:-1;;;44908:49:0;;;;;;;;;;;44987:135;;;;;;;;45013:19;;44908:49;;44987:135;;;45013:39;;45043:8;;45013:39;:::i;:::-;-1:-1:-1;;;;;44987:135:0;;;;;45102:8;45067:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;44987:135:0;;;;;;-1:-1:-1;;;;;44968:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;44968:154:0;;;;;;;;;;;;45161:43;;;;;;;;;;;45187:15;45161:43;;;;;;;;45133:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;45133:71:0;-1:-1:-1;;;;;;45133:71:0;;;;;;;;;;;;;;;;;;45145:12;;45265:325;45289:8;45285:1;:12;45265:325;;;45324:38;;45349:12;;-1:-1:-1;;;;;45324:38:0;;;45341:1;;45324:38;;45341:1;;45324:38;45403:59;45434:1;45438:2;45442:12;45456:5;45403:22;:59::i;:::-;45377:172;;;;-1:-1:-1;;;45377:172:0;;;;;;;:::i;:::-;45564:14;;;;:::i;:::-;;;;45299:3;;;;;:::i;:::-;;;;45265:325;;;-1:-1:-1;45602:12:0;:27;;;45711:51;45725:12;45739:8;45749:5;45756;45711:13;:51::i;:::-;44420:1350;;;44262:1508;;;;;:::o;9761:675::-;9844:7;9887:4;9844:7;9902:497;9926:5;:12;9922:1;:16;9902:497;;;9960:20;9983:5;9989:1;9983:8;;;;;;;;:::i;:::-;;;;;;;9960:31;;10026:12;10010;:28;10006:382;;10512:13;10562:15;;;10598:4;10591:15;;;10645:4;10629:21;;10138:57;;10006:382;;;10512:13;10562:15;;;10598:4;10591:15;;;10645:4;10629:21;;10315:57;;10006:382;-1:-1:-1;9940:3:0;;;;:::i;:::-;;;;9902:497;;;-1:-1:-1;10416:12:0;9761:675;-1:-1:-1;;;9761:675:0:o;71038:267::-;71174:12;71158:140;71192:23;71207:8;71192:12;:23;:::i;:::-;71188:1;:27;71158:140;;;71236:12;;:50;;-1:-1:-1;;;71236:50:0;;23864:10:1;23901:15;;;71236:50:0;;;23883:34:1;23953:15;;;23933:18;;;23926:43;24005:15;;23985:18;;;23978:43;-1:-1:-1;;;;;71236:12:0;;;;:25;;23827:18:1;;71236:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71217:3;;;;;:::i;:::-;;;;71158:140;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:163;424:20;;484:10;473:22;;463:33;;453:61;;510:1;507;500:12;525:156;591:20;;651:4;640:16;;630:27;;620:55;;671:1;668;661:12;686:186;745:6;798:2;786:9;777:7;773:23;769:32;766:52;;;814:1;811;804:12;766:52;837:29;856:9;837:29;:::i;877:260::-;945:6;953;1006:2;994:9;985:7;981:23;977:32;974:52;;;1022:1;1019;1012:12;974:52;1045:29;1064:9;1045:29;:::i;:::-;1035:39;;1093:38;1127:2;1116:9;1112:18;1093:38;:::i;:::-;1083:48;;877:260;;;;;:::o;1142:328::-;1219:6;1227;1235;1288:2;1276:9;1267:7;1263:23;1259:32;1256:52;;;1304:1;1301;1294:12;1256:52;1327:29;1346:9;1327:29;:::i;:::-;1317:39;;1375:38;1409:2;1398:9;1394:18;1375:38;:::i;:::-;1365:48;;1460:2;1449:9;1445:18;1432:32;1422:42;;1142:328;;;;;:::o;1475:980::-;1570:6;1578;1586;1594;1647:3;1635:9;1626:7;1622:23;1618:33;1615:53;;;1664:1;1661;1654:12;1615:53;1687:29;1706:9;1687:29;:::i;:::-;1677:39;;1735:2;1756:38;1790:2;1779:9;1775:18;1756:38;:::i;:::-;1746:48;;1841:2;1830:9;1826:18;1813:32;1803:42;;1896:2;1885:9;1881:18;1868:32;1919:18;1960:2;1952:6;1949:14;1946:34;;;1976:1;1973;1966:12;1946:34;2014:6;2003:9;1999:22;1989:32;;2059:7;2052:4;2048:2;2044:13;2040:27;2030:55;;2081:1;2078;2071:12;2030:55;2117:2;2104:16;2139:2;2135;2132:10;2129:36;;;2145:18;;:::i;:::-;2187:53;2230:2;2211:13;;-1:-1:-1;;2207:27:1;2203:36;;2187:53;:::i;:::-;2174:66;;2263:2;2256:5;2249:17;2303:7;2298:2;2293;2289;2285:11;2281:20;2278:33;2275:53;;;2324:1;2321;2314:12;2275:53;2379:2;2374;2370;2366:11;2361:2;2354:5;2350:14;2337:45;2423:1;2418:2;2413;2406:5;2402:14;2398:23;2391:34;;2444:5;2434:15;;;;;1475:980;;;;;;;:::o;2460:254::-;2525:6;2533;2586:2;2574:9;2565:7;2561:23;2557:32;2554:52;;;2602:1;2599;2592:12;2554:52;2625:29;2644:9;2625:29;:::i;:::-;2615:39;;2673:35;2704:2;2693:9;2689:18;2673:35;:::i;2719:254::-;2787:6;2795;2848:2;2836:9;2827:7;2823:23;2819:32;2816:52;;;2864:1;2861;2854:12;2816:52;2887:29;2906:9;2887:29;:::i;:::-;2877:39;2963:2;2948:18;;;;2935:32;;-1:-1:-1;;;2719:254:1:o;2978:957::-;3062:6;3093:2;3136;3124:9;3115:7;3111:23;3107:32;3104:52;;;3152:1;3149;3142:12;3104:52;3192:9;3179:23;3221:18;3262:2;3254:6;3251:14;3248:34;;;3278:1;3275;3268:12;3248:34;3316:6;3305:9;3301:22;3291:32;;3361:7;3354:4;3350:2;3346:13;3342:27;3332:55;;3383:1;3380;3373:12;3332:55;3419:2;3406:16;3441:2;3437;3434:10;3431:36;;;3447:18;;:::i;:::-;3493:2;3490:1;3486:10;3476:20;;3516:28;3540:2;3536;3532:11;3516:28;:::i;:::-;3578:15;;;3609:12;;;;3641:11;;;3671;;;3667:20;;3664:33;-1:-1:-1;3661:53:1;;;3710:1;3707;3700:12;3661:53;3732:1;3723:10;;3742:163;3756:2;3753:1;3750:9;3742:163;;;3813:17;;3801:30;;3774:1;3767:9;;;;;3851:12;;;;3883;;3742:163;;;-1:-1:-1;3924:5:1;2978:957;-1:-1:-1;;;;;;;;2978:957:1:o;3940:248::-;4002:6;4010;4063:2;4051:9;4042:7;4038:23;4034:32;4031:52;;;4079:1;4076;4069:12;4031:52;4102:26;4118:9;4102:26;:::i;4193:180::-;4252:6;4305:2;4293:9;4284:7;4280:23;4276:32;4273:52;;;4321:1;4318;4311:12;4273:52;-1:-1:-1;4344:23:1;;4193:180;-1:-1:-1;4193:180:1:o;4378:245::-;4436:6;4489:2;4477:9;4468:7;4464:23;4460:32;4457:52;;;4505:1;4502;4495:12;4457:52;4544:9;4531:23;4563:30;4587:5;4563:30;:::i;4628:249::-;4697:6;4750:2;4738:9;4729:7;4725:23;4721:32;4718:52;;;4766:1;4763;4756:12;4718:52;4798:9;4792:16;4817:30;4841:5;4817:30;:::i;4882:592::-;4953:6;4961;5014:2;5002:9;4993:7;4989:23;4985:32;4982:52;;;5030:1;5027;5020:12;4982:52;5070:9;5057:23;5099:18;5140:2;5132:6;5129:14;5126:34;;;5156:1;5153;5146:12;5126:34;5194:6;5183:9;5179:22;5169:32;;5239:7;5232:4;5228:2;5224:13;5220:27;5210:55;;5261:1;5258;5251:12;5210:55;5301:2;5288:16;5327:2;5319:6;5316:14;5313:34;;;5343:1;5340;5333:12;5313:34;5388:7;5383:2;5374:6;5370:2;5366:15;5362:24;5359:37;5356:57;;;5409:1;5406;5399:12;5356:57;5440:2;5432:11;;;;;5462:6;;-1:-1:-1;4882:592:1;;-1:-1:-1;;;;4882:592:1:o;5664:254::-;5732:6;5740;5793:2;5781:9;5772:7;5768:23;5764:32;5761:52;;;5809:1;5806;5799:12;5761:52;5845:9;5832:23;5822:33;;5874:38;5908:2;5897:9;5893:18;5874:38;:::i;5923:401::-;6005:6;6013;6021;6029;6082:3;6070:9;6061:7;6057:23;6053:33;6050:53;;;6099:1;6096;6089:12;6050:53;6122:28;6140:9;6122:28;:::i;:::-;6112:38;;6169:37;6202:2;6191:9;6187:18;6169:37;:::i;:::-;6159:47;;6225:38;6259:2;6248:9;6244:18;6225:38;:::i;:::-;6215:48;;6282:36;6314:2;6303:9;6299:18;6282:36;:::i;:::-;6272:46;;5923:401;;;;;;;:::o;6329:182::-;6386:6;6439:2;6427:9;6418:7;6414:23;6410:32;6407:52;;;6455:1;6452;6445:12;6407:52;6478:27;6495:9;6478:27;:::i;6516:685::-;6609:6;6617;6625;6678:2;6666:9;6657:7;6653:23;6649:32;6646:52;;;6694:1;6691;6684:12;6646:52;6717:27;6734:9;6717:27;:::i;:::-;6707:37;;6795:2;6784:9;6780:18;6767:32;6818:18;6859:2;6851:6;6848:14;6845:34;;;6875:1;6872;6865:12;6845:34;6913:6;6902:9;6898:22;6888:32;;6958:7;6951:4;6947:2;6943:13;6939:27;6929:55;;6980:1;6977;6970:12;6929:55;7020:2;7007:16;7046:2;7038:6;7035:14;7032:34;;;7062:1;7059;7052:12;7032:34;7115:7;7110:2;7100:6;7097:1;7093:14;7089:2;7085:23;7081:32;7078:45;7075:65;;;7136:1;7133;7126:12;7075:65;7167:2;7163;7159:11;7149:21;;7189:6;7179:16;;;;;6516:685;;;;;:::o;7206:252::-;7270:6;7278;7331:2;7319:9;7310:7;7306:23;7302:32;7299:52;;;7347:1;7344;7337:12;7299:52;7370:27;7387:9;7370:27;:::i;:::-;7360:37;;7416:36;7448:2;7437:9;7433:18;7416:36;:::i;7463:257::-;7504:3;7542:5;7536:12;7569:6;7564:3;7557:19;7585:63;7641:6;7634:4;7629:3;7625:14;7618:4;7611:5;7607:16;7585:63;:::i;:::-;7702:2;7681:15;-1:-1:-1;;7677:29:1;7668:39;;;;7709:4;7664:50;;7463:257;-1:-1:-1;;7463:257:1:o;7959:1527::-;8183:3;8221:6;8215:13;8247:4;8260:51;8304:6;8299:3;8294:2;8286:6;8282:15;8260:51;:::i;:::-;8374:13;;8333:16;;;;8396:55;8374:13;8333:16;8418:15;;;8396:55;:::i;:::-;8540:13;;8473:20;;;8513:1;;8600;8622:18;;;;8675;;;;8702:93;;8780:4;8770:8;8766:19;8754:31;;8702:93;8843:2;8833:8;8830:16;8810:18;8807:40;8804:167;;;-1:-1:-1;;;8870:33:1;;8926:4;8923:1;8916:15;8956:4;8877:3;8944:17;8804:167;8987:18;9014:110;;;;9138:1;9133:328;;;;8980:481;;9014:110;-1:-1:-1;;9049:24:1;;9035:39;;9094:20;;;;-1:-1:-1;9014:110:1;;9133:328;24574:1;24567:14;;;24611:4;24598:18;;9228:1;9242:169;9256:8;9253:1;9250:15;9242:169;;;9338:14;;9323:13;;;9316:37;9381:16;;;;9273:10;;9242:169;;;9246:3;;9442:8;9435:5;9431:20;9424:27;;8980:481;-1:-1:-1;9477:3:1;;7959:1527;-1:-1:-1;;;;;;;;;;;7959:1527:1:o;9909:488::-;-1:-1:-1;;;;;10178:15:1;;;10160:34;;10230:15;;10225:2;10210:18;;10203:43;10277:2;10262:18;;10255:34;;;10325:3;10320:2;10305:18;;10298:31;;;10103:4;;10346:45;;10371:19;;10363:6;10346:45;:::i;:::-;10338:53;9909:488;-1:-1:-1;;;;;;9909:488:1:o;10776:219::-;10925:2;10914:9;10907:21;10888:4;10945:44;10985:2;10974:9;10970:18;10962:6;10945:44;:::i;11403:422::-;11605:2;11587:21;;;11644:2;11624:18;;;11617:30;11683:34;11678:2;11663:18;;11656:62;11754:28;11749:2;11734:18;;11727:56;11815:3;11800:19;;11403:422::o;13395:356::-;13597:2;13579:21;;;13616:18;;;13609:30;13675:34;13670:2;13655:18;;13648:62;13742:2;13727:18;;13395:356::o;17648:::-;17850:2;17832:21;;;17869:18;;;17862:30;17928:34;17923:2;17908:18;;17901:62;17995:2;17980:18;;17648:356::o;19186:345::-;19388:2;19370:21;;;19427:2;19407:18;;;19400:30;-1:-1:-1;;;19461:2:1;19446:18;;19439:51;19522:2;19507:18;;19186:345::o;19536:415::-;19738:2;19720:21;;;19777:2;19757:18;;;19750:30;19816:34;19811:2;19796:18;;19789:62;-1:-1:-1;;;19882:2:1;19867:18;;19860:49;19941:3;19926:19;;19536:415::o;20314:410::-;20516:2;20498:21;;;20555:2;20535:18;;;20528:30;20594:34;20589:2;20574:18;;20567:62;-1:-1:-1;;;20660:2:1;20645:18;;20638:44;20714:3;20699:19;;20314:410::o;24221:275::-;24292:2;24286:9;24357:2;24338:13;;-1:-1:-1;;24334:27:1;24322:40;;24392:18;24377:34;;24413:22;;;24374:62;24371:88;;;24439:18;;:::i;:::-;24475:2;24468:22;24221:275;;-1:-1:-1;24221:275:1:o;24627:253::-;24667:3;-1:-1:-1;;;;;24756:2:1;24753:1;24749:10;24786:2;24783:1;24779:10;24817:3;24813:2;24809:12;24804:3;24801:21;24798:47;;;24825:18;;:::i;:::-;24861:13;;24627:253;-1:-1:-1;;;;24627:253:1:o;24885:128::-;24925:3;24956:1;24952:6;24949:1;24946:13;24943:39;;;24962:18;;:::i;:::-;-1:-1:-1;24998:9:1;;24885:128::o;25018:120::-;25058:1;25084;25074:35;;25089:18;;:::i;:::-;-1:-1:-1;25123:9:1;;25018:120::o;25143:168::-;25183:7;25249:1;25245;25241:6;25237:14;25234:1;25231:21;25226:1;25219:9;25212:17;25208:45;25205:71;;;25256:18;;:::i;:::-;-1:-1:-1;25296:9:1;;25143:168::o;25316:246::-;25356:4;-1:-1:-1;;;;;25469:10:1;;;;25439;;25491:12;;;25488:38;;;25506:18;;:::i;:::-;25543:13;;25316:246;-1:-1:-1;;;25316:246:1:o;25567:125::-;25607:4;25635:1;25632;25629:8;25626:34;;;25640:18;;:::i;:::-;-1:-1:-1;25677:9:1;;25567:125::o;25697:258::-;25769:1;25779:113;25793:6;25790:1;25787:13;25779:113;;;25869:11;;;25863:18;25850:11;;;25843:39;25815:2;25808:10;25779:113;;;25910:6;25907:1;25904:13;25901:48;;;-1:-1:-1;;25945:1:1;25927:16;;25920:27;25697:258::o;25960:136::-;25999:3;26027:5;26017:39;;26036:18;;:::i;:::-;-1:-1:-1;;;26072:18:1;;25960:136::o;26101:380::-;26180:1;26176:12;;;;26223;;;26244:61;;26298:4;26290:6;26286:17;26276:27;;26244:61;26351:2;26343:6;26340:14;26320:18;26317:38;26314:161;;;26397:10;26392:3;26388:20;26385:1;26378:31;26432:4;26429:1;26422:15;26460:4;26457:1;26450:15;26314:161;;26101:380;;;:::o;26486:135::-;26525:3;-1:-1:-1;;26546:17:1;;26543:43;;;26566:18;;:::i;:::-;-1:-1:-1;26613:1:1;26602:13;;26486:135::o;26626:112::-;26658:1;26684;26674:35;;26689:18;;:::i;:::-;-1:-1:-1;26723:9:1;;26626:112::o;26743:127::-;26804:10;26799:3;26795:20;26792:1;26785:31;26835:4;26832:1;26825:15;26859:4;26856:1;26849:15;26875:127;26936:10;26931:3;26927:20;26924:1;26917:31;26967:4;26964:1;26957:15;26991:4;26988:1;26981:15;27007:127;27068:10;27063:3;27059:20;27056:1;27049:31;27099:4;27096:1;27089:15;27123:4;27120:1;27113:15;27139:127;27200:10;27195:3;27191:20;27188:1;27181:31;27231:4;27228:1;27221:15;27255:4;27252:1;27245:15;27271:131;-1:-1:-1;;;;;;27345:32:1;;27335:43;;27325:71;;27392:1;27389;27382:12

Swarm Source

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