ETH Price: $2,742.08 (-0.51%)

Token

Peace Eagle (PE)
 

Overview

Max Total Supply

3,300 PE

Holders

677

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 PE
0x3584a1e9efa54aae53eddd9f021b6643ebbd6f8b
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:
PeaceEagle

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-12
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-02
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.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 1;
    }

    /**
     * @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: Contract.sol


pragma solidity ^0.8.0;





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

    string public hiddenMetadataUri;
    string public baseURI;
    string public baseExtension = ".json";
    bool public preSale;
    bool public publicSale;
    bool public revealed = true;
    bytes32 public merkleRoot = 0x5f7380658ad74e92e5707cb67f5b30620051ca379a8b4d49355f64cac9379d64;
    uint256 public maxWhitelist = 1;
    uint256 public maxPublic = 5;
    uint256 public maxSupply = 3300;
    uint256 public presaleCost = 0 ether;
    uint256 public publicCost = 0 ether;


    constructor(string memory _initBaseURI) ERC721A("Peace Eagle", "PE") {
        setBaseURI(_initBaseURI);
    }

    // whitelist mint
    function whitelistMint(uint256 quantity, bytes32[] calldata _merkleProof)
        public
        payable
    {
        uint256 supply = totalSupply();
        require(preSale, "The contract is paused!");
        require(quantity > 0, "Quantity Must Be Higher Than Zero");
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        require(
            balanceOf(msg.sender) + quantity <= maxWhitelist,
            "You're not allowed to mint this Much!"
        );
        require(
            quantity <= maxWhitelist,
            "You're Not Allowed To Mint more than maxMint Amount"
        );
        require(msg.value >= presaleCost * quantity, "Not enough ether!");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid proof!"
        );

        _safeMint(msg.sender, quantity);
    }

    // public mint
    function mint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(publicSale, "The contract is paused!");
        require(quantity > 0, "Quantity Must Be Higher Than Zero!");
        require(supply + quantity <= maxSupply, "Max Supply Reached!");

        if (msg.sender != owner()) {
            require(
            balanceOf(msg.sender) + quantity <= maxPublic,
                "You're not allowed to mint this Much!"
            );
            require(
                quantity <= maxPublic,
                "You're Not Allowed To Mint more than maxMint Amount"
            );
            require(msg.value >= publicCost * quantity, "Not enough ether!");
        }
        
        _safeMint(msg.sender, quantity);
    }

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

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

        if (!revealed) {
            return hiddenMetadataUri;
        }

        string memory currentBaseURI = _baseURI();

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

    function setMax(uint256 _whitelist, uint256 _public) public onlyOwner {
        maxWhitelist = _whitelist;
        maxPublic = _public;
    }

    function setMaxSupply(uint256 _amount) public onlyOwner {
        maxSupply = _amount;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setSale(bool _preSale, bool _publicSale) public onlyOwner {
        preSale = _preSale;
        publicSale = _publicSale;
    }

    function setReveal(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setPrice(uint256 _whitelistCost, uint256 _publicCost) public onlyOwner {
        presaleCost = _whitelistCost;
        publicCost = _publicCost;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

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

    function airdrop(uint256 quantity, address _address) public onlyOwner {
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity Must Be Higher Than Zero!");
        require(supply + quantity <= maxSupply, "Max Supply Reached!");
        _safeMint(_address, quantity);
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","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":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelist","type":"uint256"},{"internalType":"uint256","name":"_public","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"},{"internalType":"uint256","name":"_publicCost","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_preSale","type":"bool"},{"internalType":"bool","name":"_publicSale","type":"bool"}],"name":"setSale","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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200037b565b506001600c60026101000a81548160ff0219169083151502179055507f5f7380658ad74e92e5707cb67f5b30620051ca379a8b4d49355f64cac9379d6460001b600d556001600e556005600f55610ce460105560006011556000601255348015620000bb57600080fd5b5060405162004f8e38038062004f8e8339818101604052810190620000e19190620004a9565b6040518060400160405280600b81526020017f5065616365204561676c650000000000000000000000000000000000000000008152506040518060400160405280600281526020017f50450000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001659291906200037b565b5080600390805190602001906200017e9291906200037b565b506200018f620001cf60201b60201c565b6000819055505050620001b7620001ab620001d860201b60201c565b620001e060201b60201c565b620001c881620002a660201b60201c565b5062000701565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b6620001d860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002dc6200035160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000335576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032c9062000521565b60405180910390fd5b80600a90805190602001906200034d9291906200037b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038990620005e9565b90600052602060002090601f016020900481019282620003ad5760008555620003f9565b82601f10620003c857805160ff1916838001178555620003f9565b82800160010185558215620003f9579182015b82811115620003f8578251825591602001919060010190620003db565b5b5090506200040891906200040c565b5090565b5b80821115620004275760008160009055506001016200040d565b5090565b6000620004426200043c846200056c565b62000543565b905082815260208101848484011115620004615762000460620006b8565b5b6200046e848285620005b3565b509392505050565b600082601f8301126200048e576200048d620006b3565b5b8151620004a08482602086016200042b565b91505092915050565b600060208284031215620004c257620004c1620006c2565b5b600082015167ffffffffffffffff811115620004e357620004e2620006bd565b5b620004f18482850162000476565b91505092915050565b600062000509602083620005a2565b91506200051682620006d8565b602082019050919050565b600060208201905081810360008301526200053c81620004fa565b9050919050565b60006200054f62000562565b90506200055d82826200061f565b919050565b6000604051905090565b600067ffffffffffffffff8211156200058a576200058962000684565b5b6200059582620006c7565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005d3578082015181840152602081019050620005b6565b83811115620005e3576000848401525b50505050565b600060028204905060018216806200060257607f821691505b6020821081141562000619576200061862000655565b5b50919050565b6200062a82620006c7565b810181811067ffffffffffffffff821117156200064c576200064b62000684565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61487d80620007116000396000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063bc63f02e116100b6578063d5abeb011161007a578063d5abeb011461085e578063da3ef23f14610889578063e985e9c5146108b2578063ee82e5a0146108ef578063f2fde38b14610918578063f7d975771461094157610251565b8063bc63f02e14610786578063bf0d96c3146107af578063c6682862146107da578063c87b56dd14610805578063d2cab0561461084257610251565b806395d89b41116100fd57806395d89b41146106c2578063a0712d68146106ed578063a22cb46514610709578063a45ba8e714610732578063b88d4fde1461075d57610251565b8063715018a6146106015780637cb64759146106185780637dc42975146106415780638693da201461066c5780638da5cb5b1461069757610251565b80633b91ceef116101d257806355f804b31161019657806355f804b3146104df5780635a7adf7f146105085780636352211e146105335780636c0360eb146105705780636f8b44b01461059b57806370a08231146105c457610251565b80633b91ceef146104225780633ccfd60b1461044b57806342842e0e146104625780634fdd43cb1461048b57806351830227146104b457610251565b806323b872dd1161021957806323b872dd1461034f5780632a23d07d146103785780632a3f300c146103a35780632eb4a7ab146103cc57806333bc1c5c146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613873565b61096a565b60405161028a9190613e27565b60405180910390f35b34801561029f57600080fd5b506102a8610a4c565b6040516102b59190613e5d565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613916565b610ade565b6040516102f29190613dc0565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613799565b610b5a565b005b34801561033057600080fd5b50610339610c65565b6040516103469190613fff565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613683565b610c7c565b005b34801561038457600080fd5b5061038d610c8c565b60405161039a9190613fff565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c591906137d9565b610c92565b005b3480156103d857600080fd5b506103e1610d2b565b6040516103ee9190613e42565b60405180910390f35b34801561040357600080fd5b5061040c610d31565b6040516104199190613e27565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906139e3565b610d44565b005b34801561045757600080fd5b50610460610dd2565b005b34801561046e57600080fd5b5061048960048036038101906104849190613683565b610ece565b005b34801561049757600080fd5b506104b260048036038101906104ad91906138cd565b610eee565b005b3480156104c057600080fd5b506104c9610f84565b6040516104d69190613e27565b60405180910390f35b3480156104eb57600080fd5b50610506600480360381019061050191906138cd565b610f97565b005b34801561051457600080fd5b5061051d61102d565b60405161052a9190613e27565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190613916565b611040565b6040516105679190613dc0565b60405180910390f35b34801561057c57600080fd5b50610585611056565b6040516105929190613e5d565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613916565b6110e4565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190613616565b61116a565b6040516105f89190613fff565b60405180910390f35b34801561060d57600080fd5b5061061661123a565b005b34801561062457600080fd5b5061063f600480360381019061063a9190613846565b6112c2565b005b34801561064d57600080fd5b50610656611348565b6040516106639190613fff565b60405180910390f35b34801561067857600080fd5b5061068161134e565b60405161068e9190613fff565b60405180910390f35b3480156106a357600080fd5b506106ac611354565b6040516106b99190613dc0565b60405180910390f35b3480156106ce57600080fd5b506106d761137e565b6040516106e49190613e5d565b60405180910390f35b61070760048036038101906107029190613916565b611410565b005b34801561071557600080fd5b50610730600480360381019061072b9190613759565b611634565b005b34801561073e57600080fd5b506107476117ac565b6040516107549190613e5d565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906136d6565b61183a565b005b34801561079257600080fd5b506107ad60048036038101906107a89190613943565b6118b6565b005b3480156107bb57600080fd5b506107c46119e0565b6040516107d19190613fff565b60405180910390f35b3480156107e657600080fd5b506107ef6119e6565b6040516107fc9190613e5d565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613916565b611a74565b6040516108399190613e5d565b60405180910390f35b61085c60048036038101906108579190613983565b611bc5565b005b34801561086a57600080fd5b50610873611e69565b6040516108809190613fff565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906138cd565b611e6f565b005b3480156108be57600080fd5b506108d960048036038101906108d49190613643565b611f05565b6040516108e69190613e27565b60405180910390f35b3480156108fb57600080fd5b5061091660048036038101906109119190613806565b611f99565b005b34801561092457600080fd5b5061093f600480360381019061093a9190613616565b61204d565b005b34801561094d57600080fd5b50610968600480360381019061096391906139e3565b612145565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a455750610a44826121d3565b5b9050919050565b606060028054610a5b906142d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a87906142d9565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b5050505050905090565b6000610ae98261223d565b610b1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6582611040565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bec61228b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c1e5750610c1c81610c1761228b565b611f05565b155b15610c55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c60838383612293565b505050565b6000610c6f612345565b6001546000540303905090565b610c8783838361234e565b505050565b60115481565b610c9a61228b565b73ffffffffffffffffffffffffffffffffffffffff16610cb8611354565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590613f1f565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b600d5481565b600c60019054906101000a900460ff1681565b610d4c61228b565b73ffffffffffffffffffffffffffffffffffffffff16610d6a611354565b73ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db790613f1f565b60405180910390fd5b81600e8190555080600f819055505050565b610dda61228b565b73ffffffffffffffffffffffffffffffffffffffff16610df8611354565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613f1f565b60405180910390fd5b6000610e58611354565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e7b90613dab565b60006040518083038185875af1925050503d8060008114610eb8576040519150601f19603f3d011682016040523d82523d6000602084013e610ebd565b606091505b5050905080610ecb57600080fd5b50565b610ee98383836040518060200160405280600081525061183a565b505050565b610ef661228b565b73ffffffffffffffffffffffffffffffffffffffff16610f14611354565b73ffffffffffffffffffffffffffffffffffffffff1614610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190613f1f565b60405180910390fd5b8060099080519060200190610f8092919061337c565b5050565b600c60029054906101000a900460ff1681565b610f9f61228b565b73ffffffffffffffffffffffffffffffffffffffff16610fbd611354565b73ffffffffffffffffffffffffffffffffffffffff1614611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90613f1f565b60405180910390fd5b80600a908051906020019061102992919061337c565b5050565b600c60009054906101000a900460ff1681565b600061104b82612804565b600001519050919050565b600a8054611063906142d9565b80601f016020809104026020016040519081016040528092919081815260200182805461108f906142d9565b80156110dc5780601f106110b1576101008083540402835291602001916110dc565b820191906000526020600020905b8154815290600101906020018083116110bf57829003601f168201915b505050505081565b6110ec61228b565b73ffffffffffffffffffffffffffffffffffffffff1661110a611354565b73ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613f1f565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61124261228b565b73ffffffffffffffffffffffffffffffffffffffff16611260611354565b73ffffffffffffffffffffffffffffffffffffffff16146112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90613f1f565b60405180910390fd5b6112c06000612a93565b565b6112ca61228b565b73ffffffffffffffffffffffffffffffffffffffff166112e8611354565b73ffffffffffffffffffffffffffffffffffffffff161461133e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133590613f1f565b60405180910390fd5b80600d8190555050565b600f5481565b60125481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138d906142d9565b80601f01602080910402602001604051908101604052809291908181526020018280546113b9906142d9565b80156114065780601f106113db57610100808354040283529160200191611406565b820191906000526020600020905b8154815290600101906020018083116113e957829003601f168201915b5050505050905090565b600061141a610c65565b9050600c60019054906101000a900460ff1661146b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146290613f3f565b60405180910390fd5b600082116114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590613f7f565b60405180910390fd5b60105482826114bd9190614104565b11156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590613fdf565b60405180910390fd5b611506611354565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461162657600f54826115453361116a565b61154f9190614104565b1115611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790613e9f565b60405180910390fd5b600f548211156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613f9f565b60405180910390fd5b816012546115e3919061418b565b341015611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613e7f565b60405180910390fd5b5b6116303383612b59565b5050565b61163c61228b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116ae61228b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175b61228b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117a09190613e27565b60405180910390a35050565b600980546117b9906142d9565b80601f01602080910402602001604051908101604052809291908181526020018280546117e5906142d9565b80156118325780601f1061180757610100808354040283529160200191611832565b820191906000526020600020905b81548152906001019060200180831161181557829003601f168201915b505050505081565b61184584848461234e565b6118648373ffffffffffffffffffffffffffffffffffffffff16612b77565b8015611879575061187784848484612b9a565b155b156118b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6118be61228b565b73ffffffffffffffffffffffffffffffffffffffff166118dc611354565b73ffffffffffffffffffffffffffffffffffffffff1614611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192990613f1f565b60405180910390fd5b600061193c610c65565b905060008311611981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197890613f7f565b60405180910390fd5b60105483826119909190614104565b11156119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890613fdf565b60405180910390fd5b6119db8284612b59565b505050565b600e5481565b600b80546119f3906142d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1f906142d9565b8015611a6c5780601f10611a4157610100808354040283529160200191611a6c565b820191906000526020600020905b815481529060010190602001808311611a4f57829003601f168201915b505050505081565b6060611a7f8261223d565b611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590613f5f565b60405180910390fd5b600c60029054906101000a900460ff16611b645760098054611adf906142d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0b906142d9565b8015611b585780601f10611b2d57610100808354040283529160200191611b58565b820191906000526020600020905b815481529060010190602001808311611b3b57829003601f168201915b50505050509050611bc0565b6000611b6e612cfa565b90506000815111611b8e5760405180602001604052806000815250611bbc565b80611b9884612d8c565b600b604051602001611bac93929190613d7a565b6040516020818303038152906040525b9150505b919050565b6000611bcf610c65565b9050600c60009054906101000a900460ff16611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790613f3f565b60405180910390fd5b60008411611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90613eff565b60405180910390fd5b6010548482611c729190614104565b1115611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90613fbf565b60405180910390fd5b600e5484611cc03361116a565b611cca9190614104565b1115611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0290613e9f565b60405180910390fd5b600e54841115611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790613f9f565b60405180910390fd5b83601154611d5e919061418b565b341015611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790613e7f565b60405180910390fd5b600033604051602001611db39190613d5f565b604051602081830303815290604052805190602001209050611e19848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612eed565b611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613ebf565b60405180910390fd5b611e623386612b59565b5050505050565b60105481565b611e7761228b565b73ffffffffffffffffffffffffffffffffffffffff16611e95611354565b73ffffffffffffffffffffffffffffffffffffffff1614611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee290613f1f565b60405180910390fd5b80600b9080519060200190611f0192919061337c565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fa161228b565b73ffffffffffffffffffffffffffffffffffffffff16611fbf611354565b73ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90613f1f565b60405180910390fd5b81600c60006101000a81548160ff02191690831515021790555080600c60016101000a81548160ff0219169083151502179055505050565b61205561228b565b73ffffffffffffffffffffffffffffffffffffffff16612073611354565b73ffffffffffffffffffffffffffffffffffffffff16146120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090613f1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090613edf565b60405180910390fd5b61214281612a93565b50565b61214d61228b565b73ffffffffffffffffffffffffffffffffffffffff1661216b611354565b73ffffffffffffffffffffffffffffffffffffffff16146121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b890613f1f565b60405180910390fd5b81601181905550806012819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612248612345565b11158015612257575060005482105b8015612284575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061235982612804565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166123e561228b565b73ffffffffffffffffffffffffffffffffffffffff16148061241457506124138561240e61228b565b611f05565b5b80612459575061242261228b565b73ffffffffffffffffffffffffffffffffffffffff1661244184610ade565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612492576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124f9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125068585856001612f04565b61251260008487612293565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561279257600054821461279157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127fd8585856001612f0a565b5050505050565b61280c613402565b60008290508061281a612345565b11158015612829575060005481105b15612a5c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612a5a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461293e578092505050612a8e565b5b600115612a5957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a54578092505050612a8e565b61293f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b73828260405180602001604052806000815250612f10565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bc061228b565b8786866040518563ffffffff1660e01b8152600401612be29493929190613ddb565b602060405180830381600087803b158015612bfc57600080fd5b505af1925050508015612c2d57506040513d601f19601f82011682018060405250810190612c2a91906138a0565b60015b612ca7573d8060008114612c5d576040519150601f19603f3d011682016040523d82523d6000602084013e612c62565b606091505b50600081511415612c9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612d09906142d9565b80601f0160208091040260200160405190810160405280929190818152602001828054612d35906142d9565b8015612d825780601f10612d5757610100808354040283529160200191612d82565b820191906000526020600020905b815481529060010190602001808311612d6557829003601f168201915b5050505050905090565b60606000821415612dd4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ee8565b600082905060005b60008214612e06578080612def9061433c565b915050600a82612dff919061415a565b9150612ddc565b60008167ffffffffffffffff811115612e2257612e21614496565b5b6040519080825280601f01601f191660200182016040528015612e545781602001600182028036833780820191505090505b5090505b60008514612ee157600182612e6d91906141e5565b9150600a85612e7c91906143a9565b6030612e889190614104565b60f81b818381518110612e9e57612e9d614467565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612eda919061415a565b9450612e58565b8093505050505b919050565b600082612efa8584612f22565b1490509392505050565b50505050565b50505050565b612f1d8383836001612f97565b505050565b60008082905060005b8451811015612f8c576000858281518110612f4957612f48614467565b5b60200260200101519050808311612f6b57612f648382613365565b9250612f78565b612f758184613365565b92505b508080612f849061433c565b915050612f2b565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613004576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561303f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61304c6000868387612f04565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561321657506132158773ffffffffffffffffffffffffffffffffffffffff16612b77565b5b156132dc575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461328b6000888480600101955088612b9a565b6132c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561321c5782600054146132d757600080fd5b613348565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156132dd575b81600081905550505061335e6000868387612f0a565b5050505050565b600082600052816020526040600020905092915050565b828054613388906142d9565b90600052602060002090601f0160209004810192826133aa57600085556133f1565b82601f106133c357805160ff19168380011785556133f1565b828001600101855582156133f1579182015b828111156133f05782518255916020019190600101906133d5565b5b5090506133fe9190613445565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561345e576000816000905550600101613446565b5090565b60006134756134708461403f565b61401a565b905082815260208101848484011115613491576134906144d4565b5b61349c848285614297565b509392505050565b60006134b76134b284614070565b61401a565b9050828152602081018484840111156134d3576134d26144d4565b5b6134de848285614297565b509392505050565b6000813590506134f5816147d4565b92915050565b60008083601f840112613511576135106144ca565b5b8235905067ffffffffffffffff81111561352e5761352d6144c5565b5b60208301915083602082028301111561354a576135496144cf565b5b9250929050565b600081359050613560816147eb565b92915050565b60008135905061357581614802565b92915050565b60008135905061358a81614819565b92915050565b60008151905061359f81614819565b92915050565b600082601f8301126135ba576135b96144ca565b5b81356135ca848260208601613462565b91505092915050565b600082601f8301126135e8576135e76144ca565b5b81356135f88482602086016134a4565b91505092915050565b60008135905061361081614830565b92915050565b60006020828403121561362c5761362b6144de565b5b600061363a848285016134e6565b91505092915050565b6000806040838503121561365a576136596144de565b5b6000613668858286016134e6565b9250506020613679858286016134e6565b9150509250929050565b60008060006060848603121561369c5761369b6144de565b5b60006136aa868287016134e6565b93505060206136bb868287016134e6565b92505060406136cc86828701613601565b9150509250925092565b600080600080608085870312156136f0576136ef6144de565b5b60006136fe878288016134e6565b945050602061370f878288016134e6565b935050604061372087828801613601565b925050606085013567ffffffffffffffff811115613741576137406144d9565b5b61374d878288016135a5565b91505092959194509250565b600080604083850312156137705761376f6144de565b5b600061377e858286016134e6565b925050602061378f85828601613551565b9150509250929050565b600080604083850312156137b0576137af6144de565b5b60006137be858286016134e6565b92505060206137cf85828601613601565b9150509250929050565b6000602082840312156137ef576137ee6144de565b5b60006137fd84828501613551565b91505092915050565b6000806040838503121561381d5761381c6144de565b5b600061382b85828601613551565b925050602061383c85828601613551565b9150509250929050565b60006020828403121561385c5761385b6144de565b5b600061386a84828501613566565b91505092915050565b600060208284031215613889576138886144de565b5b60006138978482850161357b565b91505092915050565b6000602082840312156138b6576138b56144de565b5b60006138c484828501613590565b91505092915050565b6000602082840312156138e3576138e26144de565b5b600082013567ffffffffffffffff811115613901576139006144d9565b5b61390d848285016135d3565b91505092915050565b60006020828403121561392c5761392b6144de565b5b600061393a84828501613601565b91505092915050565b6000806040838503121561395a576139596144de565b5b600061396885828601613601565b9250506020613979858286016134e6565b9150509250929050565b60008060006040848603121561399c5761399b6144de565b5b60006139aa86828701613601565b935050602084013567ffffffffffffffff8111156139cb576139ca6144d9565b5b6139d7868287016134fb565b92509250509250925092565b600080604083850312156139fa576139f96144de565b5b6000613a0885828601613601565b9250506020613a1985828601613601565b9150509250929050565b613a2c81614219565b82525050565b613a43613a3e82614219565b614385565b82525050565b613a528161422b565b82525050565b613a6181614237565b82525050565b6000613a72826140b6565b613a7c81856140cc565b9350613a8c8185602086016142a6565b613a95816144e3565b840191505092915050565b6000613aab826140c1565b613ab581856140e8565b9350613ac58185602086016142a6565b613ace816144e3565b840191505092915050565b6000613ae4826140c1565b613aee81856140f9565b9350613afe8185602086016142a6565b80840191505092915050565b60008154613b17816142d9565b613b2181866140f9565b94506001821660008114613b3c5760018114613b4d57613b80565b60ff19831686528186019350613b80565b613b56856140a1565b60005b83811015613b7857815481890152600182019150602081019050613b59565b838801955050505b50505092915050565b6000613b966011836140e8565b9150613ba182614501565b602082019050919050565b6000613bb96025836140e8565b9150613bc48261452a565b604082019050919050565b6000613bdc600e836140e8565b9150613be782614579565b602082019050919050565b6000613bff6026836140e8565b9150613c0a826145a2565b604082019050919050565b6000613c226021836140e8565b9150613c2d826145f1565b604082019050919050565b6000613c456020836140e8565b9150613c5082614640565b602082019050919050565b6000613c686017836140e8565b9150613c7382614669565b602082019050919050565b6000613c8b602f836140e8565b9150613c9682614692565b604082019050919050565b6000613cae6022836140e8565b9150613cb9826146e1565b604082019050919050565b6000613cd16033836140e8565b9150613cdc82614730565b604082019050919050565b6000613cf46000836140dd565b9150613cff8261477f565b600082019050919050565b6000613d176012836140e8565b9150613d2282614782565b602082019050919050565b6000613d3a6013836140e8565b9150613d45826147ab565b602082019050919050565b613d598161428d565b82525050565b6000613d6b8284613a32565b60148201915081905092915050565b6000613d868286613ad9565b9150613d928285613ad9565b9150613d9e8284613b0a565b9150819050949350505050565b6000613db682613ce7565b9150819050919050565b6000602082019050613dd56000830184613a23565b92915050565b6000608082019050613df06000830187613a23565b613dfd6020830186613a23565b613e0a6040830185613d50565b8181036060830152613e1c8184613a67565b905095945050505050565b6000602082019050613e3c6000830184613a49565b92915050565b6000602082019050613e576000830184613a58565b92915050565b60006020820190508181036000830152613e778184613aa0565b905092915050565b60006020820190508181036000830152613e9881613b89565b9050919050565b60006020820190508181036000830152613eb881613bac565b9050919050565b60006020820190508181036000830152613ed881613bcf565b9050919050565b60006020820190508181036000830152613ef881613bf2565b9050919050565b60006020820190508181036000830152613f1881613c15565b9050919050565b60006020820190508181036000830152613f3881613c38565b9050919050565b60006020820190508181036000830152613f5881613c5b565b9050919050565b60006020820190508181036000830152613f7881613c7e565b9050919050565b60006020820190508181036000830152613f9881613ca1565b9050919050565b60006020820190508181036000830152613fb881613cc4565b9050919050565b60006020820190508181036000830152613fd881613d0a565b9050919050565b60006020820190508181036000830152613ff881613d2d565b9050919050565b60006020820190506140146000830184613d50565b92915050565b6000614024614035565b9050614030828261430b565b919050565b6000604051905090565b600067ffffffffffffffff82111561405a57614059614496565b5b614063826144e3565b9050602081019050919050565b600067ffffffffffffffff82111561408b5761408a614496565b5b614094826144e3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061410f8261428d565b915061411a8361428d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561414f5761414e6143da565b5b828201905092915050565b60006141658261428d565b91506141708361428d565b9250826141805761417f614409565b5b828204905092915050565b60006141968261428d565b91506141a18361428d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141da576141d96143da565b5b828202905092915050565b60006141f08261428d565b91506141fb8361428d565b92508282101561420e5761420d6143da565b5b828203905092915050565b60006142248261426d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142c45780820151818401526020810190506142a9565b838111156142d3576000848401525b50505050565b600060028204905060018216806142f157607f821691505b6020821081141561430557614304614438565b5b50919050565b614314826144e3565b810181811067ffffffffffffffff8211171561433357614332614496565b5b80604052505050565b60006143478261428d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561437a576143796143da565b5b600182019050919050565b600061439082614397565b9050919050565b60006143a2826144f4565b9050919050565b60006143b48261428d565b91506143bf8361428d565b9250826143cf576143ce614409565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f75676820657468657221000000000000000000000000000000600082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f72652060008201527f7468616e206d61784d696e7420416d6f756e7400000000000000000000000000602082015250565b50565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642100000000000000000000000000600082015250565b6147dd81614219565b81146147e857600080fd5b50565b6147f48161422b565b81146147ff57600080fd5b50565b61480b81614237565b811461481657600080fd5b50565b61482281614241565b811461482d57600080fd5b50565b6148398161428d565b811461484457600080fd5b5056fea2646970667358221220310961a57425df9385b6e8d7c997ac8226c1bbe508ab3a879c2ca9b90301448264736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d624e4872597a663675547756313142566335776472754c6376784578485a6471534554484c41574850366f552f00000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063bc63f02e116100b6578063d5abeb011161007a578063d5abeb011461085e578063da3ef23f14610889578063e985e9c5146108b2578063ee82e5a0146108ef578063f2fde38b14610918578063f7d975771461094157610251565b8063bc63f02e14610786578063bf0d96c3146107af578063c6682862146107da578063c87b56dd14610805578063d2cab0561461084257610251565b806395d89b41116100fd57806395d89b41146106c2578063a0712d68146106ed578063a22cb46514610709578063a45ba8e714610732578063b88d4fde1461075d57610251565b8063715018a6146106015780637cb64759146106185780637dc42975146106415780638693da201461066c5780638da5cb5b1461069757610251565b80633b91ceef116101d257806355f804b31161019657806355f804b3146104df5780635a7adf7f146105085780636352211e146105335780636c0360eb146105705780636f8b44b01461059b57806370a08231146105c457610251565b80633b91ceef146104225780633ccfd60b1461044b57806342842e0e146104625780634fdd43cb1461048b57806351830227146104b457610251565b806323b872dd1161021957806323b872dd1461034f5780632a23d07d146103785780632a3f300c146103a35780632eb4a7ab146103cc57806333bc1c5c146103f757610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613873565b61096a565b60405161028a9190613e27565b60405180910390f35b34801561029f57600080fd5b506102a8610a4c565b6040516102b59190613e5d565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613916565b610ade565b6040516102f29190613dc0565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613799565b610b5a565b005b34801561033057600080fd5b50610339610c65565b6040516103469190613fff565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613683565b610c7c565b005b34801561038457600080fd5b5061038d610c8c565b60405161039a9190613fff565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c591906137d9565b610c92565b005b3480156103d857600080fd5b506103e1610d2b565b6040516103ee9190613e42565b60405180910390f35b34801561040357600080fd5b5061040c610d31565b6040516104199190613e27565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906139e3565b610d44565b005b34801561045757600080fd5b50610460610dd2565b005b34801561046e57600080fd5b5061048960048036038101906104849190613683565b610ece565b005b34801561049757600080fd5b506104b260048036038101906104ad91906138cd565b610eee565b005b3480156104c057600080fd5b506104c9610f84565b6040516104d69190613e27565b60405180910390f35b3480156104eb57600080fd5b50610506600480360381019061050191906138cd565b610f97565b005b34801561051457600080fd5b5061051d61102d565b60405161052a9190613e27565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190613916565b611040565b6040516105679190613dc0565b60405180910390f35b34801561057c57600080fd5b50610585611056565b6040516105929190613e5d565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613916565b6110e4565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190613616565b61116a565b6040516105f89190613fff565b60405180910390f35b34801561060d57600080fd5b5061061661123a565b005b34801561062457600080fd5b5061063f600480360381019061063a9190613846565b6112c2565b005b34801561064d57600080fd5b50610656611348565b6040516106639190613fff565b60405180910390f35b34801561067857600080fd5b5061068161134e565b60405161068e9190613fff565b60405180910390f35b3480156106a357600080fd5b506106ac611354565b6040516106b99190613dc0565b60405180910390f35b3480156106ce57600080fd5b506106d761137e565b6040516106e49190613e5d565b60405180910390f35b61070760048036038101906107029190613916565b611410565b005b34801561071557600080fd5b50610730600480360381019061072b9190613759565b611634565b005b34801561073e57600080fd5b506107476117ac565b6040516107549190613e5d565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f91906136d6565b61183a565b005b34801561079257600080fd5b506107ad60048036038101906107a89190613943565b6118b6565b005b3480156107bb57600080fd5b506107c46119e0565b6040516107d19190613fff565b60405180910390f35b3480156107e657600080fd5b506107ef6119e6565b6040516107fc9190613e5d565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613916565b611a74565b6040516108399190613e5d565b60405180910390f35b61085c60048036038101906108579190613983565b611bc5565b005b34801561086a57600080fd5b50610873611e69565b6040516108809190613fff565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab91906138cd565b611e6f565b005b3480156108be57600080fd5b506108d960048036038101906108d49190613643565b611f05565b6040516108e69190613e27565b60405180910390f35b3480156108fb57600080fd5b5061091660048036038101906109119190613806565b611f99565b005b34801561092457600080fd5b5061093f600480360381019061093a9190613616565b61204d565b005b34801561094d57600080fd5b50610968600480360381019061096391906139e3565b612145565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a455750610a44826121d3565b5b9050919050565b606060028054610a5b906142d9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a87906142d9565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b5050505050905090565b6000610ae98261223d565b610b1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6582611040565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bec61228b565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c1e5750610c1c81610c1761228b565b611f05565b155b15610c55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c60838383612293565b505050565b6000610c6f612345565b6001546000540303905090565b610c8783838361234e565b505050565b60115481565b610c9a61228b565b73ffffffffffffffffffffffffffffffffffffffff16610cb8611354565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590613f1f565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b600d5481565b600c60019054906101000a900460ff1681565b610d4c61228b565b73ffffffffffffffffffffffffffffffffffffffff16610d6a611354565b73ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db790613f1f565b60405180910390fd5b81600e8190555080600f819055505050565b610dda61228b565b73ffffffffffffffffffffffffffffffffffffffff16610df8611354565b73ffffffffffffffffffffffffffffffffffffffff1614610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590613f1f565b60405180910390fd5b6000610e58611354565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e7b90613dab565b60006040518083038185875af1925050503d8060008114610eb8576040519150601f19603f3d011682016040523d82523d6000602084013e610ebd565b606091505b5050905080610ecb57600080fd5b50565b610ee98383836040518060200160405280600081525061183a565b505050565b610ef661228b565b73ffffffffffffffffffffffffffffffffffffffff16610f14611354565b73ffffffffffffffffffffffffffffffffffffffff1614610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190613f1f565b60405180910390fd5b8060099080519060200190610f8092919061337c565b5050565b600c60029054906101000a900460ff1681565b610f9f61228b565b73ffffffffffffffffffffffffffffffffffffffff16610fbd611354565b73ffffffffffffffffffffffffffffffffffffffff1614611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90613f1f565b60405180910390fd5b80600a908051906020019061102992919061337c565b5050565b600c60009054906101000a900460ff1681565b600061104b82612804565b600001519050919050565b600a8054611063906142d9565b80601f016020809104026020016040519081016040528092919081815260200182805461108f906142d9565b80156110dc5780601f106110b1576101008083540402835291602001916110dc565b820191906000526020600020905b8154815290600101906020018083116110bf57829003601f168201915b505050505081565b6110ec61228b565b73ffffffffffffffffffffffffffffffffffffffff1661110a611354565b73ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790613f1f565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61124261228b565b73ffffffffffffffffffffffffffffffffffffffff16611260611354565b73ffffffffffffffffffffffffffffffffffffffff16146112b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ad90613f1f565b60405180910390fd5b6112c06000612a93565b565b6112ca61228b565b73ffffffffffffffffffffffffffffffffffffffff166112e8611354565b73ffffffffffffffffffffffffffffffffffffffff161461133e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133590613f1f565b60405180910390fd5b80600d8190555050565b600f5481565b60125481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138d906142d9565b80601f01602080910402602001604051908101604052809291908181526020018280546113b9906142d9565b80156114065780601f106113db57610100808354040283529160200191611406565b820191906000526020600020905b8154815290600101906020018083116113e957829003601f168201915b5050505050905090565b600061141a610c65565b9050600c60019054906101000a900460ff1661146b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146290613f3f565b60405180910390fd5b600082116114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590613f7f565b60405180910390fd5b60105482826114bd9190614104565b11156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590613fdf565b60405180910390fd5b611506611354565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461162657600f54826115453361116a565b61154f9190614104565b1115611590576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158790613e9f565b60405180910390fd5b600f548211156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90613f9f565b60405180910390fd5b816012546115e3919061418b565b341015611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613e7f565b60405180910390fd5b5b6116303383612b59565b5050565b61163c61228b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116ae61228b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175b61228b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117a09190613e27565b60405180910390a35050565b600980546117b9906142d9565b80601f01602080910402602001604051908101604052809291908181526020018280546117e5906142d9565b80156118325780601f1061180757610100808354040283529160200191611832565b820191906000526020600020905b81548152906001019060200180831161181557829003601f168201915b505050505081565b61184584848461234e565b6118648373ffffffffffffffffffffffffffffffffffffffff16612b77565b8015611879575061187784848484612b9a565b155b156118b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6118be61228b565b73ffffffffffffffffffffffffffffffffffffffff166118dc611354565b73ffffffffffffffffffffffffffffffffffffffff1614611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192990613f1f565b60405180910390fd5b600061193c610c65565b905060008311611981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197890613f7f565b60405180910390fd5b60105483826119909190614104565b11156119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890613fdf565b60405180910390fd5b6119db8284612b59565b505050565b600e5481565b600b80546119f3906142d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1f906142d9565b8015611a6c5780601f10611a4157610100808354040283529160200191611a6c565b820191906000526020600020905b815481529060010190602001808311611a4f57829003601f168201915b505050505081565b6060611a7f8261223d565b611abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab590613f5f565b60405180910390fd5b600c60029054906101000a900460ff16611b645760098054611adf906142d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0b906142d9565b8015611b585780601f10611b2d57610100808354040283529160200191611b58565b820191906000526020600020905b815481529060010190602001808311611b3b57829003601f168201915b50505050509050611bc0565b6000611b6e612cfa565b90506000815111611b8e5760405180602001604052806000815250611bbc565b80611b9884612d8c565b600b604051602001611bac93929190613d7a565b6040516020818303038152906040525b9150505b919050565b6000611bcf610c65565b9050600c60009054906101000a900460ff16611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790613f3f565b60405180910390fd5b60008411611c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5a90613eff565b60405180910390fd5b6010548482611c729190614104565b1115611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90613fbf565b60405180910390fd5b600e5484611cc03361116a565b611cca9190614104565b1115611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0290613e9f565b60405180910390fd5b600e54841115611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790613f9f565b60405180910390fd5b83601154611d5e919061418b565b341015611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790613e7f565b60405180910390fd5b600033604051602001611db39190613d5f565b604051602081830303815290604052805190602001209050611e19848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612eed565b611e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4f90613ebf565b60405180910390fd5b611e623386612b59565b5050505050565b60105481565b611e7761228b565b73ffffffffffffffffffffffffffffffffffffffff16611e95611354565b73ffffffffffffffffffffffffffffffffffffffff1614611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee290613f1f565b60405180910390fd5b80600b9080519060200190611f0192919061337c565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fa161228b565b73ffffffffffffffffffffffffffffffffffffffff16611fbf611354565b73ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c90613f1f565b60405180910390fd5b81600c60006101000a81548160ff02191690831515021790555080600c60016101000a81548160ff0219169083151502179055505050565b61205561228b565b73ffffffffffffffffffffffffffffffffffffffff16612073611354565b73ffffffffffffffffffffffffffffffffffffffff16146120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090613f1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090613edf565b60405180910390fd5b61214281612a93565b50565b61214d61228b565b73ffffffffffffffffffffffffffffffffffffffff1661216b611354565b73ffffffffffffffffffffffffffffffffffffffff16146121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b890613f1f565b60405180910390fd5b81601181905550806012819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612248612345565b11158015612257575060005482105b8015612284575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061235982612804565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123c4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166123e561228b565b73ffffffffffffffffffffffffffffffffffffffff16148061241457506124138561240e61228b565b611f05565b5b80612459575061242261228b565b73ffffffffffffffffffffffffffffffffffffffff1661244184610ade565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612492576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124f9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125068585856001612f04565b61251260008487612293565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561279257600054821461279157878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127fd8585856001612f0a565b5050505050565b61280c613402565b60008290508061281a612345565b11158015612829575060005481105b15612a5c576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612a5a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461293e578092505050612a8e565b5b600115612a5957818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a54578092505050612a8e565b61293f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b73828260405180602001604052806000815250612f10565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612bc061228b565b8786866040518563ffffffff1660e01b8152600401612be29493929190613ddb565b602060405180830381600087803b158015612bfc57600080fd5b505af1925050508015612c2d57506040513d601f19601f82011682018060405250810190612c2a91906138a0565b60015b612ca7573d8060008114612c5d576040519150601f19603f3d011682016040523d82523d6000602084013e612c62565b606091505b50600081511415612c9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612d09906142d9565b80601f0160208091040260200160405190810160405280929190818152602001828054612d35906142d9565b8015612d825780601f10612d5757610100808354040283529160200191612d82565b820191906000526020600020905b815481529060010190602001808311612d6557829003601f168201915b5050505050905090565b60606000821415612dd4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ee8565b600082905060005b60008214612e06578080612def9061433c565b915050600a82612dff919061415a565b9150612ddc565b60008167ffffffffffffffff811115612e2257612e21614496565b5b6040519080825280601f01601f191660200182016040528015612e545781602001600182028036833780820191505090505b5090505b60008514612ee157600182612e6d91906141e5565b9150600a85612e7c91906143a9565b6030612e889190614104565b60f81b818381518110612e9e57612e9d614467565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612eda919061415a565b9450612e58565b8093505050505b919050565b600082612efa8584612f22565b1490509392505050565b50505050565b50505050565b612f1d8383836001612f97565b505050565b60008082905060005b8451811015612f8c576000858281518110612f4957612f48614467565b5b60200260200101519050808311612f6b57612f648382613365565b9250612f78565b612f758184613365565b92505b508080612f849061433c565b915050612f2b565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613004576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561303f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61304c6000868387612f04565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561321657506132158773ffffffffffffffffffffffffffffffffffffffff16612b77565b5b156132dc575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461328b6000888480600101955088612b9a565b6132c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561321c5782600054146132d757600080fd5b613348565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156132dd575b81600081905550505061335e6000868387612f0a565b5050505050565b600082600052816020526040600020905092915050565b828054613388906142d9565b90600052602060002090601f0160209004810192826133aa57600085556133f1565b82601f106133c357805160ff19168380011785556133f1565b828001600101855582156133f1579182015b828111156133f05782518255916020019190600101906133d5565b5b5090506133fe9190613445565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561345e576000816000905550600101613446565b5090565b60006134756134708461403f565b61401a565b905082815260208101848484011115613491576134906144d4565b5b61349c848285614297565b509392505050565b60006134b76134b284614070565b61401a565b9050828152602081018484840111156134d3576134d26144d4565b5b6134de848285614297565b509392505050565b6000813590506134f5816147d4565b92915050565b60008083601f840112613511576135106144ca565b5b8235905067ffffffffffffffff81111561352e5761352d6144c5565b5b60208301915083602082028301111561354a576135496144cf565b5b9250929050565b600081359050613560816147eb565b92915050565b60008135905061357581614802565b92915050565b60008135905061358a81614819565b92915050565b60008151905061359f81614819565b92915050565b600082601f8301126135ba576135b96144ca565b5b81356135ca848260208601613462565b91505092915050565b600082601f8301126135e8576135e76144ca565b5b81356135f88482602086016134a4565b91505092915050565b60008135905061361081614830565b92915050565b60006020828403121561362c5761362b6144de565b5b600061363a848285016134e6565b91505092915050565b6000806040838503121561365a576136596144de565b5b6000613668858286016134e6565b9250506020613679858286016134e6565b9150509250929050565b60008060006060848603121561369c5761369b6144de565b5b60006136aa868287016134e6565b93505060206136bb868287016134e6565b92505060406136cc86828701613601565b9150509250925092565b600080600080608085870312156136f0576136ef6144de565b5b60006136fe878288016134e6565b945050602061370f878288016134e6565b935050604061372087828801613601565b925050606085013567ffffffffffffffff811115613741576137406144d9565b5b61374d878288016135a5565b91505092959194509250565b600080604083850312156137705761376f6144de565b5b600061377e858286016134e6565b925050602061378f85828601613551565b9150509250929050565b600080604083850312156137b0576137af6144de565b5b60006137be858286016134e6565b92505060206137cf85828601613601565b9150509250929050565b6000602082840312156137ef576137ee6144de565b5b60006137fd84828501613551565b91505092915050565b6000806040838503121561381d5761381c6144de565b5b600061382b85828601613551565b925050602061383c85828601613551565b9150509250929050565b60006020828403121561385c5761385b6144de565b5b600061386a84828501613566565b91505092915050565b600060208284031215613889576138886144de565b5b60006138978482850161357b565b91505092915050565b6000602082840312156138b6576138b56144de565b5b60006138c484828501613590565b91505092915050565b6000602082840312156138e3576138e26144de565b5b600082013567ffffffffffffffff811115613901576139006144d9565b5b61390d848285016135d3565b91505092915050565b60006020828403121561392c5761392b6144de565b5b600061393a84828501613601565b91505092915050565b6000806040838503121561395a576139596144de565b5b600061396885828601613601565b9250506020613979858286016134e6565b9150509250929050565b60008060006040848603121561399c5761399b6144de565b5b60006139aa86828701613601565b935050602084013567ffffffffffffffff8111156139cb576139ca6144d9565b5b6139d7868287016134fb565b92509250509250925092565b600080604083850312156139fa576139f96144de565b5b6000613a0885828601613601565b9250506020613a1985828601613601565b9150509250929050565b613a2c81614219565b82525050565b613a43613a3e82614219565b614385565b82525050565b613a528161422b565b82525050565b613a6181614237565b82525050565b6000613a72826140b6565b613a7c81856140cc565b9350613a8c8185602086016142a6565b613a95816144e3565b840191505092915050565b6000613aab826140c1565b613ab581856140e8565b9350613ac58185602086016142a6565b613ace816144e3565b840191505092915050565b6000613ae4826140c1565b613aee81856140f9565b9350613afe8185602086016142a6565b80840191505092915050565b60008154613b17816142d9565b613b2181866140f9565b94506001821660008114613b3c5760018114613b4d57613b80565b60ff19831686528186019350613b80565b613b56856140a1565b60005b83811015613b7857815481890152600182019150602081019050613b59565b838801955050505b50505092915050565b6000613b966011836140e8565b9150613ba182614501565b602082019050919050565b6000613bb96025836140e8565b9150613bc48261452a565b604082019050919050565b6000613bdc600e836140e8565b9150613be782614579565b602082019050919050565b6000613bff6026836140e8565b9150613c0a826145a2565b604082019050919050565b6000613c226021836140e8565b9150613c2d826145f1565b604082019050919050565b6000613c456020836140e8565b9150613c5082614640565b602082019050919050565b6000613c686017836140e8565b9150613c7382614669565b602082019050919050565b6000613c8b602f836140e8565b9150613c9682614692565b604082019050919050565b6000613cae6022836140e8565b9150613cb9826146e1565b604082019050919050565b6000613cd16033836140e8565b9150613cdc82614730565b604082019050919050565b6000613cf46000836140dd565b9150613cff8261477f565b600082019050919050565b6000613d176012836140e8565b9150613d2282614782565b602082019050919050565b6000613d3a6013836140e8565b9150613d45826147ab565b602082019050919050565b613d598161428d565b82525050565b6000613d6b8284613a32565b60148201915081905092915050565b6000613d868286613ad9565b9150613d928285613ad9565b9150613d9e8284613b0a565b9150819050949350505050565b6000613db682613ce7565b9150819050919050565b6000602082019050613dd56000830184613a23565b92915050565b6000608082019050613df06000830187613a23565b613dfd6020830186613a23565b613e0a6040830185613d50565b8181036060830152613e1c8184613a67565b905095945050505050565b6000602082019050613e3c6000830184613a49565b92915050565b6000602082019050613e576000830184613a58565b92915050565b60006020820190508181036000830152613e778184613aa0565b905092915050565b60006020820190508181036000830152613e9881613b89565b9050919050565b60006020820190508181036000830152613eb881613bac565b9050919050565b60006020820190508181036000830152613ed881613bcf565b9050919050565b60006020820190508181036000830152613ef881613bf2565b9050919050565b60006020820190508181036000830152613f1881613c15565b9050919050565b60006020820190508181036000830152613f3881613c38565b9050919050565b60006020820190508181036000830152613f5881613c5b565b9050919050565b60006020820190508181036000830152613f7881613c7e565b9050919050565b60006020820190508181036000830152613f9881613ca1565b9050919050565b60006020820190508181036000830152613fb881613cc4565b9050919050565b60006020820190508181036000830152613fd881613d0a565b9050919050565b60006020820190508181036000830152613ff881613d2d565b9050919050565b60006020820190506140146000830184613d50565b92915050565b6000614024614035565b9050614030828261430b565b919050565b6000604051905090565b600067ffffffffffffffff82111561405a57614059614496565b5b614063826144e3565b9050602081019050919050565b600067ffffffffffffffff82111561408b5761408a614496565b5b614094826144e3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061410f8261428d565b915061411a8361428d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561414f5761414e6143da565b5b828201905092915050565b60006141658261428d565b91506141708361428d565b9250826141805761417f614409565b5b828204905092915050565b60006141968261428d565b91506141a18361428d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141da576141d96143da565b5b828202905092915050565b60006141f08261428d565b91506141fb8361428d565b92508282101561420e5761420d6143da565b5b828203905092915050565b60006142248261426d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142c45780820151818401526020810190506142a9565b838111156142d3576000848401525b50505050565b600060028204905060018216806142f157607f821691505b6020821081141561430557614304614438565b5b50919050565b614314826144e3565b810181811067ffffffffffffffff8211171561433357614332614496565b5b80604052505050565b60006143478261428d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561437a576143796143da565b5b600182019050919050565b600061439082614397565b9050919050565b60006143a2826144f4565b9050919050565b60006143b48261428d565b91506143bf8361428d565b9250826143cf576143ce614409565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4e6f7420656e6f75676820657468657221000000000000000000000000000000600082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f72652060008201527f7468616e206d61784d696e7420416d6f756e7400000000000000000000000000602082015250565b50565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642100000000000000000000000000600082015250565b6147dd81614219565b81146147e857600080fd5b50565b6147f48161422b565b81146147ff57600080fd5b50565b61480b81614237565b811461481657600080fd5b50565b61482281614241565b811461482d57600080fd5b50565b6148398161428d565b811461484457600080fd5b5056fea2646970667358221220310961a57425df9385b6e8d7c997ac8226c1bbe508ab3a879c2ca9b90301448264736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d624e4872597a663675547756313142566335776472754c6376784578485a6471534554484c41574850366f552f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmbNHrYzf6uTwV11BVc5wdruLcvxExHZdqSETHLAWHP6oU/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d624e4872597a663675547756313142566335776472754c
Arg [3] : 6376784578485a6471534554484c41574850366f552f00000000000000000000


Deployed Bytecode Sourcemap

47219:5008:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29414:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32527:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34030:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33593:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28663:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34895:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47711:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51087:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47499:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47436:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50574:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52077:147;;;;;;;;;;;;;:::i;:::-;;35136:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51350:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47465:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51496:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47410:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32335:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47338:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50726:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29783:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7190:103;;;;;;;;;;;;;:::i;:::-;;50828:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47638:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47754:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6539:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32696:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48919:784;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34306:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47300:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35392:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51608:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47600:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47366:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49844:722;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47943:948;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47673:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51918:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34664:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50940:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7448:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51180:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29414:305;29516:4;29568:25;29553:40;;;:11;:40;;;;:105;;;;29625:33;29610:48;;;:11;:48;;;;29553:105;:158;;;;29675:36;29699:11;29675:23;:36::i;:::-;29553:158;29533:178;;29414:305;;;:::o;32527:100::-;32581:13;32614:5;32607:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32527:100;:::o;34030:204::-;34098:7;34123:16;34131:7;34123;:16::i;:::-;34118:64;;34148:34;;;;;;;;;;;;;;34118:64;34202:15;:24;34218:7;34202:24;;;;;;;;;;;;;;;;;;;;;34195:31;;34030:204;;;:::o;33593:371::-;33666:13;33682:24;33698:7;33682:15;:24::i;:::-;33666:40;;33727:5;33721:11;;:2;:11;;;33717:48;;;33741:24;;;;;;;;;;;;;;33717:48;33798:5;33782:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33808:37;33825:5;33832:12;:10;:12::i;:::-;33808:16;:37::i;:::-;33807:38;33782:63;33778:138;;;33869:35;;;;;;;;;;;;;;33778:138;33928:28;33937:2;33941:7;33950:5;33928:8;:28::i;:::-;33655:309;33593:371;;:::o;28663:303::-;28707:7;28932:15;:13;:15::i;:::-;28917:12;;28901:13;;:28;:46;28894:53;;28663:303;:::o;34895:170::-;35029:28;35039:4;35045:2;35049:7;35029:9;:28::i;:::-;34895:170;;;:::o;47711:36::-;;;;:::o;51087:85::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51158:6:::1;51147:8;;:17;;;;;;;;;;;;;;;;;;51087:85:::0;:::o;47499:94::-;;;;:::o;47436:22::-;;;;;;;;;;;;;:::o;50574:144::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50670:10:::1;50655:12;:25;;;;50703:7;50691:9;:19;;;;50574:144:::0;;:::o;52077:147::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52126:7:::1;52147;:5;:7::i;:::-;52139:21;;52168;52139:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52125:69;;;52213:2;52205:11;;;::::0;::::1;;52114:110;52077:147::o:0;35136:185::-;35274:39;35291:4;35297:2;35301:7;35274:39;;;;;;;;;;;;:16;:39::i;:::-;35136:185;;;:::o;51350:138::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51462:18:::1;51442:17;:38;;;;;;;;;;;;:::i;:::-;;51350:138:::0;:::o;47465:27::-;;;;;;;;;;;;;:::o;51496:104::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51581:11:::1;51571:7;:21;;;;;;;;;;;;:::i;:::-;;51496:104:::0;:::o;47410:19::-;;;;;;;;;;;;;:::o;32335:125::-;32399:7;32426:21;32439:7;32426:12;:21::i;:::-;:26;;;32419:33;;32335:125;;;:::o;47338:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50726:94::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50805:7:::1;50793:9;:19;;;;50726:94:::0;:::o;29783:206::-;29847:7;29888:1;29871:19;;:5;:19;;;29867:60;;;29899:28;;;;;;;;;;;;;;29867:60;29953:12;:19;29966:5;29953:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29945:36;;29938:43;;29783:206;;;:::o;7190:103::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7255:30:::1;7282:1;7255:18;:30::i;:::-;7190:103::o:0;50828:104::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50913:11:::1;50900:10;:24;;;;50828:104:::0;:::o;47638:28::-;;;;:::o;47754:35::-;;;;:::o;6539:87::-;6585:7;6612:6;;;;;;;;;;;6605:13;;6539:87;:::o;32696:104::-;32752:13;32785:7;32778:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32696:104;:::o;48919:784::-;48979:14;48996:13;:11;:13::i;:::-;48979:30;;49028:10;;;;;;;;;;;49020:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;49096:1;49085:8;:12;49077:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;49176:9;;49164:8;49155:6;:17;;;;:::i;:::-;:30;;49147:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49240:7;:5;:7::i;:::-;49226:21;;:10;:21;;;49222:422;;49322:9;;49310:8;49286:21;49296:10;49286:9;:21::i;:::-;:32;;;;:::i;:::-;:45;;49264:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;49457:9;;49445:8;:21;;49419:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;49602:8;49589:10;;:21;;;;:::i;:::-;49576:9;:34;;49568:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49222:422;49664:31;49674:10;49686:8;49664:9;:31::i;:::-;48968:735;48919:784;:::o;34306:287::-;34417:12;:10;:12::i;:::-;34405:24;;:8;:24;;;34401:54;;;34438:17;;;;;;;;;;;;;;34401:54;34513:8;34468:18;:32;34487:12;:10;:12::i;:::-;34468:32;;;;;;;;;;;;;;;:42;34501:8;34468:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34566:8;34537:48;;34552:12;:10;:12::i;:::-;34537:48;;;34576:8;34537:48;;;;;;:::i;:::-;;;;;;;;34306:287;;:::o;47300:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35392:369::-;35559:28;35569:4;35575:2;35579:7;35559:9;:28::i;:::-;35602:15;:2;:13;;;:15::i;:::-;:76;;;;;35622:56;35653:4;35659:2;35663:7;35672:5;35622:30;:56::i;:::-;35621:57;35602:76;35598:156;;;35702:40;;;;;;;;;;;;;;35598:156;35392:369;;;;:::o;51608:302::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51689:14:::1;51706:13;:11;:13::i;:::-;51689:30;;51749:1;51738:8;:12;51730:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;51829:9;;51817:8;51808:6;:17;;;;:::i;:::-;:30;;51800:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51873:29;51883:8;51893;51873:9;:29::i;:::-;51678:232;51608:302:::0;;:::o;47600:31::-;;;;:::o;47366:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49844:722::-;49962:13;50015:16;50023:7;50015;:16::i;:::-;49993:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;50124:8;;;;;;;;;;;50119:66;;50156:17;50149:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50119:66;50197:28;50228:10;:8;:10::i;:::-;50197:41;;50302:1;50277:14;50271:28;:32;:287;;;;;;;;;;;;;;;;;50395:14;50436:18;:7;:16;:18::i;:::-;50481:13;50352:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50271:287;50251:307;;;49844:722;;;;:::o;47943:948::-;48066:14;48083:13;:11;:13::i;:::-;48066:30;;48115:7;;;;;;;;;;;48107:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48180:1;48169:8;:12;48161:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48259:9;;48247:8;48238:6;:17;;;;:::i;:::-;:30;;48230:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48360:12;;48348:8;48324:21;48334:10;48324:9;:21::i;:::-;:32;;;;:::i;:::-;:48;;48302:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;48482:12;;48470:8;:24;;48448:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;48619:8;48605:11;;:22;;;;:::i;:::-;48592:9;:35;;48584:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48660:12;48702:10;48685:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;48675:39;;;;;;48660:54;;48747:50;48766:12;;48747:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48780:10;;48792:4;48747:18;:50::i;:::-;48725:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;48852:31;48862:10;48874:8;48852:9;:31::i;:::-;48055:836;;47943:948;;;:::o;47673:31::-;;;;:::o;51918:151::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52044:17:::1;52028:13;:33;;;;;;;;;;;;:::i;:::-;;51918:151:::0;:::o;34664:164::-;34761:4;34785:18;:25;34804:5;34785:25;;;;;;;;;;;;;;;:35;34811:8;34785:35;;;;;;;;;;;;;;;;;;;;;;;;;34778:42;;34664:164;;;;:::o;50940:139::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51028:8:::1;51018:7;;:18;;;;;;;;;;;;;;;;;;51060:11;51047:10;;:24;;;;;;;;;;;;;;;;;;50940:139:::0;;:::o;7448:201::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7557:1:::1;7537:22;;:8;:22;;;;7529:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7613:28;7632:8;7613:18;:28::i;:::-;7448:201:::0;:::o;51180:162::-;6770:12;:10;:12::i;:::-;6759:23;;:7;:5;:7::i;:::-;:23;;;6751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51285:14:::1;51271:11;:28;;;;51323:11;51310:10;:24;;;;51180:162:::0;;:::o;19323:157::-;19408:4;19447:25;19432:40;;;:11;:40;;;;19425:47;;19323:157;;;:::o;36016:174::-;36073:4;36116:7;36097:15;:13;:15::i;:::-;:26;;:53;;;;;36137:13;;36127:7;:23;36097:53;:85;;;;;36155:11;:20;36167:7;36155:20;;;;;;;;;;;:27;;;;;;;;;;;;36154:28;36097:85;36090:92;;36016:174;;;:::o;5263:98::-;5316:7;5343:10;5336:17;;5263:98;:::o;44173:196::-;44315:2;44288:15;:24;44304:7;44288:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44353:7;44349:2;44333:28;;44342:5;44333:28;;;;;;;;;;;;44173:196;;;:::o;28437:92::-;28493:7;28520:1;28513:8;;28437:92;:::o;39116:2130::-;39231:35;39269:21;39282:7;39269:12;:21::i;:::-;39231:59;;39329:4;39307:26;;:13;:18;;;:26;;;39303:67;;39342:28;;;;;;;;;;;;;;39303:67;39383:22;39425:4;39409:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39446:36;39463:4;39469:12;:10;:12::i;:::-;39446:16;:36::i;:::-;39409:73;:126;;;;39523:12;:10;:12::i;:::-;39499:36;;:20;39511:7;39499:11;:20::i;:::-;:36;;;39409:126;39383:153;;39554:17;39549:66;;39580:35;;;;;;;;;;;;;;39549:66;39644:1;39630:16;;:2;:16;;;39626:52;;;39655:23;;;;;;;;;;;;;;39626:52;39691:43;39713:4;39719:2;39723:7;39732:1;39691:21;:43::i;:::-;39799:35;39816:1;39820:7;39829:4;39799:8;:35::i;:::-;40160:1;40130:12;:18;40143:4;40130:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40204:1;40176:12;:16;40189:2;40176:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40222:31;40256:11;:20;40268:7;40256:20;;;;;;;;;;;40222:54;;40307:2;40291:8;:13;;;:18;;;;;;;;;;;;;;;;;;40357:15;40324:8;:23;;;:49;;;;;;;;;;;;;;;;;;40625:19;40657:1;40647:7;:11;40625:33;;40673:31;40707:11;:24;40719:11;40707:24;;;;;;;;;;;40673:58;;40775:1;40750:27;;:8;:13;;;;;;;;;;;;:27;;;40746:384;;;40960:13;;40945:11;:28;40941:174;;41014:4;40998:8;:13;;;:20;;;;;;;;;;;;;;;;;;41067:13;:28;;;41041:8;:23;;;:54;;;;;;;;;;;;;;;;;;40941:174;40746:384;40105:1036;;;41177:7;41173:2;41158:27;;41167:4;41158:27;;;;;;;;;;;;41196:42;41217:4;41223:2;41227:7;41236:1;41196:20;:42::i;:::-;39220:2026;;39116:2130;;;:::o;31164:1109::-;31226:21;;:::i;:::-;31260:12;31275:7;31260:22;;31343:4;31324:15;:13;:15::i;:::-;:23;;:47;;;;;31358:13;;31351:4;:20;31324:47;31320:886;;;31392:31;31426:11;:17;31438:4;31426:17;;;;;;;;;;;31392:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31467:9;:16;;;31462:729;;31538:1;31512:28;;:9;:14;;;:28;;;31508:101;;31576:9;31569:16;;;;;;31508:101;31911:261;31918:4;31911:261;;;31951:6;;;;;;;;31996:11;:17;32008:4;31996:17;;;;;;;;;;;31984:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32070:1;32044:28;;:9;:14;;;:28;;;32040:109;;32112:9;32105:16;;;;;;32040:109;31911:261;;;31462:729;31373:833;31320:886;32234:31;;;;;;;;;;;;;;31164:1109;;;;:::o;7809:191::-;7883:16;7902:6;;;;;;;;;;;7883:25;;7928:8;7919:6;;:17;;;;;;;;;;;;;;;;;;7983:8;7952:40;;7973:8;7952:40;;;;;;;;;;;;7872:128;7809:191;:::o;36198:104::-;36267:27;36277:2;36281:8;36267:27;;;;;;;;;;;;:9;:27::i;:::-;36198:104;;:::o;9240:326::-;9300:4;9557:1;9535:7;:19;;;:23;9528:30;;9240:326;;;:::o;44861:667::-;45024:4;45061:2;45045:36;;;45082:12;:10;:12::i;:::-;45096:4;45102:7;45111:5;45045:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45041:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45296:1;45279:6;:13;:18;45275:235;;;45325:40;;;;;;;;;;;;;;45275:235;45468:6;45462:13;45453:6;45449:2;45445:15;45438:38;45041:480;45174:45;;;45164:55;;;:6;:55;;;;45157:62;;;44861:667;;;;;;:::o;49728:108::-;49788:13;49821:7;49814:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49728:108;:::o;2825:723::-;2881:13;3111:1;3102:5;:10;3098:53;;;3129:10;;;;;;;;;;;;;;;;;;;;;3098:53;3161:12;3176:5;3161:20;;3192:14;3217:78;3232:1;3224:4;:9;3217:78;;3250:8;;;;;:::i;:::-;;;;3281:2;3273:10;;;;;:::i;:::-;;;3217:78;;;3305:19;3337:6;3327:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3305:39;;3355:154;3371:1;3362:5;:10;3355:154;;3399:1;3389:11;;;;;:::i;:::-;;;3466:2;3458:5;:10;;;;:::i;:::-;3445:2;:24;;;;:::i;:::-;3432:39;;3415:6;3422;3415:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3495:2;3486:11;;;;;:::i;:::-;;;3355:154;;;3533:6;3519:21;;;;;2825:723;;;;:::o;994:190::-;1119:4;1172;1143:25;1156:5;1163:4;1143:12;:25::i;:::-;:33;1136:40;;994:190;;;;;:::o;46176:159::-;;;;;:::o;46994:158::-;;;;;:::o;36665:163::-;36788:32;36794:2;36798:8;36808:5;36815:4;36788:5;:32::i;:::-;36665:163;;;:::o;1546:675::-;1629:7;1649:20;1672:4;1649:27;;1692:9;1687:497;1711:5;:12;1707:1;:16;1687:497;;;1745:20;1768:5;1774:1;1768:8;;;;;;;;:::i;:::-;;;;;;;;1745:31;;1811:12;1795;:28;1791:382;;1938:42;1953:12;1967;1938:14;:42::i;:::-;1923:57;;1791:382;;;2115:42;2130:12;2144;2115:14;:42::i;:::-;2100:57;;1791:382;1730:454;1725:3;;;;;:::i;:::-;;;;1687:497;;;;2201:12;2194:19;;;1546:675;;;;:::o;37087:1775::-;37226:20;37249:13;;37226:36;;37291:1;37277:16;;:2;:16;;;37273:48;;;37302:19;;;;;;;;;;;;;;37273:48;37348:1;37336:8;:13;37332:44;;;37358:18;;;;;;;;;;;;;;37332:44;37389:61;37419:1;37423:2;37427:12;37441:8;37389:21;:61::i;:::-;37762:8;37727:12;:16;37740:2;37727:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37826:8;37786:12;:16;37799:2;37786:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37885:2;37852:11;:25;37864:12;37852:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37952:15;37902:11;:25;37914:12;37902:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37985:20;38008:12;37985:35;;38035:11;38064:8;38049:12;:23;38035:37;;38093:4;:23;;;;;38101:15;:2;:13;;;:15::i;:::-;38093:23;38089:641;;;38137:314;38193:12;38189:2;38168:38;;38185:1;38168:38;;;;;;;;;;;;38234:69;38273:1;38277:2;38281:14;;;;;;38297:5;38234:30;:69::i;:::-;38229:174;;38339:40;;;;;;;;;;;;;;38229:174;38446:3;38430:12;:19;;38137:314;;38532:12;38515:13;;:29;38511:43;;38546:8;;;38511:43;38089:641;;;38595:120;38651:14;;;;;;38647:2;38626:40;;38643:1;38626:40;;;;;;;;;;;;38710:3;38694:12;:19;;38595:120;;38089:641;38760:12;38744:13;:28;;;;37702:1082;;38794:60;38823:1;38827:2;38831:12;38845:8;38794:20;:60::i;:::-;37215:1647;37087:1775;;;;:::o;2229:224::-;2297:13;2360:1;2354:4;2347:15;2389:1;2383:4;2376:15;2430:4;2424;2414:21;2405:30;;2229:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:462::-;6747:6;6755;6804:2;6792:9;6783:7;6779:23;6775:32;6772:119;;;6810:79;;:::i;:::-;6772:119;6930:1;6955:50;6997:7;6988:6;6977:9;6973:22;6955:50;:::i;:::-;6945:60;;6901:114;7054:2;7080:50;7122:7;7113:6;7102:9;7098:22;7080:50;:::i;:::-;7070:60;;7025:115;6685:462;;;;;:::o;7153:329::-;7212:6;7261:2;7249:9;7240:7;7236:23;7232:32;7229:119;;;7267:79;;:::i;:::-;7229:119;7387:1;7412:53;7457:7;7448:6;7437:9;7433:22;7412:53;:::i;:::-;7402:63;;7358:117;7153:329;;;;:::o;7488:327::-;7546:6;7595:2;7583:9;7574:7;7570:23;7566:32;7563:119;;;7601:79;;:::i;:::-;7563:119;7721:1;7746:52;7790:7;7781:6;7770:9;7766:22;7746:52;:::i;:::-;7736:62;;7692:116;7488:327;;;;:::o;7821:349::-;7890:6;7939:2;7927:9;7918:7;7914:23;7910:32;7907:119;;;7945:79;;:::i;:::-;7907:119;8065:1;8090:63;8145:7;8136:6;8125:9;8121:22;8090:63;:::i;:::-;8080:73;;8036:127;7821:349;;;;:::o;8176:509::-;8245:6;8294:2;8282:9;8273:7;8269:23;8265:32;8262:119;;;8300:79;;:::i;:::-;8262:119;8448:1;8437:9;8433:17;8420:31;8478:18;8470:6;8467:30;8464:117;;;8500:79;;:::i;:::-;8464:117;8605:63;8660:7;8651:6;8640:9;8636:22;8605:63;:::i;:::-;8595:73;;8391:287;8176:509;;;;:::o;8691:329::-;8750:6;8799:2;8787:9;8778:7;8774:23;8770:32;8767:119;;;8805:79;;:::i;:::-;8767:119;8925:1;8950:53;8995:7;8986:6;8975:9;8971:22;8950:53;:::i;:::-;8940:63;;8896:117;8691:329;;;;:::o;9026:474::-;9094:6;9102;9151:2;9139:9;9130:7;9126:23;9122:32;9119:119;;;9157:79;;:::i;:::-;9119:119;9277:1;9302:53;9347:7;9338:6;9327:9;9323:22;9302:53;:::i;:::-;9292:63;;9248:117;9404:2;9430:53;9475:7;9466:6;9455:9;9451:22;9430:53;:::i;:::-;9420:63;;9375:118;9026:474;;;;;:::o;9506:704::-;9601:6;9609;9617;9666:2;9654:9;9645:7;9641:23;9637:32;9634:119;;;9672:79;;:::i;:::-;9634:119;9792:1;9817:53;9862:7;9853:6;9842:9;9838:22;9817:53;:::i;:::-;9807:63;;9763:117;9947:2;9936:9;9932:18;9919:32;9978:18;9970:6;9967:30;9964:117;;;10000:79;;:::i;:::-;9964:117;10113:80;10185:7;10176:6;10165:9;10161:22;10113:80;:::i;:::-;10095:98;;;;9890:313;9506:704;;;;;:::o;10216:474::-;10284:6;10292;10341:2;10329:9;10320:7;10316:23;10312:32;10309:119;;;10347:79;;:::i;:::-;10309:119;10467:1;10492:53;10537:7;10528:6;10517:9;10513:22;10492:53;:::i;:::-;10482:63;;10438:117;10594:2;10620:53;10665:7;10656:6;10645:9;10641:22;10620:53;:::i;:::-;10610:63;;10565:118;10216:474;;;;;:::o;10696:118::-;10783:24;10801:5;10783:24;:::i;:::-;10778:3;10771:37;10696:118;;:::o;10820:157::-;10925:45;10945:24;10963:5;10945:24;:::i;:::-;10925:45;:::i;:::-;10920:3;10913:58;10820:157;;:::o;10983:109::-;11064:21;11079:5;11064:21;:::i;:::-;11059:3;11052:34;10983:109;;:::o;11098:118::-;11185:24;11203:5;11185:24;:::i;:::-;11180:3;11173:37;11098:118;;:::o;11222:360::-;11308:3;11336:38;11368:5;11336:38;:::i;:::-;11390:70;11453:6;11448:3;11390:70;:::i;:::-;11383:77;;11469:52;11514:6;11509:3;11502:4;11495:5;11491:16;11469:52;:::i;:::-;11546:29;11568:6;11546:29;:::i;:::-;11541:3;11537:39;11530:46;;11312:270;11222:360;;;;:::o;11588:364::-;11676:3;11704:39;11737:5;11704:39;:::i;:::-;11759:71;11823:6;11818:3;11759:71;:::i;:::-;11752:78;;11839:52;11884:6;11879:3;11872:4;11865:5;11861:16;11839:52;:::i;:::-;11916:29;11938:6;11916:29;:::i;:::-;11911:3;11907:39;11900:46;;11680:272;11588:364;;;;:::o;11958:377::-;12064:3;12092:39;12125:5;12092:39;:::i;:::-;12147:89;12229:6;12224:3;12147:89;:::i;:::-;12140:96;;12245:52;12290:6;12285:3;12278:4;12271:5;12267:16;12245:52;:::i;:::-;12322:6;12317:3;12313:16;12306:23;;12068:267;11958:377;;;;:::o;12365:845::-;12468:3;12505:5;12499:12;12534:36;12560:9;12534:36;:::i;:::-;12586:89;12668:6;12663:3;12586:89;:::i;:::-;12579:96;;12706:1;12695:9;12691:17;12722:1;12717:137;;;;12868:1;12863:341;;;;12684:520;;12717:137;12801:4;12797:9;12786;12782:25;12777:3;12770:38;12837:6;12832:3;12828:16;12821:23;;12717:137;;12863:341;12930:38;12962:5;12930:38;:::i;:::-;12990:1;13004:154;13018:6;13015:1;13012:13;13004:154;;;13092:7;13086:14;13082:1;13077:3;13073:11;13066:35;13142:1;13133:7;13129:15;13118:26;;13040:4;13037:1;13033:12;13028:17;;13004:154;;;13187:6;13182:3;13178:16;13171:23;;12870:334;;12684:520;;12472:738;;12365:845;;;;:::o;13216:366::-;13358:3;13379:67;13443:2;13438:3;13379:67;:::i;:::-;13372:74;;13455:93;13544:3;13455:93;:::i;:::-;13573:2;13568:3;13564:12;13557:19;;13216:366;;;:::o;13588:::-;13730:3;13751:67;13815:2;13810:3;13751:67;:::i;:::-;13744:74;;13827:93;13916:3;13827:93;:::i;:::-;13945:2;13940:3;13936:12;13929:19;;13588:366;;;:::o;13960:::-;14102:3;14123:67;14187:2;14182:3;14123:67;:::i;:::-;14116:74;;14199:93;14288:3;14199:93;:::i;:::-;14317:2;14312:3;14308:12;14301:19;;13960:366;;;:::o;14332:::-;14474:3;14495:67;14559:2;14554:3;14495:67;:::i;:::-;14488:74;;14571:93;14660:3;14571:93;:::i;:::-;14689:2;14684:3;14680:12;14673:19;;14332:366;;;:::o;14704:::-;14846:3;14867:67;14931:2;14926:3;14867:67;:::i;:::-;14860:74;;14943:93;15032:3;14943:93;:::i;:::-;15061:2;15056:3;15052:12;15045:19;;14704:366;;;:::o;15076:::-;15218:3;15239:67;15303:2;15298:3;15239:67;:::i;:::-;15232:74;;15315:93;15404:3;15315:93;:::i;:::-;15433:2;15428:3;15424:12;15417:19;;15076:366;;;:::o;15448:::-;15590:3;15611:67;15675:2;15670:3;15611:67;:::i;:::-;15604:74;;15687:93;15776:3;15687:93;:::i;:::-;15805:2;15800:3;15796:12;15789:19;;15448:366;;;:::o;15820:::-;15962:3;15983:67;16047:2;16042:3;15983:67;:::i;:::-;15976:74;;16059:93;16148:3;16059:93;:::i;:::-;16177:2;16172:3;16168:12;16161:19;;15820:366;;;:::o;16192:::-;16334:3;16355:67;16419:2;16414:3;16355:67;:::i;:::-;16348:74;;16431:93;16520:3;16431:93;:::i;:::-;16549:2;16544:3;16540:12;16533:19;;16192:366;;;:::o;16564:::-;16706:3;16727:67;16791:2;16786:3;16727:67;:::i;:::-;16720:74;;16803:93;16892:3;16803:93;:::i;:::-;16921:2;16916:3;16912:12;16905:19;;16564:366;;;:::o;16936:398::-;17095:3;17116:83;17197:1;17192:3;17116:83;:::i;:::-;17109:90;;17208:93;17297:3;17208:93;:::i;:::-;17326:1;17321:3;17317:11;17310:18;;16936:398;;;:::o;17340:366::-;17482:3;17503:67;17567:2;17562:3;17503:67;:::i;:::-;17496:74;;17579:93;17668:3;17579:93;:::i;:::-;17697:2;17692:3;17688:12;17681:19;;17340:366;;;:::o;17712:::-;17854:3;17875:67;17939:2;17934:3;17875:67;:::i;:::-;17868:74;;17951:93;18040:3;17951:93;:::i;:::-;18069:2;18064:3;18060:12;18053:19;;17712:366;;;:::o;18084:118::-;18171:24;18189:5;18171:24;:::i;:::-;18166:3;18159:37;18084:118;;:::o;18208:256::-;18320:3;18335:75;18406:3;18397:6;18335:75;:::i;:::-;18435:2;18430:3;18426:12;18419:19;;18455:3;18448:10;;18208:256;;;;:::o;18470:589::-;18695:3;18717:95;18808:3;18799:6;18717:95;:::i;:::-;18710:102;;18829:95;18920:3;18911:6;18829:95;:::i;:::-;18822:102;;18941:92;19029:3;19020:6;18941:92;:::i;:::-;18934:99;;19050:3;19043:10;;18470:589;;;;;;:::o;19065:379::-;19249:3;19271:147;19414:3;19271:147;:::i;:::-;19264:154;;19435:3;19428:10;;19065:379;;;:::o;19450:222::-;19543:4;19581:2;19570:9;19566:18;19558:26;;19594:71;19662:1;19651:9;19647:17;19638:6;19594:71;:::i;:::-;19450:222;;;;:::o;19678:640::-;19873:4;19911:3;19900:9;19896:19;19888:27;;19925:71;19993:1;19982:9;19978:17;19969:6;19925:71;:::i;:::-;20006:72;20074:2;20063:9;20059:18;20050:6;20006:72;:::i;:::-;20088;20156:2;20145:9;20141:18;20132:6;20088:72;:::i;:::-;20207:9;20201:4;20197:20;20192:2;20181:9;20177:18;20170:48;20235:76;20306:4;20297:6;20235:76;:::i;:::-;20227:84;;19678:640;;;;;;;:::o;20324:210::-;20411:4;20449:2;20438:9;20434:18;20426:26;;20462:65;20524:1;20513:9;20509:17;20500:6;20462:65;:::i;:::-;20324:210;;;;:::o;20540:222::-;20633:4;20671:2;20660:9;20656:18;20648:26;;20684:71;20752:1;20741:9;20737:17;20728:6;20684:71;:::i;:::-;20540:222;;;;:::o;20768:313::-;20881:4;20919:2;20908:9;20904:18;20896:26;;20968:9;20962:4;20958:20;20954:1;20943:9;20939:17;20932:47;20996:78;21069:4;21060:6;20996:78;:::i;:::-;20988:86;;20768:313;;;;:::o;21087:419::-;21253:4;21291:2;21280:9;21276:18;21268:26;;21340:9;21334:4;21330:20;21326:1;21315:9;21311:17;21304:47;21368:131;21494:4;21368:131;:::i;:::-;21360:139;;21087:419;;;:::o;21512:::-;21678:4;21716:2;21705:9;21701:18;21693:26;;21765:9;21759:4;21755:20;21751:1;21740:9;21736:17;21729:47;21793:131;21919:4;21793:131;:::i;:::-;21785:139;;21512:419;;;:::o;21937:::-;22103:4;22141:2;22130:9;22126:18;22118:26;;22190:9;22184:4;22180:20;22176:1;22165:9;22161:17;22154:47;22218:131;22344:4;22218:131;:::i;:::-;22210:139;;21937:419;;;:::o;22362:::-;22528:4;22566:2;22555:9;22551:18;22543:26;;22615:9;22609:4;22605:20;22601:1;22590:9;22586:17;22579:47;22643:131;22769:4;22643:131;:::i;:::-;22635:139;;22362:419;;;:::o;22787:::-;22953:4;22991:2;22980:9;22976:18;22968:26;;23040:9;23034:4;23030:20;23026:1;23015:9;23011:17;23004:47;23068:131;23194:4;23068:131;:::i;:::-;23060:139;;22787:419;;;:::o;23212:::-;23378:4;23416:2;23405:9;23401:18;23393:26;;23465:9;23459:4;23455:20;23451:1;23440:9;23436:17;23429:47;23493:131;23619:4;23493:131;:::i;:::-;23485:139;;23212:419;;;:::o;23637:::-;23803:4;23841:2;23830:9;23826:18;23818:26;;23890:9;23884:4;23880:20;23876:1;23865:9;23861:17;23854:47;23918:131;24044:4;23918:131;:::i;:::-;23910:139;;23637:419;;;:::o;24062:::-;24228:4;24266:2;24255:9;24251:18;24243:26;;24315:9;24309:4;24305:20;24301:1;24290:9;24286:17;24279:47;24343:131;24469:4;24343:131;:::i;:::-;24335:139;;24062:419;;;:::o;24487:::-;24653:4;24691:2;24680:9;24676:18;24668:26;;24740:9;24734:4;24730:20;24726:1;24715:9;24711:17;24704:47;24768:131;24894:4;24768:131;:::i;:::-;24760:139;;24487:419;;;:::o;24912:::-;25078:4;25116:2;25105:9;25101:18;25093:26;;25165:9;25159:4;25155:20;25151:1;25140:9;25136:17;25129:47;25193:131;25319:4;25193:131;:::i;:::-;25185:139;;24912:419;;;:::o;25337:::-;25503:4;25541:2;25530:9;25526:18;25518:26;;25590:9;25584:4;25580:20;25576:1;25565:9;25561:17;25554:47;25618:131;25744:4;25618:131;:::i;:::-;25610:139;;25337:419;;;:::o;25762:::-;25928:4;25966:2;25955:9;25951:18;25943:26;;26015:9;26009:4;26005:20;26001:1;25990:9;25986:17;25979:47;26043:131;26169:4;26043:131;:::i;:::-;26035:139;;25762:419;;;:::o;26187:222::-;26280:4;26318:2;26307:9;26303:18;26295:26;;26331:71;26399:1;26388:9;26384:17;26375:6;26331:71;:::i;:::-;26187:222;;;;:::o;26415:129::-;26449:6;26476:20;;:::i;:::-;26466:30;;26505:33;26533:4;26525:6;26505:33;:::i;:::-;26415:129;;;:::o;26550:75::-;26583:6;26616:2;26610:9;26600:19;;26550:75;:::o;26631:307::-;26692:4;26782:18;26774:6;26771:30;26768:56;;;26804:18;;:::i;:::-;26768:56;26842:29;26864:6;26842:29;:::i;:::-;26834:37;;26926:4;26920;26916:15;26908:23;;26631:307;;;:::o;26944:308::-;27006:4;27096:18;27088:6;27085:30;27082:56;;;27118:18;;:::i;:::-;27082:56;27156:29;27178:6;27156:29;:::i;:::-;27148:37;;27240:4;27234;27230:15;27222:23;;26944:308;;;:::o;27258:141::-;27307:4;27330:3;27322:11;;27353:3;27350:1;27343:14;27387:4;27384:1;27374:18;27366:26;;27258:141;;;:::o;27405:98::-;27456:6;27490:5;27484:12;27474:22;;27405:98;;;:::o;27509:99::-;27561:6;27595:5;27589:12;27579:22;;27509:99;;;:::o;27614:168::-;27697:11;27731:6;27726:3;27719:19;27771:4;27766:3;27762:14;27747:29;;27614:168;;;;:::o;27788:147::-;27889:11;27926:3;27911:18;;27788:147;;;;:::o;27941:169::-;28025:11;28059:6;28054:3;28047:19;28099:4;28094:3;28090:14;28075:29;;27941:169;;;;:::o;28116:148::-;28218:11;28255:3;28240:18;;28116:148;;;;:::o;28270:305::-;28310:3;28329:20;28347:1;28329:20;:::i;:::-;28324:25;;28363:20;28381:1;28363:20;:::i;:::-;28358:25;;28517:1;28449:66;28445:74;28442:1;28439:81;28436:107;;;28523:18;;:::i;:::-;28436:107;28567:1;28564;28560:9;28553:16;;28270:305;;;;:::o;28581:185::-;28621:1;28638:20;28656:1;28638:20;:::i;:::-;28633:25;;28672:20;28690:1;28672:20;:::i;:::-;28667:25;;28711:1;28701:35;;28716:18;;:::i;:::-;28701:35;28758:1;28755;28751:9;28746:14;;28581:185;;;;:::o;28772:348::-;28812:7;28835:20;28853:1;28835:20;:::i;:::-;28830:25;;28869:20;28887:1;28869:20;:::i;:::-;28864:25;;29057:1;28989:66;28985:74;28982:1;28979:81;28974:1;28967:9;28960:17;28956:105;28953:131;;;29064:18;;:::i;:::-;28953:131;29112:1;29109;29105:9;29094:20;;28772:348;;;;:::o;29126:191::-;29166:4;29186:20;29204:1;29186:20;:::i;:::-;29181:25;;29220:20;29238:1;29220:20;:::i;:::-;29215:25;;29259:1;29256;29253:8;29250:34;;;29264:18;;:::i;:::-;29250:34;29309:1;29306;29302:9;29294:17;;29126:191;;;;:::o;29323:96::-;29360:7;29389:24;29407:5;29389:24;:::i;:::-;29378:35;;29323:96;;;:::o;29425:90::-;29459:7;29502:5;29495:13;29488:21;29477:32;;29425:90;;;:::o;29521:77::-;29558:7;29587:5;29576:16;;29521:77;;;:::o;29604:149::-;29640:7;29680:66;29673:5;29669:78;29658:89;;29604:149;;;:::o;29759:126::-;29796:7;29836:42;29829:5;29825:54;29814:65;;29759:126;;;:::o;29891:77::-;29928:7;29957:5;29946:16;;29891:77;;;:::o;29974:154::-;30058:6;30053:3;30048;30035:30;30120:1;30111:6;30106:3;30102:16;30095:27;29974:154;;;:::o;30134:307::-;30202:1;30212:113;30226:6;30223:1;30220:13;30212:113;;;30311:1;30306:3;30302:11;30296:18;30292:1;30287:3;30283:11;30276:39;30248:2;30245:1;30241:10;30236:15;;30212:113;;;30343:6;30340:1;30337:13;30334:101;;;30423:1;30414:6;30409:3;30405:16;30398:27;30334:101;30183:258;30134:307;;;:::o;30447:320::-;30491:6;30528:1;30522:4;30518:12;30508:22;;30575:1;30569:4;30565:12;30596:18;30586:81;;30652:4;30644:6;30640:17;30630:27;;30586:81;30714:2;30706:6;30703:14;30683:18;30680:38;30677:84;;;30733:18;;:::i;:::-;30677:84;30498:269;30447:320;;;:::o;30773:281::-;30856:27;30878:4;30856:27;:::i;:::-;30848:6;30844:40;30986:6;30974:10;30971:22;30950:18;30938:10;30935:34;30932:62;30929:88;;;30997:18;;:::i;:::-;30929:88;31037:10;31033:2;31026:22;30816:238;30773:281;;:::o;31060:233::-;31099:3;31122:24;31140:5;31122:24;:::i;:::-;31113:33;;31168:66;31161:5;31158:77;31155:103;;;31238:18;;:::i;:::-;31155:103;31285:1;31278:5;31274:13;31267:20;;31060:233;;;:::o;31299:100::-;31338:7;31367:26;31387:5;31367:26;:::i;:::-;31356:37;;31299:100;;;:::o;31405:94::-;31444:7;31473:20;31487:5;31473:20;:::i;:::-;31462:31;;31405:94;;;:::o;31505:176::-;31537:1;31554:20;31572:1;31554:20;:::i;:::-;31549:25;;31588:20;31606:1;31588:20;:::i;:::-;31583:25;;31627:1;31617:35;;31632:18;;:::i;:::-;31617:35;31673:1;31670;31666:9;31661:14;;31505:176;;;;:::o;31687:180::-;31735:77;31732:1;31725:88;31832:4;31829:1;31822:15;31856:4;31853:1;31846:15;31873:180;31921:77;31918:1;31911:88;32018:4;32015:1;32008:15;32042:4;32039:1;32032:15;32059:180;32107:77;32104:1;32097:88;32204:4;32201:1;32194:15;32228:4;32225:1;32218:15;32245:180;32293:77;32290:1;32283:88;32390:4;32387:1;32380:15;32414:4;32411:1;32404:15;32431:180;32479:77;32476:1;32469:88;32576:4;32573:1;32566:15;32600:4;32597:1;32590:15;32617:117;32726:1;32723;32716:12;32740:117;32849:1;32846;32839:12;32863:117;32972:1;32969;32962:12;32986:117;33095:1;33092;33085:12;33109:117;33218:1;33215;33208:12;33232:117;33341:1;33338;33331:12;33355:102;33396:6;33447:2;33443:7;33438:2;33431:5;33427:14;33423:28;33413:38;;33355:102;;;:::o;33463:94::-;33496:8;33544:5;33540:2;33536:14;33515:35;;33463:94;;;:::o;33563:167::-;33703:19;33699:1;33691:6;33687:14;33680:43;33563:167;:::o;33736:224::-;33876:34;33872:1;33864:6;33860:14;33853:58;33945:7;33940:2;33932:6;33928:15;33921:32;33736:224;:::o;33966:164::-;34106:16;34102:1;34094:6;34090:14;34083:40;33966:164;:::o;34136:225::-;34276:34;34272:1;34264:6;34260:14;34253:58;34345:8;34340:2;34332:6;34328:15;34321:33;34136:225;:::o;34367:220::-;34507:34;34503:1;34495:6;34491:14;34484:58;34576:3;34571:2;34563:6;34559:15;34552:28;34367:220;:::o;34593:182::-;34733:34;34729:1;34721:6;34717:14;34710:58;34593:182;:::o;34781:173::-;34921:25;34917:1;34909:6;34905:14;34898:49;34781:173;:::o;34960:234::-;35100:34;35096:1;35088:6;35084:14;35077:58;35169:17;35164:2;35156:6;35152:15;35145:42;34960:234;:::o;35200:221::-;35340:34;35336:1;35328:6;35324:14;35317:58;35409:4;35404:2;35396:6;35392:15;35385:29;35200:221;:::o;35427:238::-;35567:34;35563:1;35555:6;35551:14;35544:58;35636:21;35631:2;35623:6;35619:15;35612:46;35427:238;:::o;35671:114::-;;:::o;35791:168::-;35931:20;35927:1;35919:6;35915:14;35908:44;35791:168;:::o;35965:169::-;36105:21;36101:1;36093:6;36089:14;36082:45;35965:169;:::o;36140:122::-;36213:24;36231:5;36213:24;:::i;:::-;36206:5;36203:35;36193:63;;36252:1;36249;36242:12;36193:63;36140:122;:::o;36268:116::-;36338:21;36353:5;36338:21;:::i;:::-;36331:5;36328:32;36318:60;;36374:1;36371;36364:12;36318:60;36268:116;:::o;36390:122::-;36463:24;36481:5;36463:24;:::i;:::-;36456:5;36453:35;36443:63;;36502:1;36499;36492:12;36443:63;36390:122;:::o;36518:120::-;36590:23;36607:5;36590:23;:::i;:::-;36583:5;36580:34;36570:62;;36628:1;36625;36618:12;36570:62;36518:120;:::o;36644:122::-;36717:24;36735:5;36717:24;:::i;:::-;36710:5;36707:35;36697:63;;36756:1;36753;36746:12;36697:63;36644:122;:::o

Swarm Source

ipfs://310961a57425df9385b6e8d7c997ac8226c1bbe508ab3a879c2ca9b903014482
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.