ETH Price: $2,637.55 (+0.79%)

Token

AceMiners P2 (ACE2)
 

Overview

Max Total Supply

1,500 ACE2

Holders

321

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ACE2
0xeEfd6F794B1E4CE048aA0c392516F26aEfb4DaB0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ace Miners Phase 2 and FINAL Collection consists of 1500 NFTs. Each NFT has a dedicated hash-rate power and generates rewards from LTC and KDA mining. Ace Miners provides hassle-free mining and tangible utility.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AceMinersP2

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: AceMiners/AceMiners.sol



pragma solidity >=0.7.0 <0.9.0;



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

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

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

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

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

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

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

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

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

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public costWL = 0.26 ether;
    uint256 public cost = 0.36 ether;
    uint256 public maxSupply = 1500;
    uint256 public maxMintAmountWL = 2;
    uint256 public maxMintAmountEarlyAccess = 2;
    uint256 public maxMintAmountPublic = 10;
    uint256 public nftPerAddressLimitWL = 7;

    bool public revealed = false;
    mapping(address => uint256) public addressMintedBalanceWL;
    mapping(address => uint256) public addressMintedBalance;

    uint256 public currentState = 0;

    mapping(address => bool) public whitelistedAddresses;

    bytes32 public merkleRootWhitelist =
        0xc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df;

    constructor() ERC721A("AceMiners P2", "ACE2") {}

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

    function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        public
        payable
    {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        if (msg.sender != owner()) {
            require(currentState > 0, "the contract is paused");
            if (currentState == 1) {
                uint256 ownerMintedCount = addressMintedBalanceWL[msg.sender];
                require(
                    isWhitelisted(msg.sender, _merkleProof),
                    "user is not whitelisted"
                );
                require(
                    _mintAmount <= maxMintAmountWL,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountWL,
                    "max NFT per address exceeded"
                );
                require(
                    msg.value >= costWL * _mintAmount,
                    "insufficient funds"
                );
            } else if (currentState == 3) {
                uint256 ownerMintedCount = addressMintedBalance[msg.sender];
                require(
                    _mintAmount <= maxMintAmountPublic,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountPublic,
                    "max NFT per address exceeded"
                );
                require(msg.value >= cost * _mintAmount, "insufficient funds");
            }
        }

        _safeMint(msg.sender, _mintAmount);
        if (currentState == 1) {
            addressMintedBalanceWL[msg.sender] += _mintAmount;
        } else if (currentState == 3) {
            addressMintedBalance[msg.sender] += _mintAmount;
        }
    }

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

    function mintableAmountForUser(address _user) public view returns (uint256) {
        if (currentState == 1) {
            return maxMintAmountWL - addressMintedBalanceWL[_user];
        } else if (currentState == 3) {
            return maxMintAmountPublic - addressMintedBalance[_user];
        }
        return 0;
    }

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

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

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

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

    function setNftPerAddressLimitWL(uint256 _limit) public onlyOwner {
        nftPerAddressLimitWL = _limit;
    }

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

    function setmaxMintAmountWL(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountWL = _newmaxMintAmount;
    }

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

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

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

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

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

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

    function setWhitelistMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRootWhitelist = _merkleRoot;
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountEarlyAccess","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountWL","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":"merkleRootWhitelist","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"mintableAmountForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountWL","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":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000288565b5067039bb49f599a0000600c556704fefa17b7240000600d556105dc600e556002600f556002601055600a60115560076012556000601360006101000a81548160ff02191690831515021790555060006016557fc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df60001b601855348015620000d857600080fd5b506040518060400160405280600c81526020017f4163654d696e65727320503200000000000000000000000000000000000000008152506040518060400160405280600481526020017f414345320000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015d92919062000288565b5080600390805190602001906200017692919062000288565b5062000187620001b560201b60201c565b6000819055505050620001af620001a3620001ba60201b60201c565b620001c260201b60201c565b6200039d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002969062000338565b90600052602060002090601f016020900481019282620002ba576000855562000306565b82601f10620002d557805160ff191683800117855562000306565b8280016001018555821562000306579182015b8281111562000305578251825591602001919060010190620002e8565b5b50905062000315919062000319565b5090565b5b80821115620003345760008160009055506001016200031a565b5090565b600060028204905060018216806200035157607f821691505b602082108114156200036857620003676200036e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b2180620003ad6000396000f3fe6080604052600436106102c95760003560e01c80636c0360eb11610175578063a475b5dd116100dc578063c87b56dd11610095578063da3ef23f1161006f578063da3ef23f14610a90578063e985e9c514610ab9578063f2c4ce1e14610af6578063f2fde38b14610b1f576102c9565b8063c87b56dd146109ff578063d1d1921314610a3c578063d5abeb0114610a65576102c9565b8063a475b5dd14610924578063b88d4fde1461093b578063ba41b0c614610964578063bd32fb6614610980578063c3ceedbd146109a9578063c6682862146109d4576102c9565b80638456cb591161012e5780638456cb5914610838578063872d10ea1461084f5780638da5cb5b1461087a5780638e1f9cfe146108a557806395d89b41146108d0578063a22cb465146108fb576102c9565b80636c0360eb146107505780636eddb9e31461077b57806370a08231146107a4578063715018a6146107e157806377e56357146107f8578063811d24371461080f576102c9565b806318160ddd116102345780633c59b86a116101ed57806351830227116101c7578063518302271461068257806355f804b3146106ad5780635a23dd99146106d65780636352211e14610713576102c9565b80633c59b86a146106265780633ccfd60b1461064f57806342842e0e14610659576102c9565b806318160ddd1461051857806318cae26914610543578063231878d11461058057806323b872dd146105a9578063295e4c33146105d257806337546c67146105e9576102c9565b8063081c8c4411610286578063081c8c4414610418578063095ea7b3146104435780630c3f6acf1461046c57806313093b1d1461049757806313faede6146104c257806317f7bece146104ed576102c9565b806301ffc9a7146102ce57806306afd5921461030b57806306c933d81461033657806306fdde031461037357806307656e331461039e578063081812fc146103db575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613c94565b610b48565b60405161030291906141c5565b60405180910390f35b34801561031757600080fd5b50610320610c2a565b60405161032d919061435d565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613a44565b610c30565b60405161036a91906141c5565b60405180910390f35b34801561037f57600080fd5b50610388610c50565b60405161039591906141fb565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190613a44565b610ce2565b6040516103d2919061435d565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190613d37565b610dac565b60405161040f919061415e565b60405180910390f35b34801561042457600080fd5b5061042d610e28565b60405161043a91906141fb565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190613c27565b610eb6565b005b34801561047857600080fd5b50610481610fc1565b60405161048e919061435d565b60405180910390f35b3480156104a357600080fd5b506104ac610fc7565b6040516104b9919061435d565b60405180910390f35b3480156104ce57600080fd5b506104d7610fcd565b6040516104e4919061435d565b60405180910390f35b3480156104f957600080fd5b50610502610fd3565b60405161050f919061435d565b60405180910390f35b34801561052457600080fd5b5061052d610fd9565b60405161053a919061435d565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613a44565b610ff0565b604051610577919061435d565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190613d37565b611008565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190613ab1565b61108e565b005b3480156105de57600080fd5b506105e761109e565b005b3480156105f557600080fd5b50610610600480360381019061060b9190613a44565b611124565b60405161061d919061435d565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613d37565b61113c565b005b6106576111c2565b005b34801561066557600080fd5b50610680600480360381019061067b9190613ab1565b6112be565b005b34801561068e57600080fd5b506106976112de565b6040516106a491906141c5565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190613cee565b6112f1565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190613b87565b611387565b60405161070a91906141c5565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190613d37565b61140b565b604051610747919061415e565b60405180910390f35b34801561075c57600080fd5b50610765611421565b60405161077291906141fb565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190613d37565b6114af565b005b3480156107b057600080fd5b506107cb60048036038101906107c69190613a44565b611535565b6040516107d8919061435d565b60405180910390f35b3480156107ed57600080fd5b506107f6611605565b005b34801561080457600080fd5b5061080d61168d565b005b34801561081b57600080fd5b5061083660048036038101906108319190613d37565b611713565b005b34801561084457600080fd5b5061084d611799565b005b34801561085b57600080fd5b5061086461181f565b604051610871919061435d565b60405180910390f35b34801561088657600080fd5b5061088f611825565b60405161089c919061415e565b60405180910390f35b3480156108b157600080fd5b506108ba61184f565b6040516108c791906141e0565b60405180910390f35b3480156108dc57600080fd5b506108e5611855565b6040516108f291906141fb565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190613be7565b6118e7565b005b34801561093057600080fd5b50610939611a5f565b005b34801561094757600080fd5b50610962600480360381019061095d9190613b04565b611af8565b005b61097e60048036038101906109799190613d64565b611b74565b005b34801561098c57600080fd5b506109a760048036038101906109a29190613c67565b612027565b005b3480156109b557600080fd5b506109be6120ad565b6040516109cb919061435d565b60405180910390f35b3480156109e057600080fd5b506109e96120b3565b6040516109f691906141fb565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a219190613d37565b612141565b604051610a3391906141fb565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e9190613d37565b61229a565b005b348015610a7157600080fd5b50610a7a612320565b604051610a87919061435d565b60405180910390f35b348015610a9c57600080fd5b50610ab76004803603810190610ab29190613cee565b612326565b005b348015610ac557600080fd5b50610ae06004803603810190610adb9190613a71565b6123bc565b604051610aed91906141c5565b60405180910390f35b348015610b0257600080fd5b50610b1d6004803603810190610b189190613cee565b612450565b005b348015610b2b57600080fd5b50610b466004803603810190610b419190613a44565b6124e6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c1357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c235750610c22826125de565b5b9050919050565b600c5481565b60176020528060005260406000206000915054906101000a900460ff1681565b606060028054610c5f90614637565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8b90614637565b8015610cd85780601f10610cad57610100808354040283529160200191610cd8565b820191906000526020600020905b815481529060010190602001808311610cbb57829003601f168201915b5050505050905090565b600060016016541415610d4357601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f54610d3c9190614543565b9050610da7565b60036016541415610da257601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154610d9b9190614543565b9050610da7565b600090505b919050565b6000610db782612648565b610ded576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610e3590614637565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6190614637565b8015610eae5780601f10610e8357610100808354040283529160200191610eae565b820191906000526020600020905b815481529060010190602001808311610e9157829003601f168201915b505050505081565b6000610ec18261140b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f29576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f48612696565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f7a5750610f7881610f73612696565b6123bc565b155b15610fb1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fbc83838361269e565b505050565b60165481565b600f5481565b600d5481565b60115481565b6000610fe3612750565b6001546000540303905090565b60156020528060005260406000206000915090505481565b611010612696565b73ffffffffffffffffffffffffffffffffffffffff1661102e611825565b73ffffffffffffffffffffffffffffffffffffffff1614611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b9061429d565b60405180910390fd5b8060118190555050565b611099838383612755565b505050565b6110a6612696565b73ffffffffffffffffffffffffffffffffffffffff166110c4611825565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111119061429d565b60405180910390fd5b6001601681905550565b60146020528060005260406000206000915090505481565b611144612696565b73ffffffffffffffffffffffffffffffffffffffff16611162611825565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af9061429d565b60405180910390fd5b8060128190555050565b6111ca612696565b73ffffffffffffffffffffffffffffffffffffffff166111e8611825565b73ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112359061429d565b60405180910390fd5b6000611248611825565b73ffffffffffffffffffffffffffffffffffffffff164760405161126b90614149565b60006040518083038185875af1925050503d80600081146112a8576040519150601f19603f3d011682016040523d82523d6000602084013e6112ad565b606091505b50509050806112bb57600080fd5b50565b6112d983838360405180602001604052806000815250611af8565b505050565b601360009054906101000a900460ff1681565b6112f9612696565b73ffffffffffffffffffffffffffffffffffffffff16611317611825565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113649061429d565b60405180910390fd5b80600990805190602001906113839291906137aa565b5050565b6000808460405160200161139b91906140d1565b604051602081830303815290604052805190602001209050611401848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060185483612c0b565b9150509392505050565b600061141682612c22565b600001519050919050565b6009805461142e90614637565b80601f016020809104026020016040519081016040528092919081815260200182805461145a90614637565b80156114a75780601f1061147c576101008083540402835291602001916114a7565b820191906000526020600020905b81548152906001019060200180831161148a57829003601f168201915b505050505081565b6114b7612696565b73ffffffffffffffffffffffffffffffffffffffff166114d5611825565b73ffffffffffffffffffffffffffffffffffffffff161461152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229061429d565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61160d612696565b73ffffffffffffffffffffffffffffffffffffffff1661162b611825565b73ffffffffffffffffffffffffffffffffffffffff1614611681576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116789061429d565b60405180910390fd5b61168b6000612eb1565b565b611695612696565b73ffffffffffffffffffffffffffffffffffffffff166116b3611825565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061429d565b60405180910390fd5b6003601681905550565b61171b612696565b73ffffffffffffffffffffffffffffffffffffffff16611739611825565b73ffffffffffffffffffffffffffffffffffffffff161461178f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117869061429d565b60405180910390fd5b80600d8190555050565b6117a1612696565b73ffffffffffffffffffffffffffffffffffffffff166117bf611825565b73ffffffffffffffffffffffffffffffffffffffff1614611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c9061429d565b60405180910390fd5b6000601681905550565b60125481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60185481565b60606003805461186490614637565b80601f016020809104026020016040519081016040528092919081815260200182805461189090614637565b80156118dd5780601f106118b2576101008083540402835291602001916118dd565b820191906000526020600020905b8154815290600101906020018083116118c057829003601f168201915b5050505050905090565b6118ef612696565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611954576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611961612696565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a0e612696565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a5391906141c5565b60405180910390a35050565b611a67612696565b73ffffffffffffffffffffffffffffffffffffffff16611a85611825565b73ffffffffffffffffffffffffffffffffffffffff1614611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad29061429d565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b611b03848484612755565b611b228373ffffffffffffffffffffffffffffffffffffffff16612f77565b8015611b375750611b3584848484612f9a565b155b15611b6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000611b7e610fd9565b905060008411611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba9061433d565b60405180910390fd5b600e548482611bd29190614462565b1115611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a9061425d565b60405180910390fd5b611c1b611825565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f4e57600060165411611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c89906142bd565b60405180910390fd5b60016016541415611e16576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611cec338585611387565b611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d229061431d565b60405180910390fd5b600f54851115611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d679061427d565b60405180910390fd5b600f548582611d7f9190614462565b1115611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db79061423d565b60405180910390fd5b84600c54611dce91906144e9565b341015611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e07906142fd565b60405180910390fd5b50611f4d565b60036016541415611f4c576000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601154851115611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea19061427d565b60405180910390fd5b6011548582611eb99190614462565b1115611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef19061423d565b60405180910390fd5b84600d54611f0891906144e9565b341015611f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f41906142fd565b60405180910390fd5b505b5b5b611f5833856130fa565b60016016541415611fbe5783601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fb29190614462565b92505081905550612021565b600360165414156120205783601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120189190614462565b925050819055505b5b50505050565b61202f612696565b73ffffffffffffffffffffffffffffffffffffffff1661204d611825565b73ffffffffffffffffffffffffffffffffffffffff16146120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a9061429d565b60405180910390fd5b8060188190555050565b60105481565b600a80546120c090614637565b80601f01602080910402602001604051908101604052809291908181526020018280546120ec90614637565b80156121395780601f1061210e57610100808354040283529160200191612139565b820191906000526020600020905b81548152906001019060200180831161211c57829003601f168201915b505050505081565b606061214c82612648565b61218b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612182906142dd565b60405180910390fd5b60001515601360009054906101000a900460ff161515141561223957600b80546121b490614637565b80601f01602080910402602001604051908101604052809291908181526020018280546121e090614637565b801561222d5780601f106122025761010080835404028352916020019161222d565b820191906000526020600020905b81548152906001019060200180831161221057829003601f168201915b50505050509050612295565b6000612243613118565b905060008151116122635760405180602001604052806000815250612291565b8061226d846131aa565b600a60405160200161228193929190614118565b6040516020818303038152906040525b9150505b919050565b6122a2612696565b73ffffffffffffffffffffffffffffffffffffffff166122c0611825565b73ffffffffffffffffffffffffffffffffffffffff1614612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d9061429d565b60405180910390fd5b80600c8190555050565b600e5481565b61232e612696565b73ffffffffffffffffffffffffffffffffffffffff1661234c611825565b73ffffffffffffffffffffffffffffffffffffffff16146123a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123999061429d565b60405180910390fd5b80600a90805190602001906123b89291906137aa565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612458612696565b73ffffffffffffffffffffffffffffffffffffffff16612476611825565b73ffffffffffffffffffffffffffffffffffffffff16146124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c39061429d565b60405180910390fd5b80600b90805190602001906124e29291906137aa565b5050565b6124ee612696565b73ffffffffffffffffffffffffffffffffffffffff1661250c611825565b73ffffffffffffffffffffffffffffffffffffffff1614612562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125599061429d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c99061421d565b60405180910390fd5b6125db81612eb1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612653612750565b11158015612662575060005482105b801561268f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061276082612c22565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127ec612696565b73ffffffffffffffffffffffffffffffffffffffff16148061281b575061281a85612815612696565b6123bc565b5b806128605750612829612696565b73ffffffffffffffffffffffffffffffffffffffff1661284884610dac565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612899576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612900576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61290d858585600161330b565b6129196000848761269e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b99576000548214612b9857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c048585856001613311565b5050505050565b600082612c188584613317565b1490509392505050565b612c2a613830565b600082905080612c38612750565b11158015612c47575060005481105b15612e7a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e7857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d5c578092505050612eac565b5b600115612e7757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e72578092505050612eac565b612d5d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fc0612696565b8786866040518563ffffffff1660e01b8152600401612fe29493929190614179565b602060405180830381600087803b158015612ffc57600080fd5b505af192505050801561302d57506040513d601f19601f8201168201806040525081019061302a9190613cc1565b60015b6130a7573d806000811461305d576040519150601f19603f3d011682016040523d82523d6000602084013e613062565b606091505b5060008151141561309f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6131148282604051806020016040528060008152506133ca565b5050565b60606009805461312790614637565b80601f016020809104026020016040519081016040528092919081815260200182805461315390614637565b80156131a05780601f10613175576101008083540402835291602001916131a0565b820191906000526020600020905b81548152906001019060200180831161318357829003601f168201915b5050505050905090565b606060008214156131f2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613306565b600082905060005b6000821461322457808061320d9061469a565b915050600a8261321d91906144b8565b91506131fa565b60008167ffffffffffffffff8111156132405761323f6147fe565b5b6040519080825280601f01601f1916602001820160405280156132725781602001600182028036833780820191505090505b5090505b600085146132ff5760018261328b9190614543565b9150600a8561329a9190614711565b60306132a69190614462565b60f81b8183815181106132bc576132bb6147cf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132f891906144b8565b9450613276565b8093505050505b919050565b50505050565b50505050565b60008082905060005b84518110156133bf57600085828151811061333e5761333d6147cf565b5b6020026020010151905080831161337f5782816040516020016133629291906140ec565b6040516020818303038152906040528051906020012092506133ab565b80836040516020016133929291906140ec565b6040516020818303038152906040528051906020012092505b5080806133b79061469a565b915050613320565b508091505092915050565b6133d783838360016133dc565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613449576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613484576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613491600086838761330b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561365b575061365a8773ffffffffffffffffffffffffffffffffffffffff16612f77565b5b15613721575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136d06000888480600101955088612f9a565b613706576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561366157826000541461371c57600080fd5b61378d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613722575b8160008190555050506137a36000868387613311565b5050505050565b8280546137b690614637565b90600052602060002090601f0160209004810192826137d8576000855561381f565b82601f106137f157805160ff191683800117855561381f565b8280016001018555821561381f579182015b8281111561381e578251825591602001919060010190613803565b5b50905061382c9190613873565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561388c576000816000905550600101613874565b5090565b60006138a361389e8461439d565b614378565b9050828152602081018484840111156138bf576138be61483c565b5b6138ca8482856145f5565b509392505050565b60006138e56138e0846143ce565b614378565b9050828152602081018484840111156139015761390061483c565b5b61390c8482856145f5565b509392505050565b60008135905061392381614a78565b92915050565b60008083601f84011261393f5761393e614832565b5b8235905067ffffffffffffffff81111561395c5761395b61482d565b5b60208301915083602082028301111561397857613977614837565b5b9250929050565b60008135905061398e81614a8f565b92915050565b6000813590506139a381614aa6565b92915050565b6000813590506139b881614abd565b92915050565b6000815190506139cd81614abd565b92915050565b600082601f8301126139e8576139e7614832565b5b81356139f8848260208601613890565b91505092915050565b600082601f830112613a1657613a15614832565b5b8135613a268482602086016138d2565b91505092915050565b600081359050613a3e81614ad4565b92915050565b600060208284031215613a5a57613a59614846565b5b6000613a6884828501613914565b91505092915050565b60008060408385031215613a8857613a87614846565b5b6000613a9685828601613914565b9250506020613aa785828601613914565b9150509250929050565b600080600060608486031215613aca57613ac9614846565b5b6000613ad886828701613914565b9350506020613ae986828701613914565b9250506040613afa86828701613a2f565b9150509250925092565b60008060008060808587031215613b1e57613b1d614846565b5b6000613b2c87828801613914565b9450506020613b3d87828801613914565b9350506040613b4e87828801613a2f565b925050606085013567ffffffffffffffff811115613b6f57613b6e614841565b5b613b7b878288016139d3565b91505092959194509250565b600080600060408486031215613ba057613b9f614846565b5b6000613bae86828701613914565b935050602084013567ffffffffffffffff811115613bcf57613bce614841565b5b613bdb86828701613929565b92509250509250925092565b60008060408385031215613bfe57613bfd614846565b5b6000613c0c85828601613914565b9250506020613c1d8582860161397f565b9150509250929050565b60008060408385031215613c3e57613c3d614846565b5b6000613c4c85828601613914565b9250506020613c5d85828601613a2f565b9150509250929050565b600060208284031215613c7d57613c7c614846565b5b6000613c8b84828501613994565b91505092915050565b600060208284031215613caa57613ca9614846565b5b6000613cb8848285016139a9565b91505092915050565b600060208284031215613cd757613cd6614846565b5b6000613ce5848285016139be565b91505092915050565b600060208284031215613d0457613d03614846565b5b600082013567ffffffffffffffff811115613d2257613d21614841565b5b613d2e84828501613a01565b91505092915050565b600060208284031215613d4d57613d4c614846565b5b6000613d5b84828501613a2f565b91505092915050565b600080600060408486031215613d7d57613d7c614846565b5b6000613d8b86828701613a2f565b935050602084013567ffffffffffffffff811115613dac57613dab614841565b5b613db886828701613929565b92509250509250925092565b613dcd81614577565b82525050565b613de4613ddf82614577565b6146e3565b82525050565b613df381614589565b82525050565b613e0281614595565b82525050565b613e19613e1482614595565b6146f5565b82525050565b6000613e2a82614414565b613e34818561442a565b9350613e44818560208601614604565b613e4d8161484b565b840191505092915050565b6000613e638261441f565b613e6d8185614446565b9350613e7d818560208601614604565b613e868161484b565b840191505092915050565b6000613e9c8261441f565b613ea68185614457565b9350613eb6818560208601614604565b80840191505092915050565b60008154613ecf81614637565b613ed98186614457565b94506001821660008114613ef45760018114613f0557613f38565b60ff19831686528186019350613f38565b613f0e856143ff565b60005b83811015613f3057815481890152600182019150602081019050613f11565b838801955050505b50505092915050565b6000613f4e602683614446565b9150613f5982614869565b604082019050919050565b6000613f71601c83614446565b9150613f7c826148b8565b602082019050919050565b6000613f94601683614446565b9150613f9f826148e1565b602082019050919050565b6000613fb7602483614446565b9150613fc28261490a565b604082019050919050565b6000613fda602083614446565b9150613fe582614959565b602082019050919050565b6000613ffd601683614446565b915061400882614982565b602082019050919050565b6000614020602f83614446565b915061402b826149ab565b604082019050919050565b600061404360008361443b565b915061404e826149fa565b600082019050919050565b6000614066601283614446565b9150614071826149fd565b602082019050919050565b6000614089601783614446565b915061409482614a26565b602082019050919050565b60006140ac601b83614446565b91506140b782614a4f565b602082019050919050565b6140cb816145eb565b82525050565b60006140dd8284613dd3565b60148201915081905092915050565b60006140f88285613e08565b6020820191506141088284613e08565b6020820191508190509392505050565b60006141248286613e91565b91506141308285613e91565b915061413c8284613ec2565b9150819050949350505050565b600061415482614036565b9150819050919050565b60006020820190506141736000830184613dc4565b92915050565b600060808201905061418e6000830187613dc4565b61419b6020830186613dc4565b6141a860408301856140c2565b81810360608301526141ba8184613e1f565b905095945050505050565b60006020820190506141da6000830184613dea565b92915050565b60006020820190506141f56000830184613df9565b92915050565b600060208201905081810360008301526142158184613e58565b905092915050565b6000602082019050818103600083015261423681613f41565b9050919050565b6000602082019050818103600083015261425681613f64565b9050919050565b6000602082019050818103600083015261427681613f87565b9050919050565b6000602082019050818103600083015261429681613faa565b9050919050565b600060208201905081810360008301526142b681613fcd565b9050919050565b600060208201905081810360008301526142d681613ff0565b9050919050565b600060208201905081810360008301526142f681614013565b9050919050565b6000602082019050818103600083015261431681614059565b9050919050565b600060208201905081810360008301526143368161407c565b9050919050565b600060208201905081810360008301526143568161409f565b9050919050565b600060208201905061437260008301846140c2565b92915050565b6000614382614393565b905061438e8282614669565b919050565b6000604051905090565b600067ffffffffffffffff8211156143b8576143b76147fe565b5b6143c18261484b565b9050602081019050919050565b600067ffffffffffffffff8211156143e9576143e86147fe565b5b6143f28261484b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061446d826145eb565b9150614478836145eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144ad576144ac614742565b5b828201905092915050565b60006144c3826145eb565b91506144ce836145eb565b9250826144de576144dd614771565b5b828204905092915050565b60006144f4826145eb565b91506144ff836145eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561453857614537614742565b5b828202905092915050565b600061454e826145eb565b9150614559836145eb565b92508282101561456c5761456b614742565b5b828203905092915050565b6000614582826145cb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614622578082015181840152602081019050614607565b83811115614631576000848401525b50505050565b6000600282049050600182168061464f57607f821691505b60208210811415614663576146626147a0565b5b50919050565b6146728261484b565b810181811067ffffffffffffffff82111715614691576146906147fe565b5b80604052505050565b60006146a5826145eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146d8576146d7614742565b5b600182019050919050565b60006146ee826146ff565b9050919050565b6000819050919050565b600061470a8261485c565b9050919050565b600061471c826145eb565b9150614727836145eb565b92508261473757614736614771565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614a8181614577565b8114614a8c57600080fd5b50565b614a9881614589565b8114614aa357600080fd5b50565b614aaf81614595565b8114614aba57600080fd5b50565b614ac68161459f565b8114614ad157600080fd5b50565b614add816145eb565b8114614ae857600080fd5b5056fea2646970667358221220dffba5c990fea101c9481f99dae9bf52992c48124bfcaf8cd8ba722a73f48a5a64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80636c0360eb11610175578063a475b5dd116100dc578063c87b56dd11610095578063da3ef23f1161006f578063da3ef23f14610a90578063e985e9c514610ab9578063f2c4ce1e14610af6578063f2fde38b14610b1f576102c9565b8063c87b56dd146109ff578063d1d1921314610a3c578063d5abeb0114610a65576102c9565b8063a475b5dd14610924578063b88d4fde1461093b578063ba41b0c614610964578063bd32fb6614610980578063c3ceedbd146109a9578063c6682862146109d4576102c9565b80638456cb591161012e5780638456cb5914610838578063872d10ea1461084f5780638da5cb5b1461087a5780638e1f9cfe146108a557806395d89b41146108d0578063a22cb465146108fb576102c9565b80636c0360eb146107505780636eddb9e31461077b57806370a08231146107a4578063715018a6146107e157806377e56357146107f8578063811d24371461080f576102c9565b806318160ddd116102345780633c59b86a116101ed57806351830227116101c7578063518302271461068257806355f804b3146106ad5780635a23dd99146106d65780636352211e14610713576102c9565b80633c59b86a146106265780633ccfd60b1461064f57806342842e0e14610659576102c9565b806318160ddd1461051857806318cae26914610543578063231878d11461058057806323b872dd146105a9578063295e4c33146105d257806337546c67146105e9576102c9565b8063081c8c4411610286578063081c8c4414610418578063095ea7b3146104435780630c3f6acf1461046c57806313093b1d1461049757806313faede6146104c257806317f7bece146104ed576102c9565b806301ffc9a7146102ce57806306afd5921461030b57806306c933d81461033657806306fdde031461037357806307656e331461039e578063081812fc146103db575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613c94565b610b48565b60405161030291906141c5565b60405180910390f35b34801561031757600080fd5b50610320610c2a565b60405161032d919061435d565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613a44565b610c30565b60405161036a91906141c5565b60405180910390f35b34801561037f57600080fd5b50610388610c50565b60405161039591906141fb565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190613a44565b610ce2565b6040516103d2919061435d565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190613d37565b610dac565b60405161040f919061415e565b60405180910390f35b34801561042457600080fd5b5061042d610e28565b60405161043a91906141fb565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190613c27565b610eb6565b005b34801561047857600080fd5b50610481610fc1565b60405161048e919061435d565b60405180910390f35b3480156104a357600080fd5b506104ac610fc7565b6040516104b9919061435d565b60405180910390f35b3480156104ce57600080fd5b506104d7610fcd565b6040516104e4919061435d565b60405180910390f35b3480156104f957600080fd5b50610502610fd3565b60405161050f919061435d565b60405180910390f35b34801561052457600080fd5b5061052d610fd9565b60405161053a919061435d565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190613a44565b610ff0565b604051610577919061435d565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a29190613d37565b611008565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190613ab1565b61108e565b005b3480156105de57600080fd5b506105e761109e565b005b3480156105f557600080fd5b50610610600480360381019061060b9190613a44565b611124565b60405161061d919061435d565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613d37565b61113c565b005b6106576111c2565b005b34801561066557600080fd5b50610680600480360381019061067b9190613ab1565b6112be565b005b34801561068e57600080fd5b506106976112de565b6040516106a491906141c5565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190613cee565b6112f1565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190613b87565b611387565b60405161070a91906141c5565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190613d37565b61140b565b604051610747919061415e565b60405180910390f35b34801561075c57600080fd5b50610765611421565b60405161077291906141fb565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190613d37565b6114af565b005b3480156107b057600080fd5b506107cb60048036038101906107c69190613a44565b611535565b6040516107d8919061435d565b60405180910390f35b3480156107ed57600080fd5b506107f6611605565b005b34801561080457600080fd5b5061080d61168d565b005b34801561081b57600080fd5b5061083660048036038101906108319190613d37565b611713565b005b34801561084457600080fd5b5061084d611799565b005b34801561085b57600080fd5b5061086461181f565b604051610871919061435d565b60405180910390f35b34801561088657600080fd5b5061088f611825565b60405161089c919061415e565b60405180910390f35b3480156108b157600080fd5b506108ba61184f565b6040516108c791906141e0565b60405180910390f35b3480156108dc57600080fd5b506108e5611855565b6040516108f291906141fb565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190613be7565b6118e7565b005b34801561093057600080fd5b50610939611a5f565b005b34801561094757600080fd5b50610962600480360381019061095d9190613b04565b611af8565b005b61097e60048036038101906109799190613d64565b611b74565b005b34801561098c57600080fd5b506109a760048036038101906109a29190613c67565b612027565b005b3480156109b557600080fd5b506109be6120ad565b6040516109cb919061435d565b60405180910390f35b3480156109e057600080fd5b506109e96120b3565b6040516109f691906141fb565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a219190613d37565b612141565b604051610a3391906141fb565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e9190613d37565b61229a565b005b348015610a7157600080fd5b50610a7a612320565b604051610a87919061435d565b60405180910390f35b348015610a9c57600080fd5b50610ab76004803603810190610ab29190613cee565b612326565b005b348015610ac557600080fd5b50610ae06004803603810190610adb9190613a71565b6123bc565b604051610aed91906141c5565b60405180910390f35b348015610b0257600080fd5b50610b1d6004803603810190610b189190613cee565b612450565b005b348015610b2b57600080fd5b50610b466004803603810190610b419190613a44565b6124e6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c1357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c235750610c22826125de565b5b9050919050565b600c5481565b60176020528060005260406000206000915054906101000a900460ff1681565b606060028054610c5f90614637565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8b90614637565b8015610cd85780601f10610cad57610100808354040283529160200191610cd8565b820191906000526020600020905b815481529060010190602001808311610cbb57829003601f168201915b5050505050905090565b600060016016541415610d4357601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600f54610d3c9190614543565b9050610da7565b60036016541415610da257601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601154610d9b9190614543565b9050610da7565b600090505b919050565b6000610db782612648565b610ded576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610e3590614637565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6190614637565b8015610eae5780601f10610e8357610100808354040283529160200191610eae565b820191906000526020600020905b815481529060010190602001808311610e9157829003601f168201915b505050505081565b6000610ec18261140b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f29576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f48612696565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f7a5750610f7881610f73612696565b6123bc565b155b15610fb1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fbc83838361269e565b505050565b60165481565b600f5481565b600d5481565b60115481565b6000610fe3612750565b6001546000540303905090565b60156020528060005260406000206000915090505481565b611010612696565b73ffffffffffffffffffffffffffffffffffffffff1661102e611825565b73ffffffffffffffffffffffffffffffffffffffff1614611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b9061429d565b60405180910390fd5b8060118190555050565b611099838383612755565b505050565b6110a6612696565b73ffffffffffffffffffffffffffffffffffffffff166110c4611825565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111119061429d565b60405180910390fd5b6001601681905550565b60146020528060005260406000206000915090505481565b611144612696565b73ffffffffffffffffffffffffffffffffffffffff16611162611825565b73ffffffffffffffffffffffffffffffffffffffff16146111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af9061429d565b60405180910390fd5b8060128190555050565b6111ca612696565b73ffffffffffffffffffffffffffffffffffffffff166111e8611825565b73ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112359061429d565b60405180910390fd5b6000611248611825565b73ffffffffffffffffffffffffffffffffffffffff164760405161126b90614149565b60006040518083038185875af1925050503d80600081146112a8576040519150601f19603f3d011682016040523d82523d6000602084013e6112ad565b606091505b50509050806112bb57600080fd5b50565b6112d983838360405180602001604052806000815250611af8565b505050565b601360009054906101000a900460ff1681565b6112f9612696565b73ffffffffffffffffffffffffffffffffffffffff16611317611825565b73ffffffffffffffffffffffffffffffffffffffff161461136d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113649061429d565b60405180910390fd5b80600990805190602001906113839291906137aa565b5050565b6000808460405160200161139b91906140d1565b604051602081830303815290604052805190602001209050611401848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060185483612c0b565b9150509392505050565b600061141682612c22565b600001519050919050565b6009805461142e90614637565b80601f016020809104026020016040519081016040528092919081815260200182805461145a90614637565b80156114a75780601f1061147c576101008083540402835291602001916114a7565b820191906000526020600020905b81548152906001019060200180831161148a57829003601f168201915b505050505081565b6114b7612696565b73ffffffffffffffffffffffffffffffffffffffff166114d5611825565b73ffffffffffffffffffffffffffffffffffffffff161461152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229061429d565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61160d612696565b73ffffffffffffffffffffffffffffffffffffffff1661162b611825565b73ffffffffffffffffffffffffffffffffffffffff1614611681576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116789061429d565b60405180910390fd5b61168b6000612eb1565b565b611695612696565b73ffffffffffffffffffffffffffffffffffffffff166116b3611825565b73ffffffffffffffffffffffffffffffffffffffff1614611709576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117009061429d565b60405180910390fd5b6003601681905550565b61171b612696565b73ffffffffffffffffffffffffffffffffffffffff16611739611825565b73ffffffffffffffffffffffffffffffffffffffff161461178f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117869061429d565b60405180910390fd5b80600d8190555050565b6117a1612696565b73ffffffffffffffffffffffffffffffffffffffff166117bf611825565b73ffffffffffffffffffffffffffffffffffffffff1614611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c9061429d565b60405180910390fd5b6000601681905550565b60125481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60185481565b60606003805461186490614637565b80601f016020809104026020016040519081016040528092919081815260200182805461189090614637565b80156118dd5780601f106118b2576101008083540402835291602001916118dd565b820191906000526020600020905b8154815290600101906020018083116118c057829003601f168201915b5050505050905090565b6118ef612696565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611954576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611961612696565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a0e612696565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a5391906141c5565b60405180910390a35050565b611a67612696565b73ffffffffffffffffffffffffffffffffffffffff16611a85611825565b73ffffffffffffffffffffffffffffffffffffffff1614611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad29061429d565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b611b03848484612755565b611b228373ffffffffffffffffffffffffffffffffffffffff16612f77565b8015611b375750611b3584848484612f9a565b155b15611b6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000611b7e610fd9565b905060008411611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba9061433d565b60405180910390fd5b600e548482611bd29190614462565b1115611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a9061425d565b60405180910390fd5b611c1b611825565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f4e57600060165411611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c89906142bd565b60405180910390fd5b60016016541415611e16576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611cec338585611387565b611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d229061431d565b60405180910390fd5b600f54851115611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d679061427d565b60405180910390fd5b600f548582611d7f9190614462565b1115611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db79061423d565b60405180910390fd5b84600c54611dce91906144e9565b341015611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e07906142fd565b60405180910390fd5b50611f4d565b60036016541415611f4c576000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601154851115611eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea19061427d565b60405180910390fd5b6011548582611eb99190614462565b1115611efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef19061423d565b60405180910390fd5b84600d54611f0891906144e9565b341015611f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f41906142fd565b60405180910390fd5b505b5b5b611f5833856130fa565b60016016541415611fbe5783601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fb29190614462565b92505081905550612021565b600360165414156120205783601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120189190614462565b925050819055505b5b50505050565b61202f612696565b73ffffffffffffffffffffffffffffffffffffffff1661204d611825565b73ffffffffffffffffffffffffffffffffffffffff16146120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a9061429d565b60405180910390fd5b8060188190555050565b60105481565b600a80546120c090614637565b80601f01602080910402602001604051908101604052809291908181526020018280546120ec90614637565b80156121395780601f1061210e57610100808354040283529160200191612139565b820191906000526020600020905b81548152906001019060200180831161211c57829003601f168201915b505050505081565b606061214c82612648565b61218b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612182906142dd565b60405180910390fd5b60001515601360009054906101000a900460ff161515141561223957600b80546121b490614637565b80601f01602080910402602001604051908101604052809291908181526020018280546121e090614637565b801561222d5780601f106122025761010080835404028352916020019161222d565b820191906000526020600020905b81548152906001019060200180831161221057829003601f168201915b50505050509050612295565b6000612243613118565b905060008151116122635760405180602001604052806000815250612291565b8061226d846131aa565b600a60405160200161228193929190614118565b6040516020818303038152906040525b9150505b919050565b6122a2612696565b73ffffffffffffffffffffffffffffffffffffffff166122c0611825565b73ffffffffffffffffffffffffffffffffffffffff1614612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d9061429d565b60405180910390fd5b80600c8190555050565b600e5481565b61232e612696565b73ffffffffffffffffffffffffffffffffffffffff1661234c611825565b73ffffffffffffffffffffffffffffffffffffffff16146123a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123999061429d565b60405180910390fd5b80600a90805190602001906123b89291906137aa565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612458612696565b73ffffffffffffffffffffffffffffffffffffffff16612476611825565b73ffffffffffffffffffffffffffffffffffffffff16146124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c39061429d565b60405180910390fd5b80600b90805190602001906124e29291906137aa565b5050565b6124ee612696565b73ffffffffffffffffffffffffffffffffffffffff1661250c611825565b73ffffffffffffffffffffffffffffffffffffffff1614612562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125599061429d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c99061421d565b60405180910390fd5b6125db81612eb1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612653612750565b11158015612662575060005482105b801561268f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061276082612c22565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166127ec612696565b73ffffffffffffffffffffffffffffffffffffffff16148061281b575061281a85612815612696565b6123bc565b5b806128605750612829612696565b73ffffffffffffffffffffffffffffffffffffffff1661284884610dac565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612899576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612900576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61290d858585600161330b565b6129196000848761269e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b99576000548214612b9857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c048585856001613311565b5050505050565b600082612c188584613317565b1490509392505050565b612c2a613830565b600082905080612c38612750565b11158015612c47575060005481105b15612e7a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612e7857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d5c578092505050612eac565b5b600115612e7757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e72578092505050612eac565b612d5d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fc0612696565b8786866040518563ffffffff1660e01b8152600401612fe29493929190614179565b602060405180830381600087803b158015612ffc57600080fd5b505af192505050801561302d57506040513d601f19601f8201168201806040525081019061302a9190613cc1565b60015b6130a7573d806000811461305d576040519150601f19603f3d011682016040523d82523d6000602084013e613062565b606091505b5060008151141561309f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6131148282604051806020016040528060008152506133ca565b5050565b60606009805461312790614637565b80601f016020809104026020016040519081016040528092919081815260200182805461315390614637565b80156131a05780601f10613175576101008083540402835291602001916131a0565b820191906000526020600020905b81548152906001019060200180831161318357829003601f168201915b5050505050905090565b606060008214156131f2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613306565b600082905060005b6000821461322457808061320d9061469a565b915050600a8261321d91906144b8565b91506131fa565b60008167ffffffffffffffff8111156132405761323f6147fe565b5b6040519080825280601f01601f1916602001820160405280156132725781602001600182028036833780820191505090505b5090505b600085146132ff5760018261328b9190614543565b9150600a8561329a9190614711565b60306132a69190614462565b60f81b8183815181106132bc576132bb6147cf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132f891906144b8565b9450613276565b8093505050505b919050565b50505050565b50505050565b60008082905060005b84518110156133bf57600085828151811061333e5761333d6147cf565b5b6020026020010151905080831161337f5782816040516020016133629291906140ec565b6040516020818303038152906040528051906020012092506133ab565b80836040516020016133929291906140ec565b6040516020818303038152906040528051906020012092505b5080806133b79061469a565b915050613320565b508091505092915050565b6133d783838360016133dc565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613449576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613484576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613491600086838761330b565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561365b575061365a8773ffffffffffffffffffffffffffffffffffffffff16612f77565b5b15613721575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136d06000888480600101955088612f9a565b613706576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561366157826000541461371c57600080fd5b61378d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613722575b8160008190555050506137a36000868387613311565b5050505050565b8280546137b690614637565b90600052602060002090601f0160209004810192826137d8576000855561381f565b82601f106137f157805160ff191683800117855561381f565b8280016001018555821561381f579182015b8281111561381e578251825591602001919060010190613803565b5b50905061382c9190613873565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561388c576000816000905550600101613874565b5090565b60006138a361389e8461439d565b614378565b9050828152602081018484840111156138bf576138be61483c565b5b6138ca8482856145f5565b509392505050565b60006138e56138e0846143ce565b614378565b9050828152602081018484840111156139015761390061483c565b5b61390c8482856145f5565b509392505050565b60008135905061392381614a78565b92915050565b60008083601f84011261393f5761393e614832565b5b8235905067ffffffffffffffff81111561395c5761395b61482d565b5b60208301915083602082028301111561397857613977614837565b5b9250929050565b60008135905061398e81614a8f565b92915050565b6000813590506139a381614aa6565b92915050565b6000813590506139b881614abd565b92915050565b6000815190506139cd81614abd565b92915050565b600082601f8301126139e8576139e7614832565b5b81356139f8848260208601613890565b91505092915050565b600082601f830112613a1657613a15614832565b5b8135613a268482602086016138d2565b91505092915050565b600081359050613a3e81614ad4565b92915050565b600060208284031215613a5a57613a59614846565b5b6000613a6884828501613914565b91505092915050565b60008060408385031215613a8857613a87614846565b5b6000613a9685828601613914565b9250506020613aa785828601613914565b9150509250929050565b600080600060608486031215613aca57613ac9614846565b5b6000613ad886828701613914565b9350506020613ae986828701613914565b9250506040613afa86828701613a2f565b9150509250925092565b60008060008060808587031215613b1e57613b1d614846565b5b6000613b2c87828801613914565b9450506020613b3d87828801613914565b9350506040613b4e87828801613a2f565b925050606085013567ffffffffffffffff811115613b6f57613b6e614841565b5b613b7b878288016139d3565b91505092959194509250565b600080600060408486031215613ba057613b9f614846565b5b6000613bae86828701613914565b935050602084013567ffffffffffffffff811115613bcf57613bce614841565b5b613bdb86828701613929565b92509250509250925092565b60008060408385031215613bfe57613bfd614846565b5b6000613c0c85828601613914565b9250506020613c1d8582860161397f565b9150509250929050565b60008060408385031215613c3e57613c3d614846565b5b6000613c4c85828601613914565b9250506020613c5d85828601613a2f565b9150509250929050565b600060208284031215613c7d57613c7c614846565b5b6000613c8b84828501613994565b91505092915050565b600060208284031215613caa57613ca9614846565b5b6000613cb8848285016139a9565b91505092915050565b600060208284031215613cd757613cd6614846565b5b6000613ce5848285016139be565b91505092915050565b600060208284031215613d0457613d03614846565b5b600082013567ffffffffffffffff811115613d2257613d21614841565b5b613d2e84828501613a01565b91505092915050565b600060208284031215613d4d57613d4c614846565b5b6000613d5b84828501613a2f565b91505092915050565b600080600060408486031215613d7d57613d7c614846565b5b6000613d8b86828701613a2f565b935050602084013567ffffffffffffffff811115613dac57613dab614841565b5b613db886828701613929565b92509250509250925092565b613dcd81614577565b82525050565b613de4613ddf82614577565b6146e3565b82525050565b613df381614589565b82525050565b613e0281614595565b82525050565b613e19613e1482614595565b6146f5565b82525050565b6000613e2a82614414565b613e34818561442a565b9350613e44818560208601614604565b613e4d8161484b565b840191505092915050565b6000613e638261441f565b613e6d8185614446565b9350613e7d818560208601614604565b613e868161484b565b840191505092915050565b6000613e9c8261441f565b613ea68185614457565b9350613eb6818560208601614604565b80840191505092915050565b60008154613ecf81614637565b613ed98186614457565b94506001821660008114613ef45760018114613f0557613f38565b60ff19831686528186019350613f38565b613f0e856143ff565b60005b83811015613f3057815481890152600182019150602081019050613f11565b838801955050505b50505092915050565b6000613f4e602683614446565b9150613f5982614869565b604082019050919050565b6000613f71601c83614446565b9150613f7c826148b8565b602082019050919050565b6000613f94601683614446565b9150613f9f826148e1565b602082019050919050565b6000613fb7602483614446565b9150613fc28261490a565b604082019050919050565b6000613fda602083614446565b9150613fe582614959565b602082019050919050565b6000613ffd601683614446565b915061400882614982565b602082019050919050565b6000614020602f83614446565b915061402b826149ab565b604082019050919050565b600061404360008361443b565b915061404e826149fa565b600082019050919050565b6000614066601283614446565b9150614071826149fd565b602082019050919050565b6000614089601783614446565b915061409482614a26565b602082019050919050565b60006140ac601b83614446565b91506140b782614a4f565b602082019050919050565b6140cb816145eb565b82525050565b60006140dd8284613dd3565b60148201915081905092915050565b60006140f88285613e08565b6020820191506141088284613e08565b6020820191508190509392505050565b60006141248286613e91565b91506141308285613e91565b915061413c8284613ec2565b9150819050949350505050565b600061415482614036565b9150819050919050565b60006020820190506141736000830184613dc4565b92915050565b600060808201905061418e6000830187613dc4565b61419b6020830186613dc4565b6141a860408301856140c2565b81810360608301526141ba8184613e1f565b905095945050505050565b60006020820190506141da6000830184613dea565b92915050565b60006020820190506141f56000830184613df9565b92915050565b600060208201905081810360008301526142158184613e58565b905092915050565b6000602082019050818103600083015261423681613f41565b9050919050565b6000602082019050818103600083015261425681613f64565b9050919050565b6000602082019050818103600083015261427681613f87565b9050919050565b6000602082019050818103600083015261429681613faa565b9050919050565b600060208201905081810360008301526142b681613fcd565b9050919050565b600060208201905081810360008301526142d681613ff0565b9050919050565b600060208201905081810360008301526142f681614013565b9050919050565b6000602082019050818103600083015261431681614059565b9050919050565b600060208201905081810360008301526143368161407c565b9050919050565b600060208201905081810360008301526143568161409f565b9050919050565b600060208201905061437260008301846140c2565b92915050565b6000614382614393565b905061438e8282614669565b919050565b6000604051905090565b600067ffffffffffffffff8211156143b8576143b76147fe565b5b6143c18261484b565b9050602081019050919050565b600067ffffffffffffffff8211156143e9576143e86147fe565b5b6143f28261484b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061446d826145eb565b9150614478836145eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144ad576144ac614742565b5b828201905092915050565b60006144c3826145eb565b91506144ce836145eb565b9250826144de576144dd614771565b5b828204905092915050565b60006144f4826145eb565b91506144ff836145eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561453857614537614742565b5b828202905092915050565b600061454e826145eb565b9150614559836145eb565b92508282101561456c5761456b614742565b5b828203905092915050565b6000614582826145cb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614622578082015181840152602081019050614607565b83811115614631576000848401525b50505050565b6000600282049050600182168061464f57607f821691505b60208210811415614663576146626147a0565b5b50919050565b6146728261484b565b810181811067ffffffffffffffff82111715614691576146906147fe565b5b80604052505050565b60006146a5826145eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146d8576146d7614742565b5b600182019050919050565b60006146ee826146ff565b9050919050565b6000819050919050565b600061470a8261485c565b9050919050565b600061471c826145eb565b9150614727836145eb565b92508261473757614736614771565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b614a8181614577565b8114614a8c57600080fd5b50565b614a9881614589565b8114614aa357600080fd5b50565b614aaf81614595565b8114614aba57600080fd5b50565b614ac68161459f565b8114614ad157600080fd5b50565b614add816145eb565b8114614ae857600080fd5b5056fea2646970667358221220dffba5c990fea101c9481f99dae9bf52992c48124bfcaf8cd8ba722a73f48a5a64736f6c63430008070033

