ETH Price: $2,924.92 (-9.75%)
Gas: 24 Gwei

Token

X MARKS THE SPOT (XMTS)
 

Overview

Max Total Supply

100 XMTS

Holders

79

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 XMTS
0x85f455a02f07d0fdea27f8bd28e0ce0c86a54294
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:
X_MARKS_THE_SPOT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

    function _nonReentrantAfter() private {
        // 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/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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/access/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

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

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

// File: contracts/utils/Ownable.sol


pragma solidity ^0.8.0;

contract Ownable {
    address private _convenienceOwner;

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

    /// @notice returns the address of the current _convenienceOwner
    /// @dev not used for access control, used by services that require a single owner account
    /// @return _convenienceOwner address
    function owner() public view virtual returns (address) {
        return _convenienceOwner;
    }

    /// @notice Set the _convenienceOwner address
    /// @dev not used for access control, used by services that require a single owner account
    /// @param newOwner address of the new _convenienceOwner
    function _setOwnership(address newOwner) internal virtual {
        address oldOwner = _convenienceOwner;
        _convenienceOwner = newOwner;
        emit OwnershipSet(oldOwner, newOwner);
    }

    /// @notice This empty reserved space is put in place to allow future versions to add new
    /// variables without shifting down storage in the inheritance chain.
    /// See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
    uint256[100] private __gap;
}

// File: contracts/utils/Errors.sol


pragma solidity ^0.8.0;

error MaxSupplyReached();
error AlreadyMinted();
error ProofInvalidOrNotInAllowlist();
error CannotMintFromContract();

// File: contracts/X_MARKS_THE_SPOT.sol


pragma solidity ^0.8.0;









/// @author @0x__jj, @llio (Deca)
contract X_MARKS_THE_SPOT is ERC721, ReentrancyGuard, AccessControl, Ownable {
  using Address for address;
  using Strings for *;

  mapping(address => bool) public minted;

  uint256 public totalSupply = 0;

  uint256 public constant MAX_SUPPLY = 100;

  bytes32 public merkleRoot;

  string public baseUri;

  constructor(string memory _baseUri, address[] memory _admins)
    ERC721("X MARKS THE SPOT", "XMTS")
  {
    _setOwnership(msg.sender);
    _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
    for (uint256 i = 0; i < _admins.length; i++) {
      _grantRole(DEFAULT_ADMIN_ROLE, _admins[i]);
    }
    baseUri = _baseUri;
  }

  function setMerkleRoot(bytes32 _merkleRoot)
    external
    onlyRole(DEFAULT_ADMIN_ROLE)
  {
    merkleRoot = _merkleRoot;
  }

  function setOwnership(address _newOwner)
    external
    onlyRole(DEFAULT_ADMIN_ROLE)
  {
    _setOwnership(_newOwner);
  }

  function setBaseUri(string memory _newBaseUri)
    external
    onlyRole(DEFAULT_ADMIN_ROLE)
  {
    baseUri = _newBaseUri;
  }

  function mint(bytes32[] calldata _merkleProof)
    external
    nonReentrant
    returns (uint256)
  {
    if (totalSupply >= MAX_SUPPLY) revert MaxSupplyReached();
    if (minted[msg.sender]) revert AlreadyMinted();
    if (msg.sender.isContract()) revert CannotMintFromContract();
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    if (!MerkleProof.verify(_merkleProof, merkleRoot, leaf))
      revert ProofInvalidOrNotInAllowlist();

    uint256 tokenId = totalSupply;
    totalSupply++;
    minted[msg.sender] = true;
    _safeMint(msg.sender, tokenId);
    return tokenId;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    override(ERC721)
    returns (string memory)
  {
    require(_exists(_tokenId), "DECAL: URI query for nonexistent token");
    string memory baseURI = _baseURI();
    require(bytes(baseURI).length > 0, "baseURI not set");
    return string(abi.encodePacked(baseURI, _tokenId.toString()));
  }

  function getTokensOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 tokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](tokenCount);
    uint256 seen = 0;
    for (uint256 i; i < totalSupply; i++) {
      if (ownerOf(i) == _owner) {
        tokenIds[seen] = i;
        seen++;
      }
      if (seen == tokenCount) break;
    }
    return tokenIds;
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC721, AccessControl)
    returns (bool)
  {
    return super.supportsInterface(interfaceId);
  }

  function _baseURI() internal view override(ERC721) returns (string memory) {
    return baseUri;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address[]","name":"_admins","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyMinted","type":"error"},{"inputs":[],"name":"CannotMintFromContract","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"ProofInvalidOrNotInAllowlist","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":"OwnershipSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwnership","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"}]

