ETH Price: $2,686.82 (-3.38%)

Token

8OD (8OD-C1)
 

Overview

Max Total Supply

999 8OD-C1

Holders

678

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 8OD-C1
0x108F159f992B56f8975434Cdafa0530F1d6F27ce
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:
_8OD

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0
// File: 8OD/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: 8OD/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: 8OD/EightyD.sol



pragma solidity >=0.7.0 <0.9.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);
    }
}

contract _8OD is ERC721A, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;

    // NFT Prices
    uint256 public costWL = 0.55 ether;
    uint256 public costFreeMint = 0.00 ether;
    uint256 public cost = 0.77 ether;

    // Total NFTS
    uint256 public maxSupply = 1000;

    // NFTs Per Wallet For Team
    uint256 public maxMintAmountTeam = 100;

    // NFTS Max for Master Hunter
    uint256 public maxMintAmountMasterHunter = 10;

    // NFTS Max for Star Hunter
    uint256 public maxMintAmountStarHunter = 6;

    // NFTS Max for Hunter
    uint256 public maxMintAmountHunter = 3;

    // NFTS Max for Public Sale
    uint256 public maxMintAmountPublic = 25;

    // NFTS per Wallet Max Master Hunter
    uint256 public nftPerAddressMasterHunter = 10;

    // NFTS per Wallet Max Star Hunter
    uint256 public nftPerAddressStarHunter = 6;

    // NFTS per Wallet Max Hunter
    uint256 public nftPerAddressHunter = 3;

    // NFTS per Wallet Max
    uint256 public nftPerAddressPublic = 25;

    bool public revealed = false;


    mapping(address => uint256) public addressMintedBalanceTeam;
    mapping(address => uint256) public addressMintedBalanceMasterHunter;
    mapping(address => uint256) public addressMintedBalanceStarHunter;
    mapping(address => uint256) public addressMintedBalanceHunter;
    mapping(address => uint256) public addressMintedBalance;

    uint256 public currentState = 0;


    bytes32 public merkleRootMasterHunter =
        0xc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df;

    bytes32 public merkleRootStarHunter =
        0xc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df;

    bytes32 public merkleRootHunter =
        0xc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df;

    constructor() ERC721A("8OD", "8OD-C1") {}

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

    function burn(uint256 tokenId) external {
        super._burn(tokenId);
    }

    function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        public
        payable
    {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        if (msg.sender != owner()) {
            require(currentState > 0, "the contract is paused");
            if (currentState == 1) {
                uint256 ownerMintedCount = addressMintedBalanceTeam[msg.sender];
                require(
                    _mintAmount <= maxMintAmountTeam,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountTeam,
                    "max NFT per address exceeded"
                );
                require(msg.value >= cost * _mintAmount, "insufficient funds");
            }
            else if (currentState == 2) {
                uint256 ownerMintedCount = addressMintedBalanceMasterHunter[msg.sender];
                require(
                    isMasterHunter(msg.sender, _merkleProof),
                    "user is not Master Hunter"
                );
                require(
                    _mintAmount <= maxMintAmountMasterHunter,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountMasterHunter,
                    "max NFT per address exceeded"
                );
                require(
                    msg.value >= costWL * _mintAmount,
                    "insufficient funds"
                );
            } else if (currentState == 3) {
                uint256 ownerMintedCount = addressMintedBalanceStarHunter[msg.sender];
                require(
                    isStarHunter(msg.sender, _merkleProof),
                    "user is not Star Hunter"
                );
                require(
                    _mintAmount <= maxMintAmountStarHunter,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountStarHunter,
                    "max NFT per address exceeded"
                );
                require(
                    msg.value >= costWL * _mintAmount,
                    "insufficient funds"
                );
            } else if (currentState == 4) {
                uint256 ownerMintedCount = addressMintedBalanceHunter[msg.sender];
                require(
                    isHunter(msg.sender, _merkleProof),
                    "user is not Hunter"
                );
                require(
                    _mintAmount <= maxMintAmountHunter,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountHunter,
                    "max NFT per address exceeded"
                );
                require(
                    msg.value >= costWL * _mintAmount,
                    "insufficient funds"
                );
            } else if (currentState == 5) {
                uint256 ownerMintedCount = addressMintedBalance[msg.sender];
                require(
                    _mintAmount <= maxMintAmountPublic,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountPublic,
                    "max NFT per address exceeded"
                );
                require(msg.value >= cost * _mintAmount, "insufficient funds");
            }
        }

        _safeMint(msg.sender, _mintAmount);
        if (currentState == 1) {
            addressMintedBalanceTeam[msg.sender] += _mintAmount;
        } else if (currentState == 2) {
            addressMintedBalanceMasterHunter[msg.sender] += _mintAmount;
        } else if (currentState == 3) {
            addressMintedBalanceStarHunter[msg.sender] += _mintAmount;
        } else if (currentState == 4) {
            addressMintedBalanceHunter[msg.sender] += _mintAmount;
        } else if (currentState == 5) {
            addressMintedBalance[msg.sender] += _mintAmount;
        }
    }


    function isMasterHunter(address _user, bytes32[] calldata _merkleProof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(_user));
        return MerkleProof.verify(_merkleProof, merkleRootMasterHunter, leaf);
    }

    function isStarHunter(address _user, bytes32[] calldata _merkleProof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(_user));
        return MerkleProof.verify(_merkleProof, merkleRootStarHunter, leaf);
    }

    function isHunter(address _user, bytes32[] calldata _merkleProof)
    public
    view
    returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(_user));
        return MerkleProof.verify(_merkleProof, merkleRootHunter, leaf);
    }

    function mintableAmountForUser(address _user) public view returns (uint256) {
        if (currentState == 1) {
            return maxMintAmountTeam - addressMintedBalanceTeam[_user];
        } else if (currentState == 2) {
            return maxMintAmountMasterHunter - addressMintedBalanceMasterHunter[_user];
        } else if (currentState == 3) {
            return maxMintAmountStarHunter - addressMintedBalanceStarHunter[_user];
        } else if (currentState == 4) {
            return maxMintAmountHunter - addressMintedBalanceHunter[_user];
        } else if (currentState == 5) {
            return maxMintAmountPublic - addressMintedBalance[_user];
        }
        return 0;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

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

    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNftPerAddressLimitMasterHunter(uint256 _limit) public onlyOwner {
        nftPerAddressMasterHunter = _limit;
    }

    function setNftPerAddressLimitStarHunter(uint256 _limit) public onlyOwner {
        nftPerAddressStarHunter = _limit;
    }


    function setNftPerAddressLimitHunter(uint256 _limit) public onlyOwner {
        nftPerAddressHunter = _limit;
    }

    function setNftPerAddressLimitPublic(uint256 _limit) public onlyOwner {
        nftPerAddressPublic = _limit;
    }

    function setmaxMintAmountMasterHunter(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountMasterHunter = _newmaxMintAmount;
    }

    function setmaxMintAmountStarHunter(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountStarHunter = _newmaxMintAmount;
    }

    function setmaxMintAmountHunter(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountHunter = _newmaxMintAmount;
    }

    function setmaxMintAmountPublic(uint256 _newmaxMintAmount)
        public
        onlyOwner
    {
        maxMintAmountPublic = _newmaxMintAmount;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function pause() public onlyOwner {
        currentState = 0;
    }

    function setOnlyForTeam() public onlyOwner {
        currentState = 1;
    }

    function setOnlyMasterHunter() public onlyOwner {
        currentState = 2;
    }

    function setOnlyStarHunter() public onlyOwner {
        currentState = 3;
    }

    function setOnlyHunter() public onlyOwner {
        currentState = 4;
    }

    function setPublic() public onlyOwner {
        currentState = 5;
    }

    function setMasterHunterMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRootMasterHunter = _merkleRoot;
    }

    function setStarHunterMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRootStarHunter = _merkleRoot;
    }

    function setHunterMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRootHunter = _merkleRoot;
    }

    function setPublicCost(uint256 _price) public onlyOwner {
        cost = _price;
    }

    function setWLCost(uint256 _price) public onlyOwner {
        costWL = _price;
    }

    function withdraw() public payable onlyOwner {
        // This will payout the owner the contract balance.
        // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
        // =============================================================================
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceHunter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceMasterHunter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceStarHunter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isHunter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isMasterHunter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isStarHunter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountHunter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountMasterHunter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountStarHunter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootHunter","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootMasterHunter","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootStarHunter","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"mintableAmountForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressHunter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressMasterHunter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressStarHunter","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setHunterMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMasterHunterMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitHunter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitMasterHunter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitStarHunter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyForTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyHunter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyMasterHunter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyStarHunter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setStarHunterMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountHunter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountMasterHunter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountStarHunter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a919062000193565b506707a1fe1602770000600c556000600d819055670aaf96eb9d0d0000600e556103e8600f556064601055600a60118190556006601281905560036013819055601960148190556015939093556016919091556017556018819055805460ff19169055601f557fc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df60208190556021819055602255348015620000c957600080fd5b5060408051808201825260038152620e13d160ea1b602080830191825283518085019094526006845265384f442d433160d01b908401528151919291620001139160029162000193565b5080516200012990600390602084019062000193565b505060008055506200013b3362000141565b62000276565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a19062000239565b90600052602060002090601f016020900481019282620001c5576000855562000210565b82601f10620001e057805160ff191683800117855562000210565b8280016001018555821562000210579182015b8281111562000210578251825591602001919060010190620001f3565b506200021e92915062000222565b5090565b5b808211156200021e576000815560010162000223565b600181811c908216806200024e57607f821691505b602082108114156200027057634e487b7160e01b600052602260045260246000fd5b50919050565b61319480620002866000396000f3fe6080604052600436106104265760003560e01c80636c0360eb11610229578063a8f3d2211161012e578063c87b56dd116100b6578063da3ef23f1161007a578063da3ef23f14610bc9578063e985e9c514610be9578063f100d58214610c32578063f2c4ce1e14610c52578063f2fde38b14610c7257600080fd5b8063c87b56dd14610b3d578063d1cba7b214610b5d578063d1d1921314610b7d578063d2df927214610b9d578063d5abeb0114610bb357600080fd5b8063ba41b0c6116100fd578063ba41b0c614610ab2578063bbfe491514610ac5578063c44a321a14610af2578063c668286214610b08578063c756ff1714610b1d57600080fd5b8063a8f3d22114610a47578063b83d40e914610a5d578063b88d4fde14610a7d578063b9b8926114610a9d57600080fd5b80638da5cb5b116101b15780639cf928b9116101805780639cf928b9146109b9578063a22cb465146109cf578063a24f0387146109ef578063a3127d1714610a1c578063a475b5dd14610a3257600080fd5b80638da5cb5b146109395780638ece76961461095757806395d89b41146109775780639c99dca51461098c57600080fd5b806377e56357116101f857806377e56357146108b95780637ee74193146108ce578063811d2437146108e45780638456cb591461090457806385edb3b71461091957600080fd5b80636c0360eb1461085957806370a082311461086e578063715018a61461088e5780637556d392146108a357600080fd5b806323b872dd1161032f57806342cc7f60116102b757806355f804b31161028657806355f804b3146107cd5780636010fbee146107ed5780636352211e1461080357806368fcfb41146108235780636bf61ee81461083957600080fd5b806342cc7f601461075e57806342defeb41461077e5780634fdfa1e91461079e57806351830227146107b357600080fd5b806333693233116102fe57806333693233146106d45780633bb539ac146107015780633ccfd60b1461071657806342842e0e1461071e57806342966c681461073e57600080fd5b806323b872dd146106695780632e2e680a146106895780632fe57765146106a957806331fde266146106be57600080fd5b806313faede6116103b257806318160ddd1161038157806318160ddd146105c357806318cae269146105dc57806319d76880146106095780631cd7298714610629578063231878d11461064957600080fd5b806313faede614610561578063167928fd1461057757806316ed20841461058d57806317f7bece146105ad57600080fd5b8063081812fc116103f9578063081812fc146104c6578063081c8c44146104fe578063095ea7b3146105135780630c045686146105355780630c3f6acf1461054b57600080fd5b806301ffc9a71461042b57806306afd5921461046057806306fdde031461048457806307656e33146104a6575b600080fd5b34801561043757600080fd5b5061044b610446366004612d34565b610c92565b60405190151581526020015b60405180910390f35b34801561046c57600080fd5b50610476600c5481565b604051908152602001610457565b34801561049057600080fd5b50610499610ce4565b6040516104579190612f15565b3480156104b257600080fd5b506104766104c1366004612b5e565b610d76565b3480156104d257600080fd5b506104e66104e1366004612d1b565b610e75565b6040516001600160a01b039091168152602001610457565b34801561050a57600080fd5b50610499610eb9565b34801561051f57600080fd5b5061053361052e366004612cf1565b610f47565b005b34801561054157600080fd5b5061047660175481565b34801561055757600080fd5b50610476601f5481565b34801561056d57600080fd5b50610476600e5481565b34801561058357600080fd5b5061047660105481565b34801561059957600080fd5b506105336105a8366004612d1b565b610fd5565b3480156105b957600080fd5b5061047660145481565b3480156105cf57600080fd5b5060015460005403610476565b3480156105e857600080fd5b506104766105f7366004612b5e565b601e6020526000908152604090205481565b34801561061557600080fd5b50610533610624366004612d1b565b61100d565b34801561063557600080fd5b5061044b610644366004612c63565b61103c565b34801561065557600080fd5b50610533610664366004612d1b565b6110bd565b34801561067557600080fd5b50610533610684366004612bac565b6110ec565b34801561069557600080fd5b506105336106a4366004612d1b565b6110f7565b3480156106b557600080fd5b50610533611126565b3480156106ca57600080fd5b5061047660215481565b3480156106e057600080fd5b506104766106ef366004612b5e565b601b6020526000908152604090205481565b34801561070d57600080fd5b50610533611157565b610533611188565b34801561072a57600080fd5b50610533610739366004612bac565b611226565b34801561074a57600080fd5b50610533610759366004612d1b565b611241565b34801561076a57600080fd5b5061044b610779366004612c63565b61124a565b34801561078a57600080fd5b50610533610799366004612d1b565b6112c2565b3480156107aa57600080fd5b506105336112f1565b3480156107bf57600080fd5b5060195461044b9060ff1681565b3480156107d957600080fd5b506105336107e8366004612d6e565b611322565b3480156107f957600080fd5b50610476600d5481565b34801561080f57600080fd5b506104e661081e366004612d1b565b611363565b34801561082f57600080fd5b5061047660165481565b34801561084557600080fd5b50610533610854366004612d1b565b611375565b34801561086557600080fd5b506104996113a4565b34801561087a57600080fd5b50610476610889366004612b5e565b6113b1565b34801561089a57600080fd5b506105336113ff565b3480156108af57600080fd5b5061047660205481565b3480156108c557600080fd5b50610533611435565b3480156108da57600080fd5b5061047660155481565b3480156108f057600080fd5b506105336108ff366004612d1b565b611466565b34801561091057600080fd5b50610533611495565b34801561092557600080fd5b50610533610934366004612d1b565b6114c6565b34801561094557600080fd5b506008546001600160a01b03166104e6565b34801561096357600080fd5b50610533610972366004612d1b565b6114f5565b34801561098357600080fd5b50610499611524565b34801561099857600080fd5b506104766109a7366004612b5e565b601a6020526000908152604090205481565b3480156109c557600080fd5b5061047660115481565b3480156109db57600080fd5b506105336109ea366004612cb5565b611533565b3480156109fb57600080fd5b50610476610a0a366004612b5e565b601d6020526000908152604090205481565b348015610a2857600080fd5b5061047660225481565b348015610a3e57600080fd5b506105336115c9565b348015610a5357600080fd5b5061047660135481565b348015610a6957600080fd5b50610533610a78366004612d1b565b611602565b348015610a8957600080fd5b50610533610a98366004612be8565b611631565b348015610aa957600080fd5b50610533611682565b610533610ac0366004612db6565b6116b3565b348015610ad157600080fd5b50610476610ae0366004612b5e565b601c6020526000908152604090205481565b348015610afe57600080fd5b5061047660125481565b348015610b1457600080fd5b50610499611c3a565b348015610b2957600080fd5b50610533610b38366004612d1b565b611c47565b348015610b4957600080fd5b50610499610b58366004612d1b565b611c76565b348015610b6957600080fd5b50610533610b78366004612d1b565b611de0565b348015610b8957600080fd5b50610533610b98366004612d1b565b611e0f565b348015610ba957600080fd5b5061047660185481565b348015610bbf57600080fd5b50610476600f5481565b348015610bd557600080fd5b50610533610be4366004612d6e565b611e3e565b348015610bf557600080fd5b5061044b610c04366004612b79565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610c3e57600080fd5b5061044b610c4d366004612c63565b611e7b565b348015610c5e57600080fd5b50610533610c6d366004612d6e565b611ef3565b348015610c7e57600080fd5b50610533610c8d366004612b5e565b611f30565b60006001600160e01b031982166380ac58cd60e01b1480610cc357506001600160e01b03198216635b5e139f60e01b145b80610cde57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610cf390613066565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1f90613066565b8015610d6c5780601f10610d4157610100808354040283529160200191610d6c565b820191906000526020600020905b815481529060010190602001808311610d4f57829003601f168201915b5050505050905090565b6000601f5460011415610da9576001600160a01b0382166000908152601a6020526040902054601054610cde9190613023565b601f5460021415610dda576001600160a01b0382166000908152601b6020526040902054601154610cde9190613023565b601f5460031415610e0b576001600160a01b0382166000908152601c6020526040902054601254610cde9190613023565b601f5460041415610e3c576001600160a01b0382166000908152601d6020526040902054601354610cde9190613023565b601f5460051415610e6d576001600160a01b0382166000908152601e6020526040902054601454610cde9190613023565b506000919050565b6000610e8082611fc8565b610e9d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610ec690613066565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef290613066565b8015610f3f5780601f10610f1457610100808354040283529160200191610f3f565b820191906000526020600020905b815481529060010190602001808311610f2257829003601f168201915b505050505081565b6000610f5282611363565b9050806001600160a01b0316836001600160a01b03161415610f875760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610fa75750610fa58133610c04565b155b15610fc5576040516367d9dca160e11b815260040160405180910390fd5b610fd0838383611ff3565b505050565b6008546001600160a01b031633146110085760405162461bcd60e51b8152600401610fff90612fa3565b60405180910390fd5b601755565b6008546001600160a01b031633146110375760405162461bcd60e51b8152600401610fff90612fa3565b601255565b6040516001600160601b0319606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506110b484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050602254915084905061204f565b95945050505050565b6008546001600160a01b031633146110e75760405162461bcd60e51b8152600401610fff90612fa3565b601455565b610fd0838383612065565b6008546001600160a01b031633146111215760405162461bcd60e51b8152600401610fff90612fa3565b601155565b6008546001600160a01b031633146111505760405162461bcd60e51b8152600401610fff90612fa3565b6002601f55565b6008546001600160a01b031633146111815760405162461bcd60e51b8152600401610fff90612fa3565b6001601f55565b6008546001600160a01b031633146111b25760405162461bcd60e51b8152600401610fff90612fa3565b60006111c66008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611210576040519150601f19603f3d011682016040523d82523d6000602084013e611215565b606091505b505090508061122357600080fd5b50565b610fd083838360405180602001604052806000815250611631565b61122381612241565b6040516001600160601b0319606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506110b484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050602054915084905061204f565b6008546001600160a01b031633146112ec5760405162461bcd60e51b8152600401610fff90612fa3565b602255565b6008546001600160a01b0316331461131b5760405162461bcd60e51b8152600401610fff90612fa3565b6004601f55565b6008546001600160a01b0316331461134c5760405162461bcd60e51b8152600401610fff90612fa3565b805161135f9060099060208401906129e9565b5050565b600061136e8261224c565b5192915050565b6008546001600160a01b0316331461139f5760405162461bcd60e51b8152600401610fff90612fa3565b601855565b60098054610ec690613066565b60006001600160a01b0382166113da576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146114295760405162461bcd60e51b8152600401610fff90612fa3565b6114336000612366565b565b6008546001600160a01b0316331461145f5760405162461bcd60e51b8152600401610fff90612fa3565b6005601f55565b6008546001600160a01b031633146114905760405162461bcd60e51b8152600401610fff90612fa3565b600e55565b6008546001600160a01b031633146114bf5760405162461bcd60e51b8152600401610fff90612fa3565b6000601f55565b6008546001600160a01b031633146114f05760405162461bcd60e51b8152600401610fff90612fa3565b602055565b6008546001600160a01b0316331461151f5760405162461bcd60e51b8152600401610fff90612fa3565b602155565b606060038054610cf390613066565b6001600160a01b03821633141561155d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146115f35760405162461bcd60e51b8152600401610fff90612fa3565b6019805460ff19166001179055565b6008546001600160a01b0316331461162c5760405162461bcd60e51b8152600401610fff90612fa3565b601555565b61163c848484612065565b6001600160a01b0383163b1515801561165e575061165c848484846123b8565b155b1561167c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146116ac5760405162461bcd60e51b8152600401610fff90612fa3565b6003601f55565b60006116c26001546000540390565b9050600084116117145760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610fff565b600f546117218583612fd8565b11156117685760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610fff565b6008546001600160a01b03163314611b48576000601f54116117c55760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610fff565b601f546001141561188557336000908152601a60205260409020546010548511156118025760405162461bcd60e51b8152600401610fff90612f5f565b60105461180f8683612fd8565b111561182d5760405162461bcd60e51b8152600401610fff90612f28565b84600e5461183b9190613004565b34101561187f5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610fff565b50611b48565b601f546002141561195357336000818152601b6020526040902054906118ac90858561124a565b6118f85760405162461bcd60e51b815260206004820152601960248201527f75736572206973206e6f74204d61737465722048756e746572000000000000006044820152606401610fff565b60115485111561191a5760405162461bcd60e51b8152600401610fff90612f5f565b6011546119278683612fd8565b11156119455760405162461bcd60e51b8152600401610fff90612f28565b84600c5461183b9190613004565b601f54600314156119f557336000818152601c60205260409020549061197a908585611e7b565b6119c65760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f7420537461722048756e7465720000000000000000006044820152606401610fff565b6012548511156119e85760405162461bcd60e51b8152600401610fff90612f5f565b6012546119278683612fd8565b601f5460041415611a8c57336000818152601d602052604090205490611a1c90858561103c565b611a5d5760405162461bcd60e51b81526020600482015260126024820152713ab9b2b91034b9903737ba10243ab73a32b960711b6044820152606401610fff565b601354851115611a7f5760405162461bcd60e51b8152600401610fff90612f5f565b6013546119278683612fd8565b601f5460051415611b4857336000908152601e6020526040902054601454851115611ac95760405162461bcd60e51b8152600401610fff90612f5f565b601454611ad68683612fd8565b1115611af45760405162461bcd60e51b8152600401610fff90612f28565b84600e54611b029190613004565b341015611b465760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610fff565b505b611b5233856124b0565b601f5460011415611b8757336000908152601a602052604081208054869290611b7c908490612fd8565b9091555061167c9050565b601f5460021415611bb157336000908152601b602052604081208054869290611b7c908490612fd8565b601f5460031415611bdb57336000908152601c602052604081208054869290611b7c908490612fd8565b601f5460041415611c0557336000908152601d602052604081208054869290611b7c908490612fd8565b601f546005141561167c57336000908152601e602052604081208054869290611c2f908490612fd8565b909155505050505050565b600a8054610ec690613066565b6008546001600160a01b03163314611c715760405162461bcd60e51b8152600401610fff90612fa3565b601355565b6060611c8182611fc8565b611ce55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610fff565b60195460ff16611d8157600b8054611cfc90613066565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2890613066565b8015611d755780601f10611d4a57610100808354040283529160200191611d75565b820191906000526020600020905b815481529060010190602001808311611d5857829003601f168201915b50505050509050919050565b6000611d8b6124ca565b90506000815111611dab5760405180602001604052806000815250611dd9565b80611db5846124d9565b600a604051602001611dc993929190612e14565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611e0a5760405162461bcd60e51b8152600401610fff90612fa3565b601655565b6008546001600160a01b03163314611e395760405162461bcd60e51b8152600401610fff90612fa3565b600c55565b6008546001600160a01b03163314611e685760405162461bcd60e51b8152600401610fff90612fa3565b805161135f90600a9060208401906129e9565b6040516001600160601b0319606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506110b484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050602154915084905061204f565b6008546001600160a01b03163314611f1d5760405162461bcd60e51b8152600401610fff90612fa3565b805161135f90600b9060208401906129e9565b6008546001600160a01b03163314611f5a5760405162461bcd60e51b8152600401610fff90612fa3565b6001600160a01b038116611fbf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610fff565b61122381612366565b6000805482108015610cde575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008261205c85846125d6565b14949350505050565b60006120708261224c565b9050836001600160a01b031681600001516001600160a01b0316146120a75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806120c557506120c58533610c04565b806120e05750336120d584610e75565b6001600160a01b0316145b90508061210057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661212757604051633a954ecd60e21b815260040160405180910390fd5b61213360008487611ff3565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661220757600054821461220757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061313f83398151915260405160405180910390a45b5050505050565b611223816000612682565b60408051606081018252600080825260208201819052918101919091528160005481101561234d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061234b5780516001600160a01b0316156122e2579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612346579392505050565b6122e2565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906123ed903390899088908890600401612ed8565b602060405180830381600087803b15801561240757600080fd5b505af1925050508015612437575060408051601f3d908101601f1916820190925261243491810190612d51565b60015b612492573d808015612465576040519150601f19603f3d011682016040523d82523d6000602084013e61246a565b606091505b50805161248a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b61135f828260405180602001604052806000815250612835565b606060098054610cf390613066565b6060816124fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125275780612511816130a1565b91506125209050600a83612ff0565b9150612501565b6000816001600160401b0381111561254157612541613112565b6040519080825280601f01601f19166020018201604052801561256b576020820181803683370190505b5090505b84156124a857612580600183613023565b915061258d600a866130bc565b612598906030612fd8565b60f81b8183815181106125ad576125ad6130fc565b60200101906001600160f81b031916908160001a9053506125cf600a86612ff0565b945061256f565b600081815b845181101561267a5760008582815181106125f8576125f86130fc565b6020026020010151905080831161263a576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612667565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612672816130a1565b9150506125db565b509392505050565b600061268d8361224c565b805190915082156126f3576000336001600160a01b03831614806126b657506126b68233610c04565b806126d15750336126c686610e75565b6001600160a01b0316145b9050806126f157604051632ce44b5f60e11b815260040160405180910390fd5b505b6126ff60008583611ff3565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166127fd5760005482146127fd57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b0384169060008051602061313f833981519152908390a4505060018054810190555050565b610fd083838360016000546001600160a01b03851661286657604051622e076360e81b815260040160405180910390fd5b836128845760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561293557506001600160a01b0387163b15155b156129ac575b60405182906001600160a01b0389169060009060008051602061313f833981519152908290a461297460008884806001019550886123b8565b612991576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561293b5782600054146129a757600080fd5b6129e0565b5b6040516001830192906001600160a01b0389169060009060008051602061313f833981519152908290a4808214156129ad575b5060005561223a565b8280546129f590613066565b90600052602060002090601f016020900481019282612a175760008555612a5d565b82601f10612a3057805160ff1916838001178555612a5d565b82800160010185558215612a5d579182015b82811115612a5d578251825591602001919060010190612a42565b50612a69929150612a6d565b5090565b5b80821115612a695760008155600101612a6e565b60006001600160401b0380841115612a9c57612a9c613112565b604051601f8501601f19908116603f01168101908282118183101715612ac457612ac4613112565b81604052809350858152868686011115612add57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b0e57600080fd5b919050565b60008083601f840112612b2557600080fd5b5081356001600160401b03811115612b3c57600080fd5b6020830191508360208260051b8501011115612b5757600080fd5b9250929050565b600060208284031215612b7057600080fd5b611dd982612af7565b60008060408385031215612b8c57600080fd5b612b9583612af7565b9150612ba360208401612af7565b90509250929050565b600080600060608486031215612bc157600080fd5b612bca84612af7565b9250612bd860208501612af7565b9150604084013590509250925092565b60008060008060808587031215612bfe57600080fd5b612c0785612af7565b9350612c1560208601612af7565b92506040850135915060608501356001600160401b03811115612c3757600080fd5b8501601f81018713612c4857600080fd5b612c5787823560208401612a82565b91505092959194509250565b600080600060408486031215612c7857600080fd5b612c8184612af7565b925060208401356001600160401b03811115612c9c57600080fd5b612ca886828701612b13565b9497909650939450505050565b60008060408385031215612cc857600080fd5b612cd183612af7565b915060208301358015158114612ce657600080fd5b809150509250929050565b60008060408385031215612d0457600080fd5b612d0d83612af7565b946020939093013593505050565b600060208284031215612d2d57600080fd5b5035919050565b600060208284031215612d4657600080fd5b8135611dd981613128565b600060208284031215612d6357600080fd5b8151611dd981613128565b600060208284031215612d8057600080fd5b81356001600160401b03811115612d9657600080fd5b8201601f81018413612da757600080fd5b6124a884823560208401612a82565b600080600060408486031215612dcb57600080fd5b8335925060208401356001600160401b03811115612c9c57600080fd5b60008151808452612e0081602086016020860161303a565b601f01601f19169290920160200192915050565b600084516020612e278285838a0161303a565b855191840191612e3a8184848a0161303a565b8554920191600090600181811c9080831680612e5757607f831692505b858310811415612e7557634e487b7160e01b85526022600452602485fd5b808015612e895760018114612e9a57612ec7565b60ff19851688528388019550612ec7565b60008b81526020902060005b85811015612ebf5781548a820152908401908801612ea6565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f0b90830184612de8565b9695505050505050565b602081526000611dd96020830184612de8565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612feb57612feb6130d0565b500190565b600082612fff57612fff6130e6565b500490565b600081600019048311821515161561301e5761301e6130d0565b500290565b600082821015613035576130356130d0565b500390565b60005b8381101561305557818101518382015260200161303d565b8381111561167c5750506000910152565b600181811c9082168061307a57607f821691505b6020821081141561309b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130b5576130b56130d0565b5060010190565b6000826130cb576130cb6130e6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461122357600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200c50cd0994be11aafc55a75ef4586bdc1fc5cec913c480cc7032aeae4e41829a64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106104265760003560e01c80636c0360eb11610229578063a8f3d2211161012e578063c87b56dd116100b6578063da3ef23f1161007a578063da3ef23f14610bc9578063e985e9c514610be9578063f100d58214610c32578063f2c4ce1e14610c52578063f2fde38b14610c7257600080fd5b8063c87b56dd14610b3d578063d1cba7b214610b5d578063d1d1921314610b7d578063d2df927214610b9d578063d5abeb0114610bb357600080fd5b8063ba41b0c6116100fd578063ba41b0c614610ab2578063bbfe491514610ac5578063c44a321a14610af2578063c668286214610b08578063c756ff1714610b1d57600080fd5b8063a8f3d22114610a47578063b83d40e914610a5d578063b88d4fde14610a7d578063b9b8926114610a9d57600080fd5b80638da5cb5b116101b15780639cf928b9116101805780639cf928b9146109b9578063a22cb465146109cf578063a24f0387146109ef578063a3127d1714610a1c578063a475b5dd14610a3257600080fd5b80638da5cb5b146109395780638ece76961461095757806395d89b41146109775780639c99dca51461098c57600080fd5b806377e56357116101f857806377e56357146108b95780637ee74193146108ce578063811d2437146108e45780638456cb591461090457806385edb3b71461091957600080fd5b80636c0360eb1461085957806370a082311461086e578063715018a61461088e5780637556d392146108a357600080fd5b806323b872dd1161032f57806342cc7f60116102b757806355f804b31161028657806355f804b3146107cd5780636010fbee146107ed5780636352211e1461080357806368fcfb41146108235780636bf61ee81461083957600080fd5b806342cc7f601461075e57806342defeb41461077e5780634fdfa1e91461079e57806351830227146107b357600080fd5b806333693233116102fe57806333693233146106d45780633bb539ac146107015780633ccfd60b1461071657806342842e0e1461071e57806342966c681461073e57600080fd5b806323b872dd146106695780632e2e680a146106895780632fe57765146106a957806331fde266146106be57600080fd5b806313faede6116103b257806318160ddd1161038157806318160ddd146105c357806318cae269146105dc57806319d76880146106095780631cd7298714610629578063231878d11461064957600080fd5b806313faede614610561578063167928fd1461057757806316ed20841461058d57806317f7bece146105ad57600080fd5b8063081812fc116103f9578063081812fc146104c6578063081c8c44146104fe578063095ea7b3146105135780630c045686146105355780630c3f6acf1461054b57600080fd5b806301ffc9a71461042b57806306afd5921461046057806306fdde031461048457806307656e33146104a6575b600080fd5b34801561043757600080fd5b5061044b610446366004612d34565b610c92565b60405190151581526020015b60405180910390f35b34801561046c57600080fd5b50610476600c5481565b604051908152602001610457565b34801561049057600080fd5b50610499610ce4565b6040516104579190612f15565b3480156104b257600080fd5b506104766104c1366004612b5e565b610d76565b3480156104d257600080fd5b506104e66104e1366004612d1b565b610e75565b6040516001600160a01b039091168152602001610457565b34801561050a57600080fd5b50610499610eb9565b34801561051f57600080fd5b5061053361052e366004612cf1565b610f47565b005b34801561054157600080fd5b5061047660175481565b34801561055757600080fd5b50610476601f5481565b34801561056d57600080fd5b50610476600e5481565b34801561058357600080fd5b5061047660105481565b34801561059957600080fd5b506105336105a8366004612d1b565b610fd5565b3480156105b957600080fd5b5061047660145481565b3480156105cf57600080fd5b5060015460005403610476565b3480156105e857600080fd5b506104766105f7366004612b5e565b601e6020526000908152604090205481565b34801561061557600080fd5b50610533610624366004612d1b565b61100d565b34801561063557600080fd5b5061044b610644366004612c63565b61103c565b34801561065557600080fd5b50610533610664366004612d1b565b6110bd565b34801561067557600080fd5b50610533610684366004612bac565b6110ec565b34801561069557600080fd5b506105336106a4366004612d1b565b6110f7565b3480156106b557600080fd5b50610533611126565b3480156106ca57600080fd5b5061047660215481565b3480156106e057600080fd5b506104766106ef366004612b5e565b601b6020526000908152604090205481565b34801561070d57600080fd5b50610533611157565b610533611188565b34801561072a57600080fd5b50610533610739366004612bac565b611226565b34801561074a57600080fd5b50610533610759366004612d1b565b611241565b34801561076a57600080fd5b5061044b610779366004612c63565b61124a565b34801561078a57600080fd5b50610533610799366004612d1b565b6112c2565b3480156107aa57600080fd5b506105336112f1565b3480156107bf57600080fd5b5060195461044b9060ff1681565b3480156107d957600080fd5b506105336107e8366004612d6e565b611322565b3480156107f957600080fd5b50610476600d5481565b34801561080f57600080fd5b506104e661081e366004612d1b565b611363565b34801561082f57600080fd5b5061047660165481565b34801561084557600080fd5b50610533610854366004612d1b565b611375565b34801561086557600080fd5b506104996113a4565b34801561087a57600080fd5b50610476610889366004612b5e565b6113b1565b34801561089a57600080fd5b506105336113ff565b3480156108af57600080fd5b5061047660205481565b3480156108c557600080fd5b50610533611435565b3480156108da57600080fd5b5061047660155481565b3480156108f057600080fd5b506105336108ff366004612d1b565b611466565b34801561091057600080fd5b50610533611495565b34801561092557600080fd5b50610533610934366004612d1b565b6114c6565b34801561094557600080fd5b506008546001600160a01b03166104e6565b34801561096357600080fd5b50610533610972366004612d1b565b6114f5565b34801561098357600080fd5b50610499611524565b34801561099857600080fd5b506104766109a7366004612b5e565b601a6020526000908152604090205481565b3480156109c557600080fd5b5061047660115481565b3480156109db57600080fd5b506105336109ea366004612cb5565b611533565b3480156109fb57600080fd5b50610476610a0a366004612b5e565b601d6020526000908152604090205481565b348015610a2857600080fd5b5061047660225481565b348015610a3e57600080fd5b506105336115c9565b348015610a5357600080fd5b5061047660135481565b348015610a6957600080fd5b50610533610a78366004612d1b565b611602565b348015610a8957600080fd5b50610533610a98366004612be8565b611631565b348015610aa957600080fd5b50610533611682565b610533610ac0366004612db6565b6116b3565b348015610ad157600080fd5b50610476610ae0366004612b5e565b601c6020526000908152604090205481565b348015610afe57600080fd5b5061047660125481565b348015610b1457600080fd5b50610499611c3a565b348015610b2957600080fd5b50610533610b38366004612d1b565b611c47565b348015610b4957600080fd5b50610499610b58366004612d1b565b611c76565b348015610b6957600080fd5b50610533610b78366004612d1b565b611de0565b348015610b8957600080fd5b50610533610b98366004612d1b565b611e0f565b348015610ba957600080fd5b5061047660185481565b348015610bbf57600080fd5b50610476600f5481565b348015610bd557600080fd5b50610533610be4366004612d6e565b611e3e565b348015610bf557600080fd5b5061044b610c04366004612b79565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610c3e57600080fd5b5061044b610c4d366004612c63565b611e7b565b348015610c5e57600080fd5b50610533610c6d366004612d6e565b611ef3565b348015610c7e57600080fd5b50610533610c8d366004612b5e565b611f30565b60006001600160e01b031982166380ac58cd60e01b1480610cc357506001600160e01b03198216635b5e139f60e01b145b80610cde57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610cf390613066565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1f90613066565b8015610d6c5780601f10610d4157610100808354040283529160200191610d6c565b820191906000526020600020905b815481529060010190602001808311610d4f57829003601f168201915b5050505050905090565b6000601f5460011415610da9576001600160a01b0382166000908152601a6020526040902054601054610cde9190613023565b601f5460021415610dda576001600160a01b0382166000908152601b6020526040902054601154610cde9190613023565b601f5460031415610e0b576001600160a01b0382166000908152601c6020526040902054601254610cde9190613023565b601f5460041415610e3c576001600160a01b0382166000908152601d6020526040902054601354610cde9190613023565b601f5460051415610e6d576001600160a01b0382166000908152601e6020526040902054601454610cde9190613023565b506000919050565b6000610e8082611fc8565b610e9d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b8054610ec690613066565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef290613066565b8015610f3f5780601f10610f1457610100808354040283529160200191610f3f565b820191906000526020600020905b815481529060010190602001808311610f2257829003601f168201915b505050505081565b6000610f5282611363565b9050806001600160a01b0316836001600160a01b03161415610f875760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610fa75750610fa58133610c04565b155b15610fc5576040516367d9dca160e11b815260040160405180910390fd5b610fd0838383611ff3565b505050565b6008546001600160a01b031633146110085760405162461bcd60e51b8152600401610fff90612fa3565b60405180910390fd5b601755565b6008546001600160a01b031633146110375760405162461bcd60e51b8152600401610fff90612fa3565b601255565b6040516001600160601b0319606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506110b484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050602254915084905061204f565b95945050505050565b6008546001600160a01b031633146110e75760405162461bcd60e51b8152600401610fff90612fa3565b601455565b610fd0838383612065565b6008546001600160a01b031633146111215760405162461bcd60e51b8152600401610fff90612fa3565b601155565b6008546001600160a01b031633146111505760405162461bcd60e51b8152600401610fff90612fa3565b6002601f55565b6008546001600160a01b031633146111815760405162461bcd60e51b8152600401610fff90612fa3565b6001601f55565b6008546001600160a01b031633146111b25760405162461bcd60e51b8152600401610fff90612fa3565b60006111c66008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611210576040519150601f19603f3d011682016040523d82523d6000602084013e611215565b606091505b505090508061122357600080fd5b50565b610fd083838360405180602001604052806000815250611631565b61122381612241565b6040516001600160601b0319606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506110b484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050602054915084905061204f565b6008546001600160a01b031633146112ec5760405162461bcd60e51b8152600401610fff90612fa3565b602255565b6008546001600160a01b0316331461131b5760405162461bcd60e51b8152600401610fff90612fa3565b6004601f55565b6008546001600160a01b0316331461134c5760405162461bcd60e51b8152600401610fff90612fa3565b805161135f9060099060208401906129e9565b5050565b600061136e8261224c565b5192915050565b6008546001600160a01b0316331461139f5760405162461bcd60e51b8152600401610fff90612fa3565b601855565b60098054610ec690613066565b60006001600160a01b0382166113da576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146114295760405162461bcd60e51b8152600401610fff90612fa3565b6114336000612366565b565b6008546001600160a01b0316331461145f5760405162461bcd60e51b8152600401610fff90612fa3565b6005601f55565b6008546001600160a01b031633146114905760405162461bcd60e51b8152600401610fff90612fa3565b600e55565b6008546001600160a01b031633146114bf5760405162461bcd60e51b8152600401610fff90612fa3565b6000601f55565b6008546001600160a01b031633146114f05760405162461bcd60e51b8152600401610fff90612fa3565b602055565b6008546001600160a01b0316331461151f5760405162461bcd60e51b8152600401610fff90612fa3565b602155565b606060038054610cf390613066565b6001600160a01b03821633141561155d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146115f35760405162461bcd60e51b8152600401610fff90612fa3565b6019805460ff19166001179055565b6008546001600160a01b0316331461162c5760405162461bcd60e51b8152600401610fff90612fa3565b601555565b61163c848484612065565b6001600160a01b0383163b1515801561165e575061165c848484846123b8565b155b1561167c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146116ac5760405162461bcd60e51b8152600401610fff90612fa3565b6003601f55565b60006116c26001546000540390565b9050600084116117145760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610fff565b600f546117218583612fd8565b11156117685760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610fff565b6008546001600160a01b03163314611b48576000601f54116117c55760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610fff565b601f546001141561188557336000908152601a60205260409020546010548511156118025760405162461bcd60e51b8152600401610fff90612f5f565b60105461180f8683612fd8565b111561182d5760405162461bcd60e51b8152600401610fff90612f28565b84600e5461183b9190613004565b34101561187f5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610fff565b50611b48565b601f546002141561195357336000818152601b6020526040902054906118ac90858561124a565b6118f85760405162461bcd60e51b815260206004820152601960248201527f75736572206973206e6f74204d61737465722048756e746572000000000000006044820152606401610fff565b60115485111561191a5760405162461bcd60e51b8152600401610fff90612f5f565b6011546119278683612fd8565b11156119455760405162461bcd60e51b8152600401610fff90612f28565b84600c5461183b9190613004565b601f54600314156119f557336000818152601c60205260409020549061197a908585611e7b565b6119c65760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f7420537461722048756e7465720000000000000000006044820152606401610fff565b6012548511156119e85760405162461bcd60e51b8152600401610fff90612f5f565b6012546119278683612fd8565b601f5460041415611a8c57336000818152601d602052604090205490611a1c90858561103c565b611a5d5760405162461bcd60e51b81526020600482015260126024820152713ab9b2b91034b9903737ba10243ab73a32b960711b6044820152606401610fff565b601354851115611a7f5760405162461bcd60e51b8152600401610fff90612f5f565b6013546119278683612fd8565b601f5460051415611b4857336000908152601e6020526040902054601454851115611ac95760405162461bcd60e51b8152600401610fff90612f5f565b601454611ad68683612fd8565b1115611af45760405162461bcd60e51b8152600401610fff90612f28565b84600e54611b029190613004565b341015611b465760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610fff565b505b611b5233856124b0565b601f5460011415611b8757336000908152601a602052604081208054869290611b7c908490612fd8565b9091555061167c9050565b601f5460021415611bb157336000908152601b602052604081208054869290611b7c908490612fd8565b601f5460031415611bdb57336000908152601c602052604081208054869290611b7c908490612fd8565b601f5460041415611c0557336000908152601d602052604081208054869290611b7c908490612fd8565b601f546005141561167c57336000908152601e602052604081208054869290611c2f908490612fd8565b909155505050505050565b600a8054610ec690613066565b6008546001600160a01b03163314611c715760405162461bcd60e51b8152600401610fff90612fa3565b601355565b6060611c8182611fc8565b611ce55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610fff565b60195460ff16611d8157600b8054611cfc90613066565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2890613066565b8015611d755780601f10611d4a57610100808354040283529160200191611d75565b820191906000526020600020905b815481529060010190602001808311611d5857829003601f168201915b50505050509050919050565b6000611d8b6124ca565b90506000815111611dab5760405180602001604052806000815250611dd9565b80611db5846124d9565b600a604051602001611dc993929190612e14565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611e0a5760405162461bcd60e51b8152600401610fff90612fa3565b601655565b6008546001600160a01b03163314611e395760405162461bcd60e51b8152600401610fff90612fa3565b600c55565b6008546001600160a01b03163314611e685760405162461bcd60e51b8152600401610fff90612fa3565b805161135f90600a9060208401906129e9565b6040516001600160601b0319606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506110b484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050602154915084905061204f565b6008546001600160a01b03163314611f1d5760405162461bcd60e51b8152600401610fff90612fa3565b805161135f90600b9060208401906129e9565b6008546001600160a01b03163314611f5a5760405162461bcd60e51b8152600401610fff90612fa3565b6001600160a01b038116611fbf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610fff565b61122381612366565b6000805482108015610cde575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008261205c85846125d6565b14949350505050565b60006120708261224c565b9050836001600160a01b031681600001516001600160a01b0316146120a75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806120c557506120c58533610c04565b806120e05750336120d584610e75565b6001600160a01b0316145b90508061210057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661212757604051633a954ecd60e21b815260040160405180910390fd5b61213360008487611ff3565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661220757600054821461220757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061313f83398151915260405160405180910390a45b5050505050565b611223816000612682565b60408051606081018252600080825260208201819052918101919091528160005481101561234d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061234b5780516001600160a01b0316156122e2579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612346579392505050565b6122e2565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906123ed903390899088908890600401612ed8565b602060405180830381600087803b15801561240757600080fd5b505af1925050508015612437575060408051601f3d908101601f1916820190925261243491810190612d51565b60015b612492573d808015612465576040519150601f19603f3d011682016040523d82523d6000602084013e61246a565b606091505b50805161248a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b61135f828260405180602001604052806000815250612835565b606060098054610cf390613066565b6060816124fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125275780612511816130a1565b91506125209050600a83612ff0565b9150612501565b6000816001600160401b0381111561254157612541613112565b6040519080825280601f01601f19166020018201604052801561256b576020820181803683370190505b5090505b84156124a857612580600183613023565b915061258d600a866130bc565b612598906030612fd8565b60f81b8183815181106125ad576125ad6130fc565b60200101906001600160f81b031916908160001a9053506125cf600a86612ff0565b945061256f565b600081815b845181101561267a5760008582815181106125f8576125f86130fc565b6020026020010151905080831161263a576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612667565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612672816130a1565b9150506125db565b509392505050565b600061268d8361224c565b805190915082156126f3576000336001600160a01b03831614806126b657506126b68233610c04565b806126d15750336126c686610e75565b6001600160a01b0316145b9050806126f157604051632ce44b5f60e11b815260040160405180910390fd5b505b6126ff60008583611ff3565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166127fd5760005482146127fd57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b0384169060008051602061313f833981519152908390a4505060018054810190555050565b610fd083838360016000546001600160a01b03851661286657604051622e076360e81b815260040160405180910390fd5b836128845760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561293557506001600160a01b0387163b15155b156129ac575b60405182906001600160a01b0389169060009060008051602061313f833981519152908290a461297460008884806001019550886123b8565b612991576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561293b5782600054146129a757600080fd5b6129e0565b5b6040516001830192906001600160a01b0389169060009060008051602061313f833981519152908290a4808214156129ad575b5060005561223a565b8280546129f590613066565b90600052602060002090601f016020900481019282612a175760008555612a5d565b82601f10612a3057805160ff1916838001178555612a5d565b82800160010185558215612a5d579182015b82811115612a5d578251825591602001919060010190612a42565b50612a69929150612a6d565b5090565b5b80821115612a695760008155600101612a6e565b60006001600160401b0380841115612a9c57612a9c613112565b604051601f8501601f19908116603f01168101908282118183101715612ac457612ac4613112565b81604052809350858152868686011115612add57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612b0e57600080fd5b919050565b60008083601f840112612b2557600080fd5b5081356001600160401b03811115612b3c57600080fd5b6020830191508360208260051b8501011115612b5757600080fd5b9250929050565b600060208284031215612b7057600080fd5b611dd982612af7565b60008060408385031215612b8c57600080fd5b612b9583612af7565b9150612ba360208401612af7565b90509250929050565b600080600060608486031215612bc157600080fd5b612bca84612af7565b9250612bd860208501612af7565b9150604084013590509250925092565b60008060008060808587031215612bfe57600080fd5b612c0785612af7565b9350612c1560208601612af7565b92506040850135915060608501356001600160401b03811115612c3757600080fd5b8501601f81018713612c4857600080fd5b612c5787823560208401612a82565b91505092959194509250565b600080600060408486031215612c7857600080fd5b612c8184612af7565b925060208401356001600160401b03811115612c9c57600080fd5b612ca886828701612b13565b9497909650939450505050565b60008060408385031215612cc857600080fd5b612cd183612af7565b915060208301358015158114612ce657600080fd5b809150509250929050565b60008060408385031215612d0457600080fd5b612d0d83612af7565b946020939093013593505050565b600060208284031215612d2d57600080fd5b5035919050565b600060208284031215612d4657600080fd5b8135611dd981613128565b600060208284031215612d6357600080fd5b8151611dd981613128565b600060208284031215612d8057600080fd5b81356001600160401b03811115612d9657600080fd5b8201601f81018413612da757600080fd5b6124a884823560208401612a82565b600080600060408486031215612dcb57600080fd5b8335925060208401356001600160401b03811115612c9c57600080fd5b60008151808452612e0081602086016020860161303a565b601f01601f19169290920160200192915050565b600084516020612e278285838a0161303a565b855191840191612e3a8184848a0161303a565b8554920191600090600181811c9080831680612e5757607f831692505b858310811415612e7557634e487b7160e01b85526022600452602485fd5b808015612e895760018114612e9a57612ec7565b60ff19851688528388019550612ec7565b60008b81526020902060005b85811015612ebf5781548a820152908401908801612ea6565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f0b90830184612de8565b9695505050505050565b602081526000611dd96020830184612de8565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612feb57612feb6130d0565b500190565b600082612fff57612fff6130e6565b500490565b600081600019048311821515161561301e5761301e6130d0565b500290565b600082821015613035576130356130d0565b500390565b60005b8381101561305557818101518382015260200161303d565b8381111561167c5750506000910152565b600181811c9082168061307a57607f821691505b6020821081141561309b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130b5576130b56130d0565b5060010190565b6000826130cb576130cb6130e6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461122357600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200c50cd0994be11aafc55a75ef4586bdc1fc5cec913c480cc7032aeae4e41829a64736f6c63430008070033

Deployed Bytecode Sourcemap

47330:12135:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27050:305;;;;;;;;;;-1:-1:-1;27050:305:0;;;;;:::i;:::-;;:::i;:::-;;;8982:14:1;;8975:22;8957:41;;8945:2;8930:18;27050:305:0;;;;;;;;47533:34;;;;;;;;;;;;;;;;;;;9155:25:1;;;9143:2;9128:18;47533:34:0;9009:177:1;30163:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54809:707::-;;;;;;;;;;-1:-1:-1;54809:707:0;;;;;:::i;:::-;;:::i;31666:204::-;;;;;;;;;;-1:-1:-1;31666:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8280:32:1;;;8262:51;;8250:2;8235:18;31666:204:0;8116:203:1;47477:28:0;;;;;;;;;;;;;:::i;31229:371::-;;;;;;;;;;-1:-1:-1;31229:371:0;;;;;:::i;:::-;;:::i;:::-;;48352:38;;;;;;;;;;;;;;;;48858:31;;;;;;;;;;;;;;;;47621:32;;;;;;;;;;;;;;;;47754:38;;;;;;;;;;;;;;;;56624:117;;;;;;;;;;-1:-1:-1;56624:117:0;;;;;:::i;:::-;;:::i;48082:39::-;;;;;;;;;;;;;;;;26299:303;;;;;;;;;;-1:-1:-1;26553:12:0;;26343:7;26537:13;:28;26299:303;;48794:55;;;;;;;;;;-1:-1:-1;48794:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;57028:142;;;;;;;;;;-1:-1:-1;57028:142:0;;;;;:::i;:::-;;:::i;54546:255::-;;;;;;;;;;-1:-1:-1;54546:255:0;;;;;:::i;:::-;;:::i;57320:157::-;;;;;;;;;;-1:-1:-1;57320:157:0;;;;;:::i;:::-;;:::i;32531:170::-;;;;;;;;;;-1:-1:-1;32531:170:0;;;;;:::i;:::-;;:::i;56874:146::-;;;;;;;;;;-1:-1:-1;56874:146:0;;;;;:::i;:::-;;:::i;58053:83::-;;;;;;;;;;;;;:::i;49024:113::-;;;;;;;;;;;;;;;;48580:67;;;;;;;;;;-1:-1:-1;48580:67:0;;;;;:::i;:::-;;;;;;;;;;;;;;57967:78;;;;;;;;;;;;;:::i;58981:481::-;;;:::i;32772:185::-;;;;;;;;;;-1:-1:-1;32772:185:0;;;;;:::i;:::-;;:::i;49446:79::-;;;;;;;;;;-1:-1:-1;49446:79:0;;;;;:::i;:::-;;:::i;53976:279::-;;;;;;;;;;-1:-1:-1;53976:279:0;;;;;:::i;:::-;;:::i;58667:116::-;;;;;;;;;;-1:-1:-1;58667:116:0;;;;;:::i;:::-;;:::i;58233:77::-;;;;;;;;;;;;;:::i;48475:28::-;;;;;;;;;;-1:-1:-1;48475:28:0;;;;;;;;57485:104;;;;;;;;;;-1:-1:-1;57485:104:0;;;;;:::i;:::-;;:::i;47574:40::-;;;;;;;;;;;;;;;;29971:125;;;;;;;;;;-1:-1:-1;29971:125:0;;;;;:::i;:::-;;:::i;48266:42::-;;;;;;;;;;;;;;;;56749:117;;;;;;;;;;-1:-1:-1;56749:117:0;;;;;:::i;:::-;;:::i;47405:21::-;;;;;;;;;;;;;:::i;27419:206::-;;;;;;;;;;-1:-1:-1;27419:206:0;;;;;:::i;:::-;;:::i;46476:103::-;;;;;;;;;;;;;:::i;48900:115::-;;;;;;;;;;;;;;;;58318:73;;;;;;;;;;;;;:::i;48172:45::-;;;;;;;;;;;;;;;;58791:88;;;;;;;;;;-1:-1:-1;58791:88:0;;;;;:::i;:::-;;:::i;57890:69::-;;;;;;;;;;;;;:::i;58399:128::-;;;;;;;;;;-1:-1:-1;58399:128:0;;;;;:::i;:::-;;:::i;45825:87::-;;;;;;;;;;-1:-1:-1;45898:6:0;;-1:-1:-1;;;;;45898:6:0;45825:87;;58535:124;;;;;;;;;;-1:-1:-1;58535:124:0;;;;;:::i;:::-;;:::i;30332:104::-;;;;;;;;;;;;;:::i;48514:59::-;;;;;;;;;;-1:-1:-1;48514:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;47836:45;;;;;;;;;;;;;;;;31942:287;;;;;;;;;;-1:-1:-1;31942:287:0;;;;;:::i;:::-;;:::i;48726:61::-;;;;;;;;;;-1:-1:-1;48726:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;49146:109;;;;;;;;;;;;;;;;56275:69;;;;;;;;;;;;;:::i;48002:38::-;;;;;;;;;;;;;;;;56352:129;;;;;;;;;;-1:-1:-1;56352:129:0;;;;;:::i;:::-;;:::i;33028:369::-;;;;;;;;;;-1:-1:-1;33028:369:0;;;;;:::i;:::-;;:::i;58144:81::-;;;;;;;;;;;;;:::i;49533:4433::-;;;;;;:::i;:::-;;:::i;48654:65::-;;;;;;;;;;-1:-1:-1;48654:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;47923:42;;;;;;;;;;;;;;;;47433:37;;;;;;;;;;;;;:::i;57178:134::-;;;;;;;;;;-1:-1:-1;57178:134:0;;;;;:::i;:::-;;:::i;55524:725::-;;;;;;;;;;-1:-1:-1;55524:725:0;;;;;:::i;:::-;;:::i;56489:125::-;;;;;;;;;;-1:-1:-1;56489:125:0;;;;;:::i;:::-;;:::i;58887:86::-;;;;;;;;;;-1:-1:-1;58887:86:0;;;;;:::i;:::-;;:::i;48427:39::-;;;;;;;;;;;;;;;;47681:31;;;;;;;;;;;;;;;;57597:151;;;;;;;;;;-1:-1:-1;57597:151:0;;;;;:::i;:::-;;:::i;32300:164::-;;;;;;;;;;-1:-1:-1;32300:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32421:25:0;;;32397:4;32421:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32300:164;54263:275;;;;;;;;;;-1:-1:-1;54263:275:0;;;;;:::i;:::-;;:::i;57756:126::-;;;;;;;;;;-1:-1:-1;57756:126:0;;;;;:::i;:::-;;:::i;46734:238::-;;;;;;;;;;-1:-1:-1;46734:238:0;;;;;:::i;:::-;;:::i;27050:305::-;27152:4;-1:-1:-1;;;;;;27189:40:0;;-1:-1:-1;;;27189:40:0;;:105;;-1:-1:-1;;;;;;;27246:48:0;;-1:-1:-1;;;27246:48:0;27189:105;:158;;;-1:-1:-1;;;;;;;;;;17052:40:0;;;27311:36;27169:178;27050:305;-1:-1:-1;;27050:305:0:o;30163:100::-;30217:13;30250:5;30243:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30163:100;:::o;54809:707::-;54876:7;54900:12;;54916:1;54900:17;54896:594;;;-1:-1:-1;;;;;54961:31:0;;;;;;:24;:31;;;;;;54941:17;;:51;;54961:31;54941:51;:::i;54896:594::-;55014:12;;55030:1;55014:17;55010:480;;;-1:-1:-1;;;;;55083:39:0;;;;;;:32;:39;;;;;;55055:25;;:67;;55083:39;55055:67;:::i;55010:480::-;55144:12;;55160:1;55144:17;55140:350;;;-1:-1:-1;;;;;55211:37:0;;;;;;:30;:37;;;;;;55185:23;;:63;;55211:37;55185:63;:::i;55140:350::-;55270:12;;55286:1;55270:17;55266:224;;;-1:-1:-1;;;;;55333:33:0;;;;;;:26;:33;;;;;;55311:19;;:55;;55333:33;55311:55;:::i;55266:224::-;55388:12;;55404:1;55388:17;55384:106;;;-1:-1:-1;;;;;55451:27:0;;;;;;:20;:27;;;;;;55429:19;;:49;;55451:27;55429:49;:::i;55384:106::-;-1:-1:-1;55507:1:0;;54809:707;-1:-1:-1;54809:707:0:o;31666:204::-;31734:7;31759:16;31767:7;31759;:16::i;:::-;31754:64;;31784:34;;-1:-1:-1;;;31784:34:0;;;;;;;;;;;31754:64;-1:-1:-1;31838:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31838:24:0;;31666:204::o;47477:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31229:371::-;31302:13;31318:24;31334:7;31318:15;:24::i;:::-;31302:40;;31363:5;-1:-1:-1;;;;;31357:11:0;:2;-1:-1:-1;;;;;31357:11:0;;31353:48;;;31377:24;;-1:-1:-1;;;31377:24:0;;;;;;;;;;;31353:48;5420:10;-1:-1:-1;;;;;31418:21:0;;;;;;:63;;-1:-1:-1;31444:37:0;31461:5;5420:10;32300:164;:::i;31444:37::-;31443:38;31418:63;31414:138;;;31505:35;;-1:-1:-1;;;31505:35:0;;;;;;;;;;;31414:138;31564:28;31573:2;31577:7;31586:5;31564:8;:28::i;:::-;31291:309;31229:371;;:::o;56624:117::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;;;;;;;;;56705:19:::1;:28:::0;56624:117::o;57028:142::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;57119:23:::1;:43:::0;57028:142::o;54546:255::-;54695:23;;-1:-1:-1;;;;;;6037:2:1;6033:15;;;6029:53;54695:23:0;;;6017:66:1;54648:4:0;;;;6099:12:1;;54695:23:0;;;;;;;;;;;;54685:34;;;;;;54670:49;;54737:56;54756:12;;54737:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54770:16:0;;;-1:-1:-1;54788:4:0;;-1:-1:-1;54737:18:0;:56::i;:::-;54730:63;54546:255;-1:-1:-1;;;;;54546:255:0:o;57320:157::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;57430:19:::1;:39:::0;57320:157::o;32531:170::-;32665:28;32675:4;32681:2;32685:7;32665:9;:28::i;56874:146::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;56967:25:::1;:45:::0;56874:146::o;58053:83::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;58127:1:::1;58112:12;:16:::0;58053:83::o;57967:78::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;58036:1:::1;58021:12;:16:::0;57967:78::o;58981:481::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;59274:7:::1;59295;45898:6:::0;;-1:-1:-1;;;;;45898:6:0;;45825:87;59295:7:::1;-1:-1:-1::0;;;;;59287:21:0::1;59316;59287:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59273:69;;;59361:2;59353:11;;;::::0;::::1;;59026:436;58981:481::o:0;32772:185::-;32910:39;32927:4;32933:2;32937:7;32910:39;;;;;;;;;;;;:16;:39::i;49446:79::-;49497:20;49509:7;49497:11;:20::i;53976:279::-;54143:23;;-1:-1:-1;;;;;;6037:2:1;6033:15;;;6029:53;54143:23:0;;;6017:66:1;54096:4:0;;;;6099:12:1;;54143:23:0;;;;;;;;;;;;54133:34;;;;;;54118:49;;54185:62;54204:12;;54185:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54218:22:0;;;-1:-1:-1;54242:4:0;;-1:-1:-1;54185:18:0;:62::i;58667:116::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;58745:16:::1;:30:::0;58667:116::o;58233:77::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;58301:1:::1;58286:12;:16:::0;58233:77::o;57485:104::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;57560:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57485:104:::0;:::o;29971:125::-;30035:7;30062:21;30075:7;30062:12;:21::i;:::-;:26;;29971:125;-1:-1:-1;;29971:125:0:o;56749:117::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;56830:19:::1;:28:::0;56749:117::o;47405:21::-;;;;;;;:::i;27419:206::-;27483:7;-1:-1:-1;;;;;27507:19:0;;27503:60;;27535:28;;-1:-1:-1;;;27535:28:0;;;;;;;;;;;27503:60;-1:-1:-1;;;;;;27589:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27589:27:0;;27419:206::o;46476:103::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;46541:30:::1;46568:1;46541:18;:30::i;:::-;46476:103::o:0;58318:73::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;58382:1:::1;58367:12;:16:::0;58318:73::o;58791:88::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;58858:4:::1;:13:::0;58791:88::o;57890:69::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;57950:1:::1;57935:12;:16:::0;57890:69::o;58399:128::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;58483:22:::1;:36:::0;58399:128::o;58535:124::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;58617:20:::1;:34:::0;58535:124::o;30332:104::-;30388:13;30421:7;30414:14;;;;;:::i;31942:287::-;-1:-1:-1;;;;;32041:24:0;;5420:10;32041:24;32037:54;;;32074:17;;-1:-1:-1;;;32074:17:0;;;;;;;;;;;32037:54;5420:10;32104:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32104:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32104:53:0;;;;;;;;;;32173:48;;8957:41:1;;;32104:42:0;;5420:10;32173:48;;8930:18:1;32173:48:0;;;;;;;31942:287;;:::o;56275:69::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;56321:8:::1;:15:::0;;-1:-1:-1;;56321:15:0::1;56332:4;56321:15;::::0;;56275:69::o;56352:129::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;56439:25:::1;:34:::0;56352:129::o;33028:369::-;33195:28;33205:4;33211:2;33215:7;33195:9;:28::i;:::-;-1:-1:-1;;;;;33238:13:0;;7082:19;:23;;33238:76;;;;;33258:56;33289:4;33295:2;33299:7;33308:5;33258:30;:56::i;:::-;33257:57;33238:76;33234:156;;;33338:40;;-1:-1:-1;;;33338:40:0;;;;;;;;;;;33234:156;33028:369;;;;:::o;58144:81::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;58216:1:::1;58201:12;:16:::0;58144:81::o;49533:4433::-;49650:14;49667:13;26553:12;;26343:7;26537:13;:28;;26299:303;49667:13;49650:30;;49713:1;49699:11;:15;49691:55;;;;-1:-1:-1;;;49691:55:0;;13665:2:1;49691:55:0;;;13647:21:1;13704:2;13684:18;;;13677:30;13743:29;13723:18;;;13716:57;13790:18;;49691:55:0;13463:351:1;49691:55:0;49789:9;;49765:20;49774:11;49765:6;:20;:::i;:::-;:33;;49757:68;;;;-1:-1:-1;;;49757:68:0;;11080:2:1;49757:68:0;;;11062:21:1;11119:2;11099:18;;;11092:30;-1:-1:-1;;;11138:18:1;;;11131:52;11200:18;;49757:68:0;10878:346:1;49757:68:0;45898:6;;-1:-1:-1;;;;;45898:6:0;49840:10;:21;49836:3525;;49901:1;49886:12;;:16;49878:51;;;;-1:-1:-1;;;49878:51:0;;12197:2:1;49878:51:0;;;12179:21:1;12236:2;12216:18;;;12209:30;-1:-1:-1;;;12255:18:1;;;12248:52;12317:18;;49878:51:0;11995:346:1;49878:51:0;49948:12;;49964:1;49948:17;49944:3406;;;50038:10;49986:24;50013:36;;;:24;:36;;;;;;50113:17;;50098:32;;;50068:142;;;;-1:-1:-1;;;50068:142:0;;;;;;;:::i;:::-;50293:17;;50259:30;50278:11;50259:16;:30;:::i;:::-;:51;;50229:153;;;;-1:-1:-1;;;50229:153:0;;;;;;;:::i;:::-;50429:11;50422:4;;:18;;;;:::i;:::-;50409:9;:31;;50401:62;;;;-1:-1:-1;;;50401:62:0;;12964:2:1;50401:62:0;;;12946:21:1;13003:2;12983:18;;;12976:30;-1:-1:-1;;;13022:18:1;;;13015:48;13080:18;;50401:62:0;12762:342:1;50401:62:0;49967:512;49944:3406;;;50502:12;;50518:1;50502:17;50498:2852;;;50600:10;50540:24;50567:44;;;:32;:44;;;;;;;50660:40;;50687:12;;50660:14;:40::i;:::-;50630:139;;;;-1:-1:-1;;;50630:139:0;;13311:2:1;50630:139:0;;;13293:21:1;13350:2;13330:18;;;13323:30;13389:27;13369:18;;;13362:55;13434:18;;50630:139:0;13109:349:1;50630:139:0;50833:25;;50818:11;:40;;50788:150;;;;-1:-1:-1;;;50788:150:0;;;;;;;:::i;:::-;51021:25;;50987:30;51006:11;50987:16;:30;:::i;:::-;:59;;50957:161;;;;-1:-1:-1;;;50957:161:0;;;;;;;:::i;:::-;51189:11;51180:6;;:20;;;;:::i;50498:2852::-;51288:12;;51304:1;51288:17;51284:2066;;;51384:10;51326:24;51353:42;;;:30;:42;;;;;;;51444:38;;51469:12;;51444;:38::i;:::-;51414:135;;;;-1:-1:-1;;;51414:135:0;;10728:2:1;51414:135:0;;;10710:21:1;10767:2;10747:18;;;10740:30;10806:25;10786:18;;;10779:53;10849:18;;51414:135:0;10526:347:1;51414:135:0;51613:23;;51598:11;:38;;51568:148;;;;-1:-1:-1;;;51568:148:0;;;;;;;:::i;:::-;51799:23;;51765:30;51784:11;51765:16;:30;:::i;51284:2066::-;52064:12;;52080:1;52064:17;52060:1290;;;52156:10;52102:24;52129:38;;;:26;:38;;;;;;;52216:34;;52237:12;;52216:8;:34::i;:::-;52186:126;;;;-1:-1:-1;;;52186:126:0;;10381:2:1;52186:126:0;;;10363:21:1;10420:2;10400:18;;;10393:30;-1:-1:-1;;;10439:18:1;;;10432:48;10497:18;;52186:126:0;10179:342:1;52186:126:0;52376:19;;52361:11;:34;;52331:144;;;;-1:-1:-1;;;52331:144:0;;;;;;;:::i;:::-;52558:19;;52524:30;52543:11;52524:16;:30;:::i;52060:1290::-;52819:12;;52835:1;52819:17;52815:535;;;52905:10;52857:24;52884:32;;;:20;:32;;;;;;52980:19;;52965:34;;;52935:144;;;;-1:-1:-1;;;52935:144:0;;;;;;;:::i;:::-;53162:19;;53128:30;53147:11;53128:16;:30;:::i;:::-;:53;;53098:155;;;;-1:-1:-1;;;53098:155:0;;;;;;;:::i;:::-;53300:11;53293:4;;:18;;;;:::i;:::-;53280:9;:31;;53272:62;;;;-1:-1:-1;;;53272:62:0;;12964:2:1;53272:62:0;;;12946:21:1;13003:2;12983:18;;;12976:30;-1:-1:-1;;;13022:18:1;;;13015:48;13080:18;;53272:62:0;12762:342:1;53272:62:0;52838:512;52815:535;53373:34;53383:10;53395:11;53373:9;:34::i;:::-;53422:12;;53438:1;53422:17;53418:541;;;53481:10;53456:36;;;;:24;:36;;;;;:51;;53496:11;;53456:36;:51;;53496:11;;53456:51;:::i;:::-;;;;-1:-1:-1;53418:541:0;;-1:-1:-1;53418:541:0;;53529:12;;53545:1;53529:17;53525:434;;;53596:10;53563:44;;;;:32;:44;;;;;:59;;53611:11;;53563:44;:59;;53611:11;;53563:59;:::i;53525:434::-;53644:12;;53660:1;53644:17;53640:319;;;53709:10;53678:42;;;;:30;:42;;;;;:57;;53724:11;;53678:42;:57;;53724:11;;53678:57;:::i;53640:319::-;53757:12;;53773:1;53757:17;53753:206;;;53818:10;53791:38;;;;:26;:38;;;;;:53;;53833:11;;53791:38;:53;;53833:11;;53791:53;:::i;53753:206::-;53866:12;;53882:1;53866:17;53862:97;;;53921:10;53900:32;;;;:20;:32;;;;;:47;;53936:11;;53900:32;:47;;53936:11;;53900:47;:::i;:::-;;;;-1:-1:-1;;49639:4327:0;49533:4433;;;:::o;47433:37::-;;;;;;;:::i;57178:134::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;57265:19:::1;:39:::0;57178:134::o;55524:725::-;55642:13;55695:16;55703:7;55695;:16::i;:::-;55673:113;;;;-1:-1:-1;;;55673:113:0;;12548:2:1;55673:113:0;;;12530:21:1;12587:2;12567:18;;;12560:30;12626:34;12606:18;;;12599:62;-1:-1:-1;;;12677:18:1;;;12670:45;12732:19;;55673:113:0;12346:411:1;55673:113:0;55803:8;;;;55799:71;;55844:14;55837:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55524:725;;;:::o;55799:71::-;55882:28;55913:10;:8;:10::i;:::-;55882:41;;55985:1;55960:14;55954:28;:32;:287;;;;;;;;;;;;;;;;;56078:14;56119:18;:7;:16;:18::i;:::-;56164:13;56035:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55954:287;55934:307;55524:725;-1:-1:-1;;;55524:725:0:o;56489:125::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;56574:23:::1;:32:::0;56489:125::o;58887:86::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;58950:6:::1;:15:::0;58887:86::o;57597:151::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;57707:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;54263:275::-:0;54428:23;;-1:-1:-1;;;;;;6037:2:1;6033:15;;;6029:53;54428:23:0;;;6017:66:1;54381:4:0;;;;6099:12:1;;54428:23:0;;;;;;;;;;;;54418:34;;;;;;54403:49;;54470:60;54489:12;;54470:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54503:20:0;;;-1:-1:-1;54525:4:0;;-1:-1:-1;54470:18:0;:60::i;57756:126::-;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;57842:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;46734:238::-:0;45898:6;;-1:-1:-1;;;;;45898:6:0;5420:10;46045:23;46037:68;;;;-1:-1:-1;;;46037:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46837:22:0;::::1;46815:110;;;::::0;-1:-1:-1;;;46815:110:0;;9617:2:1;46815:110:0::1;::::0;::::1;9599:21:1::0;9656:2;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;-1:-1:-1;;;9746:18:1;;;9739:36;9792:19;;46815:110:0::1;9415:402:1::0;46815:110:0::1;46936:28;46955:8;46936:18;:28::i;33652:187::-:0;33709:4;33773:13;;33763:7;:23;33733:98;;;;-1:-1:-1;;33804:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33804:27:0;;;;33803:28;;33652:187::o;41822:196::-;41937:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41937:29:0;-1:-1:-1;;;;;41937:29:0;;;;;;;;;41982:28;;41937:24;;41982:28;;;;;;;41822:196;;;:::o;906:190::-;1031:4;1084;1055:25;1068:5;1075:4;1055:12;:25::i;:::-;:33;;906:190;-1:-1:-1;;;;906:190:0:o;36765:2130::-;36880:35;36918:21;36931:7;36918:12;:21::i;:::-;36880:59;;36978:4;-1:-1:-1;;;;;36956:26:0;:13;:18;;;-1:-1:-1;;;;;36956:26:0;;36952:67;;36991:28;;-1:-1:-1;;;36991:28:0;;;;;;;;;;;36952:67;37032:22;5420:10;-1:-1:-1;;;;;37058:20:0;;;;:73;;-1:-1:-1;37095:36:0;37112:4;5420:10;32300:164;:::i;37095:36::-;37058:126;;;-1:-1:-1;5420:10:0;37148:20;37160:7;37148:11;:20::i;:::-;-1:-1:-1;;;;;37148:36:0;;37058:126;37032:153;;37203:17;37198:66;;37229:35;;-1:-1:-1;;;37229:35:0;;;;;;;;;;;37198:66;-1:-1:-1;;;;;37279:16:0;;37275:52;;37304:23;;-1:-1:-1;;;37304:23:0;;;;;;;;;;;37275:52;37448:35;37465:1;37469:7;37478:4;37448:8;:35::i;:::-;-1:-1:-1;;;;;37779:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37779:31:0;;;-1:-1:-1;;;;;37779:31:0;;;-1:-1:-1;;37779:31:0;;;;;;;37825:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37825:29:0;;;;;;;;;;;37905:20;;;:11;:20;;;;;;37940:18;;-1:-1:-1;;;;;;37973:49:0;;;;-1:-1:-1;;;38006:15:0;37973:49;;;;;;;;;;38296:11;;38356:24;;;;;38399:13;;37905:20;;38356:24;;38399:13;38395:384;;38609:13;;38594:11;:28;38590:174;;38647:20;;38716:28;;;;-1:-1:-1;;;;;38690:54:0;-1:-1:-1;;;38690:54:0;-1:-1:-1;;;;;;38690:54:0;;;-1:-1:-1;;;;;38647:20:0;;38690:54;;;;38590:174;37754:1036;;;38826:7;38822:2;-1:-1:-1;;;;;38807:27:0;38816:4;-1:-1:-1;;;;;38807:27:0;-1:-1:-1;;;;;;;;;;;38807:27:0;;;;;;;;;38845:42;36869:2026;;36765:2130;;;:::o;38978:89::-;39038:21;39044:7;39053:5;39038;:21::i;28800:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28911:7:0;28994:13;;28987:4;:20;28956:886;;;29028:31;29062:17;;;:11;:17;;;;;;;;;29028:51;;;;;;;;;-1:-1:-1;;;;;29028:51:0;;;;-1:-1:-1;;;29028:51:0;;-1:-1:-1;;;;;29028:51:0;;;;;;;;-1:-1:-1;;;29028:51:0;;;;;;;;;;;;;;29098:729;;29148:14;;-1:-1:-1;;;;;29148:28:0;;29144:101;;29212:9;28800:1109;-1:-1:-1;;;28800:1109:0:o;29144:101::-;-1:-1:-1;;;29587:6:0;29632:17;;;;:11;:17;;;;;;;;;29620:29;;;;;;;;;-1:-1:-1;;;;;29620:29:0;;;;;-1:-1:-1;;;29620:29:0;;-1:-1:-1;;;;;29620:29:0;;;;;;;;-1:-1:-1;;;29620:29:0;;;;;;;;;;;;;29680:28;29676:109;;29748:9;28800:1109;-1:-1:-1;;;28800:1109:0:o;29676:109::-;29547:261;;;29009:833;28956:886;29870:31;;-1:-1:-1;;;29870:31:0;;;;;;;;;;;47132:191;47225:6;;;-1:-1:-1;;;;;47242:17:0;;;-1:-1:-1;;;;;;47242:17:0;;;;;;;47275:40;;47225:6;;;47242:17;47225:6;;47275:40;;47206:16;;47275:40;47195:128;47132:191;:::o;42510:667::-;42694:72;;-1:-1:-1;;;42694:72:0;;42673:4;;-1:-1:-1;;;;;42694:36:0;;;;;:72;;5420:10;;42745:4;;42751:7;;42760:5;;42694:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42694:72:0;;;;;;;;-1:-1:-1;;42694:72:0;;;;;;;;;;;;:::i;:::-;;;42690:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42928:13:0;;42924:235;;42974:40;;-1:-1:-1;;;42974:40:0;;;;;;;;;;;42924:235;43117:6;43111:13;43102:6;43098:2;43094:15;43087:38;42690:480;-1:-1:-1;;;;;;42813:55:0;-1:-1:-1;;;42813:55:0;;-1:-1:-1;42690:480:0;42510:667;;;;;;:::o;33847:104::-;33916:27;33926:2;33930:8;33916:27;;;;;;;;;;;;:9;:27::i;49330:108::-;49390:13;49423:7;49416:14;;;;;:::i;2594:723::-;2650:13;2871:10;2867:53;;-1:-1:-1;;2898:10:0;;;;;;;;;;;;-1:-1:-1;;;2898:10:0;;;;;2594:723::o;2867:53::-;2945:5;2930:12;2986:78;2993:9;;2986:78;;3019:8;;;;:::i;:::-;;-1:-1:-1;3042:10:0;;-1:-1:-1;3050:2:0;3042:10;;:::i;:::-;;;2986:78;;;3074:19;3106:6;-1:-1:-1;;;;;3096:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3096:17:0;;3074:39;;3124:154;3131:10;;3124:154;;3158:11;3168:1;3158:11;;:::i;:::-;;-1:-1:-1;3227:10:0;3235:2;3227:5;:10;:::i;:::-;3214:24;;:2;:24;:::i;:::-;3201:39;;3184:6;3191;3184:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3184:56:0;;;;;;;;-1:-1:-1;3255:11:0;3264:2;3255:11;;:::i;:::-;;;3124:154;;1458:701;1541:7;1584:4;1541:7;1599:523;1623:5;:12;1619:1;:16;1599:523;;;1657:20;1680:5;1686:1;1680:8;;;;;;;;:::i;:::-;;;;;;;1657:31;;1723:12;1707;:28;1703:408;;1860:44;;;;;;6279:19:1;;;6314:12;;;6307:28;;;6351:12;;1860:44:0;;;;;;;;;;;;1850:55;;;;;;1835:70;;1703:408;;;2050:44;;;;;;6279:19:1;;;6314:12;;;6307:28;;;6351:12;;2050:44:0;;;;;;;;;;;;2040:55;;;;;;2025:70;;1703:408;-1:-1:-1;1637:3:0;;;;:::i;:::-;;;;1599:523;;;-1:-1:-1;2139:12:0;1458:701;-1:-1:-1;;;1458:701:0:o;39296:2408::-;39376:35;39414:21;39427:7;39414:12;:21::i;:::-;39463:18;;39376:59;;-1:-1:-1;39494:290:0;;;;39528:22;5420:10;-1:-1:-1;;;;;39554:20:0;;;;:77;;-1:-1:-1;39595:36:0;39612:4;5420:10;32300:164;:::i;39595:36::-;39554:134;;;-1:-1:-1;5420:10:0;39652:20;39664:7;39652:11;:20::i;:::-;-1:-1:-1;;;;;39652:36:0;;39554:134;39528:161;;39711:17;39706:66;;39737:35;;-1:-1:-1;;;39737:35:0;;;;;;;;;;;39706:66;39513:271;39494:290;39912:35;39929:1;39933:7;39942:4;39912:8;:35::i;:::-;-1:-1:-1;;;;;40277:18:0;;;40243:31;40277:18;;;:12;:18;;;;;;;;40310:24;;-1:-1:-1;;;;;;;;;;40310:24:0;;;;;;;;;-1:-1:-1;;40310:24:0;;;;40349:29;;;;;40333:1;40349:29;;;;;;;;-1:-1:-1;;40349:29:0;;;;;;;;;;40511:20;;;:11;:20;;;;;;40546;;-1:-1:-1;;;;40614:15:0;40581:49;;;-1:-1:-1;;;40581:49:0;-1:-1:-1;;;;;;40581:49:0;;;;;;;;;;40645:22;-1:-1:-1;;;40645:22:0;;;40937:11;;;40997:24;;;;;41040:13;;40277:18;;40997:24;;41040:13;41036:384;;41250:13;;41235:11;:28;41231:174;;41288:20;;41357:28;;;;-1:-1:-1;;;;;41331:54:0;-1:-1:-1;;;41331:54:0;-1:-1:-1;;;;;;41331:54:0;;;-1:-1:-1;;;;;41288:20:0;;41331:54;;;;41231:174;-1:-1:-1;;41448:35:0;;41475:7;;-1:-1:-1;41471:1:0;;-1:-1:-1;;;;;;41448:35:0;;;-1:-1:-1;;;;;;;;;;;41448:35:0;41471:1;;41448:35;-1:-1:-1;;41671:12:0;:14;;;;;;-1:-1:-1;;39296:2408:0:o;34314:163::-;34437:32;34443:2;34447:8;34457:5;34464:4;34875:20;34898:13;-1:-1:-1;;;;;34926:16:0;;34922:48;;34951:19;;-1:-1:-1;;;34951:19:0;;;;;;;;;;;34922:48;34985:13;34981:44;;35007:18;;-1:-1:-1;;;35007:18:0;;;;;;;;;;;34981:44;-1:-1:-1;;;;;35376:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35435:49:0;;-1:-1:-1;;;;;35376:44:0;;;;;;;35435:49;;;;-1:-1:-1;;35376:44:0;;;;;;35435:49;;;;;;;;;;;;;;;;35501:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35551:66:0;;;;-1:-1:-1;;;35601:15:0;35551:66;;;;;;;;;;35501:25;35698:23;;;35742:4;:23;;;;-1:-1:-1;;;;;;35750:13:0;;7082:19;:23;;35750:15;35738:641;;;35786:314;35817:38;;35842:12;;-1:-1:-1;;;;;35817:38:0;;;35834:1;;-1:-1:-1;;;;;;;;;;;35817:38:0;35834:1;;35817:38;35883:69;35922:1;35926:2;35930:14;;;;;;35946:5;35883:30;:69::i;:::-;35878:174;;35988:40;;-1:-1:-1;;;35988:40:0;;;;;;;;;;;35878:174;36095:3;36079:12;:19;;35786:314;;36181:12;36164:13;;:29;36160:43;;36195:8;;;36160:43;35738:641;;;36244:120;36275:40;;36300:14;;;;;-1:-1:-1;;;;;36275:40:0;;;36292:1;;-1:-1:-1;;;;;;;;;;;36275:40:0;36292:1;;36275:40;36359:3;36343:12;:19;;36244:120;;35738:641;-1:-1:-1;36393:13:0;:28;36443:60;33028:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;-1:-1:-1;;;;;2408:6:1;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:511::-;2755:6;2763;2771;2824:2;2812:9;2803:7;2799:23;2795:32;2792:52;;;2840:1;2837;2830:12;2792:52;2863:29;2882:9;2863:29;:::i;:::-;2853:39;;2943:2;2932:9;2928:18;2915:32;-1:-1:-1;;;;;2962:6:1;2959:30;2956:50;;;3002:1;2999;2992:12;2956:50;3041:70;3103:7;3094:6;3083:9;3079:22;3041:70;:::i;:::-;2660:511;;3130:8;;-1:-1:-1;3015:96:1;;-1:-1:-1;;;;2660:511:1:o;3176:347::-;3241:6;3249;3302:2;3290:9;3281:7;3277:23;3273:32;3270:52;;;3318:1;3315;3308:12;3270:52;3341:29;3360:9;3341:29;:::i;:::-;3331:39;;3420:2;3409:9;3405:18;3392:32;3467:5;3460:13;3453:21;3446:5;3443:32;3433:60;;3489:1;3486;3479:12;3433:60;3512:5;3502:15;;;3176:347;;;;;:::o;3528:254::-;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3696:29;3715:9;3696:29;:::i;:::-;3686:39;3772:2;3757:18;;;;3744:32;;-1:-1:-1;;;3528:254:1:o;3787:180::-;3846:6;3899:2;3887:9;3878:7;3874:23;3870:32;3867:52;;;3915:1;3912;3905:12;3867:52;-1:-1:-1;3938:23:1;;3787:180;-1:-1:-1;3787:180:1:o;3972:245::-;4030:6;4083:2;4071:9;4062:7;4058:23;4054:32;4051:52;;;4099:1;4096;4089:12;4051:52;4138:9;4125:23;4157:30;4181:5;4157:30;:::i;4222:249::-;4291:6;4344:2;4332:9;4323:7;4319:23;4315:32;4312:52;;;4360:1;4357;4350:12;4312:52;4392:9;4386:16;4411:30;4435:5;4411:30;:::i;4476:450::-;4545:6;4598:2;4586:9;4577:7;4573:23;4569:32;4566:52;;;4614:1;4611;4604:12;4566:52;4654:9;4641:23;-1:-1:-1;;;;;4679:6:1;4676:30;4673:50;;;4719:1;4716;4709:12;4673:50;4742:22;;4795:4;4787:13;;4783:27;-1:-1:-1;4773:55:1;;4824:1;4821;4814:12;4773:55;4847:73;4912:7;4907:2;4894:16;4889:2;4885;4881:11;4847:73;:::i;5116:505::-;5211:6;5219;5227;5280:2;5268:9;5259:7;5255:23;5251:32;5248:52;;;5296:1;5293;5286:12;5248:52;5332:9;5319:23;5309:33;;5393:2;5382:9;5378:18;5365:32;-1:-1:-1;;;;;5412:6:1;5409:30;5406:50;;;5452:1;5449;5442:12;5626:257;5667:3;5705:5;5699:12;5732:6;5727:3;5720:19;5748:63;5804:6;5797:4;5792:3;5788:14;5781:4;5774:5;5770:16;5748:63;:::i;:::-;5865:2;5844:15;-1:-1:-1;;5840:29:1;5831:39;;;;5872:4;5827:50;;5626:257;-1:-1:-1;;5626:257:1:o;6374:1527::-;6598:3;6636:6;6630:13;6662:4;6675:51;6719:6;6714:3;6709:2;6701:6;6697:15;6675:51;:::i;:::-;6789:13;;6748:16;;;;6811:55;6789:13;6748:16;6833:15;;;6811:55;:::i;:::-;6955:13;;6888:20;;;6928:1;;7015;7037:18;;;;7090;;;;7117:93;;7195:4;7185:8;7181:19;7169:31;;7117:93;7258:2;7248:8;7245:16;7225:18;7222:40;7219:167;;;-1:-1:-1;;;7285:33:1;;7341:4;7338:1;7331:15;7371:4;7292:3;7359:17;7219:167;7402:18;7429:110;;;;7553:1;7548:328;;;;7395:481;;7429:110;-1:-1:-1;;7464:24:1;;7450:39;;7509:20;;;;-1:-1:-1;7429:110:1;;7548:328;14074:1;14067:14;;;14111:4;14098:18;;7643:1;7657:169;7671:8;7668:1;7665:15;7657:169;;;7753:14;;7738:13;;;7731:37;7796:16;;;;7688:10;;7657:169;;;7661:3;;7857:8;7850:5;7846:20;7839:27;;7395:481;-1:-1:-1;7892:3:1;;6374:1527;-1:-1:-1;;;;;;;;;;;6374:1527:1:o;8324:488::-;-1:-1:-1;;;;;8593:15:1;;;8575:34;;8645:15;;8640:2;8625:18;;8618:43;8692:2;8677:18;;8670:34;;;8740:3;8735:2;8720:18;;8713:31;;;8518:4;;8761:45;;8786:19;;8778:6;8761:45;:::i;:::-;8753:53;8324:488;-1:-1:-1;;;;;;8324:488:1:o;9191:219::-;9340:2;9329:9;9322:21;9303:4;9360:44;9400:2;9389:9;9385:18;9377:6;9360:44;:::i;9822:352::-;10024:2;10006:21;;;10063:2;10043:18;;;10036:30;10102;10097:2;10082:18;;10075:58;10165:2;10150:18;;9822:352::o;11229:400::-;11431:2;11413:21;;;11470:2;11450:18;;;11443:30;11509:34;11504:2;11489:18;;11482:62;-1:-1:-1;;;11575:2:1;11560:18;;11553:34;11619:3;11604:19;;11229:400::o;11634:356::-;11836:2;11818:21;;;11855:18;;;11848:30;11914:34;11909:2;11894:18;;11887:62;11981:2;11966:18;;11634:356::o;14127:128::-;14167:3;14198:1;14194:6;14191:1;14188:13;14185:39;;;14204:18;;:::i;:::-;-1:-1:-1;14240:9:1;;14127:128::o;14260:120::-;14300:1;14326;14316:35;;14331:18;;:::i;:::-;-1:-1:-1;14365:9:1;;14260:120::o;14385:168::-;14425:7;14491:1;14487;14483:6;14479:14;14476:1;14473:21;14468:1;14461:9;14454:17;14450:45;14447:71;;;14498:18;;:::i;:::-;-1:-1:-1;14538:9:1;;14385:168::o;14558:125::-;14598:4;14626:1;14623;14620:8;14617:34;;;14631:18;;:::i;:::-;-1:-1:-1;14668:9:1;;14558:125::o;14688:258::-;14760:1;14770:113;14784:6;14781:1;14778:13;14770:113;;;14860:11;;;14854:18;14841:11;;;14834:39;14806:2;14799:10;14770:113;;;14901:6;14898:1;14895:13;14892:48;;;-1:-1:-1;;14936:1:1;14918:16;;14911:27;14688:258::o;14951:380::-;15030:1;15026:12;;;;15073;;;15094:61;;15148:4;15140:6;15136:17;15126:27;;15094:61;15201:2;15193:6;15190:14;15170:18;15167:38;15164:161;;;15247:10;15242:3;15238:20;15235:1;15228:31;15282:4;15279:1;15272:15;15310:4;15307:1;15300:15;15164:161;;14951:380;;;:::o;15336:135::-;15375:3;-1:-1:-1;;15396:17:1;;15393:43;;;15416:18;;:::i;:::-;-1:-1:-1;15463:1:1;15452:13;;15336:135::o;15476:112::-;15508:1;15534;15524:35;;15539:18;;:::i;:::-;-1:-1:-1;15573:9:1;;15476:112::o;15593:127::-;15654:10;15649:3;15645:20;15642:1;15635:31;15685:4;15682:1;15675:15;15709:4;15706:1;15699:15;15725:127;15786:10;15781:3;15777:20;15774:1;15767:31;15817:4;15814:1;15807:15;15841:4;15838:1;15831:15;15857:127;15918:10;15913:3;15909:20;15906:1;15899:31;15949:4;15946:1;15939:15;15973:4;15970:1;15963:15;15989:127;16050:10;16045:3;16041:20;16038:1;16031:31;16081:4;16078:1;16071:15;16105:4;16102:1;16095:15;16121:131;-1:-1:-1;;;;;;16195:32:1;;16185:43;;16175:71;;16242:1;16239;16232:12

Swarm Source

ipfs://0c50cd0994be11aafc55a75ef4586bdc1fc5cec913c480cc7032aeae4e41829a
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.