Deployed Bytecode Sourcemap

46928:6376:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26642:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47117:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47623:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29755:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50261:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31258:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47082:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30821:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47583:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47235:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47158:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47326:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25891:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47519:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51548:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32123:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52329:82;;;;;;;;;;;;;:::i;:::-;;47455:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51426:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52820:481;;;:::i;:::-;;32364:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47420:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51847:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49978:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29563:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47010:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51713:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27011:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46074:103;;;;;;;;;;;;;:::i;:::-;;52419:73;;;;;;;;;;;;;:::i;:::-;;52630:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52252:69;;;;;;;;;;;;;:::i;:::-;;47372:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45423:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47684:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29924:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31534:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51349:69;;;;;;;;;;;;;:::i;:::-;;32620:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47994:1976;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52500:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47276:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47038:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50598:725;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52726:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47197:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51959:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31892:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52118:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46332:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26642:305;26744:4;26796:25;26781:40;;;:11;:40;;;;:105;;;;26853:33;26838:48;;;:11;:48;;;;26781:105;:158;;;;26903:36;26927:11;26903:23;:36::i;:::-;26781:158;26761:178;;26642:305;;;:::o;47117:34::-;;;;:::o;47623:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;29755:100::-;29809:13;29842:5;29835:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29755:100;:::o;50261:329::-;50328:7;50368:1;50352:12;;:17;50348:216;;;50411:22;:29;50434:5;50411:29;;;;;;;;;;;;;;;;50393:15;;:47;;;;:::i;:::-;50386:54;;;;50348:216;50478:1;50462:12;;:17;50458:106;;;50525:20;:27;50546:5;50525:27;;;;;;;;;;;;;;;;50503:19;;:49;;;;:::i;:::-;50496:56;;;;50458:106;50581:1;50574:8;;50261:329;;;;:::o;31258:204::-;31326:7;31351:16;31359:7;31351;:16::i;:::-;31346:64;;31376:34;;;;;;;;;;;;;;31346:64;31430:15;:24;31446:7;31430:24;;;;;;;;;;;;;;;;;;;;;31423:31;;31258:204;;;:::o;47082:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30821:371::-;30894:13;30910:24;30926:7;30910:15;:24::i;:::-;30894:40;;30955:5;30949:11;;:2;:11;;;30945:48;;;30969:24;;;;;;;;;;;;;;30945:48;31026:5;31010:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31036:37;31053:5;31060:12;:10;:12::i;:::-;31036:16;:37::i;:::-;31035:38;31010:63;31006:138;;;31097:35;;;;;;;;;;;;;;31006:138;31156:28;31165:2;31169:7;31178:5;31156:8;:28::i;:::-;30883:309;30821:371;;:::o;47583:31::-;;;;:::o;47235:34::-;;;;:::o;47158:32::-;;;;:::o;47326:39::-;;;;:::o;25891:303::-;25935:7;26160:15;:13;:15::i;:::-;26145:12;;26129:13;;:28;:46;26122:53;;25891:303;:::o;47519:55::-;;;;;;;;;;;;;;;;;:::o;51548:157::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51680:17:::1;51658:19;:39;;;;51548:157:::0;:::o;32123:170::-;32257:28;32267:4;32273:2;32277:7;32257:9;:28::i;:::-;32123:170;;;:::o;52329:82::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52402:1:::1;52387:12;:16;;;;52329:82::o:0;47455:57::-;;;;;;;;;;;;;;;;;:::o;51426:114::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51526:6:::1;51503:20;:29;;;;51426:114:::0;:::o;52820:481::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53113:7:::1;53134;:5;:7::i;:::-;53126:21;;53155;53126:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53112:69;;;53200:2;53192:11;;;::::0;::::1;;52865:436;52820:481::o:0;32364:185::-;32502:39;32519:4;32525:2;32529:7;32502:39;;;;;;;;;;;;:16;:39::i;:::-;32364:185;;;:::o;47420:28::-;;;;;;;;;;;;;:::o;51847:104::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51932:11:::1;51922:7;:21;;;;;;;;;;;;:::i;:::-;;51847:104:::0;:::o;49978:275::-;50097:4;50119:12;50161:5;50144:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;50134:34;;;;;;50119:49;;50186:59;50205:12;;50186:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50219:19;;50240:4;50186:18;:59::i;:::-;50179:66;;;49978:275;;;;;:::o;29563:125::-;29627:7;29654:21;29667:7;29654:12;:21::i;:::-;:26;;;29647:33;;29563:125;;;:::o;47010:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51713:126::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51814:17:::1;51796:15;:35;;;;51713:126:::0;:::o;27011:206::-;27075:7;27116:1;27099:19;;:5;:19;;;27095:60;;;27127:28;;;;;;;;;;;;;;27095:60;27181:12;:19;27194:5;27181:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27173:36;;27166:43;;27011:206;;;:::o;46074:103::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46139:30:::1;46166:1;46139:18;:30::i;:::-;46074:103::o:0;52419:73::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52483:1:::1;52468:12;:16;;;;52419:73::o:0;52630:88::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52704:6:::1;52697:4;:13;;;;52630:88:::0;:::o;52252:69::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52312:1:::1;52297:12;:16;;;;52252:69::o:0;47372:39::-;;;;:::o;45423:87::-;45469:7;45496:6;;;;;;;;;;;45489:13;;45423:87;:::o;47684:112::-;;;;:::o;29924:104::-;29980:13;30013:7;30006:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29924:104;:::o;31534:287::-;31645:12;:10;:12::i;:::-;31633:24;;:8;:24;;;31629:54;;;31666:17;;;;;;;;;;;;;;31629:54;31741:8;31696:18;:32;31715:12;:10;:12::i;:::-;31696:32;;;;;;;;;;;;;;;:42;31729:8;31696:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31794:8;31765:48;;31780:12;:10;:12::i;:::-;31765:48;;;31804:8;31765:48;;;;;;:::i;:::-;;;;;;;;31534:287;;:::o;51349:69::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51406:4:::1;51395:8;;:15;;;;;;;;;;;;;;;;;;51349:69::o:0;32620:369::-;32787:28;32797:4;32803:2;32807:7;32787:9;:28::i;:::-;32830:15;:2;:13;;;:15::i;:::-;:76;;;;;32850:56;32881:4;32887:2;32891:7;32900:5;32850:30;:56::i;:::-;32849:57;32830:76;32826:156;;;32930:40;;;;;;;;;;;;;;32826:156;32620:369;;;;:::o;47994:1976::-;48111:14;48128:13;:11;:13::i;:::-;48111:30;;48174:1;48160:11;:15;48152:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48250:9;;48235:11;48226:6;:20;;;;:::i;:::-;:33;;48218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48315:7;:5;:7::i;:::-;48301:21;;:10;:21;;;48297:1407;;48362:1;48347:12;;:16;48339:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48425:1;48409:12;;:17;48405:1288;;;48447:24;48474:22;:34;48497:10;48474:34;;;;;;;;;;;;;;;;48447:61;;48557:39;48571:10;48583:12;;48557:13;:39::i;:::-;48527:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;48727:15;;48712:11;:30;;48682:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;48905:15;;48890:11;48871:16;:30;;;;:::i;:::-;:49;;48841:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;49063:11;49054:6;;:20;;;;:::i;:::-;49041:9;:33;;49011:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;48428:724;48405:1288;;;49178:1;49162:12;;:17;49158:535;;;49200:24;49227:20;:32;49248:10;49227:32;;;;;;;;;;;;;;;;49200:59;;49323:19;;49308:11;:34;;49278:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;49505:19;;49490:11;49471:16;:30;;;;:::i;:::-;:53;;49441:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;49643:11;49636:4;;:18;;;;:::i;:::-;49623:9;:31;;49615:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49181:512;49158:535;48405:1288;48297:1407;49716:34;49726:10;49738:11;49716:9;:34::i;:::-;49781:1;49765:12;;:17;49761:202;;;49837:11;49799:22;:34;49822:10;49799:34;;;;;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;;49761:202;;;49886:1;49870:12;;:17;49866:97;;;49940:11;49904:20;:32;49925:10;49904:32;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;49866:97;49761:202;48100:1870;47994:1976;;;:::o;52500:122::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52603:11:::1;52581:19;:33;;;;52500:122:::0;:::o;47276:43::-;;;;:::o;47038:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50598:725::-;50716:13;50769:16;50777:7;50769;:16::i;:::-;50747:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;50889:5;50877:17;;:8;;;;;;;;;;;:17;;;50873:71;;;50918:14;50911:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50873:71;50956:28;50987:10;:8;:10::i;:::-;50956:41;;51059:1;51034:14;51028:28;:32;:287;;;;;;;;;;;;;;;;;51152:14;51193:18;:7;:16;:18::i;:::-;51238:13;51109:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51028:287;51008:307;;;50598:725;;;;:::o;52726:86::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52798:6:::1;52789;:15;;;;52726:86:::0;:::o;47197:31::-;;;;:::o;51959:151::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52085:17:::1;52069:13;:33;;;;;;;;;;;;:::i;:::-;;51959:151:::0;:::o;31892:164::-;31989:4;32013:18;:25;32032:5;32013:25;;;;;;;;;;;;;;;:35;32039:8;32013:35;;;;;;;;;;;;;;;;;;;;;;;;;32006:42;;31892:164;;;;:::o;52118:126::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52221:15:::1;52204:14;:32;;;;;;;;;;;;:::i;:::-;;52118:126:::0;:::o;46332:238::-;45654:12;:10;:12::i;:::-;45643:23;;:7;:5;:7::i;:::-;:23;;;45635:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46455:1:::1;46435:22;;:8;:22;;;;46413:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46534:28;46553:8;46534:18;:28::i;:::-;46332:238:::0;:::o;16526:157::-;16611:4;16650:25;16635:40;;;:11;:40;;;;16628:47;;16526:157;;;:::o;33244:187::-;33301:4;33344:7;33325:15;:13;:15::i;:::-;:26;;:53;;;;;33365:13;;33355:7;:23;33325:53;:98;;;;;33396:11;:20;33408:7;33396:20;;;;;;;;;;;:27;;;;;;;;;;;;33395:28;33325:98;33318:105;;33244:187;;;:::o;4973:98::-;5026:7;5053:10;5046:17;;4973:98;:::o;41414:196::-;41556:2;41529:15;:24;41545:7;41529:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41594:7;41590:2;41574:28;;41583:5;41574:28;;;;;;;;;;;;41414:196;;;:::o;25665:92::-;25721:7;25665:92;:::o;36357:2130::-;36472:35;36510:21;36523:7;36510:12;:21::i;:::-;36472:59;;36570:4;36548:26;;:13;:18;;;:26;;;36544:67;;36583:28;;;;;;;;;;;;;;36544:67;36624:22;36666:4;36650:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;36687:36;36704:4;36710:12;:10;:12::i;:::-;36687:16;:36::i;:::-;36650:73;:126;;;;36764:12;:10;:12::i;:::-;36740:36;;:20;36752:7;36740:11;:20::i;:::-;:36;;;36650:126;36624:153;;36795:17;36790:66;;36821:35;;;;;;;;;;;;;;36790:66;36885:1;36871:16;;:2;:16;;;36867:52;;;36896:23;;;;;;;;;;;;;;36867:52;36932:43;36954:4;36960:2;36964:7;36973:1;36932:21;:43::i;:::-;37040:35;37057:1;37061:7;37070:4;37040:8;:35::i;:::-;37401:1;37371:12;:18;37384:4;37371:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37445:1;37417:12;:16;37430:2;37417:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37463:31;37497:11;:20;37509:7;37497:20;;;;;;;;;;;37463:54;;37548:2;37532:8;:13;;;:18;;;;;;;;;;;;;;;;;;37598:15;37565:8;:23;;;:49;;;;;;;;;;;;;;;;;;37866:19;37898:1;37888:7;:11;37866:33;;37914:31;37948:11;:24;37960:11;37948:24;;;;;;;;;;;37914:58;;38016:1;37991:27;;:8;:13;;;;;;;;;;;;:27;;;37987:384;;;38201:13;;38186:11;:28;38182:174;;38255:4;38239:8;:13;;;:20;;;;;;;;;;;;;;;;;;38308:13;:28;;;38282:8;:23;;;:54;;;;;;;;;;;;;;;;;;38182:174;37987:384;37346:1036;;;38418:7;38414:2;38399:27;;38408:4;38399:27;;;;;;;;;;;;38437:42;38458:4;38464:2;38468:7;38477:1;38437:20;:42::i;:::-;36461:2026;;36357:2130;;;:::o;912:190::-;1037:4;1090;1061:25;1074:5;1081:4;1061:12;:25::i;:::-;:33;1054:40;;912:190;;;;;:::o;28392:1109::-;28454:21;;:::i;:::-;28488:12;28503:7;28488:22;;28571:4;28552:15;:13;:15::i;:::-;:23;;:47;;;;;28586:13;;28579:4;:20;28552:47;28548:886;;;28620:31;28654:11;:17;28666:4;28654:17;;;;;;;;;;;28620:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28695:9;:16;;;28690:729;;28766:1;28740:28;;:9;:14;;;:28;;;28736:101;;28804:9;28797:16;;;;;;28736:101;29139:261;29146:4;29139:261;;;29179:6;;;;;;;;29224:11;:17;29236:4;29224:17;;;;;;;;;;;29212:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29298:1;29272:28;;:9;:14;;;:28;;;29268:109;;29340:9;29333:16;;;;;;29268:109;29139:261;;;28690:729;28601:833;28548:886;29462:31;;;;;;;;;;;;;;28392:1109;;;;:::o;46730:191::-;46804:16;46823:6;;;;;;;;;;;46804:25;;46849:8;46840:6;;:17;;;;;;;;;;;;;;;;;;46904:8;46873:40;;46894:8;46873:40;;;;;;;;;;;;46793:128;46730:191;:::o;6420:326::-;6480:4;6737:1;6715:7;:19;;;:23;6708:30;;6420:326;;;:::o;42102:667::-;42265:4;42302:2;42286:36;;;42323:12;:10;:12::i;:::-;42337:4;42343:7;42352:5;42286:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42282:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42537:1;42520:6;:13;:18;42516:235;;;42566:40;;;;;;;;;;;;;;42516:235;42709:6;42703:13;42694:6;42690:2;42686:15;42679:38;42282:480;42415:45;;;42405:55;;;:6;:55;;;;42398:62;;;42102:667;;;;;;:::o;33439:104::-;33508:27;33518:2;33522:8;33508:27;;;;;;;;;;;;:9;:27::i;:::-;33439:104;;:::o;47878:108::-;47938:13;47971:7;47964:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47878:108;:::o;2535:723::-;2591:13;2821:1;2812:5;:10;2808:53;;;2839:10;;;;;;;;;;;;;;;;;;;;;2808:53;2871:12;2886:5;2871:20;;2902:14;2927:78;2942:1;2934:4;:9;2927:78;;2960:8;;;;;:::i;:::-;;;;2991:2;2983:10;;;;;:::i;:::-;;;2927:78;;;3015:19;3047:6;3037:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3015:39;;3065:154;3081:1;3072:5;:10;3065:154;;3109:1;3099:11;;;;;:::i;:::-;;;3176:2;3168:5;:10;;;;:::i;:::-;3155:2;:24;;;;:::i;:::-;3142:39;;3125:6;3132;3125:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3205:2;3196:11;;;;;:::i;:::-;;;3065:154;;;3243:6;3229:21;;;;;2535:723;;;;:::o;43417:159::-;;;;;:::o;44235:158::-;;;;;:::o;1464:701::-;1547:7;1567:20;1590:4;1567:27;;1610:9;1605:523;1629:5;:12;1625:1;:16;1605:523;;;1663:20;1686:5;1692:1;1686:8;;;;;;;;:::i;:::-;;;;;;;;1663:31;;1729:12;1713;:28;1709:408;;1883:12;1897;1866:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1856:55;;;;;;1841:70;;1709:408;;;2073:12;2087;2056:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2046:55;;;;;;2031:70;;1709:408;1648:480;1643:3;;;;;:::i;:::-;;;;1605:523;;;;2145:12;2138:19;;;1464:701;;;;:::o;33906:163::-;34029:32;34035:2;34039:8;34049:5;34056:4;34029:5;:32::i;:::-;33906:163;;;:::o;34328:1775::-;34467:20;34490:13;;34467:36;;34532:1;34518:16;;:2;:16;;;34514:48;;;34543:19;;;;;;;;;;;;;;34514:48;34589:1;34577:8;:13;34573:44;;;34599:18;;;;;;;;;;;;;;34573:44;34630:61;34660:1;34664:2;34668:12;34682:8;34630:21;:61::i;:::-;35003:8;34968:12;:16;34981:2;34968:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35067:8;35027:12;:16;35040:2;35027:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35126:2;35093:11;:25;35105:12;35093:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35193:15;35143:11;:25;35155:12;35143:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35226:20;35249:12;35226:35;;35276:11;35305:8;35290:12;:23;35276:37;;35334:4;:23;;;;;35342:15;:2;:13;;;:15::i;:::-;35334:23;35330:641;;;35378:314;35434:12;35430:2;35409:38;;35426:1;35409:38;;;;;;;;;;;;35475:69;35514:1;35518:2;35522:14;;;;;;35538:5;35475:30;:69::i;:::-;35470:174;;35580:40;;;;;;;;;;;;;;35470:174;35687:3;35671:12;:19;;35378:314;;35773:12;35756:13;;:29;35752:43;;35787:8;;;35752:43;35330:641;;;35836:120;35892:14;;;;;;35888:2;35867:40;;35884:1;35867:40;;;;;;;;;;;;35951:3;35935:12;:19;;35836:120;;35330:641;36001:12;35985:13;:28;;;;34943:1082;;36035:60;36064:1;36068:2;36072:12;36086:8;36035:20;:60::i;:::-;34456:1647;34328:1775;;;;:::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:704::-;5497:6;5505;5513;5562:2;5550:9;5541:7;5537:23;5533:32;5530:119;;;5568:79;;:::i;:::-;5530:119;5688:1;5713:53;5758:7;5749:6;5738:9;5734:22;5713:53;:::i;:::-;5703:63;;5659:117;5843:2;5832:9;5828:18;5815:32;5874:18;5866:6;5863:30;5860:117;;;5896:79;;:::i;:::-;5860:117;6009:80;6081:7;6072:6;6061:9;6057:22;6009:80;:::i;:::-;5991:98;;;;5786:313;5402:704;;;;;:::o;6112:468::-;6177:6;6185;6234:2;6222:9;6213:7;6209:23;6205:32;6202:119;;;6240:79;;:::i;:::-;6202:119;6360:1;6385:53;6430:7;6421:6;6410:9;6406:22;6385:53;:::i;:::-;6375:63;;6331:117;6487:2;6513:50;6555:7;6546:6;6535:9;6531:22;6513:50;:::i;:::-;6503:60;;6458:115;6112:468;;;;;:::o;6586:474::-;6654:6;6662;6711:2;6699:9;6690:7;6686:23;6682:32;6679:119;;;6717:79;;:::i;:::-;6679:119;6837:1;6862:53;6907:7;6898:6;6887:9;6883:22;6862:53;:::i;:::-;6852:63;;6808:117;6964:2;6990:53;7035:7;7026:6;7015:9;7011:22;6990:53;:::i;:::-;6980:63;;6935:118;6586:474;;;;;:::o;7066:329::-;7125:6;7174:2;7162:9;7153:7;7149:23;7145:32;7142:119;;;7180:79;;:::i;:::-;7142:119;7300:1;7325:53;7370:7;7361:6;7350:9;7346:22;7325:53;:::i;:::-;7315:63;;7271:117;7066:329;;;;:::o;7401:327::-;7459:6;7508:2;7496:9;7487:7;7483:23;7479:32;7476:119;;;7514:79;;:::i;:::-;7476:119;7634:1;7659:52;7703:7;7694:6;7683:9;7679:22;7659:52;:::i;:::-;7649:62;;7605:116;7401:327;;;;:::o;7734:349::-;7803:6;7852:2;7840:9;7831:7;7827:23;7823:32;7820:119;;;7858:79;;:::i;:::-;7820:119;7978:1;8003:63;8058:7;8049:6;8038:9;8034:22;8003:63;:::i;:::-;7993:73;;7949:127;7734:349;;;;:::o;8089:509::-;8158:6;8207:2;8195:9;8186:7;8182:23;8178:32;8175:119;;;8213:79;;:::i;:::-;8175:119;8361:1;8350:9;8346:17;8333:31;8391:18;8383:6;8380:30;8377:117;;;8413:79;;:::i;:::-;8377:117;8518:63;8573:7;8564:6;8553:9;8549:22;8518:63;:::i;:::-;8508:73;;8304:287;8089:509;;;;:::o;8604:329::-;8663:6;8712:2;8700:9;8691:7;8687:23;8683:32;8680:119;;;8718:79;;:::i;:::-;8680:119;8838:1;8863:53;8908:7;8899:6;8888:9;8884:22;8863:53;:::i;:::-;8853:63;;8809:117;8604:329;;;;:::o;8939:704::-;9034:6;9042;9050;9099:2;9087:9;9078:7;9074:23;9070:32;9067:119;;;9105:79;;:::i;:::-;9067:119;9225:1;9250:53;9295:7;9286:6;9275:9;9271:22;9250:53;:::i;:::-;9240:63;;9196:117;9380:2;9369:9;9365:18;9352:32;9411:18;9403:6;9400:30;9397:117;;;9433:79;;:::i;:::-;9397:117;9546:80;9618:7;9609:6;9598:9;9594:22;9546:80;:::i;:::-;9528:98;;;;9323:313;8939:704;;;;;:::o;9649:118::-;9736:24;9754:5;9736:24;:::i;:::-;9731:3;9724:37;9649:118;;:::o;9773:157::-;9878:45;9898:24;9916:5;9898:24;:::i;:::-;9878:45;:::i;:::-;9873:3;9866:58;9773:157;;:::o;9936:109::-;10017:21;10032:5;10017:21;:::i;:::-;10012:3;10005:34;9936:109;;:::o;10051:118::-;10138:24;10156:5;10138:24;:::i;:::-;10133:3;10126:37;10051:118;;:::o;10175:157::-;10280:45;10300:24;10318:5;10300:24;:::i;:::-;10280:45;:::i;:::-;10275:3;10268:58;10175:157;;:::o;10338:360::-;10424:3;10452:38;10484:5;10452:38;:::i;:::-;10506:70;10569:6;10564:3;10506:70;:::i;:::-;10499:77;;10585:52;10630:6;10625:3;10618:4;10611:5;10607:16;10585:52;:::i;:::-;10662:29;10684:6;10662:29;:::i;:::-;10657:3;10653:39;10646:46;;10428:270;10338:360;;;;:::o;10704:364::-;10792:3;10820:39;10853:5;10820:39;:::i;:::-;10875:71;10939:6;10934:3;10875:71;:::i;:::-;10868:78;;10955:52;11000:6;10995:3;10988:4;10981:5;10977:16;10955:52;:::i;:::-;11032:29;11054:6;11032:29;:::i;:::-;11027:3;11023:39;11016:46;;10796:272;10704:364;;;;:::o;11074:377::-;11180:3;11208:39;11241:5;11208:39;:::i;:::-;11263:89;11345:6;11340:3;11263:89;:::i;:::-;11256:96;;11361:52;11406:6;11401:3;11394:4;11387:5;11383:16;11361:52;:::i;:::-;11438:6;11433:3;11429:16;11422:23;;11184:267;11074:377;;;;:::o;11481:845::-;11584:3;11621:5;11615:12;11650:36;11676:9;11650:36;:::i;:::-;11702:89;11784:6;11779:3;11702:89;:::i;:::-;11695:96;;11822:1;11811:9;11807:17;11838:1;11833:137;;;;11984:1;11979:341;;;;11800:520;;11833:137;11917:4;11913:9;11902;11898:25;11893:3;11886:38;11953:6;11948:3;11944:16;11937:23;;11833:137;;11979:341;12046:38;12078:5;12046:38;:::i;:::-;12106:1;12120:154;12134:6;12131:1;12128:13;12120:154;;;12208:7;12202:14;12198:1;12193:3;12189:11;12182:35;12258:1;12249:7;12245:15;12234:26;;12156:4;12153:1;12149:12;12144:17;;12120:154;;;12303:6;12298:3;12294:16;12287:23;;11986:334;;11800:520;;11588:738;;11481:845;;;;:::o;12332:366::-;12474:3;12495:67;12559:2;12554:3;12495:67;:::i;:::-;12488:74;;12571:93;12660:3;12571:93;:::i;:::-;12689:2;12684:3;12680:12;12673:19;;12332:366;;;:::o;12704:::-;12846:3;12867:67;12931:2;12926:3;12867:67;:::i;:::-;12860:74;;12943:93;13032:3;12943:93;:::i;:::-;13061:2;13056:3;13052:12;13045:19;;12704:366;;;:::o;13076:::-;13218:3;13239:67;13303:2;13298:3;13239:67;:::i;:::-;13232:74;;13315:93;13404:3;13315:93;:::i;:::-;13433:2;13428:3;13424:12;13417:19;;13076:366;;;:::o;13448:::-;13590:3;13611:67;13675:2;13670:3;13611:67;:::i;:::-;13604:74;;13687:93;13776:3;13687:93;:::i;:::-;13805:2;13800:3;13796:12;13789:19;;13448:366;;;:::o;13820:::-;13962:3;13983:67;14047:2;14042:3;13983:67;:::i;:::-;13976:74;;14059:93;14148:3;14059:93;:::i;:::-;14177:2;14172:3;14168:12;14161:19;;13820:366;;;:::o;14192:::-;14334:3;14355:67;14419:2;14414:3;14355:67;:::i;:::-;14348:74;;14431:93;14520:3;14431:93;:::i;:::-;14549:2;14544:3;14540:12;14533:19;;14192:366;;;:::o;14564:::-;14706:3;14727:67;14791:2;14786:3;14727:67;:::i;:::-;14720:74;;14803:93;14892:3;14803:93;:::i;:::-;14921:2;14916:3;14912:12;14905:19;;14564:366;;;:::o;14936:398::-;15095:3;15116:83;15197:1;15192:3;15116:83;:::i;:::-;15109:90;;15208:93;15297:3;15208:93;:::i;:::-;15326:1;15321:3;15317:11;15310:18;;14936:398;;;:::o;15340:366::-;15482:3;15503:67;15567:2;15562:3;15503:67;:::i;:::-;15496:74;;15579:93;15668:3;15579:93;:::i;:::-;15697:2;15692:3;15688:12;15681:19;;15340:366;;;:::o;15712:::-;15854:3;15875:67;15939:2;15934:3;15875:67;:::i;:::-;15868:74;;15951:93;16040:3;15951:93;:::i;:::-;16069:2;16064:3;16060:12;16053:19;;15712:366;;;:::o;16084:::-;16226:3;16247:67;16311:2;16306:3;16247:67;:::i;:::-;16240:74;;16323:93;16412:3;16323:93;:::i;:::-;16441:2;16436:3;16432:12;16425:19;;16084:366;;;:::o;16456:118::-;16543:24;16561:5;16543:24;:::i;:::-;16538:3;16531:37;16456:118;;:::o;16580:256::-;16692:3;16707:75;16778:3;16769:6;16707:75;:::i;:::-;16807:2;16802:3;16798:12;16791:19;;16827:3;16820:10;;16580:256;;;;:::o;16842:397::-;16982:3;16997:75;17068:3;17059:6;16997:75;:::i;:::-;17097:2;17092:3;17088:12;17081:19;;17110:75;17181:3;17172:6;17110:75;:::i;:::-;17210:2;17205:3;17201:12;17194:19;;17230:3;17223:10;;16842:397;;;;;:::o;17245:589::-;17470:3;17492:95;17583:3;17574:6;17492:95;:::i;:::-;17485:102;;17604:95;17695:3;17686:6;17604:95;:::i;:::-;17597:102;;17716:92;17804:3;17795:6;17716:92;:::i;:::-;17709:99;;17825:3;17818:10;;17245:589;;;;;;:::o;17840:379::-;18024:3;18046:147;18189:3;18046:147;:::i;:::-;18039:154;;18210:3;18203:10;;17840:379;;;:::o;18225:222::-;18318:4;18356:2;18345:9;18341:18;18333:26;;18369:71;18437:1;18426:9;18422:17;18413:6;18369:71;:::i;:::-;18225:222;;;;:::o;18453:640::-;18648:4;18686:3;18675:9;18671:19;18663:27;;18700:71;18768:1;18757:9;18753:17;18744:6;18700:71;:::i;:::-;18781:72;18849:2;18838:9;18834:18;18825:6;18781:72;:::i;:::-;18863;18931:2;18920:9;18916:18;18907:6;18863:72;:::i;:::-;18982:9;18976:4;18972:20;18967:2;18956:9;18952:18;18945:48;19010:76;19081:4;19072:6;19010:76;:::i;:::-;19002:84;;18453:640;;;;;;;:::o;19099:210::-;19186:4;19224:2;19213:9;19209:18;19201:26;;19237:65;19299:1;19288:9;19284:17;19275:6;19237:65;:::i;:::-;19099:210;;;;:::o;19315:222::-;19408:4;19446:2;19435:9;19431:18;19423:26;;19459:71;19527:1;19516:9;19512:17;19503:6;19459:71;:::i;:::-;19315:222;;;;:::o;19543:313::-;19656:4;19694:2;19683:9;19679:18;19671:26;;19743:9;19737:4;19733:20;19729:1;19718:9;19714:17;19707:47;19771:78;19844:4;19835:6;19771:78;:::i;:::-;19763:86;;19543:313;;;;:::o;19862:419::-;20028:4;20066:2;20055:9;20051:18;20043:26;;20115:9;20109:4;20105:20;20101:1;20090:9;20086:17;20079:47;20143:131;20269:4;20143:131;:::i;:::-;20135:139;;19862:419;;;:::o;20287:::-;20453:4;20491:2;20480:9;20476:18;20468:26;;20540:9;20534:4;20530:20;20526:1;20515:9;20511:17;20504:47;20568:131;20694:4;20568:131;:::i;:::-;20560:139;;20287:419;;;:::o;20712:::-;20878:4;20916:2;20905:9;20901:18;20893:26;;20965:9;20959:4;20955:20;20951:1;20940:9;20936:17;20929:47;20993:131;21119:4;20993:131;:::i;:::-;20985:139;;20712:419;;;:::o;21137:::-;21303:4;21341:2;21330:9;21326:18;21318:26;;21390:9;21384:4;21380:20;21376:1;21365:9;21361:17;21354:47;21418:131;21544:4;21418:131;:::i;:::-;21410:139;;21137:419;;;:::o;21562:::-;21728:4;21766:2;21755:9;21751:18;21743:26;;21815:9;21809:4;21805:20;21801:1;21790:9;21786:17;21779:47;21843:131;21969:4;21843:131;:::i;:::-;21835:139;;21562:419;;;:::o;21987:::-;22153:4;22191:2;22180:9;22176:18;22168:26;;22240:9;22234:4;22230:20;22226:1;22215:9;22211:17;22204:47;22268:131;22394:4;22268:131;:::i;:::-;22260:139;;21987:419;;;:::o;22412:::-;22578:4;22616:2;22605:9;22601:18;22593:26;;22665:9;22659:4;22655:20;22651:1;22640:9;22636:17;22629:47;22693:131;22819:4;22693:131;:::i;:::-;22685:139;;22412:419;;;:::o;22837:::-;23003:4;23041:2;23030:9;23026:18;23018:26;;23090:9;23084:4;23080:20;23076:1;23065:9;23061:17;23054:47;23118:131;23244:4;23118:131;:::i;:::-;23110:139;;22837:419;;;:::o;23262:::-;23428:4;23466:2;23455:9;23451:18;23443:26;;23515:9;23509:4;23505:20;23501:1;23490:9;23486:17;23479:47;23543:131;23669:4;23543:131;:::i;:::-;23535:139;;23262:419;;;:::o;23687:::-;23853:4;23891:2;23880:9;23876:18;23868:26;;23940:9;23934:4;23930:20;23926:1;23915:9;23911:17;23904:47;23968:131;24094:4;23968:131;:::i;:::-;23960:139;;23687:419;;;:::o;24112:222::-;24205:4;24243:2;24232:9;24228:18;24220:26;;24256:71;24324:1;24313:9;24309:17;24300:6;24256:71;:::i;:::-;24112:222;;;;:::o;24340:129::-;24374:6;24401:20;;:::i;:::-;24391:30;;24430:33;24458:4;24450:6;24430:33;:::i;:::-;24340:129;;;:::o;24475:75::-;24508:6;24541:2;24535:9;24525:19;;24475:75;:::o;24556:307::-;24617:4;24707:18;24699:6;24696:30;24693:56;;;24729:18;;:::i;:::-;24693:56;24767:29;24789:6;24767:29;:::i;:::-;24759:37;;24851:4;24845;24841:15;24833:23;;24556:307;;;:::o;24869:308::-;24931:4;25021:18;25013:6;25010:30;25007:56;;;25043:18;;:::i;:::-;25007:56;25081:29;25103:6;25081:29;:::i;:::-;25073:37;;25165:4;25159;25155:15;25147:23;;24869:308;;;:::o;25183:141::-;25232:4;25255:3;25247:11;;25278:3;25275:1;25268:14;25312:4;25309:1;25299:18;25291:26;;25183:141;;;:::o;25330:98::-;25381:6;25415:5;25409:12;25399:22;;25330:98;;;:::o;25434:99::-;25486:6;25520:5;25514:12;25504:22;;25434:99;;;:::o;25539:168::-;25622:11;25656:6;25651:3;25644:19;25696:4;25691:3;25687:14;25672:29;;25539:168;;;;:::o;25713:147::-;25814:11;25851:3;25836:18;;25713:147;;;;:::o;25866:169::-;25950:11;25984:6;25979:3;25972:19;26024:4;26019:3;26015:14;26000:29;;25866:169;;;;:::o;26041:148::-;26143:11;26180:3;26165:18;;26041:148;;;;:::o;26195:305::-;26235:3;26254:20;26272:1;26254:20;:::i;:::-;26249:25;;26288:20;26306:1;26288:20;:::i;:::-;26283:25;;26442:1;26374:66;26370:74;26367:1;26364:81;26361:107;;;26448:18;;:::i;:::-;26361:107;26492:1;26489;26485:9;26478:16;;26195:305;;;;:::o;26506:185::-;26546:1;26563:20;26581:1;26563:20;:::i;:::-;26558:25;;26597:20;26615:1;26597:20;:::i;:::-;26592:25;;26636:1;26626:35;;26641:18;;:::i;:::-;26626:35;26683:1;26680;26676:9;26671:14;;26506:185;;;;:::o;26697:348::-;26737:7;26760:20;26778:1;26760:20;:::i;:::-;26755:25;;26794:20;26812:1;26794:20;:::i;:::-;26789:25;;26982:1;26914:66;26910:74;26907:1;26904:81;26899:1;26892:9;26885:17;26881:105;26878:131;;;26989:18;;:::i;:::-;26878:131;27037:1;27034;27030:9;27019:20;;26697:348;;;;:::o;27051:191::-;27091:4;27111:20;27129:1;27111:20;:::i;:::-;27106:25;;27145:20;27163:1;27145:20;:::i;:::-;27140:25;;27184:1;27181;27178:8;27175:34;;;27189:18;;:::i;:::-;27175:34;27234:1;27231;27227:9;27219:17;;27051:191;;;;:::o;27248:96::-;27285:7;27314:24;27332:5;27314:24;:::i;:::-;27303:35;;27248:96;;;:::o;27350:90::-;27384:7;27427:5;27420:13;27413:21;27402:32;;27350:90;;;:::o;27446:77::-;27483:7;27512:5;27501:16;;27446:77;;;:::o;27529:149::-;27565:7;27605:66;27598:5;27594:78;27583:89;;27529:149;;;:::o;27684:126::-;27721:7;27761:42;27754:5;27750:54;27739:65;;27684:126;;;:::o;27816:77::-;27853:7;27882:5;27871:16;;27816:77;;;:::o;27899:154::-;27983:6;27978:3;27973;27960:30;28045:1;28036:6;28031:3;28027:16;28020:27;27899:154;;;:::o;28059:307::-;28127:1;28137:113;28151:6;28148:1;28145:13;28137:113;;;28236:1;28231:3;28227:11;28221:18;28217:1;28212:3;28208:11;28201:39;28173:2;28170:1;28166:10;28161:15;;28137:113;;;28268:6;28265:1;28262:13;28259:101;;;28348:1;28339:6;28334:3;28330:16;28323:27;28259:101;28108:258;28059:307;;;:::o;28372:320::-;28416:6;28453:1;28447:4;28443:12;28433:22;;28500:1;28494:4;28490:12;28521:18;28511:81;;28577:4;28569:6;28565:17;28555:27;;28511:81;28639:2;28631:6;28628:14;28608:18;28605:38;28602:84;;;28658:18;;:::i;:::-;28602:84;28423:269;28372:320;;;:::o;28698:281::-;28781:27;28803:4;28781:27;:::i;:::-;28773:6;28769:40;28911:6;28899:10;28896:22;28875:18;28863:10;28860:34;28857:62;28854:88;;;28922:18;;:::i;:::-;28854:88;28962:10;28958:2;28951:22;28741:238;28698:281;;:::o;28985:233::-;29024:3;29047:24;29065:5;29047:24;:::i;:::-;29038:33;;29093:66;29086:5;29083:77;29080:103;;;29163:18;;:::i;:::-;29080:103;29210:1;29203:5;29199:13;29192:20;;28985:233;;;:::o;29224:100::-;29263:7;29292:26;29312:5;29292:26;:::i;:::-;29281:37;;29224:100;;;:::o;29330:79::-;29369:7;29398:5;29387:16;;29330:79;;;:::o;29415:94::-;29454:7;29483:20;29497:5;29483:20;:::i;:::-;29472:31;;29415:94;;;:::o;29515:176::-;29547:1;29564:20;29582:1;29564:20;:::i;:::-;29559:25;;29598:20;29616:1;29598:20;:::i;:::-;29593:25;;29637:1;29627:35;;29642:18;;:::i;:::-;29627:35;29683:1;29680;29676:9;29671:14;;29515:176;;;;:::o;29697:180::-;29745:77;29742:1;29735:88;29842:4;29839:1;29832:15;29866:4;29863:1;29856:15;29883:180;29931:77;29928:1;29921:88;30028:4;30025:1;30018:15;30052:4;30049:1;30042:15;30069:180;30117:77;30114:1;30107:88;30214:4;30211:1;30204:15;30238:4;30235:1;30228:15;30255:180;30303:77;30300:1;30293:88;30400:4;30397:1;30390:15;30424:4;30421:1;30414:15;30441:180;30489:77;30486:1;30479:88;30586:4;30583:1;30576:15;30610:4;30607:1;30600:15;30627:117;30736:1;30733;30726:12;30750:117;30859:1;30856;30849:12;30873:117;30982:1;30979;30972:12;30996:117;31105:1;31102;31095:12;31119:117;31228:1;31225;31218:12;31242:117;31351:1;31348;31341:12;31365:102;31406:6;31457:2;31453:7;31448:2;31441:5;31437:14;31433:28;31423:38;;31365:102;;;:::o;31473:94::-;31506:8;31554:5;31550:2;31546:14;31525:35;;31473:94;;;:::o;31573:225::-;31713:34;31709:1;31701:6;31697:14;31690:58;31782:8;31777:2;31769:6;31765:15;31758:33;31573:225;:::o;31804:178::-;31944:30;31940:1;31932:6;31928:14;31921:54;31804:178;:::o;31988:172::-;32128:24;32124:1;32116:6;32112:14;32105:48;31988:172;:::o;32166:223::-;32306:34;32302:1;32294:6;32290:14;32283:58;32375:6;32370:2;32362:6;32358:15;32351:31;32166:223;:::o;32395:182::-;32535:34;32531:1;32523:6;32519:14;32512:58;32395:182;:::o;32583:172::-;32723:24;32719:1;32711:6;32707:14;32700:48;32583:172;:::o;32761:234::-;32901:34;32897:1;32889:6;32885:14;32878:58;32970:17;32965:2;32957:6;32953:15;32946:42;32761:234;:::o;33001:114::-;;:::o;33121:168::-;33261:20;33257:1;33249:6;33245:14;33238:44;33121:168;:::o;33295:173::-;33435:25;33431:1;33423:6;33419:14;33412:49;33295:173;:::o;33474:177::-;33614:29;33610:1;33602:6;33598:14;33591:53;33474:177;:::o;33657:122::-;33730:24;33748:5;33730:24;:::i;:::-;33723:5;33720:35;33710:63;;33769:1;33766;33759:12;33710:63;33657:122;:::o;33785:116::-;33855:21;33870:5;33855:21;:::i;:::-;33848:5;33845:32;33835:60;;33891:1;33888;33881:12;33835:60;33785:116;:::o;33907:122::-;33980:24;33998:5;33980:24;:::i;:::-;33973:5;33970:35;33960:63;;34019:1;34016;34009:12;33960:63;33907:122;:::o;34035:120::-;34107:23;34124:5;34107:23;:::i;:::-;34100:5;34097:34;34087:62;;34145:1;34142;34135:12;34087:62;34035:120;:::o;34161:122::-;34234:24;34252:5;34234:24;:::i;:::-;34227:5;34224:35;34214:63;;34273:1;34270;34263:12;34214:63;34161:122;:::o

Swarm Source

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