60806040526000606e553480156200001657600080fd5b50604051620049223803806200492283398181016040528101906200003c919062000739565b6040518060400160405280601081526020017f58204d41524b53205448452053504f54000000000000000000000000000000008152506040518060400160405280600481526020017f584d5453000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c0929190620003ac565b508060019080519060200190620000d9929190620003ac565b5050506001600681905550620000f5336200018160201b60201c565b6200010a6000801b336200024760201b60201c565b60005b81518110156200015f57620001496000801b838381518110620001355762000134620007be565b5b60200260200101516200024760201b60201c565b8080620001569062000826565b9150506200010d565b50816070908051906020019062000178929190620003ac565b505050620008d7565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff6a7092513e1f3f720c1d0ad65eb323494afe10d43e19dc4a40bac61ade7579160405160405180910390a35050565b6200025982826200033960201b60201c565b620003355760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002da620003a460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620003ba90620008a2565b90600052602060002090601f016020900481019282620003de57600085556200042a565b82601f10620003f957805160ff19168380011785556200042a565b828001600101855582156200042a579182015b82811115620004295782518255916020019190600101906200040c565b5b5090506200043991906200043d565b5090565b5b80821115620004585760008160009055506001016200043e565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004c5826200047a565b810181811067ffffffffffffffff82111715620004e757620004e66200048b565b5b80604052505050565b6000620004fc6200045c565b90506200050a8282620004ba565b919050565b600067ffffffffffffffff8211156200052d576200052c6200048b565b5b62000538826200047a565b9050602081019050919050565b60005b838110156200056557808201518184015260208101905062000548565b8381111562000575576000848401525b50505050565b6000620005926200058c846200050f565b620004f0565b905082815260208101848484011115620005b157620005b062000475565b5b620005be84828562000545565b509392505050565b600082601f830112620005de57620005dd62000470565b5b8151620005f08482602086016200057b565b91505092915050565b600067ffffffffffffffff8211156200061757620006166200048b565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200065a826200062d565b9050919050565b6200066c816200064d565b81146200067857600080fd5b50565b6000815190506200068c8162000661565b92915050565b6000620006a9620006a384620005f9565b620004f0565b90508083825260208201905060208402830185811115620006cf57620006ce62000628565b5b835b81811015620006fc5780620006e788826200067b565b845260208401935050602081019050620006d1565b5050509392505050565b600082601f8301126200071e576200071d62000470565b5b81516200073084826020860162000692565b91505092915050565b6000806040838503121562000753576200075262000466565b5b600083015167ffffffffffffffff8111156200077457620007736200046b565b5b6200078285828601620005c6565b925050602083015167ffffffffffffffff811115620007a657620007a56200046b565b5b620007b48582860162000706565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b600062000833826200081c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620008685762000867620007ed565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008bb57607f821691505b602082108103620008d157620008d062000873565b5b50919050565b61403b80620008e76000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a217fddf116100a2578063b88d4fde11610071578063b88d4fde1461057b578063c87b56dd14610597578063d547741f146105c7578063e985e9c5146105e3576101da565b8063a217fddf146104f5578063a22cb46514610513578063a70160231461052f578063b77a147b1461054b576101da565b806391d14854116100de57806391d148541461046d57806395d89b411461049d5780639abc8320146104bb578063a0bcfc7f146104d9576101da565b806370a08231146104035780637cb64759146104335780638da5cb5b1461044f576101da565b8063248a9ca31161017c57806336568abe1161014b57806336568abe1461036b57806342842e0e146103875780635de6dc55146103a35780636352211e146103d3576101da565b8063248a9ca3146102e35780632eb4a7ab146103135780632f2ff15d1461033157806332cb6b0c1461034d576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd146102795780631e7269c51461029757806323b872dd146102c7576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190612a9a565b610613565b6040516102069190612ae2565b60405180910390f35b610217610625565b6040516102249190612b96565b60405180910390f35b61024760048036038101906102429190612bee565b6106b7565b6040516102549190612c5c565b60405180910390f35b61027760048036038101906102729190612ca3565b6106fd565b005b610281610814565b60405161028e9190612cf2565b60405180910390f35b6102b160048036038101906102ac9190612d0d565b61081a565b6040516102be9190612ae2565b60405180910390f35b6102e160048036038101906102dc9190612d3a565b61083a565b005b6102fd60048036038101906102f89190612dc3565b61089a565b60405161030a9190612dff565b60405180910390f35b61031b6108ba565b6040516103289190612dff565b60405180910390f35b61034b60048036038101906103469190612e1a565b6108c0565b005b6103556108e1565b6040516103629190612cf2565b60405180910390f35b61038560048036038101906103809190612e1a565b6108e6565b005b6103a1600480360381019061039c9190612d3a565b610969565b005b6103bd60048036038101906103b89190612d0d565b610989565b6040516103ca9190612f18565b60405180910390f35b6103ed60048036038101906103e89190612bee565b610a84565b6040516103fa9190612c5c565b60405180910390f35b61041d60048036038101906104189190612d0d565b610b0a565b60405161042a9190612cf2565b60405180910390f35b61044d60048036038101906104489190612dc3565b610bc1565b005b610457610bd9565b6040516104649190612c5c565b60405180910390f35b61048760048036038101906104829190612e1a565b610c03565b6040516104949190612ae2565b60405180910390f35b6104a5610c6e565b6040516104b29190612b96565b60405180910390f35b6104c3610d00565b6040516104d09190612b96565b60405180910390f35b6104f360048036038101906104ee919061306f565b610d8e565b005b6104fd610db6565b60405161050a9190612dff565b60405180910390f35b61052d600480360381019061052891906130e4565b610dbd565b005b61054960048036038101906105449190612d0d565b610dd3565b005b61056560048036038101906105609190613184565b610ded565b6040516105729190612cf2565b60405180910390f35b61059560048036038101906105909190613272565b611050565b005b6105b160048036038101906105ac9190612bee565b6110b2565b6040516105be9190612b96565b60405180910390f35b6105e160048036038101906105dc9190612e1a565b61117e565b005b6105fd60048036038101906105f891906132f5565b61119f565b60405161060a9190612ae2565b60405180910390f35b600061061e82611233565b9050919050565b60606000805461063490613364565b80601f016020809104026020016040519081016040528092919081815260200182805461066090613364565b80156106ad5780601f10610682576101008083540402835291602001916106ad565b820191906000526020600020905b81548152906001019060200180831161069057829003601f168201915b5050505050905090565b60006106c2826112ad565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070882610a84565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076f90613407565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107976112f8565b73ffffffffffffffffffffffffffffffffffffffff1614806107c657506107c5816107c06112f8565b61119f565b5b610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90613499565b60405180910390fd5b61080f8383611300565b505050565b606e5481565b606d6020528060005260406000206000915054906101000a900460ff1681565b61084b6108456112f8565b826113b9565b61088a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108819061352b565b60405180910390fd5b61089583838361144e565b505050565b600060076000838152602001908152602001600020600101549050919050565b606f5481565b6108c98261089a565b6108d281611747565b6108dc838361175b565b505050565b606481565b6108ee6112f8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906135bd565b60405180910390fd5b610965828261183c565b5050565b61098483838360405180602001604052806000815250611050565b505050565b6060600061099683610b0a565b905060008167ffffffffffffffff8111156109b4576109b3612f44565b5b6040519080825280602002602001820160405280156109e25781602001602082028036833780820191505090505b5090506000805b606e54811015610a78578573ffffffffffffffffffffffffffffffffffffffff16610a1382610a84565b73ffffffffffffffffffffffffffffffffffffffff1603610a5d5780838381518110610a4257610a416135dd565b5b6020026020010181815250508180610a599061363b565b9250505b83820315610a78578080610a709061363b565b9150506109e9565b50819350505050919050565b600080610a908361191e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af8906136cf565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613761565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000801b610bce81611747565b81606f819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610c7d90613364565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca990613364565b8015610cf65780601f10610ccb57610100808354040283529160200191610cf6565b820191906000526020600020905b815481529060010190602001808311610cd957829003601f168201915b5050505050905090565b60708054610d0d90613364565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3990613364565b8015610d865780601f10610d5b57610100808354040283529160200191610d86565b820191906000526020600020905b815481529060010190602001808311610d6957829003601f168201915b505050505081565b6000801b610d9b81611747565b8160709080519060200190610db192919061298b565b505050565b6000801b81565b610dcf610dc86112f8565b838361195b565b5050565b6000801b610de081611747565b610de982611ac7565b5050565b6000610df7611b8d565b6064606e5410610e33576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610eb7576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ed63373ffffffffffffffffffffffffffffffffffffffff16611bdc565b15610f0d576040517f2dd5679600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600033604051602001610f2091906137c9565b604051602081830303815290604052805190602001209050610f86848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050606f5483611bff565b610fbc576040517f0ed6f64500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000606e549050606e6000815480929190610fd69061363b565b91905055506001606d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061103d3382611c16565b809250505061104a611c34565b92915050565b61106161105b6112f8565b836113b9565b6110a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110979061352b565b60405180910390fd5b6110ac84848484611c3e565b50505050565b60606110bd82611c9a565b6110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390613856565b60405180910390fd5b6000611106611cdb565b9050600081511161114c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611143906138c2565b60405180910390fd5b8061115684611d6d565b60405160200161116792919061391e565b604051602081830303815290604052915050919050565b6111878261089a565b61119081611747565b61119a838361183c565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112a657506112a582611e3b565b5b9050919050565b6112b681611c9a565b6112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec906136cf565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661137383610a84565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113c583610a84565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114075750611406818561119f565b5b8061144557508373ffffffffffffffffffffffffffffffffffffffff1661142d846106b7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661146e82610a84565b73ffffffffffffffffffffffffffffffffffffffff16146114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb906139b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613a46565b60405180910390fd5b6115408383836001611f1d565b8273ffffffffffffffffffffffffffffffffffffffff1661156082610a84565b73ffffffffffffffffffffffffffffffffffffffff16146115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad906139b4565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117428383836001612043565b505050565b611758816117536112f8565b612049565b50565b6117658282610c03565b6118385760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117dd6112f8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6118468282610c03565b1561191a5760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118bf6112f8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090613ab2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aba9190612ae2565b60405180910390a3505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff6a7092513e1f3f720c1d0ad65eb323494afe10d43e19dc4a40bac61ade7579160405160405180910390a35050565b600260065403611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990613b1e565b60405180910390fd5b6002600681905550565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082611c0c85846120ce565b1490509392505050565b611c30828260405180602001604052806000815250612124565b5050565b6001600681905550565b611c4984848461144e565b611c558484848461217f565b611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b90613bb0565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611cbc8361191e565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060708054611cea90613364565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1690613364565b8015611d635780601f10611d3857610100808354040283529160200191611d63565b820191906000526020600020905b815481529060010190602001808311611d4657829003601f168201915b5050505050905090565b606060006001611d7c84612306565b01905060008167ffffffffffffffff811115611d9b57611d9a612f44565b5b6040519080825280601f01601f191660200182016040528015611dcd5781602001600182028036833780820191505090505b509050600082602001820190505b600115611e30578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e2457611e23613bd0565b5b04945060008503611ddb575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f0657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f165750611f1582612459565b5b9050919050565b600181111561203d57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611fb15780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa99190613bff565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461203c5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120349190613c33565b925050819055505b5b50505050565b50505050565b6120538282610c03565b6120ca57612060816124c3565b61206e8360001c60206124f0565b60405160200161207f929190613d21565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c19190612b96565b60405180910390fd5b5050565b60008082905060005b845181101561211957612104828683815181106120f7576120f66135dd565b5b602002602001015161272c565b915080806121119061363b565b9150506120d7565b508091505092915050565b61212e8383612757565b61213b600084848461217f565b61217a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217190613bb0565b60405180910390fd5b505050565b60006121a08473ffffffffffffffffffffffffffffffffffffffff16611bdc565b156122f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121c96112f8565b8786866040518563ffffffff1660e01b81526004016121eb9493929190613db0565b6020604051808303816000875af192505050801561222757506040513d601f19601f820116820180604052508101906122249190613e11565b60015b6122a9573d8060008114612257576040519150601f19603f3d011682016040523d82523d6000602084013e61225c565b606091505b5060008151036122a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229890613bb0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122fe565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612364577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161235a57612359613bd0565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123a1576d04ee2d6d415b85acef8100000000838161239757612396613bd0565b5b0492506020810190505b662386f26fc1000083106123d057662386f26fc1000083816123c6576123c5613bd0565b5b0492506010810190505b6305f5e10083106123f9576305f5e10083816123ef576123ee613bd0565b5b0492506008810190505b612710831061241e57612710838161241457612413613bd0565b5b0492506004810190505b60648310612441576064838161243757612436613bd0565b5b0492506002810190505b600a8310612450576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606124e98273ffffffffffffffffffffffffffffffffffffffff16601460ff166124f0565b9050919050565b6060600060028360026125039190613e3e565b61250d9190613c33565b67ffffffffffffffff81111561252657612525612f44565b5b6040519080825280601f01601f1916602001820160405280156125585781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106125905761258f6135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106125f4576125f36135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026126349190613e3e565b61263e9190613c33565b90505b60018111156126de577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106126805761267f6135dd565b5b1a60f81b828281518110612697576126966135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806126d790613e98565b9050612641565b5060008414612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271990613f0d565b60405180910390fd5b8091505092915050565b60008183106127445761273f8284612974565b61274f565b61274e8383612974565b5b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd90613f79565b60405180910390fd5b6127cf81611c9a565b1561280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690613fe5565b60405180910390fd5b61281d600083836001611f1d565b61282681611c9a565b15612866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285d90613fe5565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612970600083836001612043565b5050565b600082600052816020526040600020905092915050565b82805461299790613364565b90600052602060002090601f0160209004810192826129b95760008555612a00565b82601f106129d257805160ff1916838001178555612a00565b82800160010185558215612a00579182015b828111156129ff5782518255916020019190600101906129e4565b5b509050612a0d9190612a11565b5090565b5b80821115612a2a576000816000905550600101612a12565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a7781612a42565b8114612a8257600080fd5b50565b600081359050612a9481612a6e565b92915050565b600060208284031215612ab057612aaf612a38565b5b6000612abe84828501612a85565b91505092915050565b60008115159050919050565b612adc81612ac7565b82525050565b6000602082019050612af76000830184612ad3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b37578082015181840152602081019050612b1c565b83811115612b46576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b6882612afd565b612b728185612b08565b9350612b82818560208601612b19565b612b8b81612b4c565b840191505092915050565b60006020820190508181036000830152612bb08184612b5d565b905092915050565b6000819050919050565b612bcb81612bb8565b8114612bd657600080fd5b50565b600081359050612be881612bc2565b92915050565b600060208284031215612c0457612c03612a38565b5b6000612c1284828501612bd9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c4682612c1b565b9050919050565b612c5681612c3b565b82525050565b6000602082019050612c716000830184612c4d565b92915050565b612c8081612c3b565b8114612c8b57600080fd5b50565b600081359050612c9d81612c77565b92915050565b60008060408385031215612cba57612cb9612a38565b5b6000612cc885828601612c8e565b9250506020612cd985828601612bd9565b9150509250929050565b612cec81612bb8565b82525050565b6000602082019050612d076000830184612ce3565b92915050565b600060208284031215612d2357612d22612a38565b5b6000612d3184828501612c8e565b91505092915050565b600080600060608486031215612d5357612d52612a38565b5b6000612d6186828701612c8e565b9350506020612d7286828701612c8e565b9250506040612d8386828701612bd9565b9150509250925092565b6000819050919050565b612da081612d8d565b8114612dab57600080fd5b50565b600081359050612dbd81612d97565b92915050565b600060208284031215612dd957612dd8612a38565b5b6000612de784828501612dae565b91505092915050565b612df981612d8d565b82525050565b6000602082019050612e146000830184612df0565b92915050565b60008060408385031215612e3157612e30612a38565b5b6000612e3f85828601612dae565b9250506020612e5085828601612c8e565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e8f81612bb8565b82525050565b6000612ea18383612e86565b60208301905092915050565b6000602082019050919050565b6000612ec582612e5a565b612ecf8185612e65565b9350612eda83612e76565b8060005b83811015612f0b578151612ef28882612e95565b9750612efd83612ead565b925050600181019050612ede565b5085935050505092915050565b60006020820190508181036000830152612f328184612eba565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f7c82612b4c565b810181811067ffffffffffffffff82111715612f9b57612f9a612f44565b5b80604052505050565b6000612fae612a2e565b9050612fba8282612f73565b919050565b600067ffffffffffffffff821115612fda57612fd9612f44565b5b612fe382612b4c565b9050602081019050919050565b82818337600083830152505050565b600061301261300d84612fbf565b612fa4565b90508281526020810184848401111561302e5761302d612f3f565b5b613039848285612ff0565b509392505050565b600082601f83011261305657613055612f3a565b5b8135613066848260208601612fff565b91505092915050565b60006020828403121561308557613084612a38565b5b600082013567ffffffffffffffff8111156130a3576130a2612a3d565b5b6130af84828501613041565b91505092915050565b6130c181612ac7565b81146130cc57600080fd5b50565b6000813590506130de816130b8565b92915050565b600080604083850312156130fb576130fa612a38565b5b600061310985828601612c8e565b925050602061311a858286016130cf565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261314457613143612f3a565b5b8235905067ffffffffffffffff81111561316157613160613124565b5b60208301915083602082028301111561317d5761317c613129565b5b9250929050565b6000806020838503121561319b5761319a612a38565b5b600083013567ffffffffffffffff8111156131b9576131b8612a3d565b5b6131c58582860161312e565b92509250509250929050565b600067ffffffffffffffff8211156131ec576131eb612f44565b5b6131f582612b4c565b9050602081019050919050565b6000613215613210846131d1565b612fa4565b90508281526020810184848401111561323157613230612f3f565b5b61323c848285612ff0565b509392505050565b600082601f83011261325957613258612f3a565b5b8135613269848260208601613202565b91505092915050565b6000806000806080858703121561328c5761328b612a38565b5b600061329a87828801612c8e565b94505060206132ab87828801612c8e565b93505060406132bc87828801612bd9565b925050606085013567ffffffffffffffff8111156132dd576132dc612a3d565b5b6132e987828801613244565b91505092959194509250565b6000806040838503121561330c5761330b612a38565b5b600061331a85828601612c8e565b925050602061332b85828601612c8e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061337c57607f821691505b60208210810361338f5761338e613335565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f1602183612b08565b91506133fc82613395565b604082019050919050565b60006020820190508181036000830152613420816133e4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613483603d83612b08565b915061348e82613427565b604082019050919050565b600060208201905081810360008301526134b281613476565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613515602d83612b08565b9150613520826134b9565b604082019050919050565b6000602082019050818103600083015261354481613508565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006135a7602f83612b08565b91506135b28261354b565b604082019050919050565b600060208201905081810360008301526135d68161359a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061364682612bb8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136785761367761360c565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006136b9601883612b08565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061374b602983612b08565b9150613756826136ef565b604082019050919050565b6000602082019050818103600083015261377a8161373e565b9050919050565b60008160601b9050919050565b600061379982613781565b9050919050565b60006137ab8261378e565b9050919050565b6137c36137be82612c3b565b6137a0565b82525050565b60006137d582846137b2565b60148201915081905092915050565b7f444543414c3a2055524920717565727920666f72206e6f6e6578697374656e7460008201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b6000613840602683612b08565b915061384b826137e4565b604082019050919050565b6000602082019050818103600083015261386f81613833565b9050919050565b7f62617365555249206e6f74207365740000000000000000000000000000000000600082015250565b60006138ac600f83612b08565b91506138b782613876565b602082019050919050565b600060208201905081810360008301526138db8161389f565b9050919050565b600081905092915050565b60006138f882612afd565b61390281856138e2565b9350613912818560208601612b19565b80840191505092915050565b600061392a82856138ed565b915061393682846138ed565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061399e602583612b08565b91506139a982613942565b604082019050919050565b600060208201905081810360008301526139cd81613991565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a30602483612b08565b9150613a3b826139d4565b604082019050919050565b60006020820190508181036000830152613a5f81613a23565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613a9c601983612b08565b9150613aa782613a66565b602082019050919050565b60006020820190508181036000830152613acb81613a8f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b08601f83612b08565b9150613b1382613ad2565b602082019050919050565b60006020820190508181036000830152613b3781613afb565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b9a603283612b08565b9150613ba582613b3e565b604082019050919050565b60006020820190508181036000830152613bc981613b8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c0a82612bb8565b9150613c1583612bb8565b925082821015613c2857613c2761360c565b5b828203905092915050565b6000613c3e82612bb8565b9150613c4983612bb8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7e57613c7d61360c565b5b828201905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613cbf6017836138e2565b9150613cca82613c89565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613d0b6011836138e2565b9150613d1682613cd5565b601182019050919050565b6000613d2c82613cb2565b9150613d3882856138ed565b9150613d4382613cfe565b9150613d4f82846138ed565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613d8282613d5b565b613d8c8185613d66565b9350613d9c818560208601612b19565b613da581612b4c565b840191505092915050565b6000608082019050613dc56000830187612c4d565b613dd26020830186612c4d565b613ddf6040830185612ce3565b8181036060830152613df18184613d77565b905095945050505050565b600081519050613e0b81612a6e565b92915050565b600060208284031215613e2757613e26612a38565b5b6000613e3584828501613dfc565b91505092915050565b6000613e4982612bb8565b9150613e5483612bb8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e8d57613e8c61360c565b5b828202905092915050565b6000613ea382612bb8565b915060008203613eb657613eb561360c565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613ef7602083612b08565b9150613f0282613ec1565b602082019050919050565b60006020820190508181036000830152613f2681613eea565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613f63602083612b08565b9150613f6e82613f2d565b602082019050919050565b60006020820190508181036000830152613f9281613f56565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613fcf601c83612b08565b9150613fda82613f99565b602082019050919050565b60006020820190508181036000830152613ffe81613fc2565b905091905056fea264697066735822122091285ac80922404af851db7c5a26b336db8998ece95769c4b73e9499d6e0f7d364736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f646563616c2f6d657461646174612f31302f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000d523545b49076807094c0718f5eba00c0ae72fd6000000000000000000000000befaff31e713bb898ea26e30df8aa1f4b0b818b9

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a217fddf116100a2578063b88d4fde11610071578063b88d4fde1461057b578063c87b56dd14610597578063d547741f146105c7578063e985e9c5146105e3576101da565b8063a217fddf146104f5578063a22cb46514610513578063a70160231461052f578063b77a147b1461054b576101da565b806391d14854116100de57806391d148541461046d57806395d89b411461049d5780639abc8320146104bb578063a0bcfc7f146104d9576101da565b806370a08231146104035780637cb64759146104335780638da5cb5b1461044f576101da565b8063248a9ca31161017c57806336568abe1161014b57806336568abe1461036b57806342842e0e146103875780635de6dc55146103a35780636352211e146103d3576101da565b8063248a9ca3146102e35780632eb4a7ab146103135780632f2ff15d1461033157806332cb6b0c1461034d576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd146102795780631e7269c51461029757806323b872dd146102c7576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190612a9a565b610613565b6040516102069190612ae2565b60405180910390f35b610217610625565b6040516102249190612b96565b60405180910390f35b61024760048036038101906102429190612bee565b6106b7565b6040516102549190612c5c565b60405180910390f35b61027760048036038101906102729190612ca3565b6106fd565b005b610281610814565b60405161028e9190612cf2565b60405180910390f35b6102b160048036038101906102ac9190612d0d565b61081a565b6040516102be9190612ae2565b60405180910390f35b6102e160048036038101906102dc9190612d3a565b61083a565b005b6102fd60048036038101906102f89190612dc3565b61089a565b60405161030a9190612dff565b60405180910390f35b61031b6108ba565b6040516103289190612dff565b60405180910390f35b61034b60048036038101906103469190612e1a565b6108c0565b005b6103556108e1565b6040516103629190612cf2565b60405180910390f35b61038560048036038101906103809190612e1a565b6108e6565b005b6103a1600480360381019061039c9190612d3a565b610969565b005b6103bd60048036038101906103b89190612d0d565b610989565b6040516103ca9190612f18565b60405180910390f35b6103ed60048036038101906103e89190612bee565b610a84565b6040516103fa9190612c5c565b60405180910390f35b61041d60048036038101906104189190612d0d565b610b0a565b60405161042a9190612cf2565b60405180910390f35b61044d60048036038101906104489190612dc3565b610bc1565b005b610457610bd9565b6040516104649190612c5c565b60405180910390f35b61048760048036038101906104829190612e1a565b610c03565b6040516104949190612ae2565b60405180910390f35b6104a5610c6e565b6040516104b29190612b96565b60405180910390f35b6104c3610d00565b6040516104d09190612b96565b60405180910390f35b6104f360048036038101906104ee919061306f565b610d8e565b005b6104fd610db6565b60405161050a9190612dff565b60405180910390f35b61052d600480360381019061052891906130e4565b610dbd565b005b61054960048036038101906105449190612d0d565b610dd3565b005b61056560048036038101906105609190613184565b610ded565b6040516105729190612cf2565b60405180910390f35b61059560048036038101906105909190613272565b611050565b005b6105b160048036038101906105ac9190612bee565b6110b2565b6040516105be9190612b96565b60405180910390f35b6105e160048036038101906105dc9190612e1a565b61117e565b005b6105fd60048036038101906105f891906132f5565b61119f565b60405161060a9190612ae2565b60405180910390f35b600061061e82611233565b9050919050565b60606000805461063490613364565b80601f016020809104026020016040519081016040528092919081815260200182805461066090613364565b80156106ad5780601f10610682576101008083540402835291602001916106ad565b820191906000526020600020905b81548152906001019060200180831161069057829003601f168201915b5050505050905090565b60006106c2826112ad565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070882610a84565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076f90613407565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107976112f8565b73ffffffffffffffffffffffffffffffffffffffff1614806107c657506107c5816107c06112f8565b61119f565b5b610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90613499565b60405180910390fd5b61080f8383611300565b505050565b606e5481565b606d6020528060005260406000206000915054906101000a900460ff1681565b61084b6108456112f8565b826113b9565b61088a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108819061352b565b60405180910390fd5b61089583838361144e565b505050565b600060076000838152602001908152602001600020600101549050919050565b606f5481565b6108c98261089a565b6108d281611747565b6108dc838361175b565b505050565b606481565b6108ee6112f8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461095b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610952906135bd565b60405180910390fd5b610965828261183c565b5050565b61098483838360405180602001604052806000815250611050565b505050565b6060600061099683610b0a565b905060008167ffffffffffffffff8111156109b4576109b3612f44565b5b6040519080825280602002602001820160405280156109e25781602001602082028036833780820191505090505b5090506000805b606e54811015610a78578573ffffffffffffffffffffffffffffffffffffffff16610a1382610a84565b73ffffffffffffffffffffffffffffffffffffffff1603610a5d5780838381518110610a4257610a416135dd565b5b6020026020010181815250508180610a599061363b565b9250505b83820315610a78578080610a709061363b565b9150506109e9565b50819350505050919050565b600080610a908361191e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af8906136cf565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613761565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000801b610bce81611747565b81606f819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610c7d90613364565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca990613364565b8015610cf65780601f10610ccb57610100808354040283529160200191610cf6565b820191906000526020600020905b815481529060010190602001808311610cd957829003601f168201915b5050505050905090565b60708054610d0d90613364565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3990613364565b8015610d865780601f10610d5b57610100808354040283529160200191610d86565b820191906000526020600020905b815481529060010190602001808311610d6957829003601f168201915b505050505081565b6000801b610d9b81611747565b8160709080519060200190610db192919061298b565b505050565b6000801b81565b610dcf610dc86112f8565b838361195b565b5050565b6000801b610de081611747565b610de982611ac7565b5050565b6000610df7611b8d565b6064606e5410610e33576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610eb7576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ed63373ffffffffffffffffffffffffffffffffffffffff16611bdc565b15610f0d576040517f2dd5679600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600033604051602001610f2091906137c9565b604051602081830303815290604052805190602001209050610f86848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050606f5483611bff565b610fbc576040517f0ed6f64500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000606e549050606e6000815480929190610fd69061363b565b91905055506001606d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061103d3382611c16565b809250505061104a611c34565b92915050565b61106161105b6112f8565b836113b9565b6110a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110979061352b565b60405180910390fd5b6110ac84848484611c3e565b50505050565b60606110bd82611c9a565b6110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390613856565b60405180910390fd5b6000611106611cdb565b9050600081511161114c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611143906138c2565b60405180910390fd5b8061115684611d6d565b60405160200161116792919061391e565b604051602081830303815290604052915050919050565b6111878261089a565b61119081611747565b61119a838361183c565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112a657506112a582611e3b565b5b9050919050565b6112b681611c9a565b6112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec906136cf565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661137383610a84565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113c583610a84565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114075750611406818561119f565b5b8061144557508373ffffffffffffffffffffffffffffffffffffffff1661142d846106b7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661146e82610a84565b73ffffffffffffffffffffffffffffffffffffffff16146114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb906139b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613a46565b60405180910390fd5b6115408383836001611f1d565b8273ffffffffffffffffffffffffffffffffffffffff1661156082610a84565b73ffffffffffffffffffffffffffffffffffffffff16146115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad906139b4565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117428383836001612043565b505050565b611758816117536112f8565b612049565b50565b6117658282610c03565b6118385760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117dd6112f8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6118468282610c03565b1561191a5760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118bf6112f8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c090613ab2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aba9190612ae2565b60405180910390a3505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff6a7092513e1f3f720c1d0ad65eb323494afe10d43e19dc4a40bac61ade7579160405160405180910390a35050565b600260065403611bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc990613b1e565b60405180910390fd5b6002600681905550565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082611c0c85846120ce565b1490509392505050565b611c30828260405180602001604052806000815250612124565b5050565b6001600681905550565b611c4984848461144e565b611c558484848461217f565b611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b90613bb0565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611cbc8361191e565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060708054611cea90613364565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1690613364565b8015611d635780601f10611d3857610100808354040283529160200191611d63565b820191906000526020600020905b815481529060010190602001808311611d4657829003601f168201915b5050505050905090565b606060006001611d7c84612306565b01905060008167ffffffffffffffff811115611d9b57611d9a612f44565b5b6040519080825280601f01601f191660200182016040528015611dcd5781602001600182028036833780820191505090505b509050600082602001820190505b600115611e30578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e2457611e23613bd0565b5b04945060008503611ddb575b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f0657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f165750611f1582612459565b5b9050919050565b600181111561203d57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611fb15780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa99190613bff565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461203c5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120349190613c33565b925050819055505b5b50505050565b50505050565b6120538282610c03565b6120ca57612060816124c3565b61206e8360001c60206124f0565b60405160200161207f929190613d21565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c19190612b96565b60405180910390fd5b5050565b60008082905060005b845181101561211957612104828683815181106120f7576120f66135dd565b5b602002602001015161272c565b915080806121119061363b565b9150506120d7565b508091505092915050565b61212e8383612757565b61213b600084848461217f565b61217a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217190613bb0565b60405180910390fd5b505050565b60006121a08473ffffffffffffffffffffffffffffffffffffffff16611bdc565b156122f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121c96112f8565b8786866040518563ffffffff1660e01b81526004016121eb9493929190613db0565b6020604051808303816000875af192505050801561222757506040513d601f19601f820116820180604052508101906122249190613e11565b60015b6122a9573d8060008114612257576040519150601f19603f3d011682016040523d82523d6000602084013e61225c565b606091505b5060008151036122a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229890613bb0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122fe565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612364577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161235a57612359613bd0565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123a1576d04ee2d6d415b85acef8100000000838161239757612396613bd0565b5b0492506020810190505b662386f26fc1000083106123d057662386f26fc1000083816123c6576123c5613bd0565b5b0492506010810190505b6305f5e10083106123f9576305f5e10083816123ef576123ee613bd0565b5b0492506008810190505b612710831061241e57612710838161241457612413613bd0565b5b0492506004810190505b60648310612441576064838161243757612436613bd0565b5b0492506002810190505b600a8310612450576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606124e98273ffffffffffffffffffffffffffffffffffffffff16601460ff166124f0565b9050919050565b6060600060028360026125039190613e3e565b61250d9190613c33565b67ffffffffffffffff81111561252657612525612f44565b5b6040519080825280601f01601f1916602001820160405280156125585781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106125905761258f6135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106125f4576125f36135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026126349190613e3e565b61263e9190613c33565b90505b60018111156126de577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106126805761267f6135dd565b5b1a60f81b828281518110612697576126966135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806126d790613e98565b9050612641565b5060008414612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271990613f0d565b60405180910390fd5b8091505092915050565b60008183106127445761273f8284612974565b61274f565b61274e8383612974565b5b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bd90613f79565b60405180910390fd5b6127cf81611c9a565b1561280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690613fe5565b60405180910390fd5b61281d600083836001611f1d565b61282681611c9a565b15612866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285d90613fe5565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612970600083836001612043565b5050565b600082600052816020526040600020905092915050565b82805461299790613364565b90600052602060002090601f0160209004810192826129b95760008555612a00565b82601f106129d257805160ff1916838001178555612a00565b82800160010185558215612a00579182015b828111156129ff5782518255916020019190600101906129e4565b5b509050612a0d9190612a11565b5090565b5b80821115612a2a576000816000905550600101612a12565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a7781612a42565b8114612a8257600080fd5b50565b600081359050612a9481612a6e565b92915050565b600060208284031215612ab057612aaf612a38565b5b6000612abe84828501612a85565b91505092915050565b60008115159050919050565b612adc81612ac7565b82525050565b6000602082019050612af76000830184612ad3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b37578082015181840152602081019050612b1c565b83811115612b46576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b6882612afd565b612b728185612b08565b9350612b82818560208601612b19565b612b8b81612b4c565b840191505092915050565b60006020820190508181036000830152612bb08184612b5d565b905092915050565b6000819050919050565b612bcb81612bb8565b8114612bd657600080fd5b50565b600081359050612be881612bc2565b92915050565b600060208284031215612c0457612c03612a38565b5b6000612c1284828501612bd9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c4682612c1b565b9050919050565b612c5681612c3b565b82525050565b6000602082019050612c716000830184612c4d565b92915050565b612c8081612c3b565b8114612c8b57600080fd5b50565b600081359050612c9d81612c77565b92915050565b60008060408385031215612cba57612cb9612a38565b5b6000612cc885828601612c8e565b9250506020612cd985828601612bd9565b9150509250929050565b612cec81612bb8565b82525050565b6000602082019050612d076000830184612ce3565b92915050565b600060208284031215612d2357612d22612a38565b5b6000612d3184828501612c8e565b91505092915050565b600080600060608486031215612d5357612d52612a38565b5b6000612d6186828701612c8e565b9350506020612d7286828701612c8e565b9250506040612d8386828701612bd9565b9150509250925092565b6000819050919050565b612da081612d8d565b8114612dab57600080fd5b50565b600081359050612dbd81612d97565b92915050565b600060208284031215612dd957612dd8612a38565b5b6000612de784828501612dae565b91505092915050565b612df981612d8d565b82525050565b6000602082019050612e146000830184612df0565b92915050565b60008060408385031215612e3157612e30612a38565b5b6000612e3f85828601612dae565b9250506020612e5085828601612c8e565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e8f81612bb8565b82525050565b6000612ea18383612e86565b60208301905092915050565b6000602082019050919050565b6000612ec582612e5a565b612ecf8185612e65565b9350612eda83612e76565b8060005b83811015612f0b578151612ef28882612e95565b9750612efd83612ead565b925050600181019050612ede565b5085935050505092915050565b60006020820190508181036000830152612f328184612eba565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f7c82612b4c565b810181811067ffffffffffffffff82111715612f9b57612f9a612f44565b5b80604052505050565b6000612fae612a2e565b9050612fba8282612f73565b919050565b600067ffffffffffffffff821115612fda57612fd9612f44565b5b612fe382612b4c565b9050602081019050919050565b82818337600083830152505050565b600061301261300d84612fbf565b612fa4565b90508281526020810184848401111561302e5761302d612f3f565b5b613039848285612ff0565b509392505050565b600082601f83011261305657613055612f3a565b5b8135613066848260208601612fff565b91505092915050565b60006020828403121561308557613084612a38565b5b600082013567ffffffffffffffff8111156130a3576130a2612a3d565b5b6130af84828501613041565b91505092915050565b6130c181612ac7565b81146130cc57600080fd5b50565b6000813590506130de816130b8565b92915050565b600080604083850312156130fb576130fa612a38565b5b600061310985828601612c8e565b925050602061311a858286016130cf565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261314457613143612f3a565b5b8235905067ffffffffffffffff81111561316157613160613124565b5b60208301915083602082028301111561317d5761317c613129565b5b9250929050565b6000806020838503121561319b5761319a612a38565b5b600083013567ffffffffffffffff8111156131b9576131b8612a3d565b5b6131c58582860161312e565b92509250509250929050565b600067ffffffffffffffff8211156131ec576131eb612f44565b5b6131f582612b4c565b9050602081019050919050565b6000613215613210846131d1565b612fa4565b90508281526020810184848401111561323157613230612f3f565b5b61323c848285612ff0565b509392505050565b600082601f83011261325957613258612f3a565b5b8135613269848260208601613202565b91505092915050565b6000806000806080858703121561328c5761328b612a38565b5b600061329a87828801612c8e565b94505060206132ab87828801612c8e565b93505060406132bc87828801612bd9565b925050606085013567ffffffffffffffff8111156132dd576132dc612a3d565b5b6132e987828801613244565b91505092959194509250565b6000806040838503121561330c5761330b612a38565b5b600061331a85828601612c8e565b925050602061332b85828601612c8e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061337c57607f821691505b60208210810361338f5761338e613335565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006133f1602183612b08565b91506133fc82613395565b604082019050919050565b60006020820190508181036000830152613420816133e4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613483603d83612b08565b915061348e82613427565b604082019050919050565b600060208201905081810360008301526134b281613476565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613515602d83612b08565b9150613520826134b9565b604082019050919050565b6000602082019050818103600083015261354481613508565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006135a7602f83612b08565b91506135b28261354b565b604082019050919050565b600060208201905081810360008301526135d68161359a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061364682612bb8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136785761367761360c565b5b600182019050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006136b9601883612b08565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061374b602983612b08565b9150613756826136ef565b604082019050919050565b6000602082019050818103600083015261377a8161373e565b9050919050565b60008160601b9050919050565b600061379982613781565b9050919050565b60006137ab8261378e565b9050919050565b6137c36137be82612c3b565b6137a0565b82525050565b60006137d582846137b2565b60148201915081905092915050565b7f444543414c3a2055524920717565727920666f72206e6f6e6578697374656e7460008201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b6000613840602683612b08565b915061384b826137e4565b604082019050919050565b6000602082019050818103600083015261386f81613833565b9050919050565b7f62617365555249206e6f74207365740000000000000000000000000000000000600082015250565b60006138ac600f83612b08565b91506138b782613876565b602082019050919050565b600060208201905081810360008301526138db8161389f565b9050919050565b600081905092915050565b60006138f882612afd565b61390281856138e2565b9350613912818560208601612b19565b80840191505092915050565b600061392a82856138ed565b915061393682846138ed565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061399e602583612b08565b91506139a982613942565b604082019050919050565b600060208201905081810360008301526139cd81613991565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a30602483612b08565b9150613a3b826139d4565b604082019050919050565b60006020820190508181036000830152613a5f81613a23565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613a9c601983612b08565b9150613aa782613a66565b602082019050919050565b60006020820190508181036000830152613acb81613a8f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b08601f83612b08565b9150613b1382613ad2565b602082019050919050565b60006020820190508181036000830152613b3781613afb565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b9a603283612b08565b9150613ba582613b3e565b604082019050919050565b60006020820190508181036000830152613bc981613b8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c0a82612bb8565b9150613c1583612bb8565b925082821015613c2857613c2761360c565b5b828203905092915050565b6000613c3e82612bb8565b9150613c4983612bb8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7e57613c7d61360c565b5b828201905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000613cbf6017836138e2565b9150613cca82613c89565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613d0b6011836138e2565b9150613d1682613cd5565b601182019050919050565b6000613d2c82613cb2565b9150613d3882856138ed565b9150613d4382613cfe565b9150613d4f82846138ed565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613d8282613d5b565b613d8c8185613d66565b9350613d9c818560208601612b19565b613da581612b4c565b840191505092915050565b6000608082019050613dc56000830187612c4d565b613dd26020830186612c4d565b613ddf6040830185612ce3565b8181036060830152613df18184613d77565b905095945050505050565b600081519050613e0b81612a6e565b92915050565b600060208284031215613e2757613e26612a38565b5b6000613e3584828501613dfc565b91505092915050565b6000613e4982612bb8565b9150613e5483612bb8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e8d57613e8c61360c565b5b828202905092915050565b6000613ea382612bb8565b915060008203613eb657613eb561360c565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000613ef7602083612b08565b9150613f0282613ec1565b602082019050919050565b60006020820190508181036000830152613f2681613eea565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613f63602083612b08565b9150613f6e82613f2d565b602082019050919050565b60006020820190508181036000830152613f9281613f56565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613fcf601c83612b08565b9150613fda82613f99565b602082019050919050565b60006020820190508181036000830152613ffe81613fc2565b905091905056fea264697066735822122091285ac80922404af851db7c5a26b336db8998ece95769c4b73e9499d6e0f7d364736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f646563616c2f6d657461646174612f31302f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000d523545b49076807094c0718f5eba00c0ae72fd6000000000000000000000000befaff31e713bb898ea26e30df8aa1f4b0b818b9

