ETH Price: $3,047.69 (+0.79%)
Gas: 2 Gwei

Token

Aryanverse Demons (AD)
 

Overview

Max Total Supply

7,777 AD

Holders

636

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 AD
0x33427b35f43552d0cdf9116ccc11ee3d240df362
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AryanverseDemons

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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: contracts/AryanDemons.sol



pragma solidity >=0.8.9 <0.9.0;





contract AryanverseDemons is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistClaimed;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.01 ether;
  uint256 public maxSupply = 7777;
  uint256 public maxMintAmountPerTx = 20;

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

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _cost,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setCost(_cost);
    maxSupply = _maxSupply;
    setMaxMintAmountPerTx(_maxMintAmountPerTx);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    // Verify whitelist requirements
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

    whitelistClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned) {
        if (ownership.addr != address(0)) {
          latestOwnerAddress = ownership.addr;
        }

        if (latestOwnerAddress == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;

          ownedTokenIndex++;
        }
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

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

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

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

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // 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);
    // =============================================================================
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"cost","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c908162000024919062000617565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816200006b919062000617565b50662386f26fc10000600f55611e6160105560146011556001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff021916908315150217905550348015620000e057600080fd5b50604051620050e6380380620050e683398181016040528101906200010691906200089d565b8585816002908162000119919062000617565b5080600390816200012b919062000617565b506200013c620001b260201b60201c565b60008190555050506200016462000158620001bb60201b60201c565b620001c360201b60201c565b60016009819055506200017d846200028960201b60201c565b826010819055506200019582620002a360201b60201c565b620001a681620002bd60201b60201c565b50505050505062000a19565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000299620002e260201b60201c565b80600f8190555050565b620002b3620002e260201b60201c565b8060118190555050565b620002cd620002e260201b60201c565b80600e9081620002de919062000617565b5050565b620002f2620001bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003186200037360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036890620009f7565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041f57607f821691505b602082108103620004355762000434620003d7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200049f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000460565b620004ab868362000460565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004f8620004f2620004ec84620004c3565b620004cd565b620004c3565b9050919050565b6000819050919050565b6200051483620004d7565b6200052c6200052382620004ff565b8484546200046d565b825550505050565b600090565b6200054362000534565b6200055081848462000509565b505050565b5b8181101562000578576200056c60008262000539565b60018101905062000556565b5050565b601f821115620005c75762000591816200043b565b6200059c8462000450565b81016020851015620005ac578190505b620005c4620005bb8562000450565b83018262000555565b50505b505050565b600082821c905092915050565b6000620005ec60001984600802620005cc565b1980831691505092915050565b6000620006078383620005d9565b9150826002028217905092915050565b62000622826200039d565b67ffffffffffffffff8111156200063e576200063d620003a8565b5b6200064a825462000406565b620006578282856200057c565b600060209050601f8311600181146200068f57600084156200067a578287015190505b620006868582620005f9565b865550620006f6565b601f1984166200069f866200043b565b60005b82811015620006c957848901518255600182019150602085019450602081019050620006a2565b86831015620006e95784890151620006e5601f891682620005d9565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000738826200071c565b810181811067ffffffffffffffff821117156200075a5762000759620003a8565b5b80604052505050565b60006200076f620006fe565b90506200077d82826200072d565b919050565b600067ffffffffffffffff821115620007a0576200079f620003a8565b5b620007ab826200071c565b9050602081019050919050565b60005b83811015620007d8578082015181840152602081019050620007bb565b83811115620007e8576000848401525b50505050565b600062000805620007ff8462000782565b62000763565b90508281526020810184848401111562000824576200082362000717565b5b62000831848285620007b8565b509392505050565b600082601f83011262000851576200085062000712565b5b815162000863848260208601620007ee565b91505092915050565b6200087781620004c3565b81146200088357600080fd5b50565b60008151905062000897816200086c565b92915050565b60008060008060008060c08789031215620008bd57620008bc62000708565b5b600087015167ffffffffffffffff811115620008de57620008dd6200070d565b5b620008ec89828a0162000839565b965050602087015167ffffffffffffffff81111562000910576200090f6200070d565b5b6200091e89828a0162000839565b95505060406200093189828a0162000886565b94505060606200094489828a0162000886565b93505060806200095789828a0162000886565b92505060a087015167ffffffffffffffff8111156200097b576200097a6200070d565b5b6200098989828a0162000839565b9150509295509295509295565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620009df60208362000996565b9150620009ec82620009a7565b602082019050919050565b6000602082019050818103600083015262000a1281620009d0565b9050919050565b6146bd8062000a296000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063b071401b116100b6578063d5abeb011161007a578063d5abeb011461086e578063db4bec4414610899578063e0a80853146108d6578063e985e9c5146108ff578063efbd73f41461093c578063f2fde38b1461096557610251565b8063b071401b1461079a578063b767a098146107c3578063b88d4fde146107ec578063c87b56dd14610815578063d2cab0561461085257610251565b806394354fd0116100fd57806394354fd0146106d457806395d89b41146106ff578063a0712d681461072a578063a22cb46514610746578063a45ba8e71461076f57610251565b806370a0823114610603578063715018a6146106405780637cb64759146106575780637ec4a659146106805780638da5cb5b146106a957610251565b80633ccfd60b116101d2578063518302271161019657806351830227146104ef5780635503a0e81461051a5780635c975abb1461054557806362b99ad4146105705780636352211e1461059b5780636caede3d146105d857610251565b80633ccfd60b1461042057806342842e0e14610437578063438b63001461046057806344a0d68a1461049d5780634fdd43cb146104c657610251565b806316ba10e01161021957806316ba10e01461034f57806316c38b3c1461037857806318160ddd146103a157806323b872dd146103cc5780632eb4a7ab146103f557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613121565b61098e565b60405161028a9190613169565b60405180910390f35b34801561029f57600080fd5b506102a8610a70565b6040516102b5919061321d565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613275565b610b02565b6040516102f291906132e3565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061332a565b610b7e565b005b34801561033057600080fd5b50610339610c88565b6040516103469190613379565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906134c9565b610c8e565b005b34801561038457600080fd5b5061039f600480360381019061039a919061353e565b610ca9565b005b3480156103ad57600080fd5b506103b6610cce565b6040516103c39190613379565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee919061356b565b610ce5565b005b34801561040157600080fd5b5061040a610cf5565b60405161041791906135d7565b60405180910390f35b34801561042c57600080fd5b50610435610cfb565b005b34801561044357600080fd5b5061045e6004803603810190610459919061356b565b610dd8565b005b34801561046c57600080fd5b50610487600480360381019061048291906135f2565b610df8565b60405161049491906136dd565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190613275565b61100b565b005b3480156104d257600080fd5b506104ed60048036038101906104e891906134c9565b61101d565b005b3480156104fb57600080fd5b50610504611038565b6040516105119190613169565b60405180910390f35b34801561052657600080fd5b5061052f61104b565b60405161053c919061321d565b60405180910390f35b34801561055157600080fd5b5061055a6110d9565b6040516105679190613169565b60405180910390f35b34801561057c57600080fd5b506105856110ec565b604051610592919061321d565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613275565b61117a565b6040516105cf91906132e3565b60405180910390f35b3480156105e457600080fd5b506105ed611190565b6040516105fa9190613169565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906135f2565b6111a3565b6040516106379190613379565b60405180910390f35b34801561064c57600080fd5b50610655611272565b005b34801561066357600080fd5b5061067e6004803603810190610679919061372b565b611286565b005b34801561068c57600080fd5b506106a760048036038101906106a291906134c9565b611298565b005b3480156106b557600080fd5b506106be6112b3565b6040516106cb91906132e3565b60405180910390f35b3480156106e057600080fd5b506106e96112dd565b6040516106f69190613379565b60405180910390f35b34801561070b57600080fd5b506107146112e3565b604051610721919061321d565b60405180910390f35b610744600480360381019061073f9190613275565b611375565b005b34801561075257600080fd5b5061076d60048036038101906107689190613758565b6114d5565b005b34801561077b57600080fd5b5061078461164c565b604051610791919061321d565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613275565b6116da565b005b3480156107cf57600080fd5b506107ea60048036038101906107e5919061353e565b6116ec565b005b3480156107f857600080fd5b50610813600480360381019061080e9190613839565b611711565b005b34801561082157600080fd5b5061083c60048036038101906108379190613275565b61178d565b604051610849919061321d565b60405180910390f35b61086c6004803603810190610867919061391c565b6118e5565b005b34801561087a57600080fd5b50610883611bf9565b6040516108909190613379565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb91906135f2565b611bff565b6040516108cd9190613169565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f8919061353e565b611c1f565b005b34801561090b57600080fd5b506109266004803603810190610921919061397c565b611c44565b6040516109339190613169565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e91906139bc565b611cd8565b005b34801561097157600080fd5b5061098c600480360381019061098791906135f2565b611d98565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a695750610a6882611e1b565b5b9050919050565b606060028054610a7f90613a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aab90613a2b565b8015610af85780601f10610acd57610100808354040283529160200191610af8565b820191906000526020600020905b815481529060010190602001808311610adb57829003601f168201915b5050505050905090565b6000610b0d82611e85565b610b43576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b898261117a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0f611ed3565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c415750610c3f81610c3a611ed3565b611c44565b155b15610c78576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c83838383611edb565b505050565b600f5481565b610c96611f8d565b80600d9081610ca59190613c08565b5050565b610cb1611f8d565b80601260006101000a81548160ff02191690831515021790555050565b6000610cd861200b565b6001546000540303905090565b610cf0838383612014565b505050565b600a5481565b610d03611f8d565b600260095403610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90613d26565b60405180910390fd5b60026009819055506000610d5a6112b3565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d7d90613d77565b60006040518083038185875af1925050503d8060008114610dba576040519150601f19603f3d011682016040523d82523d6000602084013e610dbf565b606091505b5050905080610dcd57600080fd5b506001600981905550565b610df383838360405180602001604052806000815250611711565b505050565b60606000610e05836111a3565b905060008167ffffffffffffffff811115610e2357610e2261339e565b5b604051908082528060200260200182016040528015610e515781602001602082028036833780820191505090505b5090506000610e5e61200b565b90506000805b8482108015610e74575060005483105b15610ffe576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610fea57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f8757806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe95783858481518110610fce57610fcd613d8c565b5b6020026020010181815250508280610fe590613dea565b9350505b5b8380610ff590613dea565b94505050610e64565b8395505050505050919050565b611013611f8d565b80600f8190555050565b611025611f8d565b80600e90816110349190613c08565b5050565b601260029054906101000a900460ff1681565b600d805461105890613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461108490613a2b565b80156110d15780601f106110a6576101008083540402835291602001916110d1565b820191906000526020600020905b8154815290600101906020018083116110b457829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600c80546110f990613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461112590613a2b565b80156111725780601f1061114757610100808354040283529160200191611172565b820191906000526020600020905b81548152906001019060200180831161115557829003601f168201915b505050505081565b600061118582612503565b600001519050919050565b601260019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61127a611f8d565b6112846000612792565b565b61128e611f8d565b80600a8190555050565b6112a0611f8d565b80600c90816112af9190613c08565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546112f290613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90613a2b565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905090565b8060008111801561138857506011548111155b6113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613e7e565b60405180910390fd5b601054816113d3610cce565b6113dd9190613e9e565b111561141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590613f40565b60405180910390fd5b8180600f5461142d9190613f60565b34101561146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690614006565b60405180910390fd5b601260009054906101000a900460ff16156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690614072565b60405180910390fd5b6114d06114ca611ed3565b84612858565b505050565b6114dd611ed3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611541576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061154e611ed3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115fb611ed3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116409190613169565b60405180910390a35050565b600e805461165990613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461168590613a2b565b80156116d25780601f106116a7576101008083540402835291602001916116d2565b820191906000526020600020905b8154815290600101906020018083116116b557829003601f168201915b505050505081565b6116e2611f8d565b8060118190555050565b6116f4611f8d565b80601260016101000a81548160ff02191690831515021790555050565b61171c848484612014565b61173b8373ffffffffffffffffffffffffffffffffffffffff16612876565b8015611750575061174e84848484612899565b155b15611787576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061179882611e85565b6117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90614104565b60405180910390fd5b60001515601260029054906101000a900460ff1615150361188457600e80546117ff90613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461182b90613a2b565b80156118785780601f1061184d57610100808354040283529160200191611878565b820191906000526020600020905b81548152906001019060200180831161185b57829003601f168201915b505050505090506118e0565b600061188e6129e9565b905060008151116118ae57604051806020016040528060008152506118dc565b806118b884612a7b565b600d6040516020016118cc939291906141e3565b6040516020818303038152906040525b9150505b919050565b826000811180156118f857506011548111155b611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e90613e7e565b60405180910390fd5b60105481611943610cce565b61194d9190613e9e565b111561198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613f40565b60405180910390fd5b8380600f5461199d9190613f60565b3410156119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690614006565b60405180910390fd5b601260019054906101000a900460ff16611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2590614286565b60405180910390fd5b600b6000611a3a611ed3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906142f2565b60405180910390fd5b6000611acc611ed3565b604051602001611adc919061435a565b604051602081830303815290604052805190602001209050611b42858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612bdb565b611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b78906143c1565b60405180910390fd5b6001600b6000611b8f611ed3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611bf1611beb611ed3565b87612858565b505050505050565b60105481565b600b6020528060005260406000206000915054906101000a900460ff1681565b611c27611f8d565b80601260026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611ceb57506011548111155b611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190613e7e565b60405180910390fd5b60105481611d36610cce565b611d409190613e9e565b1115611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890613f40565b60405180910390fd5b611d89611f8d565b611d938284612858565b505050565b611da0611f8d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690614453565b60405180910390fd5b611e1881612792565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e9061200b565b11158015611e9f575060005482105b8015611ecc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611f95611ed3565b73ffffffffffffffffffffffffffffffffffffffff16611fb36112b3565b73ffffffffffffffffffffffffffffffffffffffff1614612009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612000906144bf565b60405180910390fd5b565b60006001905090565b600061201f82612503565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612046611ed3565b73ffffffffffffffffffffffffffffffffffffffff16148061207957506120788260000151612073611ed3565b611c44565b5b806120be5750612087611ed3565b73ffffffffffffffffffffffffffffffffffffffff166120a684610b02565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120f7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612160576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121c6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121d38585856001612bf2565b6121e36000848460000151611edb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612493576000548110156124925782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124fc8585856001612bf8565b5050505050565b61250b613072565b60008290508061251961200b565b11158015612528575060005481105b1561275b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161275957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263d57809250505061278d565b5b60011561275857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461275357809250505061278d565b61263e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612872828260405180602001604052806000815250612bfe565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128bf611ed3565b8786866040518563ffffffff1660e01b81526004016128e19493929190614534565b6020604051808303816000875af192505050801561291d57506040513d601f19601f8201168201806040525081019061291a9190614595565b60015b612996573d806000811461294d576040519150601f19603f3d011682016040523d82523d6000602084013e612952565b606091505b50600081510361298e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546129f890613a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054612a2490613a2b565b8015612a715780601f10612a4657610100808354040283529160200191612a71565b820191906000526020600020905b815481529060010190602001808311612a5457829003601f168201915b5050505050905090565b606060008203612ac2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bd6565b600082905060005b60008214612af4578080612add90613dea565b915050600a82612aed91906145f1565b9150612aca565b60008167ffffffffffffffff811115612b1057612b0f61339e565b5b6040519080825280601f01601f191660200182016040528015612b425781602001600182028036833780820191505090505b5090505b60008514612bcf57600182612b5b9190614622565b9150600a85612b6a9190614656565b6030612b769190613e9e565b60f81b818381518110612b8c57612b8b613d8c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bc891906145f1565b9450612b46565b8093505050505b919050565b600082612be88584612c10565b1490509392505050565b50505050565b50505050565b612c0b8383836001612c66565b505050565b60008082905060005b8451811015612c5b57612c4682868381518110612c3957612c38613d8c565b5b6020026020010151613030565b91508080612c5390613dea565b915050612c19565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612cd2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612d0c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d196000868387612bf2565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ee35750612ee28773ffffffffffffffffffffffffffffffffffffffff16612876565b5b15612fa8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f586000888480600101955088612899565b612f8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612ee9578260005414612fa357600080fd5b613013565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612fa9575b8160008190555050506130296000868387612bf8565b5050505050565b600081831061304857613043828461305b565b613053565b613052838361305b565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130fe816130c9565b811461310957600080fd5b50565b60008135905061311b816130f5565b92915050565b600060208284031215613137576131366130bf565b5b60006131458482850161310c565b91505092915050565b60008115159050919050565b6131638161314e565b82525050565b600060208201905061317e600083018461315a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131be5780820151818401526020810190506131a3565b838111156131cd576000848401525b50505050565b6000601f19601f8301169050919050565b60006131ef82613184565b6131f9818561318f565b93506132098185602086016131a0565b613212816131d3565b840191505092915050565b6000602082019050818103600083015261323781846131e4565b905092915050565b6000819050919050565b6132528161323f565b811461325d57600080fd5b50565b60008135905061326f81613249565b92915050565b60006020828403121561328b5761328a6130bf565b5b600061329984828501613260565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132cd826132a2565b9050919050565b6132dd816132c2565b82525050565b60006020820190506132f860008301846132d4565b92915050565b613307816132c2565b811461331257600080fd5b50565b600081359050613324816132fe565b92915050565b60008060408385031215613341576133406130bf565b5b600061334f85828601613315565b925050602061336085828601613260565b9150509250929050565b6133738161323f565b82525050565b600060208201905061338e600083018461336a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133d6826131d3565b810181811067ffffffffffffffff821117156133f5576133f461339e565b5b80604052505050565b60006134086130b5565b905061341482826133cd565b919050565b600067ffffffffffffffff8211156134345761343361339e565b5b61343d826131d3565b9050602081019050919050565b82818337600083830152505050565b600061346c61346784613419565b6133fe565b90508281526020810184848401111561348857613487613399565b5b61349384828561344a565b509392505050565b600082601f8301126134b0576134af613394565b5b81356134c0848260208601613459565b91505092915050565b6000602082840312156134df576134de6130bf565b5b600082013567ffffffffffffffff8111156134fd576134fc6130c4565b5b6135098482850161349b565b91505092915050565b61351b8161314e565b811461352657600080fd5b50565b60008135905061353881613512565b92915050565b600060208284031215613554576135536130bf565b5b600061356284828501613529565b91505092915050565b600080600060608486031215613584576135836130bf565b5b600061359286828701613315565b93505060206135a386828701613315565b92505060406135b486828701613260565b9150509250925092565b6000819050919050565b6135d1816135be565b82525050565b60006020820190506135ec60008301846135c8565b92915050565b600060208284031215613608576136076130bf565b5b600061361684828501613315565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136548161323f565b82525050565b6000613666838361364b565b60208301905092915050565b6000602082019050919050565b600061368a8261361f565b613694818561362a565b935061369f8361363b565b8060005b838110156136d05781516136b7888261365a565b97506136c283613672565b9250506001810190506136a3565b5085935050505092915050565b600060208201905081810360008301526136f7818461367f565b905092915050565b613708816135be565b811461371357600080fd5b50565b600081359050613725816136ff565b92915050565b600060208284031215613741576137406130bf565b5b600061374f84828501613716565b91505092915050565b6000806040838503121561376f5761376e6130bf565b5b600061377d85828601613315565b925050602061378e85828601613529565b9150509250929050565b600067ffffffffffffffff8211156137b3576137b261339e565b5b6137bc826131d3565b9050602081019050919050565b60006137dc6137d784613798565b6133fe565b9050828152602081018484840111156137f8576137f7613399565b5b61380384828561344a565b509392505050565b600082601f8301126138205761381f613394565b5b81356138308482602086016137c9565b91505092915050565b60008060008060808587031215613853576138526130bf565b5b600061386187828801613315565b945050602061387287828801613315565b935050604061388387828801613260565b925050606085013567ffffffffffffffff8111156138a4576138a36130c4565b5b6138b08782880161380b565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126138dc576138db613394565b5b8235905067ffffffffffffffff8111156138f9576138f86138bc565b5b602083019150836020820283011115613915576139146138c1565b5b9250929050565b600080600060408486031215613935576139346130bf565b5b600061394386828701613260565b935050602084013567ffffffffffffffff811115613964576139636130c4565b5b613970868287016138c6565b92509250509250925092565b60008060408385031215613993576139926130bf565b5b60006139a185828601613315565b92505060206139b285828601613315565b9150509250929050565b600080604083850312156139d3576139d26130bf565b5b60006139e185828601613260565b92505060206139f285828601613315565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a4357607f821691505b602082108103613a5657613a556139fc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613abe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a81565b613ac88683613a81565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613b05613b00613afb8461323f565b613ae0565b61323f565b9050919050565b6000819050919050565b613b1f83613aea565b613b33613b2b82613b0c565b848454613a8e565b825550505050565b600090565b613b48613b3b565b613b53818484613b16565b505050565b5b81811015613b7757613b6c600082613b40565b600181019050613b59565b5050565b601f821115613bbc57613b8d81613a5c565b613b9684613a71565b81016020851015613ba5578190505b613bb9613bb185613a71565b830182613b58565b50505b505050565b600082821c905092915050565b6000613bdf60001984600802613bc1565b1980831691505092915050565b6000613bf88383613bce565b9150826002028217905092915050565b613c1182613184565b67ffffffffffffffff811115613c2a57613c2961339e565b5b613c348254613a2b565b613c3f828285613b7b565b600060209050601f831160018114613c725760008415613c60578287015190505b613c6a8582613bec565b865550613cd2565b601f198416613c8086613a5c565b60005b82811015613ca857848901518255600182019150602085019450602081019050613c83565b86831015613cc55784890151613cc1601f891682613bce565b8355505b6001600288020188555050505b505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d10601f8361318f565b9150613d1b82613cda565b602082019050919050565b60006020820190508181036000830152613d3f81613d03565b9050919050565b600081905092915050565b50565b6000613d61600083613d46565b9150613d6c82613d51565b600082019050919050565b6000613d8282613d54565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613df58261323f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e2757613e26613dbb565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613e6860148361318f565b9150613e7382613e32565b602082019050919050565b60006020820190508181036000830152613e9781613e5b565b9050919050565b6000613ea98261323f565b9150613eb48361323f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ee957613ee8613dbb565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613f2a60148361318f565b9150613f3582613ef4565b602082019050919050565b60006020820190508181036000830152613f5981613f1d565b9050919050565b6000613f6b8261323f565b9150613f768361323f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613faf57613fae613dbb565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613ff060138361318f565b9150613ffb82613fba565b602082019050919050565b6000602082019050818103600083015261401f81613fe3565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061405c60178361318f565b915061406782614026565b602082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006140ee602f8361318f565b91506140f982614092565b604082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b600081905092915050565b600061413a82613184565b6141448185614124565b93506141548185602086016131a0565b80840191505092915050565b6000815461416d81613a2b565b6141778186614124565b9450600182166000811461419257600181146141a7576141da565b60ff19831686528115158202860193506141da565b6141b085613a5c565b60005b838110156141d2578154818901526001820191506020810190506141b3565b838801955050505b50505092915050565b60006141ef828661412f565b91506141fb828561412f565b91506142078284614160565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b600061427060228361318f565b915061427b82614214565b604082019050919050565b6000602082019050818103600083015261429f81614263565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b60006142dc60188361318f565b91506142e7826142a6565b602082019050919050565b6000602082019050818103600083015261430b816142cf565b9050919050565b60008160601b9050919050565b600061432a82614312565b9050919050565b600061433c8261431f565b9050919050565b61435461434f826132c2565b614331565b82525050565b60006143668284614343565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b60006143ab600e8361318f565b91506143b682614375565b602082019050919050565b600060208201905081810360008301526143da8161439e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061443d60268361318f565b9150614448826143e1565b604082019050919050565b6000602082019050818103600083015261446c81614430565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144a960208361318f565b91506144b482614473565b602082019050919050565b600060208201905081810360008301526144d88161449c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614506826144df565b61451081856144ea565b93506145208185602086016131a0565b614529816131d3565b840191505092915050565b600060808201905061454960008301876132d4565b61455660208301866132d4565b614563604083018561336a565b818103606083015261457581846144fb565b905095945050505050565b60008151905061458f816130f5565b92915050565b6000602082840312156145ab576145aa6130bf565b5b60006145b984828501614580565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145fc8261323f565b91506146078361323f565b925082614617576146166145c2565b5b828204905092915050565b600061462d8261323f565b91506146388361323f565b92508282101561464b5761464a613dbb565b5b828203905092915050565b60006146618261323f565b915061466c8361323f565b92508261467c5761467b6145c2565b5b82820690509291505056fea2646970667358221220b794e3a914b054c01382ac0571118557d7a5a1a7bf19ea6ae76bacacff598d8464736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e61000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000011417279616e76657273652044656d6f6e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000241440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d516369387072714e7155344a717764696b38694661554e47724445645a4e366637505950317a694d354277462f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063b071401b116100b6578063d5abeb011161007a578063d5abeb011461086e578063db4bec4414610899578063e0a80853146108d6578063e985e9c5146108ff578063efbd73f41461093c578063f2fde38b1461096557610251565b8063b071401b1461079a578063b767a098146107c3578063b88d4fde146107ec578063c87b56dd14610815578063d2cab0561461085257610251565b806394354fd0116100fd57806394354fd0146106d457806395d89b41146106ff578063a0712d681461072a578063a22cb46514610746578063a45ba8e71461076f57610251565b806370a0823114610603578063715018a6146106405780637cb64759146106575780637ec4a659146106805780638da5cb5b146106a957610251565b80633ccfd60b116101d2578063518302271161019657806351830227146104ef5780635503a0e81461051a5780635c975abb1461054557806362b99ad4146105705780636352211e1461059b5780636caede3d146105d857610251565b80633ccfd60b1461042057806342842e0e14610437578063438b63001461046057806344a0d68a1461049d5780634fdd43cb146104c657610251565b806316ba10e01161021957806316ba10e01461034f57806316c38b3c1461037857806318160ddd146103a157806323b872dd146103cc5780632eb4a7ab146103f557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613121565b61098e565b60405161028a9190613169565b60405180910390f35b34801561029f57600080fd5b506102a8610a70565b6040516102b5919061321d565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613275565b610b02565b6040516102f291906132e3565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d919061332a565b610b7e565b005b34801561033057600080fd5b50610339610c88565b6040516103469190613379565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906134c9565b610c8e565b005b34801561038457600080fd5b5061039f600480360381019061039a919061353e565b610ca9565b005b3480156103ad57600080fd5b506103b6610cce565b6040516103c39190613379565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee919061356b565b610ce5565b005b34801561040157600080fd5b5061040a610cf5565b60405161041791906135d7565b60405180910390f35b34801561042c57600080fd5b50610435610cfb565b005b34801561044357600080fd5b5061045e6004803603810190610459919061356b565b610dd8565b005b34801561046c57600080fd5b50610487600480360381019061048291906135f2565b610df8565b60405161049491906136dd565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190613275565b61100b565b005b3480156104d257600080fd5b506104ed60048036038101906104e891906134c9565b61101d565b005b3480156104fb57600080fd5b50610504611038565b6040516105119190613169565b60405180910390f35b34801561052657600080fd5b5061052f61104b565b60405161053c919061321d565b60405180910390f35b34801561055157600080fd5b5061055a6110d9565b6040516105679190613169565b60405180910390f35b34801561057c57600080fd5b506105856110ec565b604051610592919061321d565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613275565b61117a565b6040516105cf91906132e3565b60405180910390f35b3480156105e457600080fd5b506105ed611190565b6040516105fa9190613169565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906135f2565b6111a3565b6040516106379190613379565b60405180910390f35b34801561064c57600080fd5b50610655611272565b005b34801561066357600080fd5b5061067e6004803603810190610679919061372b565b611286565b005b34801561068c57600080fd5b506106a760048036038101906106a291906134c9565b611298565b005b3480156106b557600080fd5b506106be6112b3565b6040516106cb91906132e3565b60405180910390f35b3480156106e057600080fd5b506106e96112dd565b6040516106f69190613379565b60405180910390f35b34801561070b57600080fd5b506107146112e3565b604051610721919061321d565b60405180910390f35b610744600480360381019061073f9190613275565b611375565b005b34801561075257600080fd5b5061076d60048036038101906107689190613758565b6114d5565b005b34801561077b57600080fd5b5061078461164c565b604051610791919061321d565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613275565b6116da565b005b3480156107cf57600080fd5b506107ea60048036038101906107e5919061353e565b6116ec565b005b3480156107f857600080fd5b50610813600480360381019061080e9190613839565b611711565b005b34801561082157600080fd5b5061083c60048036038101906108379190613275565b61178d565b604051610849919061321d565b60405180910390f35b61086c6004803603810190610867919061391c565b6118e5565b005b34801561087a57600080fd5b50610883611bf9565b6040516108909190613379565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb91906135f2565b611bff565b6040516108cd9190613169565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f8919061353e565b611c1f565b005b34801561090b57600080fd5b506109266004803603810190610921919061397c565b611c44565b6040516109339190613169565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e91906139bc565b611cd8565b005b34801561097157600080fd5b5061098c600480360381019061098791906135f2565b611d98565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a695750610a6882611e1b565b5b9050919050565b606060028054610a7f90613a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aab90613a2b565b8015610af85780601f10610acd57610100808354040283529160200191610af8565b820191906000526020600020905b815481529060010190602001808311610adb57829003601f168201915b5050505050905090565b6000610b0d82611e85565b610b43576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b898261117a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0f611ed3565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c415750610c3f81610c3a611ed3565b611c44565b155b15610c78576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c83838383611edb565b505050565b600f5481565b610c96611f8d565b80600d9081610ca59190613c08565b5050565b610cb1611f8d565b80601260006101000a81548160ff02191690831515021790555050565b6000610cd861200b565b6001546000540303905090565b610cf0838383612014565b505050565b600a5481565b610d03611f8d565b600260095403610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90613d26565b60405180910390fd5b60026009819055506000610d5a6112b3565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d7d90613d77565b60006040518083038185875af1925050503d8060008114610dba576040519150601f19603f3d011682016040523d82523d6000602084013e610dbf565b606091505b5050905080610dcd57600080fd5b506001600981905550565b610df383838360405180602001604052806000815250611711565b505050565b60606000610e05836111a3565b905060008167ffffffffffffffff811115610e2357610e2261339e565b5b604051908082528060200260200182016040528015610e515781602001602082028036833780820191505090505b5090506000610e5e61200b565b90506000805b8482108015610e74575060005483105b15610ffe576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610fea57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f8757806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe95783858481518110610fce57610fcd613d8c565b5b6020026020010181815250508280610fe590613dea565b9350505b5b8380610ff590613dea565b94505050610e64565b8395505050505050919050565b611013611f8d565b80600f8190555050565b611025611f8d565b80600e90816110349190613c08565b5050565b601260029054906101000a900460ff1681565b600d805461105890613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461108490613a2b565b80156110d15780601f106110a6576101008083540402835291602001916110d1565b820191906000526020600020905b8154815290600101906020018083116110b457829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600c80546110f990613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461112590613a2b565b80156111725780601f1061114757610100808354040283529160200191611172565b820191906000526020600020905b81548152906001019060200180831161115557829003601f168201915b505050505081565b600061118582612503565b600001519050919050565b601260019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61127a611f8d565b6112846000612792565b565b61128e611f8d565b80600a8190555050565b6112a0611f8d565b80600c90816112af9190613c08565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546112f290613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90613a2b565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905090565b8060008111801561138857506011548111155b6113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613e7e565b60405180910390fd5b601054816113d3610cce565b6113dd9190613e9e565b111561141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590613f40565b60405180910390fd5b8180600f5461142d9190613f60565b34101561146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690614006565b60405180910390fd5b601260009054906101000a900460ff16156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690614072565b60405180910390fd5b6114d06114ca611ed3565b84612858565b505050565b6114dd611ed3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611541576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061154e611ed3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115fb611ed3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116409190613169565b60405180910390a35050565b600e805461165990613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461168590613a2b565b80156116d25780601f106116a7576101008083540402835291602001916116d2565b820191906000526020600020905b8154815290600101906020018083116116b557829003601f168201915b505050505081565b6116e2611f8d565b8060118190555050565b6116f4611f8d565b80601260016101000a81548160ff02191690831515021790555050565b61171c848484612014565b61173b8373ffffffffffffffffffffffffffffffffffffffff16612876565b8015611750575061174e84848484612899565b155b15611787576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061179882611e85565b6117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90614104565b60405180910390fd5b60001515601260029054906101000a900460ff1615150361188457600e80546117ff90613a2b565b80601f016020809104026020016040519081016040528092919081815260200182805461182b90613a2b565b80156118785780601f1061184d57610100808354040283529160200191611878565b820191906000526020600020905b81548152906001019060200180831161185b57829003601f168201915b505050505090506118e0565b600061188e6129e9565b905060008151116118ae57604051806020016040528060008152506118dc565b806118b884612a7b565b600d6040516020016118cc939291906141e3565b6040516020818303038152906040525b9150505b919050565b826000811180156118f857506011548111155b611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e90613e7e565b60405180910390fd5b60105481611943610cce565b61194d9190613e9e565b111561198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613f40565b60405180910390fd5b8380600f5461199d9190613f60565b3410156119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690614006565b60405180910390fd5b601260019054906101000a900460ff16611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2590614286565b60405180910390fd5b600b6000611a3a611ed3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab9906142f2565b60405180910390fd5b6000611acc611ed3565b604051602001611adc919061435a565b604051602081830303815290604052805190602001209050611b42858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483612bdb565b611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b78906143c1565b60405180910390fd5b6001600b6000611b8f611ed3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611bf1611beb611ed3565b87612858565b505050505050565b60105481565b600b6020528060005260406000206000915054906101000a900460ff1681565b611c27611f8d565b80601260026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611ceb57506011548111155b611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2190613e7e565b60405180910390fd5b60105481611d36610cce565b611d409190613e9e565b1115611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890613f40565b60405180910390fd5b611d89611f8d565b611d938284612858565b505050565b611da0611f8d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0690614453565b60405180910390fd5b611e1881612792565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e9061200b565b11158015611e9f575060005482105b8015611ecc575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611f95611ed3565b73ffffffffffffffffffffffffffffffffffffffff16611fb36112b3565b73ffffffffffffffffffffffffffffffffffffffff1614612009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612000906144bf565b60405180910390fd5b565b60006001905090565b600061201f82612503565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612046611ed3565b73ffffffffffffffffffffffffffffffffffffffff16148061207957506120788260000151612073611ed3565b611c44565b5b806120be5750612087611ed3565b73ffffffffffffffffffffffffffffffffffffffff166120a684610b02565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120f7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612160576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036121c6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121d38585856001612bf2565b6121e36000848460000151611edb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612493576000548110156124925782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124fc8585856001612bf8565b5050505050565b61250b613072565b60008290508061251961200b565b11158015612528575060005481105b1561275b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161275957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461263d57809250505061278d565b5b60011561275857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461275357809250505061278d565b61263e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612872828260405180602001604052806000815250612bfe565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128bf611ed3565b8786866040518563ffffffff1660e01b81526004016128e19493929190614534565b6020604051808303816000875af192505050801561291d57506040513d601f19601f8201168201806040525081019061291a9190614595565b60015b612996573d806000811461294d576040519150601f19603f3d011682016040523d82523d6000602084013e612952565b606091505b50600081510361298e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546129f890613a2b565b80601f0160208091040260200160405190810160405280929190818152602001828054612a2490613a2b565b8015612a715780601f10612a4657610100808354040283529160200191612a71565b820191906000526020600020905b815481529060010190602001808311612a5457829003601f168201915b5050505050905090565b606060008203612ac2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bd6565b600082905060005b60008214612af4578080612add90613dea565b915050600a82612aed91906145f1565b9150612aca565b60008167ffffffffffffffff811115612b1057612b0f61339e565b5b6040519080825280601f01601f191660200182016040528015612b425781602001600182028036833780820191505090505b5090505b60008514612bcf57600182612b5b9190614622565b9150600a85612b6a9190614656565b6030612b769190613e9e565b60f81b818381518110612b8c57612b8b613d8c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bc891906145f1565b9450612b46565b8093505050505b919050565b600082612be88584612c10565b1490509392505050565b50505050565b50505050565b612c0b8383836001612c66565b505050565b60008082905060005b8451811015612c5b57612c4682868381518110612c3957612c38613d8c565b5b6020026020010151613030565b91508080612c5390613dea565b915050612c19565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612cd2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612d0c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d196000868387612bf2565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ee35750612ee28773ffffffffffffffffffffffffffffffffffffffff16612876565b5b15612fa8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f586000888480600101955088612899565b612f8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612ee9578260005414612fa357600080fd5b613013565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612fa9575b8160008190555050506130296000868387612bf8565b5050505050565b600081831061304857613043828461305b565b613053565b613052838361305b565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130fe816130c9565b811461310957600080fd5b50565b60008135905061311b816130f5565b92915050565b600060208284031215613137576131366130bf565b5b60006131458482850161310c565b91505092915050565b60008115159050919050565b6131638161314e565b82525050565b600060208201905061317e600083018461315a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131be5780820151818401526020810190506131a3565b838111156131cd576000848401525b50505050565b6000601f19601f8301169050919050565b60006131ef82613184565b6131f9818561318f565b93506132098185602086016131a0565b613212816131d3565b840191505092915050565b6000602082019050818103600083015261323781846131e4565b905092915050565b6000819050919050565b6132528161323f565b811461325d57600080fd5b50565b60008135905061326f81613249565b92915050565b60006020828403121561328b5761328a6130bf565b5b600061329984828501613260565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132cd826132a2565b9050919050565b6132dd816132c2565b82525050565b60006020820190506132f860008301846132d4565b92915050565b613307816132c2565b811461331257600080fd5b50565b600081359050613324816132fe565b92915050565b60008060408385031215613341576133406130bf565b5b600061334f85828601613315565b925050602061336085828601613260565b9150509250929050565b6133738161323f565b82525050565b600060208201905061338e600083018461336a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133d6826131d3565b810181811067ffffffffffffffff821117156133f5576133f461339e565b5b80604052505050565b60006134086130b5565b905061341482826133cd565b919050565b600067ffffffffffffffff8211156134345761343361339e565b5b61343d826131d3565b9050602081019050919050565b82818337600083830152505050565b600061346c61346784613419565b6133fe565b90508281526020810184848401111561348857613487613399565b5b61349384828561344a565b509392505050565b600082601f8301126134b0576134af613394565b5b81356134c0848260208601613459565b91505092915050565b6000602082840312156134df576134de6130bf565b5b600082013567ffffffffffffffff8111156134fd576134fc6130c4565b5b6135098482850161349b565b91505092915050565b61351b8161314e565b811461352657600080fd5b50565b60008135905061353881613512565b92915050565b600060208284031215613554576135536130bf565b5b600061356284828501613529565b91505092915050565b600080600060608486031215613584576135836130bf565b5b600061359286828701613315565b93505060206135a386828701613315565b92505060406135b486828701613260565b9150509250925092565b6000819050919050565b6135d1816135be565b82525050565b60006020820190506135ec60008301846135c8565b92915050565b600060208284031215613608576136076130bf565b5b600061361684828501613315565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136548161323f565b82525050565b6000613666838361364b565b60208301905092915050565b6000602082019050919050565b600061368a8261361f565b613694818561362a565b935061369f8361363b565b8060005b838110156136d05781516136b7888261365a565b97506136c283613672565b9250506001810190506136a3565b5085935050505092915050565b600060208201905081810360008301526136f7818461367f565b905092915050565b613708816135be565b811461371357600080fd5b50565b600081359050613725816136ff565b92915050565b600060208284031215613741576137406130bf565b5b600061374f84828501613716565b91505092915050565b6000806040838503121561376f5761376e6130bf565b5b600061377d85828601613315565b925050602061378e85828601613529565b9150509250929050565b600067ffffffffffffffff8211156137b3576137b261339e565b5b6137bc826131d3565b9050602081019050919050565b60006137dc6137d784613798565b6133fe565b9050828152602081018484840111156137f8576137f7613399565b5b61380384828561344a565b509392505050565b600082601f8301126138205761381f613394565b5b81356138308482602086016137c9565b91505092915050565b60008060008060808587031215613853576138526130bf565b5b600061386187828801613315565b945050602061387287828801613315565b935050604061388387828801613260565b925050606085013567ffffffffffffffff8111156138a4576138a36130c4565b5b6138b08782880161380b565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126138dc576138db613394565b5b8235905067ffffffffffffffff8111156138f9576138f86138bc565b5b602083019150836020820283011115613915576139146138c1565b5b9250929050565b600080600060408486031215613935576139346130bf565b5b600061394386828701613260565b935050602084013567ffffffffffffffff811115613964576139636130c4565b5b613970868287016138c6565b92509250509250925092565b60008060408385031215613993576139926130bf565b5b60006139a185828601613315565b92505060206139b285828601613315565b9150509250929050565b600080604083850312156139d3576139d26130bf565b5b60006139e185828601613260565b92505060206139f285828601613315565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a4357607f821691505b602082108103613a5657613a556139fc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613abe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a81565b613ac88683613a81565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613b05613b00613afb8461323f565b613ae0565b61323f565b9050919050565b6000819050919050565b613b1f83613aea565b613b33613b2b82613b0c565b848454613a8e565b825550505050565b600090565b613b48613b3b565b613b53818484613b16565b505050565b5b81811015613b7757613b6c600082613b40565b600181019050613b59565b5050565b601f821115613bbc57613b8d81613a5c565b613b9684613a71565b81016020851015613ba5578190505b613bb9613bb185613a71565b830182613b58565b50505b505050565b600082821c905092915050565b6000613bdf60001984600802613bc1565b1980831691505092915050565b6000613bf88383613bce565b9150826002028217905092915050565b613c1182613184565b67ffffffffffffffff811115613c2a57613c2961339e565b5b613c348254613a2b565b613c3f828285613b7b565b600060209050601f831160018114613c725760008415613c60578287015190505b613c6a8582613bec565b865550613cd2565b601f198416613c8086613a5c565b60005b82811015613ca857848901518255600182019150602085019450602081019050613c83565b86831015613cc55784890151613cc1601f891682613bce565b8355505b6001600288020188555050505b505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d10601f8361318f565b9150613d1b82613cda565b602082019050919050565b60006020820190508181036000830152613d3f81613d03565b9050919050565b600081905092915050565b50565b6000613d61600083613d46565b9150613d6c82613d51565b600082019050919050565b6000613d8282613d54565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613df58261323f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e2757613e26613dbb565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613e6860148361318f565b9150613e7382613e32565b602082019050919050565b60006020820190508181036000830152613e9781613e5b565b9050919050565b6000613ea98261323f565b9150613eb48361323f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ee957613ee8613dbb565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613f2a60148361318f565b9150613f3582613ef4565b602082019050919050565b60006020820190508181036000830152613f5981613f1d565b9050919050565b6000613f6b8261323f565b9150613f768361323f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613faf57613fae613dbb565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613ff060138361318f565b9150613ffb82613fba565b602082019050919050565b6000602082019050818103600083015261401f81613fe3565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061405c60178361318f565b915061406782614026565b602082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006140ee602f8361318f565b91506140f982614092565b604082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b600081905092915050565b600061413a82613184565b6141448185614124565b93506141548185602086016131a0565b80840191505092915050565b6000815461416d81613a2b565b6141778186614124565b9450600182166000811461419257600181146141a7576141da565b60ff19831686528115158202860193506141da565b6141b085613a5c565b60005b838110156141d2578154818901526001820191506020810190506141b3565b838801955050505b50505092915050565b60006141ef828661412f565b91506141fb828561412f565b91506142078284614160565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b600061427060228361318f565b915061427b82614214565b604082019050919050565b6000602082019050818103600083015261429f81614263565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b60006142dc60188361318f565b91506142e7826142a6565b602082019050919050565b6000602082019050818103600083015261430b816142cf565b9050919050565b60008160601b9050919050565b600061432a82614312565b9050919050565b600061433c8261431f565b9050919050565b61435461434f826132c2565b614331565b82525050565b60006143668284614343565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b60006143ab600e8361318f565b91506143b682614375565b602082019050919050565b600060208201905081810360008301526143da8161439e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061443d60268361318f565b9150614448826143e1565b604082019050919050565b6000602082019050818103600083015261446c81614430565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144a960208361318f565b91506144b482614473565b602082019050919050565b600060208201905081810360008301526144d88161449c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614506826144df565b61451081856144ea565b93506145208185602086016131a0565b614529816131d3565b840191505092915050565b600060808201905061454960008301876132d4565b61455660208301866132d4565b614563604083018561336a565b818103606083015261457581846144fb565b905095945050505050565b60008151905061458f816130f5565b92915050565b6000602082840312156145ab576145aa6130bf565b5b60006145b984828501614580565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145fc8261323f565b91506146078361323f565b925082614617576146166145c2565b5b828204905092915050565b600061462d8261323f565b91506146388361323f565b92508282101561464b5761464a613dbb565b5b828203905092915050565b60006146618261323f565b915061466c8361323f565b92508261467c5761467b6145c2565b5b82820690509291505056fea2646970667358221220b794e3a914b054c01382ac0571118557d7a5a1a7bf19ea6ae76bacacff598d8464736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e61000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000011417279616e76657273652044656d6f6e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000241440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d516369387072714e7155344a717764696b38694661554e47724445645a4e366637505950317a694d354277462f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Aryanverse Demons
Arg [1] : _tokenSymbol (string): AD
Arg [2] : _cost (uint256): 0
Arg [3] : _maxSupply (uint256): 7777
Arg [4] : _maxMintAmountPerTx (uint256): 20
Arg [5] : _hiddenMetadataUri (string): ipfs://QmQci8prqNqU4Jqwdik8iFaUNGrDEdZN6f7PYP1ziM5BwF/hidden.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [7] : 417279616e76657273652044656d6f6e73000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 4144000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [11] : 697066733a2f2f516d516369387072714e7155344a717764696b38694661554e
Arg [12] : 47724445645a4e366637505950317a694d354277462f68696464656e2e6a736f
Arg [13] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

57932:5193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40384:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43769:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45272:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44835:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58230:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62133:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62239:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39633:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46129:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58034:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62537:475;;;;;;;;;;;;;:::i;:::-;;46370:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60195:833;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61673:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61889:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58423:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58152:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58348:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58119:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43578:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58378:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40753:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16757:103;;;;;;;;;;;;;:::i;:::-;;62322:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62027:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16109:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58303:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43938:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59814:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45548:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58190:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61753:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62426:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46626:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61135:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59226:582;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58267:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58064:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61586:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45898:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60034:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17015:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40384:305;40486:4;40538:25;40523:40;;;:11;:40;;;;:105;;;;40595:33;40580:48;;;:11;:48;;;;40523:105;:158;;;;40645:36;40669:11;40645:23;:36::i;:::-;40523:158;40503:178;;40384:305;;;:::o;43769:100::-;43823:13;43856:5;43849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43769:100;:::o;45272:204::-;45340:7;45365:16;45373:7;45365;:16::i;:::-;45360:64;;45390:34;;;;;;;;;;;;;;45360:64;45444:15;:24;45460:7;45444:24;;;;;;;;;;;;;;;;;;;;;45437:31;;45272:204;;;:::o;44835:371::-;44908:13;44924:24;44940:7;44924:15;:24::i;:::-;44908:40;;44969:5;44963:11;;:2;:11;;;44959:48;;44983:24;;;;;;;;;;;;;;44959:48;45040:5;45024:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;45050:37;45067:5;45074:12;:10;:12::i;:::-;45050:16;:37::i;:::-;45049:38;45024:63;45020:138;;;45111:35;;;;;;;;;;;;;;45020:138;45170:28;45179:2;45183:7;45192:5;45170:8;:28::i;:::-;44897:309;44835:371;;:::o;58230:32::-;;;;:::o;62133:100::-;15995:13;:11;:13::i;:::-;62217:10:::1;62205:9;:22;;;;;;:::i;:::-;;62133:100:::0;:::o;62239:77::-;15995:13;:11;:13::i;:::-;62304:6:::1;62295;;:15;;;;;;;;;;;;;;;;;;62239:77:::0;:::o;39633:303::-;39677:7;39902:15;:13;:15::i;:::-;39887:12;;39871:13;;:28;:46;39864:53;;39633:303;:::o;46129:170::-;46263:28;46273:4;46279:2;46283:7;46263:9;:28::i;:::-;46129:170;;;:::o;58034:25::-;;;;:::o;62537:475::-;15995:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;62834:7:::2;62855;:5;:7::i;:::-;62847:21;;62876;62847:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62833:69;;;62917:2;62909:11;;;::::0;::::2;;62587:425;1768:1:::1;2722:7;:22;;;;62537:475::o:0;46370:185::-;46508:39;46525:4;46531:2;46535:7;46508:39;;;;;;;;;;;;:16;:39::i;:::-;46370:185;;;:::o;60195:833::-;60255:16;60280:23;60306:17;60316:6;60306:9;:17::i;:::-;60280:43;;60330:30;60377:15;60363:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60330:63;;60400:22;60425:15;:13;:15::i;:::-;60400:40;;60447:23;60481:26;60516:478;60541:15;60523;:33;:67;;;;;60577:13;;60560:14;:30;60523:67;60516:478;;;60601:31;60635:11;:27;60647:14;60635:27;;;;;;;;;;;60601:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60678:9;:16;;;60673:287;;60737:1;60711:28;;:9;:14;;;:28;;;60707:94;;60775:9;:14;;;60754:35;;60707:94;60839:6;60817:28;;:18;:28;;;60813:138;;60893:14;60860:13;60874:15;60860:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;60922:17;;;;;:::i;:::-;;;;60813:138;60673:287;60970:16;;;;;:::i;:::-;;;;60592:402;60516:478;;;61009:13;61002:20;;;;;;;60195:833;;;:::o;61673:74::-;15995:13;:11;:13::i;:::-;61736:5:::1;61729:4;:12;;;;61673:74:::0;:::o;61889:132::-;15995:13;:11;:13::i;:::-;61997:18:::1;61977:17;:38;;;;;;:::i;:::-;;61889:132:::0;:::o;58423:28::-;;;;;;;;;;;;;:::o;58152:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58348:25::-;;;;;;;;;;;;;:::o;58119:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43578:124::-;43642:7;43669:20;43681:7;43669:11;:20::i;:::-;:25;;;43662:32;;43578:124;;;:::o;58378:40::-;;;;;;;;;;;;;:::o;40753:206::-;40817:7;40858:1;40841:19;;:5;:19;;;40837:60;;40869:28;;;;;;;;;;;;;;40837:60;40923:12;:19;40936:5;40923:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;40915:36;;40908:43;;40753:206;;;:::o;16757:103::-;15995:13;:11;:13::i;:::-;16822:30:::1;16849:1;16822:18;:30::i;:::-;16757:103::o:0;62322:98::-;15995:13;:11;:13::i;:::-;62403:11:::1;62390:10;:24;;;;62322:98:::0;:::o;62027:100::-;15995:13;:11;:13::i;:::-;62111:10:::1;62099:9;:22;;;;;;:::i;:::-;;62027:100:::0;:::o;16109:87::-;16155:7;16182:6;;;;;;;;;;;16175:13;;16109:87;:::o;58303:38::-;;;;:::o;43938:104::-;43994:13;44027:7;44020:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43938:104;:::o;59814:212::-;59879:11;58923:1;58909:11;:15;:52;;;;;58943:18;;58928:11;:33;;58909:52;58901:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59032:9;;59017:11;59001:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58993:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59912:11:::1;59171;59164:4;;:18;;;;:::i;:::-;59151:9;:31;;59143:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59941:6:::2;;;;;;;;;;;59940:7;59932:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59984:36;59994:12;:10;:12::i;:::-;60008:11;59984:9;:36::i;:::-;59073:1:::1;59814:212:::0;;:::o;45548:279::-;45651:12;:10;:12::i;:::-;45639:24;;:8;:24;;;45635:54;;45672:17;;;;;;;;;;;;;;45635:54;45747:8;45702:18;:32;45721:12;:10;:12::i;:::-;45702:32;;;;;;;;;;;;;;;:42;45735:8;45702:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45800:8;45771:48;;45786:12;:10;:12::i;:::-;45771:48;;;45810:8;45771:48;;;;;;:::i;:::-;;;;;;;;45548:279;;:::o;58190:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61753:130::-;15995:13;:11;:13::i;:::-;61858:19:::1;61837:18;:40;;;;61753:130:::0;:::o;62426:105::-;15995:13;:11;:13::i;:::-;62519:6:::1;62496:20;;:29;;;;;;;;;;;;;;;;;;62426:105:::0;:::o;46626:369::-;46793:28;46803:4;46809:2;46813:7;46793:9;:28::i;:::-;46836:15;:2;:13;;;:15::i;:::-;:76;;;;;46856:56;46887:4;46893:2;46897:7;46906:5;46856:30;:56::i;:::-;46855:57;46836:76;46832:156;;;46936:40;;;;;;;;;;;;;;46832:156;46626:369;;;;:::o;61135:445::-;61209:13;61239:17;61247:8;61239:7;:17::i;:::-;61231:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;61333:5;61321:17;;:8;;;;;;;;;;;:17;;;61317:64;;61356:17;61349:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61317:64;61389:28;61420:10;:8;:10::i;:::-;61389:41;;61475:1;61450:14;61444:28;:32;:130;;;;;;;;;;;;;;;;;61512:14;61528:19;:8;:17;:19::i;:::-;61549:9;61495:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61444:130;61437:137;;;61135:445;;;;:::o;59226:582::-;59333:11;58923:1;58909:11;:15;:52;;;;;58943:18;;58928:11;:33;;58909:52;58901:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59032:9;;59017:11;59001:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58993:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59366:11:::1;59171;59164:4;;:18;;;;:::i;:::-;59151:9;:31;;59143:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59432:20:::2;;;;;;;;;;;59424:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;59507:16;:30;59524:12;:10;:12::i;:::-;59507:30;;;;;;;;;;;;;;;;;;;;;;;;;59506:31;59498:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59573:12;59615;:10;:12::i;:::-;59598:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;59588:41;;;;;;59573:56;;59644:50;59663:12;;59644:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59677:10;;59689:4;59644:18;:50::i;:::-;59636:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;59755:4;59722:16;:30;59739:12;:10;:12::i;:::-;59722:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;59766:36;59776:12;:10;:12::i;:::-;59790:11;59766:9;:36::i;:::-;59379:429;59073:1:::1;59226:582:::0;;;;:::o;58267:31::-;;;;:::o;58064:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;61586:81::-;15995:13;:11;:13::i;:::-;61655:6:::1;61644:8;;:17;;;;;;;;;;;;;;;;;;61586:81:::0;:::o;45898:164::-;45995:4;46019:18;:25;46038:5;46019:25;;;;;;;;;;;;;;;:35;46045:8;46019:35;;;;;;;;;;;;;;;;;;;;;;;;;46012:42;;45898:164;;;;:::o;60034:155::-;60120:11;58923:1;58909:11;:15;:52;;;;;58943:18;;58928:11;:33;;58909:52;58901:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59032:9;;59017:11;59001:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58993:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15995:13:::1;:11;:13::i;:::-;60150:33:::2;60160:9;60171:11;60150:9;:33::i;:::-;60034:155:::0;;;:::o;17015:201::-;15995:13;:11;:13::i;:::-;17124:1:::1;17104:22;;:8;:22;;::::0;17096:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17180:28;17199:8;17180:18;:28::i;:::-;17015:201:::0;:::o;28963:157::-;29048:4;29087:25;29072:40;;;:11;:40;;;;29065:47;;28963:157;;;:::o;47250:187::-;47307:4;47350:7;47331:15;:13;:15::i;:::-;:26;;:53;;;;;47371:13;;47361:7;:23;47331:53;:98;;;;;47402:11;:20;47414:7;47402:20;;;;;;;;;;;:27;;;;;;;;;;;;47401:28;47331:98;47324:105;;47250:187;;;:::o;14660:98::-;14713:7;14740:10;14733:17;;14660:98;:::o;54861:196::-;55003:2;54976:15;:24;54992:7;54976:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;55041:7;55037:2;55021:28;;55030:5;55021:28;;;;;;;;;;;;54861:196;;;:::o;16274:132::-;16349:12;:10;:12::i;:::-;16338:23;;:7;:5;:7::i;:::-;:23;;;16330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16274:132::o;61034:95::-;61099:7;61122:1;61115:8;;61034:95;:::o;50363:2112::-;50478:35;50516:20;50528:7;50516:11;:20::i;:::-;50478:58;;50549:22;50591:13;:18;;;50575:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;50626:50;50643:13;:18;;;50663:12;:10;:12::i;:::-;50626:16;:50::i;:::-;50575:101;:154;;;;50717:12;:10;:12::i;:::-;50693:36;;:20;50705:7;50693:11;:20::i;:::-;:36;;;50575:154;50549:181;;50748:17;50743:66;;50774:35;;;;;;;;;;;;;;50743:66;50846:4;50824:26;;:13;:18;;;:26;;;50820:67;;50859:28;;;;;;;;;;;;;;50820:67;50916:1;50902:16;;:2;:16;;;50898:52;;50927:23;;;;;;;;;;;;;;50898:52;50963:43;50985:4;50991:2;50995:7;51004:1;50963:21;:43::i;:::-;51071:49;51088:1;51092:7;51101:13;:18;;;51071:8;:49::i;:::-;51446:1;51416:12;:18;51429:4;51416:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51490:1;51462:12;:16;51475:2;51462:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51536:2;51508:11;:20;51520:7;51508:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;51598:15;51553:11;:20;51565:7;51553:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;51866:19;51898:1;51888:7;:11;51866:33;;51959:1;51918:43;;:11;:24;51930:11;51918:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51914:445;;52143:13;;52129:11;:27;52125:219;;;52213:13;:18;;;52181:11;:24;52193:11;52181:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;52296:13;:28;;;52254:11;:24;52266:11;52254:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;52125:219;51914:445;51391:979;52406:7;52402:2;52387:27;;52396:4;52387:27;;;;;;;;;;;;52425:42;52446:4;52452:2;52456:7;52465:1;52425:20;:42::i;:::-;50467:2008;;50363:2112;;;:::o;42408:1108::-;42469:21;;:::i;:::-;42503:12;42518:7;42503:22;;42586:4;42567:15;:13;:15::i;:::-;:23;;:47;;;;;42601:13;;42594:4;:20;42567:47;42563:886;;;42635:31;42669:11;:17;42681:4;42669:17;;;;;;;;;;;42635:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42710:9;:16;;;42705:729;;42781:1;42755:28;;:9;:14;;;:28;;;42751:101;;42819:9;42812:16;;;;;;42751:101;43154:261;43161:4;43154:261;;;43194:6;;;;;;;;43239:11;:17;43251:4;43239:17;;;;;;;;;;;43227:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43313:1;43287:28;;:9;:14;;;:28;;;43283:109;;43355:9;43348:16;;;;;;43283:109;43154:261;;;42705:729;42616:833;42563:886;43477:31;;;;;;;;;;;;;;42408:1108;;;;:::o;17376:191::-;17450:16;17469:6;;;;;;;;;;;17450:25;;17495:8;17486:6;;:17;;;;;;;;;;;;;;;;;;17550:8;17519:40;;17540:8;17519:40;;;;;;;;;;;;17439:128;17376:191;:::o;47445:104::-;47514:27;47524:2;47528:8;47514:27;;;;;;;;;;;;:9;:27::i;:::-;47445:104;;:::o;18807:326::-;18867:4;19124:1;19102:7;:19;;;:23;19095:30;;18807:326;;;:::o;55549:667::-;55712:4;55749:2;55733:36;;;55770:12;:10;:12::i;:::-;55784:4;55790:7;55799:5;55733:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55729:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55984:1;55967:6;:13;:18;55963:235;;56013:40;;;;;;;;;;;;;;55963:235;56156:6;56150:13;56141:6;56137:2;56133:15;56126:38;55729:480;55862:45;;;55852:55;;;:6;:55;;;;55845:62;;;55549:667;;;;;;:::o;63018:104::-;63078:13;63107:9;63100:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63018:104;:::o;11914:723::-;11970:13;12200:1;12191:5;:10;12187:53;;12218:10;;;;;;;;;;;;;;;;;;;;;12187:53;12250:12;12265:5;12250:20;;12281:14;12306:78;12321:1;12313:4;:9;12306:78;;12339:8;;;;;:::i;:::-;;;;12370:2;12362:10;;;;;:::i;:::-;;;12306:78;;;12394:19;12426:6;12416:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12394:39;;12444:154;12460:1;12451:5;:10;12444:154;;12488:1;12478:11;;;;;:::i;:::-;;;12555:2;12547:5;:10;;;;:::i;:::-;12534:2;:24;;;;:::i;:::-;12521:39;;12504:6;12511;12504:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12584:2;12575:11;;;;;:::i;:::-;;;12444:154;;;12622:6;12608:21;;;;;11914:723;;;;:::o;3978:190::-;4103:4;4156;4127:25;4140:5;4147:4;4127:12;:25::i;:::-;:33;4120:40;;3978:190;;;;;:::o;56864:159::-;;;;;:::o;57682:158::-;;;;;:::o;47912:163::-;48035:32;48041:2;48045:8;48055:5;48062:4;48035:5;:32::i;:::-;47912:163;;;:::o;4845:296::-;4928:7;4948:20;4971:4;4948:27;;4991:9;4986:118;5010:5;:12;5006:1;:16;4986:118;;;5059:33;5069:12;5083:5;5089:1;5083:8;;;;;;;;:::i;:::-;;;;;;;;5059:9;:33::i;:::-;5044:48;;5024:3;;;;;:::i;:::-;;;;4986:118;;;;5121:12;5114:19;;;4845:296;;;;:::o;48334:1775::-;48473:20;48496:13;;48473:36;;48538:1;48524:16;;:2;:16;;;48520:48;;48549:19;;;;;;;;;;;;;;48520:48;48595:1;48583:8;:13;48579:44;;48605:18;;;;;;;;;;;;;;48579:44;48636:61;48666:1;48670:2;48674:12;48688:8;48636:21;:61::i;:::-;49009:8;48974:12;:16;48987:2;48974:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49073:8;49033:12;:16;49046:2;49033:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49132:2;49099:11;:25;49111:12;49099:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49199:15;49149:11;:25;49161:12;49149:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;49232:20;49255:12;49232:35;;49282:11;49311:8;49296:12;:23;49282:37;;49340:4;:23;;;;;49348:15;:2;:13;;;:15::i;:::-;49340:23;49336:641;;;49384:314;49440:12;49436:2;49415:38;;49432:1;49415:38;;;;;;;;;;;;49481:69;49520:1;49524:2;49528:14;;;;;;49544:5;49481:30;:69::i;:::-;49476:174;;49586:40;;;;;;;;;;;;;;49476:174;49693:3;49677:12;:19;49384:314;;49779:12;49762:13;;:29;49758:43;;49793:8;;;49758:43;49336:641;;;49842:120;49898:14;;;;;;49894:2;49873:40;;49890:1;49873:40;;;;;;;;;;;;49957:3;49941:12;:19;49842:120;;49336:641;50007:12;49991:13;:28;;;;48949:1082;;50041:60;50070:1;50074:2;50078:12;50092:8;50041:20;:60::i;:::-;48462:1647;48334:1775;;;;:::o;11052:149::-;11115:7;11146:1;11142;:5;:51;;11173:20;11188:1;11191;11173:14;:20::i;:::-;11142:51;;;11150:20;11165:1;11168;11150:14;:20::i;:::-;11142:51;11135:58;;11052:149;;;;:::o;11209:268::-;11277:13;11384:1;11378:4;11371:15;11413:1;11407:4;11400:15;11454:4;11448;11438:21;11429:30;;11209:268;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:77::-;9163:7;9192:5;9181:16;;9126:77;;;:::o;9209:118::-;9296:24;9314:5;9296:24;:::i;:::-;9291:3;9284:37;9209:118;;:::o;9333:222::-;9426:4;9464:2;9453:9;9449:18;9441:26;;9477:71;9545:1;9534:9;9530:17;9521:6;9477:71;:::i;:::-;9333:222;;;;:::o;9561:329::-;9620:6;9669:2;9657:9;9648:7;9644:23;9640:32;9637:119;;;9675:79;;:::i;:::-;9637:119;9795:1;9820:53;9865:7;9856:6;9845:9;9841:22;9820:53;:::i;:::-;9810:63;;9766:117;9561:329;;;;:::o;9896:114::-;9963:6;9997:5;9991:12;9981:22;;9896:114;;;:::o;10016:184::-;10115:11;10149:6;10144:3;10137:19;10189:4;10184:3;10180:14;10165:29;;10016:184;;;;:::o;10206:132::-;10273:4;10296:3;10288:11;;10326:4;10321:3;10317:14;10309:22;;10206:132;;;:::o;10344:108::-;10421:24;10439:5;10421:24;:::i;:::-;10416:3;10409:37;10344:108;;:::o;10458:179::-;10527:10;10548:46;10590:3;10582:6;10548:46;:::i;:::-;10626:4;10621:3;10617:14;10603:28;;10458:179;;;;:::o;10643:113::-;10713:4;10745;10740:3;10736:14;10728:22;;10643:113;;;:::o;10792:732::-;10911:3;10940:54;10988:5;10940:54;:::i;:::-;11010:86;11089:6;11084:3;11010:86;:::i;:::-;11003:93;;11120:56;11170:5;11120:56;:::i;:::-;11199:7;11230:1;11215:284;11240:6;11237:1;11234:13;11215:284;;;11316:6;11310:13;11343:63;11402:3;11387:13;11343:63;:::i;:::-;11336:70;;11429:60;11482:6;11429:60;:::i;:::-;11419:70;;11275:224;11262:1;11259;11255:9;11250:14;;11215:284;;;11219:14;11515:3;11508:10;;10916:608;;;10792:732;;;;:::o;11530:373::-;11673:4;11711:2;11700:9;11696:18;11688:26;;11760:9;11754:4;11750:20;11746:1;11735:9;11731:17;11724:47;11788:108;11891:4;11882:6;11788:108;:::i;:::-;11780:116;;11530:373;;;;:::o;11909:122::-;11982:24;12000:5;11982:24;:::i;:::-;11975:5;11972:35;11962:63;;12021:1;12018;12011:12;11962:63;11909:122;:::o;12037:139::-;12083:5;12121:6;12108:20;12099:29;;12137:33;12164:5;12137:33;:::i;:::-;12037:139;;;;:::o;12182:329::-;12241:6;12290:2;12278:9;12269:7;12265:23;12261:32;12258:119;;;12296:79;;:::i;:::-;12258:119;12416:1;12441:53;12486:7;12477:6;12466:9;12462:22;12441:53;:::i;:::-;12431:63;;12387:117;12182:329;;;;:::o;12517:468::-;12582:6;12590;12639:2;12627:9;12618:7;12614:23;12610:32;12607:119;;;12645:79;;:::i;:::-;12607:119;12765:1;12790:53;12835:7;12826:6;12815:9;12811:22;12790:53;:::i;:::-;12780:63;;12736:117;12892:2;12918:50;12960:7;12951:6;12940:9;12936:22;12918:50;:::i;:::-;12908:60;;12863:115;12517:468;;;;;:::o;12991:307::-;13052:4;13142:18;13134:6;13131:30;13128:56;;;13164:18;;:::i;:::-;13128:56;13202:29;13224:6;13202:29;:::i;:::-;13194:37;;13286:4;13280;13276:15;13268:23;;12991:307;;;:::o;13304:410::-;13381:5;13406:65;13422:48;13463:6;13422:48;:::i;:::-;13406:65;:::i;:::-;13397:74;;13494:6;13487:5;13480:21;13532:4;13525:5;13521:16;13570:3;13561:6;13556:3;13552:16;13549:25;13546:112;;;13577:79;;:::i;:::-;13546:112;13667:41;13701:6;13696:3;13691;13667:41;:::i;:::-;13387:327;13304:410;;;;;:::o;13733:338::-;13788:5;13837:3;13830:4;13822:6;13818:17;13814:27;13804:122;;13845:79;;:::i;:::-;13804:122;13962:6;13949:20;13987:78;14061:3;14053:6;14046:4;14038:6;14034:17;13987:78;:::i;:::-;13978:87;;13794:277;13733:338;;;;:::o;14077:943::-;14172:6;14180;14188;14196;14245:3;14233:9;14224:7;14220:23;14216:33;14213:120;;;14252:79;;:::i;:::-;14213:120;14372:1;14397:53;14442:7;14433:6;14422:9;14418:22;14397:53;:::i;:::-;14387:63;;14343:117;14499:2;14525:53;14570:7;14561:6;14550:9;14546:22;14525:53;:::i;:::-;14515:63;;14470:118;14627:2;14653:53;14698:7;14689:6;14678:9;14674:22;14653:53;:::i;:::-;14643:63;;14598:118;14783:2;14772:9;14768:18;14755:32;14814:18;14806:6;14803:30;14800:117;;;14836:79;;:::i;:::-;14800:117;14941:62;14995:7;14986:6;14975:9;14971:22;14941:62;:::i;:::-;14931:72;;14726:287;14077:943;;;;;;;:::o;15026:117::-;15135:1;15132;15125:12;15149:117;15258:1;15255;15248:12;15289:568;15362:8;15372:6;15422:3;15415:4;15407:6;15403:17;15399:27;15389:122;;15430:79;;:::i;:::-;15389:122;15543:6;15530:20;15520:30;;15573:18;15565:6;15562:30;15559:117;;;15595:79;;:::i;:::-;15559:117;15709:4;15701:6;15697:17;15685:29;;15763:3;15755:4;15747:6;15743:17;15733:8;15729:32;15726:41;15723:128;;;15770:79;;:::i;:::-;15723:128;15289:568;;;;;:::o;15863:704::-;15958:6;15966;15974;16023:2;16011:9;16002:7;15998:23;15994:32;15991:119;;;16029:79;;:::i;:::-;15991:119;16149:1;16174:53;16219:7;16210:6;16199:9;16195:22;16174:53;:::i;:::-;16164:63;;16120:117;16304:2;16293:9;16289:18;16276:32;16335:18;16327:6;16324:30;16321:117;;;16357:79;;:::i;:::-;16321:117;16470:80;16542:7;16533:6;16522:9;16518:22;16470:80;:::i;:::-;16452:98;;;;16247:313;15863:704;;;;;:::o;16573:474::-;16641:6;16649;16698:2;16686:9;16677:7;16673:23;16669:32;16666:119;;;16704:79;;:::i;:::-;16666:119;16824:1;16849:53;16894:7;16885:6;16874:9;16870:22;16849:53;:::i;:::-;16839:63;;16795:117;16951:2;16977:53;17022:7;17013:6;17002:9;16998:22;16977:53;:::i;:::-;16967:63;;16922:118;16573:474;;;;;:::o;17053:::-;17121:6;17129;17178:2;17166:9;17157:7;17153:23;17149:32;17146:119;;;17184:79;;:::i;:::-;17146:119;17304:1;17329:53;17374:7;17365:6;17354:9;17350:22;17329:53;:::i;:::-;17319:63;;17275:117;17431:2;17457:53;17502:7;17493:6;17482:9;17478:22;17457:53;:::i;:::-;17447:63;;17402:118;17053:474;;;;;:::o;17533:180::-;17581:77;17578:1;17571:88;17678:4;17675:1;17668:15;17702:4;17699:1;17692:15;17719:320;17763:6;17800:1;17794:4;17790:12;17780:22;;17847:1;17841:4;17837:12;17868:18;17858:81;;17924:4;17916:6;17912:17;17902:27;;17858:81;17986:2;17978:6;17975:14;17955:18;17952:38;17949:84;;18005:18;;:::i;:::-;17949:84;17770:269;17719:320;;;:::o;18045:141::-;18094:4;18117:3;18109:11;;18140:3;18137:1;18130:14;18174:4;18171:1;18161:18;18153:26;;18045:141;;;:::o;18192:93::-;18229:6;18276:2;18271;18264:5;18260:14;18256:23;18246:33;;18192:93;;;:::o;18291:107::-;18335:8;18385:5;18379:4;18375:16;18354:37;;18291:107;;;;:::o;18404:393::-;18473:6;18523:1;18511:10;18507:18;18546:97;18576:66;18565:9;18546:97;:::i;:::-;18664:39;18694:8;18683:9;18664:39;:::i;:::-;18652:51;;18736:4;18732:9;18725:5;18721:21;18712:30;;18785:4;18775:8;18771:19;18764:5;18761:30;18751:40;;18480:317;;18404:393;;;;;:::o;18803:60::-;18831:3;18852:5;18845:12;;18803:60;;;:::o;18869:142::-;18919:9;18952:53;18970:34;18979:24;18997:5;18979:24;:::i;:::-;18970:34;:::i;:::-;18952:53;:::i;:::-;18939:66;;18869:142;;;:::o;19017:75::-;19060:3;19081:5;19074:12;;19017:75;;;:::o;19098:269::-;19208:39;19239:7;19208:39;:::i;:::-;19269:91;19318:41;19342:16;19318:41;:::i;:::-;19310:6;19303:4;19297:11;19269:91;:::i;:::-;19263:4;19256:105;19174:193;19098:269;;;:::o;19373:73::-;19418:3;19373:73;:::o;19452:189::-;19529:32;;:::i;:::-;19570:65;19628:6;19620;19614:4;19570:65;:::i;:::-;19505:136;19452:189;;:::o;19647:186::-;19707:120;19724:3;19717:5;19714:14;19707:120;;;19778:39;19815:1;19808:5;19778:39;:::i;:::-;19751:1;19744:5;19740:13;19731:22;;19707:120;;;19647:186;;:::o;19839:543::-;19940:2;19935:3;19932:11;19929:446;;;19974:38;20006:5;19974:38;:::i;:::-;20058:29;20076:10;20058:29;:::i;:::-;20048:8;20044:44;20241:2;20229:10;20226:18;20223:49;;;20262:8;20247:23;;20223:49;20285:80;20341:22;20359:3;20341:22;:::i;:::-;20331:8;20327:37;20314:11;20285:80;:::i;:::-;19944:431;;19929:446;19839:543;;;:::o;20388:117::-;20442:8;20492:5;20486:4;20482:16;20461:37;;20388:117;;;;:::o;20511:169::-;20555:6;20588:51;20636:1;20632:6;20624:5;20621:1;20617:13;20588:51;:::i;:::-;20584:56;20669:4;20663;20659:15;20649:25;;20562:118;20511:169;;;;:::o;20685:295::-;20761:4;20907:29;20932:3;20926:4;20907:29;:::i;:::-;20899:37;;20969:3;20966:1;20962:11;20956:4;20953:21;20945:29;;20685:295;;;;:::o;20985:1395::-;21102:37;21135:3;21102:37;:::i;:::-;21204:18;21196:6;21193:30;21190:56;;;21226:18;;:::i;:::-;21190:56;21270:38;21302:4;21296:11;21270:38;:::i;:::-;21355:67;21415:6;21407;21401:4;21355:67;:::i;:::-;21449:1;21473:4;21460:17;;21505:2;21497:6;21494:14;21522:1;21517:618;;;;22179:1;22196:6;22193:77;;;22245:9;22240:3;22236:19;22230:26;22221:35;;22193:77;22296:67;22356:6;22349:5;22296:67;:::i;:::-;22290:4;22283:81;22152:222;21487:887;;21517:618;21569:4;21565:9;21557:6;21553:22;21603:37;21635:4;21603:37;:::i;:::-;21662:1;21676:208;21690:7;21687:1;21684:14;21676:208;;;21769:9;21764:3;21760:19;21754:26;21746:6;21739:42;21820:1;21812:6;21808:14;21798:24;;21867:2;21856:9;21852:18;21839:31;;21713:4;21710:1;21706:12;21701:17;;21676:208;;;21912:6;21903:7;21900:19;21897:179;;;21970:9;21965:3;21961:19;21955:26;22013:48;22055:4;22047:6;22043:17;22032:9;22013:48;:::i;:::-;22005:6;21998:64;21920:156;21897:179;22122:1;22118;22110:6;22106:14;22102:22;22096:4;22089:36;21524:611;;;21487:887;;21077:1303;;;20985:1395;;:::o;22386:181::-;22526:33;22522:1;22514:6;22510:14;22503:57;22386:181;:::o;22573:366::-;22715:3;22736:67;22800:2;22795:3;22736:67;:::i;:::-;22729:74;;22812:93;22901:3;22812:93;:::i;:::-;22930:2;22925:3;22921:12;22914:19;;22573:366;;;:::o;22945:419::-;23111:4;23149:2;23138:9;23134:18;23126:26;;23198:9;23192:4;23188:20;23184:1;23173:9;23169:17;23162:47;23226:131;23352:4;23226:131;:::i;:::-;23218:139;;22945:419;;;:::o;23370:147::-;23471:11;23508:3;23493:18;;23370:147;;;;:::o;23523:114::-;;:::o;23643:398::-;23802:3;23823:83;23904:1;23899:3;23823:83;:::i;:::-;23816:90;;23915:93;24004:3;23915:93;:::i;:::-;24033:1;24028:3;24024:11;24017:18;;23643:398;;;:::o;24047:379::-;24231:3;24253:147;24396:3;24253:147;:::i;:::-;24246:154;;24417:3;24410:10;;24047:379;;;:::o;24432:180::-;24480:77;24477:1;24470:88;24577:4;24574:1;24567:15;24601:4;24598:1;24591:15;24618:180;24666:77;24663:1;24656:88;24763:4;24760:1;24753:15;24787:4;24784:1;24777:15;24804:233;24843:3;24866:24;24884:5;24866:24;:::i;:::-;24857:33;;24912:66;24905:5;24902:77;24899:103;;24982:18;;:::i;:::-;24899:103;25029:1;25022:5;25018:13;25011:20;;24804:233;;;:::o;25043:170::-;25183:22;25179:1;25171:6;25167:14;25160:46;25043:170;:::o;25219:366::-;25361:3;25382:67;25446:2;25441:3;25382:67;:::i;:::-;25375:74;;25458:93;25547:3;25458:93;:::i;:::-;25576:2;25571:3;25567:12;25560:19;;25219:366;;;:::o;25591:419::-;25757:4;25795:2;25784:9;25780:18;25772:26;;25844:9;25838:4;25834:20;25830:1;25819:9;25815:17;25808:47;25872:131;25998:4;25872:131;:::i;:::-;25864:139;;25591:419;;;:::o;26016:305::-;26056:3;26075:20;26093:1;26075:20;:::i;:::-;26070:25;;26109:20;26127:1;26109:20;:::i;:::-;26104:25;;26263:1;26195:66;26191:74;26188:1;26185:81;26182:107;;;26269:18;;:::i;:::-;26182:107;26313:1;26310;26306:9;26299:16;;26016:305;;;;:::o;26327:170::-;26467:22;26463:1;26455:6;26451:14;26444:46;26327:170;:::o;26503:366::-;26645:3;26666:67;26730:2;26725:3;26666:67;:::i;:::-;26659:74;;26742:93;26831:3;26742:93;:::i;:::-;26860:2;26855:3;26851:12;26844:19;;26503:366;;;:::o;26875:419::-;27041:4;27079:2;27068:9;27064:18;27056:26;;27128:9;27122:4;27118:20;27114:1;27103:9;27099:17;27092:47;27156:131;27282:4;27156:131;:::i;:::-;27148:139;;26875:419;;;:::o;27300:348::-;27340:7;27363:20;27381:1;27363:20;:::i;:::-;27358:25;;27397:20;27415:1;27397:20;:::i;:::-;27392:25;;27585:1;27517:66;27513:74;27510:1;27507:81;27502:1;27495:9;27488:17;27484:105;27481:131;;;27592:18;;:::i;:::-;27481:131;27640:1;27637;27633:9;27622:20;;27300:348;;;;:::o;27654:169::-;27794:21;27790:1;27782:6;27778:14;27771:45;27654:169;:::o;27829:366::-;27971:3;27992:67;28056:2;28051:3;27992:67;:::i;:::-;27985:74;;28068:93;28157:3;28068:93;:::i;:::-;28186:2;28181:3;28177:12;28170:19;;27829:366;;;:::o;28201:419::-;28367:4;28405:2;28394:9;28390:18;28382:26;;28454:9;28448:4;28444:20;28440:1;28429:9;28425:17;28418:47;28482:131;28608:4;28482:131;:::i;:::-;28474:139;;28201:419;;;:::o;28626:173::-;28766:25;28762:1;28754:6;28750:14;28743:49;28626:173;:::o;28805:366::-;28947:3;28968:67;29032:2;29027:3;28968:67;:::i;:::-;28961:74;;29044:93;29133:3;29044:93;:::i;:::-;29162:2;29157:3;29153:12;29146:19;;28805:366;;;:::o;29177:419::-;29343:4;29381:2;29370:9;29366:18;29358:26;;29430:9;29424:4;29420:20;29416:1;29405:9;29401:17;29394:47;29458:131;29584:4;29458:131;:::i;:::-;29450:139;;29177:419;;;:::o;29602:234::-;29742:34;29738:1;29730:6;29726:14;29719:58;29811:17;29806:2;29798:6;29794:15;29787:42;29602:234;:::o;29842:366::-;29984:3;30005:67;30069:2;30064:3;30005:67;:::i;:::-;29998:74;;30081:93;30170:3;30081:93;:::i;:::-;30199:2;30194:3;30190:12;30183:19;;29842:366;;;:::o;30214:419::-;30380:4;30418:2;30407:9;30403:18;30395:26;;30467:9;30461:4;30457:20;30453:1;30442:9;30438:17;30431:47;30495:131;30621:4;30495:131;:::i;:::-;30487:139;;30214:419;;;:::o;30639:148::-;30741:11;30778:3;30763:18;;30639:148;;;;:::o;30793:377::-;30899:3;30927:39;30960:5;30927:39;:::i;:::-;30982:89;31064:6;31059:3;30982:89;:::i;:::-;30975:96;;31080:52;31125:6;31120:3;31113:4;31106:5;31102:16;31080:52;:::i;:::-;31157:6;31152:3;31148:16;31141:23;;30903:267;30793:377;;;;:::o;31200:874::-;31303:3;31340:5;31334:12;31369:36;31395:9;31369:36;:::i;:::-;31421:89;31503:6;31498:3;31421:89;:::i;:::-;31414:96;;31541:1;31530:9;31526:17;31557:1;31552:166;;;;31732:1;31727:341;;;;31519:549;;31552:166;31636:4;31632:9;31621;31617:25;31612:3;31605:38;31698:6;31691:14;31684:22;31676:6;31672:35;31667:3;31663:45;31656:52;;31552:166;;31727:341;31794:38;31826:5;31794:38;:::i;:::-;31854:1;31868:154;31882:6;31879:1;31876:13;31868:154;;;31956:7;31950:14;31946:1;31941:3;31937:11;31930:35;32006:1;31997:7;31993:15;31982:26;;31904:4;31901:1;31897:12;31892:17;;31868:154;;;32051:6;32046:3;32042:16;32035:23;;31734:334;;31519:549;;31307:767;;31200:874;;;;:::o;32080:589::-;32305:3;32327:95;32418:3;32409:6;32327:95;:::i;:::-;32320:102;;32439:95;32530:3;32521:6;32439:95;:::i;:::-;32432:102;;32551:92;32639:3;32630:6;32551:92;:::i;:::-;32544:99;;32660:3;32653:10;;32080:589;;;;;;:::o;32675:221::-;32815:34;32811:1;32803:6;32799:14;32792:58;32884:4;32879:2;32871:6;32867:15;32860:29;32675:221;:::o;32902:366::-;33044:3;33065:67;33129:2;33124:3;33065:67;:::i;:::-;33058:74;;33141:93;33230:3;33141:93;:::i;:::-;33259:2;33254:3;33250:12;33243:19;;32902:366;;;:::o;33274:419::-;33440:4;33478:2;33467:9;33463:18;33455:26;;33527:9;33521:4;33517:20;33513:1;33502:9;33498:17;33491:47;33555:131;33681:4;33555:131;:::i;:::-;33547:139;;33274:419;;;:::o;33699:174::-;33839:26;33835:1;33827:6;33823:14;33816:50;33699:174;:::o;33879:366::-;34021:3;34042:67;34106:2;34101:3;34042:67;:::i;:::-;34035:74;;34118:93;34207:3;34118:93;:::i;:::-;34236:2;34231:3;34227:12;34220:19;;33879:366;;;:::o;34251:419::-;34417:4;34455:2;34444:9;34440:18;34432:26;;34504:9;34498:4;34494:20;34490:1;34479:9;34475:17;34468:47;34532:131;34658:4;34532:131;:::i;:::-;34524:139;;34251:419;;;:::o;34676:94::-;34709:8;34757:5;34753:2;34749:14;34728:35;;34676:94;;;:::o;34776:::-;34815:7;34844:20;34858:5;34844:20;:::i;:::-;34833:31;;34776:94;;;:::o;34876:100::-;34915:7;34944:26;34964:5;34944:26;:::i;:::-;34933:37;;34876:100;;;:::o;34982:157::-;35087:45;35107:24;35125:5;35107:24;:::i;:::-;35087:45;:::i;:::-;35082:3;35075:58;34982:157;;:::o;35145:256::-;35257:3;35272:75;35343:3;35334:6;35272:75;:::i;:::-;35372:2;35367:3;35363:12;35356:19;;35392:3;35385:10;;35145:256;;;;:::o;35407:164::-;35547:16;35543:1;35535:6;35531:14;35524:40;35407:164;:::o;35577:366::-;35719:3;35740:67;35804:2;35799:3;35740:67;:::i;:::-;35733:74;;35816:93;35905:3;35816:93;:::i;:::-;35934:2;35929:3;35925:12;35918:19;;35577:366;;;:::o;35949:419::-;36115:4;36153:2;36142:9;36138:18;36130:26;;36202:9;36196:4;36192:20;36188:1;36177:9;36173:17;36166:47;36230:131;36356:4;36230:131;:::i;:::-;36222:139;;35949:419;;;:::o;36374:225::-;36514:34;36510:1;36502:6;36498:14;36491:58;36583:8;36578:2;36570:6;36566:15;36559:33;36374:225;:::o;36605:366::-;36747:3;36768:67;36832:2;36827:3;36768:67;:::i;:::-;36761:74;;36844:93;36933:3;36844:93;:::i;:::-;36962:2;36957:3;36953:12;36946:19;;36605:366;;;:::o;36977:419::-;37143:4;37181:2;37170:9;37166:18;37158:26;;37230:9;37224:4;37220:20;37216:1;37205:9;37201:17;37194:47;37258:131;37384:4;37258:131;:::i;:::-;37250:139;;36977:419;;;:::o;37402:182::-;37542:34;37538:1;37530:6;37526:14;37519:58;37402:182;:::o;37590:366::-;37732:3;37753:67;37817:2;37812:3;37753:67;:::i;:::-;37746:74;;37829:93;37918:3;37829:93;:::i;:::-;37947:2;37942:3;37938:12;37931:19;;37590:366;;;:::o;37962:419::-;38128:4;38166:2;38155:9;38151:18;38143:26;;38215:9;38209:4;38205:20;38201:1;38190:9;38186:17;38179:47;38243:131;38369:4;38243:131;:::i;:::-;38235:139;;37962:419;;;:::o;38387:98::-;38438:6;38472:5;38466:12;38456:22;;38387:98;;;:::o;38491:168::-;38574:11;38608:6;38603:3;38596:19;38648:4;38643:3;38639:14;38624:29;;38491:168;;;;:::o;38665:360::-;38751:3;38779:38;38811:5;38779:38;:::i;:::-;38833:70;38896:6;38891:3;38833:70;:::i;:::-;38826:77;;38912:52;38957:6;38952:3;38945:4;38938:5;38934:16;38912:52;:::i;:::-;38989:29;39011:6;38989:29;:::i;:::-;38984:3;38980:39;38973:46;;38755:270;38665:360;;;;:::o;39031:640::-;39226:4;39264:3;39253:9;39249:19;39241:27;;39278:71;39346:1;39335:9;39331:17;39322:6;39278:71;:::i;:::-;39359:72;39427:2;39416:9;39412:18;39403:6;39359:72;:::i;:::-;39441;39509:2;39498:9;39494:18;39485:6;39441:72;:::i;:::-;39560:9;39554:4;39550:20;39545:2;39534:9;39530:18;39523:48;39588:76;39659:4;39650:6;39588:76;:::i;:::-;39580:84;;39031:640;;;;;;;:::o;39677:141::-;39733:5;39764:6;39758:13;39749:22;;39780:32;39806:5;39780:32;:::i;:::-;39677:141;;;;:::o;39824:349::-;39893:6;39942:2;39930:9;39921:7;39917:23;39913:32;39910:119;;;39948:79;;:::i;:::-;39910:119;40068:1;40093:63;40148:7;40139:6;40128:9;40124:22;40093:63;:::i;:::-;40083:73;;40039:127;39824:349;;;;:::o;40179:180::-;40227:77;40224:1;40217:88;40324:4;40321:1;40314:15;40348:4;40345:1;40338:15;40365:185;40405:1;40422:20;40440:1;40422:20;:::i;:::-;40417:25;;40456:20;40474:1;40456:20;:::i;:::-;40451:25;;40495:1;40485:35;;40500:18;;:::i;:::-;40485:35;40542:1;40539;40535:9;40530:14;;40365:185;;;;:::o;40556:191::-;40596:4;40616:20;40634:1;40616:20;:::i;:::-;40611:25;;40650:20;40668:1;40650:20;:::i;:::-;40645:25;;40689:1;40686;40683:8;40680:34;;;40694:18;;:::i;:::-;40680:34;40739:1;40736;40732:9;40724:17;;40556:191;;;;:::o;40753:176::-;40785:1;40802:20;40820:1;40802:20;:::i;:::-;40797:25;;40836:20;40854:1;40836:20;:::i;:::-;40831:25;;40875:1;40865:35;;40880:18;;:::i;:::-;40865:35;40921:1;40918;40914:9;40909:14;;40753:176;;;;:::o

Swarm Source

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