-----Decoded View---------------
Arg [0] : _baseUri (string): https://client-api.deca.systems/decal/metadata/10/
Arg [1] : _admins (address[]): 0xd523545B49076807094C0718F5eBa00C0aE72fD6,0xBEfaFF31e713Bb898ea26e30dF8aA1f4B0b818b9

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [3] : 68747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f
Arg [4] : 646563616c2f6d657461646174612f31302f0000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 000000000000000000000000d523545b49076807094c0718f5eba00c0ae72fd6
Arg [7] : 000000000000000000000000befaff31e713bb898ea26e30df8aa1f4b0b818b9


Deployed Bytecode Sourcemap

77031:2864:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79586:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60566:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62078:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61596:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77214:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77169:38;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62778:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48468:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77298:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48909:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77251:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50053:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63184:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79087:435;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60276:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60007:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77691:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75906:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46941:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60735:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77330:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77964:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46046:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62321:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77829:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78102:611;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63440:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78719:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49349:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62547:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79586:198;79719:4;79742:36;79766:11;79742:23;:36::i;:::-;79735:43;;79586:198;;;:::o;60566:100::-;60620:13;60653:5;60646:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60566:100;:::o;62078:171::-;62154:7;62174:23;62189:7;62174:14;:23::i;:::-;62217:15;:24;62233:7;62217:24;;;;;;;;;;;;;;;;;;;;;62210:31;;62078:171;;;:::o;61596:416::-;61677:13;61693:23;61708:7;61693:14;:23::i;:::-;61677:39;;61741:5;61735:11;;:2;:11;;;61727:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;61835:5;61819:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;61844:37;61861:5;61868:12;:10;:12::i;:::-;61844:16;:37::i;:::-;61819:62;61797:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;61983:21;61992:2;61996:7;61983:8;:21::i;:::-;61666:346;61596:416;;:::o;77214:30::-;;;;:::o;77169:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;62778:335::-;62973:41;62992:12;:10;:12::i;:::-;63006:7;62973:18;:41::i;:::-;62965:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;63077:28;63087:4;63093:2;63097:7;63077:9;:28::i;:::-;62778:335;;;:::o;48468:131::-;48542:7;48569:6;:12;48576:4;48569:12;;;;;;;;;;;:22;;;48562:29;;48468:131;;;:::o;77298:25::-;;;;:::o;48909:147::-;48992:18;49005:4;48992:12;:18::i;:::-;46537:16;46548:4;46537:10;:16::i;:::-;49023:25:::1;49034:4;49040:7;49023:10;:25::i;:::-;48909:147:::0;;;:::o;77251:40::-;77288:3;77251:40;:::o;50053:218::-;50160:12;:10;:12::i;:::-;50149:23;;:7;:23;;;50141:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;50237:26;50249:4;50255:7;50237:11;:26::i;:::-;50053:218;;:::o;63184:185::-;63322:39;63339:4;63345:2;63349:7;63322:39;;;;;;;;;;;;:16;:39::i;:::-;63184:185;;;:::o;79087:435::-;79165:16;79193:18;79214:17;79224:6;79214:9;:17::i;:::-;79193:38;;79238:25;79280:10;79266:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79238:53;;79298:12;79326:9;79321:174;79341:11;;79337:1;:15;79321:174;;;79386:6;79372:20;;:10;79380:1;79372:7;:10::i;:::-;:20;;;79368:82;;79422:1;79405:8;79414:4;79405:14;;;;;;;;:::i;:::-;;;;;;;:18;;;;;79434:6;;;;;:::i;:::-;;;;79368:82;79470:10;79462:4;:18;79458:29;79482:5;79458:29;79354:3;;;;;:::i;:::-;;;;79321:174;;;;79508:8;79501:15;;;;;79087:435;;;:::o;60276:223::-;60348:7;60368:13;60384:17;60393:7;60384:8;:17::i;:::-;60368:33;;60437:1;60420:19;;:5;:19;;;60412:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;60486:5;60479:12;;;60276:223;;;:::o;60007:207::-;60079:7;60124:1;60107:19;;:5;:19;;;60099:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;60190:9;:16;60200:5;60190:16;;;;;;;;;;;;;;;;60183:23;;60007:207;;;:::o;77691:132::-;46091:4;77763:18;;46537:16;46548:4;46537:10;:16::i;:::-;77806:11:::1;77793:10;:24;;;;77691:132:::0;;:::o;75906:98::-;75952:7;75979:17;;;;;;;;;;;75972:24;;75906:98;:::o;46941:147::-;47027:4;47051:6;:12;47058:4;47051:12;;;;;;;;;;;:20;;:29;47072:7;47051:29;;;;;;;;;;;;;;;;;;;;;;;;;47044:36;;46941:147;;;;:::o;60735:104::-;60791:13;60824:7;60817:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60735:104;:::o;77330:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;77964:132::-;46091:4;78039:18;;46537:16;46548:4;46537:10;:16::i;:::-;78079:11:::1;78069:7;:21;;;;;;;;;;;;:::i;:::-;;77964:132:::0;;:::o;46046:49::-;46091:4;46046:49;;;:::o;62321:155::-;62416:52;62435:12;:10;:12::i;:::-;62449:8;62459;62416:18;:52::i;:::-;62321:155;;:::o;77829:129::-;46091:4;77898:18;;46537:16;46548:4;46537:10;:16::i;:::-;77928:24:::1;77942:9;77928:13;:24::i;:::-;77829:129:::0;;:::o;78102:611::-;78195:7;14947:21;:19;:21::i;:::-;77288:3:::1;78218:11;;:25;78214:56;;78252:18;;;;;;;;;;;;;;78214:56;78281:6;:18;78288:10;78281:18;;;;;;;;;;;;;;;;;;;;;;;;;78277:46;;;78308:15;;;;;;;;;;;;;;78277:46;78334:23;:10;:21;;;:23::i;:::-;78330:60;;;78366:24;;;;;;;;;;;;;;78330:60;78397:12;78439:10;78422:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;78412:39;;;;;;78397:54;;78463:50;78482:12;;78463:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78496:10;;78508:4;78463:18;:50::i;:::-;78458:101;;78529:30;;;;;;;;;;;;;;78458:101;78568:15;78586:11;;78568:29;;78604:11;;:13;;;;;;;;;:::i;:::-;;;;;;78645:4;78624:6;:18;78631:10;78624:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;78656:30;78666:10;78678:7;78656:9;:30::i;:::-;78700:7;78693:14;;;;14991:20:::0;:18;:20::i;:::-;78102:611;;;;:::o;63440:322::-;63614:41;63633:12;:10;:12::i;:::-;63647:7;63614:18;:41::i;:::-;63606:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;63716:38;63730:4;63736:2;63740:7;63749:4;63716:13;:38::i;:::-;63440:322;;;;:::o;78719:362::-;78813:13;78846:17;78854:8;78846:7;:17::i;:::-;78838:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78913:21;78937:10;:8;:10::i;:::-;78913:34;;78986:1;78968:7;78962:21;:25;78954:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;79045:7;79054:19;:8;:17;:19::i;:::-;79028:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79014:61;;;78719:362;;;:::o;49349:149::-;49433:18;49446:4;49433:12;:18::i;:::-;46537:16;46548:4;46537:10;:16::i;:::-;49464:26:::1;49476:4;49482:7;49464:11;:26::i;:::-;49349:149:::0;;;:::o;62547:164::-;62644:4;62668:18;:25;62687:5;62668:25;;;;;;;;;;;;;;;:35;62694:8;62668:35;;;;;;;;;;;;;;;;;;;;;;;;;62661:42;;62547:164;;;;:::o;46645:204::-;46730:4;46769:32;46754:47;;;:11;:47;;;;:87;;;;46805:36;46829:11;46805:23;:36::i;:::-;46754:87;46747:94;;46645:204;;;:::o;71897:135::-;71979:16;71987:7;71979;:16::i;:::-;71971:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;71897:135;:::o;31426:98::-;31479:7;31506:10;31499:17;;31426:98;:::o;71176:174::-;71278:2;71251:15;:24;71267:7;71251:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;71334:7;71330:2;71296:46;;71305:23;71320:7;71305:14;:23::i;:::-;71296:46;;;;;;;;;;;;71176:174;;:::o;65795:264::-;65888:4;65905:13;65921:23;65936:7;65921:14;:23::i;:::-;65905:39;;65974:5;65963:16;;:7;:16;;;:52;;;;65983:32;66000:5;66007:7;65983:16;:32::i;:::-;65963:52;:87;;;;66043:7;66019:31;;:20;66031:7;66019:11;:20::i;:::-;:31;;;65963:87;65955:96;;;65795:264;;;;:::o;69794:1263::-;69953:4;69926:31;;:23;69941:7;69926:14;:23::i;:::-;:31;;;69918:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;70032:1;70018:16;;:2;:16;;;70010:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;70088:42;70109:4;70115:2;70119:7;70128:1;70088:20;:42::i;:::-;70260:4;70233:31;;:23;70248:7;70233:14;:23::i;:::-;:31;;;70225:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;70378:15;:24;70394:7;70378:24;;;;;;;;;;;;70371:31;;;;;;;;;;;70873:1;70854:9;:15;70864:4;70854:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;70906:1;70889:9;:13;70899:2;70889:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;70948:2;70929:7;:16;70937:7;70929:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;70987:7;70983:2;70968:27;;70977:4;70968:27;;;;;;;;;;;;71008:41;71028:4;71034:2;71038:7;71047:1;71008:19;:41::i;:::-;69794:1263;;;:::o;47392:105::-;47459:30;47470:4;47476:12;:10;:12::i;:::-;47459:10;:30::i;:::-;47392:105;:::o;51650:238::-;51734:22;51742:4;51748:7;51734;:22::i;:::-;51729:152;;51805:4;51773:6;:12;51780:4;51773:12;;;;;;;;;;;:20;;:29;51794:7;51773:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;51856:12;:10;:12::i;:::-;51829:40;;51847:7;51829:40;;51841:4;51829:40;;;;;;;;;;51729:152;51650:238;;:::o;52068:239::-;52152:22;52160:4;52166:7;52152;:22::i;:::-;52148:152;;;52223:5;52191:6;:12;52198:4;52191:12;;;;;;;;;;;:20;;:29;52212:7;52191:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;52275:12;:10;:12::i;:::-;52248:40;;52266:7;52248:40;;52260:4;52248:40;;;;;;;;;;52148:152;52068:239;;:::o;65070:117::-;65136:7;65163;:16;65171:7;65163:16;;;;;;;;;;;;;;;;;;;;;65156:23;;65070:117;;;:::o;71493:315::-;71648:8;71639:17;;:5;:17;;;71631:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71735:8;71697:18;:25;71716:5;71697:25;;;;;;;;;;;;;;;:35;71723:8;71697:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;71781:8;71759:41;;71774:5;71759:41;;;71791:8;71759:41;;;;;;:::i;:::-;;;;;;;;71493:315;;;:::o;76221:200::-;76290:16;76309:17;;;;;;;;;;;76290:36;;76357:8;76337:17;;:28;;;;;;;;;;;;;;;;;;76404:8;76381:32;;76394:8;76381:32;;;;;;;;;;;;76279:142;76221:200;:::o;15027:293::-;14429:1;15161:7;;:19;15153:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14429:1;15294:7;:18;;;;15027:293::o;32873:326::-;32933:4;33190:1;33168:7;:19;;;:23;33161:30;;32873:326;;;:::o;4263:190::-;4388:4;4441;4412:25;4425:5;4432:4;4412:12;:25::i;:::-;:33;4405:40;;4263:190;;;;;:::o;66401:110::-;66477:26;66487:2;66491:7;66477:26;;;;;;;;;;;;:9;:26::i;:::-;66401:110;;:::o;15328:213::-;14385:1;15511:7;:22;;;;15328:213::o;64643:313::-;64799:28;64809:4;64815:2;64819:7;64799:9;:28::i;:::-;64846:47;64869:4;64875:2;64879:7;64888:4;64846:22;:47::i;:::-;64838:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;64643:313;;;;:::o;65500:128::-;65565:4;65618:1;65589:31;;:17;65598:7;65589:8;:17::i;:::-;:31;;;;65582:38;;65500:128;;;:::o;79790:102::-;79850:13;79879:7;79872:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79790:102;:::o;28853:716::-;28909:13;28960:14;28997:1;28977:17;28988:5;28977:10;:17::i;:::-;:21;28960:38;;29013:20;29047:6;29036:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29013:41;;29069:11;29198:6;29194:2;29190:15;29182:6;29178:28;29171:35;;29235:288;29242:4;29235:288;;;29267:5;;;;;;;;29409:8;29404:2;29397:5;29393:14;29388:30;29383:3;29375:44;29465:2;29456:11;;;;;;:::i;:::-;;;;;29499:1;29490:5;:10;29235:288;29486:21;29235:288;29544:6;29537:13;;;;;28853:716;;;:::o;59638:305::-;59740:4;59792:25;59777:40;;;:11;:40;;;;:105;;;;59849:33;59834:48;;;:11;:48;;;;59777:105;:158;;;;59899:36;59923:11;59899:23;:36::i;:::-;59777:158;59757:178;;59638:305;;;:::o;74181:410::-;74371:1;74359:9;:13;74355:229;;;74409:1;74393:18;;:4;:18;;;74389:87;;74451:9;74432;:15;74442:4;74432:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;74389:87;74508:1;74494:16;;:2;:16;;;74490:83;;74548:9;74531;:13;74541:2;74531:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;74490:83;74355:229;74181:410;;;;:::o;75313:158::-;;;;;:::o;47787:492::-;47876:22;47884:4;47890:7;47876;:22::i;:::-;47871:401;;48064:28;48084:7;48064:19;:28::i;:::-;48165:38;48193:4;48185:13;;48200:2;48165:19;:38::i;:::-;47969:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47915:345;;;;;;;;;;;:::i;:::-;;;;;;;;47871:401;47787:492;;:::o;5130:296::-;5213:7;5233:20;5256:4;5233:27;;5276:9;5271:118;5295:5;:12;5291:1;:16;5271:118;;;5344:33;5354:12;5368:5;5374:1;5368:8;;;;;;;;:::i;:::-;;;;;;;;5344:9;:33::i;:::-;5329:48;;5309:3;;;;;:::i;:::-;;;;5271:118;;;;5406:12;5399:19;;;5130:296;;;;:::o;66738:319::-;66867:18;66873:2;66877:7;66867:5;:18::i;:::-;66918:53;66949:1;66953:2;66957:7;66966:4;66918:22;:53::i;:::-;66896:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;66738:319;;;:::o;72596:853::-;72750:4;72771:15;:2;:13;;;:15::i;:::-;72767:675;;;72823:2;72807:36;;;72844:12;:10;:12::i;:::-;72858:4;72864:7;72873:4;72807:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;72803:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73065:1;73048:6;:13;:18;73044:328;;73091:60;;;;;;;;;;:::i;:::-;;;;;;;;73044:328;73322:6;73316:13;73307:6;73303:2;73299:15;73292:38;72803:584;72939:41;;;72929:51;;;:6;:51;;;;72922:58;;;;;72767:675;73426:4;73419:11;;72596:853;;;;;;;:::o;25719:922::-;25772:7;25792:14;25809:1;25792:18;;25859:6;25850:5;:15;25846:102;;25895:6;25886:15;;;;;;:::i;:::-;;;;;25930:2;25920:12;;;;25846:102;25975:6;25966:5;:15;25962:102;;26011:6;26002:15;;;;;;:::i;:::-;;;;;26046:2;26036:12;;;;25962:102;26091:6;26082:5;:15;26078:102;;26127:6;26118:15;;;;;;:::i;:::-;;;;;26162:2;26152:12;;;;26078:102;26207:5;26198;:14;26194:99;;26242:5;26233:14;;;;;;:::i;:::-;;;;;26276:1;26266:11;;;;26194:99;26320:5;26311;:14;26307:99;;26355:5;26346:14;;;;;;:::i;:::-;;;;;26389:1;26379:11;;;;26307:99;26433:5;26424;:14;26420:99;;26468:5;26459:14;;;;;;:::i;:::-;;;;;26502:1;26492:11;;;;26420:99;26546:5;26537;:14;26533:66;;26582:1;26572:11;;;;26533:66;26627:6;26620:13;;;25719:922;;;:::o;43904:157::-;43989:4;44028:25;44013:40;;;:11;:40;;;;44006:47;;43904:157;;;:::o;30589:151::-;30647:13;30680:52;30708:4;30692:22;;28744:2;30680:52;;:11;:52::i;:::-;30673:59;;30589:151;;;:::o;29985:447::-;30060:13;30086:19;30131:1;30122:6;30118:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;30108:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30086:47;;30144:15;:6;30151:1;30144:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;30170;:6;30177:1;30170:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;30201:9;30226:1;30217:6;30213:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;30201:26;;30196:131;30233:1;30229;:5;30196:131;;;30268:8;30285:3;30277:5;:11;30268:21;;;;;;;:::i;:::-;;;;;30256:6;30263:1;30256:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;30314:1;30304:11;;;;;30236:3;;;;:::i;:::-;;;30196:131;;;;30354:1;30345:5;:10;30337:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;30417:6;30403:21;;;29985:447;;;;:::o;12170:149::-;12233:7;12264:1;12260;:5;:51;;12291:20;12306:1;12309;12291:14;:20::i;:::-;12260:51;;;12268:20;12283:1;12286;12268:14;:20::i;:::-;12260:51;12253:58;;12170:149;;;;:::o;67393:942::-;67487:1;67473:16;;:2;:16;;;67465:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;67546:16;67554:7;67546;:16::i;:::-;67545:17;67537:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;67608:48;67637:1;67641:2;67645:7;67654:1;67608:20;:48::i;:::-;67755:16;67763:7;67755;:16::i;:::-;67754:17;67746:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;68170:1;68153:9;:13;68163:2;68153:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;68214:2;68195:7;:16;68203:7;68195:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;68259:7;68255:2;68234:33;;68251:1;68234:33;;;;;;;;;;;;68280:47;68308:1;68312:2;68316:7;68325:1;68280:19;:47::i;:::-;67393:942;;:::o;12327:268::-;12395:13;12502:1;12496:4;12489:15;12531:1;12525:4;12518:15;12572:4;12566;12556:21;12547:30;;12327:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:77::-;6287:7;6316:5;6305:16;;6250:77;;;:::o;6333:122::-;6406:24;6424:5;6406:24;:::i;:::-;6399:5;6396:35;6386:63;;6445:1;6442;6435:12;6386:63;6333:122;:::o;6461:139::-;6507:5;6545:6;6532:20;6523:29;;6561:33;6588:5;6561:33;:::i;:::-;6461:139;;;;:::o;6606:329::-;6665:6;6714:2;6702:9;6693:7;6689:23;6685:32;6682:119;;;6720:79;;:::i;:::-;6682:119;6840:1;6865:53;6910:7;6901:6;6890:9;6886:22;6865:53;:::i;:::-;6855:63;;6811:117;6606:329;;;;:::o;6941:118::-;7028:24;7046:5;7028:24;:::i;:::-;7023:3;7016:37;6941:118;;:::o;7065:222::-;7158:4;7196:2;7185:9;7181:18;7173:26;;7209:71;7277:1;7266:9;7262:17;7253:6;7209:71;:::i;:::-;7065:222;;;;:::o;7293:474::-;7361:6;7369;7418:2;7406:9;7397:7;7393:23;7389:32;7386:119;;;7424:79;;:::i;:::-;7386:119;7544:1;7569:53;7614:7;7605:6;7594:9;7590:22;7569:53;:::i;:::-;7559:63;;7515:117;7671:2;7697:53;7742:7;7733:6;7722:9;7718:22;7697:53;:::i;:::-;7687:63;;7642:118;7293:474;;;;;:::o;7773:114::-;7840:6;7874:5;7868:12;7858:22;;7773:114;;;:::o;7893:184::-;7992:11;8026:6;8021:3;8014:19;8066:4;8061:3;8057:14;8042:29;;7893:184;;;;:::o;8083:132::-;8150:4;8173:3;8165:11;;8203:4;8198:3;8194:14;8186:22;;8083:132;;;:::o;8221:108::-;8298:24;8316:5;8298:24;:::i;:::-;8293:3;8286:37;8221:108;;:::o;8335:179::-;8404:10;8425:46;8467:3;8459:6;8425:46;:::i;:::-;8503:4;8498:3;8494:14;8480:28;;8335:179;;;;:::o;8520:113::-;8590:4;8622;8617:3;8613:14;8605:22;;8520:113;;;:::o;8669:732::-;8788:3;8817:54;8865:5;8817:54;:::i;:::-;8887:86;8966:6;8961:3;8887:86;:::i;:::-;8880:93;;8997:56;9047:5;8997:56;:::i;:::-;9076:7;9107:1;9092:284;9117:6;9114:1;9111:13;9092:284;;;9193:6;9187:13;9220:63;9279:3;9264:13;9220:63;:::i;:::-;9213:70;;9306:60;9359:6;9306:60;:::i;:::-;9296:70;;9152:224;9139:1;9136;9132:9;9127:14;;9092:284;;;9096:14;9392:3;9385:10;;8793:608;;;8669:732;;;;:::o;9407:373::-;9550:4;9588:2;9577:9;9573:18;9565:26;;9637:9;9631:4;9627:20;9623:1;9612:9;9608:17;9601:47;9665:108;9768:4;9759:6;9665:108;:::i;:::-;9657:116;;9407:373;;;;:::o;9786:117::-;9895:1;9892;9885:12;9909:117;10018:1;10015;10008:12;10032:180;10080:77;10077:1;10070:88;10177:4;10174:1;10167:15;10201:4;10198:1;10191:15;10218:281;10301:27;10323:4;10301:27;:::i;:::-;10293:6;10289:40;10431:6;10419:10;10416:22;10395:18;10383:10;10380:34;10377:62;10374:88;;;10442:18;;:::i;:::-;10374:88;10482:10;10478:2;10471:22;10261:238;10218:281;;:::o;10505:129::-;10539:6;10566:20;;:::i;:::-;10556:30;;10595:33;10623:4;10615:6;10595:33;:::i;:::-;10505:129;;;:::o;10640:308::-;10702:4;10792:18;10784:6;10781:30;10778:56;;;10814:18;;:::i;:::-;10778:56;10852:29;10874:6;10852:29;:::i;:::-;10844:37;;10936:4;10930;10926:15;10918:23;;10640:308;;;:::o;10954:154::-;11038:6;11033:3;11028;11015:30;11100:1;11091:6;11086:3;11082:16;11075:27;10954:154;;;:::o;11114:412::-;11192:5;11217:66;11233:49;11275:6;11233:49;:::i;:::-;11217:66;:::i;:::-;11208:75;;11306:6;11299:5;11292:21;11344:4;11337:5;11333:16;11382:3;11373:6;11368:3;11364:16;11361:25;11358:112;;;11389:79;;:::i;:::-;11358:112;11479:41;11513:6;11508:3;11503;11479:41;:::i;:::-;11198:328;11114:412;;;;;:::o;11546:340::-;11602:5;11651:3;11644:4;11636:6;11632:17;11628:27;11618:122;;11659:79;;:::i;:::-;11618:122;11776:6;11763:20;11801:79;11876:3;11868:6;11861:4;11853:6;11849:17;11801:79;:::i;:::-;11792:88;;11608:278;11546:340;;;;:::o;11892:509::-;11961:6;12010:2;11998:9;11989:7;11985:23;11981:32;11978:119;;;12016:79;;:::i;:::-;11978:119;12164:1;12153:9;12149:17;12136:31;12194:18;12186:6;12183:30;12180:117;;;12216:79;;:::i;:::-;12180:117;12321:63;12376:7;12367:6;12356:9;12352:22;12321:63;:::i;:::-;12311:73;;12107:287;11892:509;;;;:::o;12407:116::-;12477:21;12492:5;12477:21;:::i;:::-;12470:5;12467:32;12457:60;;12513:1;12510;12503:12;12457:60;12407:116;:::o;12529:133::-;12572:5;12610:6;12597:20;12588:29;;12626:30;12650:5;12626:30;:::i;:::-;12529:133;;;;:::o;12668:468::-;12733:6;12741;12790:2;12778:9;12769:7;12765:23;12761:32;12758:119;;;12796:79;;:::i;:::-;12758:119;12916:1;12941:53;12986:7;12977:6;12966:9;12962:22;12941:53;:::i;:::-;12931:63;;12887:117;13043:2;13069:50;13111:7;13102:6;13091:9;13087:22;13069:50;:::i;:::-;13059:60;;13014:115;12668:468;;;;;:::o;13142:117::-;13251:1;13248;13241:12;13265:117;13374:1;13371;13364:12;13405:568;13478:8;13488:6;13538:3;13531:4;13523:6;13519:17;13515:27;13505:122;;13546:79;;:::i;:::-;13505:122;13659:6;13646:20;13636:30;;13689:18;13681:6;13678:30;13675:117;;;13711:79;;:::i;:::-;13675:117;13825:4;13817:6;13813:17;13801:29;;13879:3;13871:4;13863:6;13859:17;13849:8;13845:32;13842:41;13839:128;;;13886:79;;:::i;:::-;13839:128;13405:568;;;;;:::o;13979:559::-;14065:6;14073;14122:2;14110:9;14101:7;14097:23;14093:32;14090:119;;;14128:79;;:::i;:::-;14090:119;14276:1;14265:9;14261:17;14248:31;14306:18;14298:6;14295:30;14292:117;;;14328:79;;:::i;:::-;14292:117;14441:80;14513:7;14504:6;14493:9;14489:22;14441:80;:::i;:::-;14423:98;;;;14219:312;13979:559;;;;;:::o;14544:307::-;14605:4;14695:18;14687:6;14684:30;14681:56;;;14717:18;;:::i;:::-;14681:56;14755:29;14777:6;14755:29;:::i;:::-;14747:37;;14839:4;14833;14829:15;14821:23;;14544:307;;;:::o;14857:410::-;14934:5;14959:65;14975:48;15016:6;14975:48;:::i;:::-;14959:65;:::i;:::-;14950:74;;15047:6;15040:5;15033:21;15085:4;15078:5;15074:16;15123:3;15114:6;15109:3;15105:16;15102:25;15099:112;;;15130:79;;:::i;:::-;15099:112;15220:41;15254:6;15249:3;15244;15220:41;:::i;:::-;14940:327;14857:410;;;;;:::o;15286:338::-;15341:5;15390:3;15383:4;15375:6;15371:17;15367:27;15357:122;;15398:79;;:::i;:::-;15357:122;15515:6;15502:20;15540:78;15614:3;15606:6;15599:4;15591:6;15587:17;15540:78;:::i;:::-;15531:87;;15347:277;15286:338;;;;:::o;15630:943::-;15725:6;15733;15741;15749;15798:3;15786:9;15777:7;15773:23;15769:33;15766:120;;;15805:79;;:::i;:::-;15766:120;15925:1;15950:53;15995:7;15986:6;15975:9;15971:22;15950:53;:::i;:::-;15940:63;;15896:117;16052:2;16078:53;16123:7;16114:6;16103:9;16099:22;16078:53;:::i;:::-;16068:63;;16023:118;16180:2;16206:53;16251:7;16242:6;16231:9;16227:22;16206:53;:::i;:::-;16196:63;;16151:118;16336:2;16325:9;16321:18;16308:32;16367:18;16359:6;16356:30;16353:117;;;16389:79;;:::i;:::-;16353:117;16494:62;16548:7;16539:6;16528:9;16524:22;16494:62;:::i;:::-;16484:72;;16279:287;15630:943;;;;;;;:::o;16579:474::-;16647:6;16655;16704:2;16692:9;16683:7;16679:23;16675:32;16672:119;;;16710:79;;:::i;:::-;16672:119;16830:1;16855:53;16900:7;16891:6;16880:9;16876:22;16855:53;:::i;:::-;16845:63;;16801:117;16957:2;16983:53;17028:7;17019:6;17008:9;17004:22;16983:53;:::i;:::-;16973:63;;16928:118;16579:474;;;;;:::o;17059:180::-;17107:77;17104:1;17097:88;17204:4;17201:1;17194:15;17228:4;17225:1;17218:15;17245:320;17289:6;17326:1;17320:4;17316:12;17306:22;;17373:1;17367:4;17363:12;17394:18;17384:81;;17450:4;17442:6;17438:17;17428:27;;17384:81;17512:2;17504:6;17501:14;17481:18;17478:38;17475:84;;17531:18;;:::i;:::-;17475:84;17296:269;17245:320;;;:::o;17571:220::-;17711:34;17707:1;17699:6;17695:14;17688:58;17780:3;17775:2;17767:6;17763:15;17756:28;17571:220;:::o;17797:366::-;17939:3;17960:67;18024:2;18019:3;17960:67;:::i;:::-;17953:74;;18036:93;18125:3;18036:93;:::i;:::-;18154:2;18149:3;18145:12;18138:19;;17797:366;;;:::o;18169:419::-;18335:4;18373:2;18362:9;18358:18;18350:26;;18422:9;18416:4;18412:20;18408:1;18397:9;18393:17;18386:47;18450:131;18576:4;18450:131;:::i;:::-;18442:139;;18169:419;;;:::o;18594:248::-;18734:34;18730:1;18722:6;18718:14;18711:58;18803:31;18798:2;18790:6;18786:15;18779:56;18594:248;:::o;18848:366::-;18990:3;19011:67;19075:2;19070:3;19011:67;:::i;:::-;19004:74;;19087:93;19176:3;19087:93;:::i;:::-;19205:2;19200:3;19196:12;19189:19;;18848:366;;;:::o;19220:419::-;19386:4;19424:2;19413:9;19409:18;19401:26;;19473:9;19467:4;19463:20;19459:1;19448:9;19444:17;19437:47;19501:131;19627:4;19501:131;:::i;:::-;19493:139;;19220:419;;;:::o;19645:232::-;19785:34;19781:1;19773:6;19769:14;19762:58;19854:15;19849:2;19841:6;19837:15;19830:40;19645:232;:::o;19883:366::-;20025:3;20046:67;20110:2;20105:3;20046:67;:::i;:::-;20039:74;;20122:93;20211:3;20122:93;:::i;:::-;20240:2;20235:3;20231:12;20224:19;;19883:366;;;:::o;20255:419::-;20421:4;20459:2;20448:9;20444:18;20436:26;;20508:9;20502:4;20498:20;20494:1;20483:9;20479:17;20472:47;20536:131;20662:4;20536:131;:::i;:::-;20528:139;;20255:419;;;:::o;20680:234::-;20820:34;20816:1;20808:6;20804:14;20797:58;20889:17;20884:2;20876:6;20872:15;20865:42;20680:234;:::o;20920:366::-;21062:3;21083:67;21147:2;21142:3;21083:67;:::i;:::-;21076:74;;21159:93;21248:3;21159:93;:::i;:::-;21277:2;21272:3;21268:12;21261:19;;20920:366;;;:::o;21292:419::-;21458:4;21496:2;21485:9;21481:18;21473:26;;21545:9;21539:4;21535:20;21531:1;21520:9;21516:17;21509:47;21573:131;21699:4;21573:131;:::i;:::-;21565:139;;21292:419;;;:::o;21717:180::-;21765:77;21762:1;21755:88;21862:4;21859:1;21852:15;21886:4;21883:1;21876:15;21903:180;21951:77;21948:1;21941:88;22048:4;22045:1;22038:15;22072:4;22069:1;22062:15;22089:233;22128:3;22151:24;22169:5;22151:24;:::i;:::-;22142:33;;22197:66;22190:5;22187:77;22184:103;;22267:18;;:::i;:::-;22184:103;22314:1;22307:5;22303:13;22296:20;;22089:233;;;:::o;22328:174::-;22468:26;22464:1;22456:6;22452:14;22445:50;22328:174;:::o;22508:366::-;22650:3;22671:67;22735:2;22730:3;22671:67;:::i;:::-;22664:74;;22747:93;22836:3;22747:93;:::i;:::-;22865:2;22860:3;22856:12;22849:19;;22508:366;;;:::o;22880:419::-;23046:4;23084:2;23073:9;23069:18;23061:26;;23133:9;23127:4;23123:20;23119:1;23108:9;23104:17;23097:47;23161:131;23287:4;23161:131;:::i;:::-;23153:139;;22880:419;;;:::o;23305:228::-;23445:34;23441:1;23433:6;23429:14;23422:58;23514:11;23509:2;23501:6;23497:15;23490:36;23305:228;:::o;23539:366::-;23681:3;23702:67;23766:2;23761:3;23702:67;:::i;:::-;23695:74;;23778:93;23867:3;23778:93;:::i;:::-;23896:2;23891:3;23887:12;23880:19;;23539:366;;;:::o;23911:419::-;24077:4;24115:2;24104:9;24100:18;24092:26;;24164:9;24158:4;24154:20;24150:1;24139:9;24135:17;24128:47;24192:131;24318:4;24192:131;:::i;:::-;24184:139;;23911:419;;;:::o;24336:94::-;24369:8;24417:5;24413:2;24409:14;24388:35;;24336:94;;;:::o;24436:::-;24475:7;24504:20;24518:5;24504:20;:::i;:::-;24493:31;;24436:94;;;:::o;24536:100::-;24575:7;24604:26;24624:5;24604:26;:::i;:::-;24593:37;;24536:100;;;:::o;24642:157::-;24747:45;24767:24;24785:5;24767:24;:::i;:::-;24747:45;:::i;:::-;24742:3;24735:58;24642:157;;:::o;24805:256::-;24917:3;24932:75;25003:3;24994:6;24932:75;:::i;:::-;25032:2;25027:3;25023:12;25016:19;;25052:3;25045:10;;24805:256;;;;:::o;25067:225::-;25207:34;25203:1;25195:6;25191:14;25184:58;25276:8;25271:2;25263:6;25259:15;25252:33;25067:225;:::o;25298:366::-;25440:3;25461:67;25525:2;25520:3;25461:67;:::i;:::-;25454:74;;25537:93;25626:3;25537:93;:::i;:::-;25655:2;25650:3;25646:12;25639:19;;25298:366;;;:::o;25670:419::-;25836:4;25874:2;25863:9;25859:18;25851:26;;25923:9;25917:4;25913:20;25909:1;25898:9;25894:17;25887:47;25951:131;26077:4;25951:131;:::i;:::-;25943:139;;25670:419;;;:::o;26095:165::-;26235:17;26231:1;26223:6;26219:14;26212:41;26095:165;:::o;26266:366::-;26408:3;26429:67;26493:2;26488:3;26429:67;:::i;:::-;26422:74;;26505:93;26594:3;26505:93;:::i;:::-;26623:2;26618:3;26614:12;26607:19;;26266:366;;;:::o;26638:419::-;26804:4;26842:2;26831:9;26827:18;26819:26;;26891:9;26885:4;26881:20;26877:1;26866:9;26862:17;26855:47;26919:131;27045:4;26919:131;:::i;:::-;26911:139;;26638:419;;;:::o;27063:148::-;27165:11;27202:3;27187:18;;27063:148;;;;:::o;27217:377::-;27323:3;27351:39;27384:5;27351:39;:::i;:::-;27406:89;27488:6;27483:3;27406:89;:::i;:::-;27399:96;;27504:52;27549:6;27544:3;27537:4;27530:5;27526:16;27504:52;:::i;:::-;27581:6;27576:3;27572:16;27565:23;;27327:267;27217:377;;;;:::o;27600:435::-;27780:3;27802:95;27893:3;27884:6;27802:95;:::i;:::-;27795:102;;27914:95;28005:3;27996:6;27914:95;:::i;:::-;27907:102;;28026:3;28019:10;;27600:435;;;;;:::o;28041:224::-;28181:34;28177:1;28169:6;28165:14;28158:58;28250:7;28245:2;28237:6;28233:15;28226:32;28041:224;:::o;28271:366::-;28413:3;28434:67;28498:2;28493:3;28434:67;:::i;:::-;28427:74;;28510:93;28599:3;28510:93;:::i;:::-;28628:2;28623:3;28619:12;28612:19;;28271:366;;;:::o;28643:419::-;28809:4;28847:2;28836:9;28832:18;28824:26;;28896:9;28890:4;28886:20;28882:1;28871:9;28867:17;28860:47;28924:131;29050:4;28924:131;:::i;:::-;28916:139;;28643:419;;;:::o;29068:223::-;29208:34;29204:1;29196:6;29192:14;29185:58;29277:6;29272:2;29264:6;29260:15;29253:31;29068:223;:::o;29297:366::-;29439:3;29460:67;29524:2;29519:3;29460:67;:::i;:::-;29453:74;;29536:93;29625:3;29536:93;:::i;:::-;29654:2;29649:3;29645:12;29638:19;;29297:366;;;:::o;29669:419::-;29835:4;29873:2;29862:9;29858:18;29850:26;;29922:9;29916:4;29912:20;29908:1;29897:9;29893:17;29886:47;29950:131;30076:4;29950:131;:::i;:::-;29942:139;;29669:419;;;:::o;30094:175::-;30234:27;30230:1;30222:6;30218:14;30211:51;30094:175;:::o;30275:366::-;30417:3;30438:67;30502:2;30497:3;30438:67;:::i;:::-;30431:74;;30514:93;30603:3;30514:93;:::i;:::-;30632:2;30627:3;30623:12;30616:19;;30275:366;;;:::o;30647:419::-;30813:4;30851:2;30840:9;30836:18;30828:26;;30900:9;30894:4;30890:20;30886:1;30875:9;30871:17;30864:47;30928:131;31054:4;30928:131;:::i;:::-;30920:139;;30647:419;;;:::o;31072:181::-;31212:33;31208:1;31200:6;31196:14;31189:57;31072:181;:::o;31259:366::-;31401:3;31422:67;31486:2;31481:3;31422:67;:::i;:::-;31415:74;;31498:93;31587:3;31498:93;:::i;:::-;31616:2;31611:3;31607:12;31600:19;;31259:366;;;:::o;31631:419::-;31797:4;31835:2;31824:9;31820:18;31812:26;;31884:9;31878:4;31874:20;31870:1;31859:9;31855:17;31848:47;31912:131;32038:4;31912:131;:::i;:::-;31904:139;;31631:419;;;:::o;32056:237::-;32196:34;32192:1;32184:6;32180:14;32173:58;32265:20;32260:2;32252:6;32248:15;32241:45;32056:237;:::o;32299:366::-;32441:3;32462:67;32526:2;32521:3;32462:67;:::i;:::-;32455:74;;32538:93;32627:3;32538:93;:::i;:::-;32656:2;32651:3;32647:12;32640:19;;32299:366;;;:::o;32671:419::-;32837:4;32875:2;32864:9;32860:18;32852:26;;32924:9;32918:4;32914:20;32910:1;32899:9;32895:17;32888:47;32952:131;33078:4;32952:131;:::i;:::-;32944:139;;32671:419;;;:::o;33096:180::-;33144:77;33141:1;33134:88;33241:4;33238:1;33231:15;33265:4;33262:1;33255:15;33282:191;33322:4;33342:20;33360:1;33342:20;:::i;:::-;33337:25;;33376:20;33394:1;33376:20;:::i;:::-;33371:25;;33415:1;33412;33409:8;33406:34;;;33420:18;;:::i;:::-;33406:34;33465:1;33462;33458:9;33450:17;;33282:191;;;;:::o;33479:305::-;33519:3;33538:20;33556:1;33538:20;:::i;:::-;33533:25;;33572:20;33590:1;33572:20;:::i;:::-;33567:25;;33726:1;33658:66;33654:74;33651:1;33648:81;33645:107;;;33732:18;;:::i;:::-;33645:107;33776:1;33773;33769:9;33762:16;;33479:305;;;;:::o;33790:173::-;33930:25;33926:1;33918:6;33914:14;33907:49;33790:173;:::o;33969:402::-;34129:3;34150:85;34232:2;34227:3;34150:85;:::i;:::-;34143:92;;34244:93;34333:3;34244:93;:::i;:::-;34362:2;34357:3;34353:12;34346:19;;33969:402;;;:::o;34377:167::-;34517:19;34513:1;34505:6;34501:14;34494:43;34377:167;:::o;34550:402::-;34710:3;34731:85;34813:2;34808:3;34731:85;:::i;:::-;34724:92;;34825:93;34914:3;34825:93;:::i;:::-;34943:2;34938:3;34934:12;34927:19;;34550:402;;;:::o;34958:967::-;35340:3;35362:148;35506:3;35362:148;:::i;:::-;35355:155;;35527:95;35618:3;35609:6;35527:95;:::i;:::-;35520:102;;35639:148;35783:3;35639:148;:::i;:::-;35632:155;;35804:95;35895:3;35886:6;35804:95;:::i;:::-;35797:102;;35916:3;35909:10;;34958:967;;;;;:::o;35931:98::-;35982:6;36016:5;36010:12;36000:22;;35931:98;;;:::o;36035:168::-;36118:11;36152:6;36147:3;36140:19;36192:4;36187:3;36183:14;36168:29;;36035:168;;;;:::o;36209:360::-;36295:3;36323:38;36355:5;36323:38;:::i;:::-;36377:70;36440:6;36435:3;36377:70;:::i;:::-;36370:77;;36456:52;36501:6;36496:3;36489:4;36482:5;36478:16;36456:52;:::i;:::-;36533:29;36555:6;36533:29;:::i;:::-;36528:3;36524:39;36517:46;;36299:270;36209:360;;;;:::o;36575:640::-;36770:4;36808:3;36797:9;36793:19;36785:27;;36822:71;36890:1;36879:9;36875:17;36866:6;36822:71;:::i;:::-;36903:72;36971:2;36960:9;36956:18;36947:6;36903:72;:::i;:::-;36985;37053:2;37042:9;37038:18;37029:6;36985:72;:::i;:::-;37104:9;37098:4;37094:20;37089:2;37078:9;37074:18;37067:48;37132:76;37203:4;37194:6;37132:76;:::i;:::-;37124:84;;36575:640;;;;;;;:::o;37221:141::-;37277:5;37308:6;37302:13;37293:22;;37324:32;37350:5;37324:32;:::i;:::-;37221:141;;;;:::o;37368:349::-;37437:6;37486:2;37474:9;37465:7;37461:23;37457:32;37454:119;;;37492:79;;:::i;:::-;37454:119;37612:1;37637:63;37692:7;37683:6;37672:9;37668:22;37637:63;:::i;:::-;37627:73;;37583:127;37368:349;;;;:::o;37723:348::-;37763:7;37786:20;37804:1;37786:20;:::i;:::-;37781:25;;37820:20;37838:1;37820:20;:::i;:::-;37815:25;;38008:1;37940:66;37936:74;37933:1;37930:81;37925:1;37918:9;37911:17;37907:105;37904:131;;;38015:18;;:::i;:::-;37904:131;38063:1;38060;38056:9;38045:20;;37723:348;;;;:::o;38077:171::-;38116:3;38139:24;38157:5;38139:24;:::i;:::-;38130:33;;38185:4;38178:5;38175:15;38172:41;;38193:18;;:::i;:::-;38172:41;38240:1;38233:5;38229:13;38222:20;;38077:171;;;:::o;38254:182::-;38394:34;38390:1;38382:6;38378:14;38371:58;38254:182;:::o;38442:366::-;38584:3;38605:67;38669:2;38664:3;38605:67;:::i;:::-;38598:74;;38681:93;38770:3;38681:93;:::i;:::-;38799:2;38794:3;38790:12;38783:19;;38442:366;;;:::o;38814:419::-;38980:4;39018:2;39007:9;39003:18;38995:26;;39067:9;39061:4;39057:20;39053:1;39042:9;39038:17;39031:47;39095:131;39221:4;39095:131;:::i;:::-;39087:139;;38814:419;;;:::o;39239:182::-;39379:34;39375:1;39367:6;39363:14;39356:58;39239:182;:::o;39427:366::-;39569:3;39590:67;39654:2;39649:3;39590:67;:::i;:::-;39583:74;;39666:93;39755:3;39666:93;:::i;:::-;39784:2;39779:3;39775:12;39768:19;;39427:366;;;:::o;39799:419::-;39965:4;40003:2;39992:9;39988:18;39980:26;;40052:9;40046:4;40042:20;40038:1;40027:9;40023:17;40016:47;40080:131;40206:4;40080:131;:::i;:::-;40072:139;;39799:419;;;:::o;40224:178::-;40364:30;40360:1;40352:6;40348:14;40341:54;40224:178;:::o;40408:366::-;40550:3;40571:67;40635:2;40630:3;40571:67;:::i;:::-;40564:74;;40647:93;40736:3;40647:93;:::i;:::-;40765:2;40760:3;40756:12;40749:19;;40408:366;;;:::o;40780:419::-;40946:4;40984:2;40973:9;40969:18;40961:26;;41033:9;41027:4;41023:20;41019:1;41008:9;41004:17;40997:47;41061:131;41187:4;41061:131;:::i;:::-;41053:139;;40780:419;;;:::o

Swarm Source

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