ETH Price: $2,525.64 (+0.02%)

Token

Silly Goat Poker Players (SGPP)
 

Overview

Max Total Supply

301 SGPP

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SGPP
0xdb7b6bd451a4ecf0e73306dc347f722be574ac43
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:
SillyGoatPokerPlayers

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-10-11
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.7.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. It 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)`.
        // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
        // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
        // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
        // good first aproximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1;
        uint256 x = a;
        if (x >> 128 > 0) {
            x >>= 128;
            result <<= 64;
        }
        if (x >> 64 > 0) {
            x >>= 64;
            result <<= 32;
        }
        if (x >> 32 > 0) {
            x >>= 32;
            result <<= 16;
        }
        if (x >> 16 > 0) {
            x >>= 16;
            result <<= 8;
        }
        if (x >> 8 > 0) {
            x >>= 8;
            result <<= 4;
        }
        if (x >> 4 > 0) {
            x >>= 4;
            result <<= 2;
        }
        if (x >> 2 > 0) {
            result <<= 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) {
        uint256 result = sqrt(a);
        if (rounding == Rounding.Up && result * result < a) {
            result += 1;
        }
        return result;
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/sillygoatpokerplayers.sol



//////////////////////////////////////////////////////////////////////////////////////
/*////////////////////////////////////////////////////////////////////////////////////
/////////////////////////𝓢𝓘𝓛𝓛𝓨 𝓖𝓞𝓐𝓣 𝓟𝓞𝓚𝓔𝓡 𝓒𝓛𝓤𝓑//////////////////////////////////
*/////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////


pragma solidity >=0.8.13 <0.9.0;










contract SillyGoatPokerPlayers is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

// ================== Variables Start =======================
    
    string public uri;
    string public uriSuffix = ".json";
    uint256 public pricePublic = 0.025 ether;
    uint256 public priceTen = 0.02 ether;
    uint256 public priceJack = 0.0175 ether;
    uint256 public priceQueen = 0.015 ether;
    uint256 public priceKing = 0.0125 ether;
    uint256 public priceAce = 0.01 ether;

    uint256 public maxSupply = 1000;
    uint256 public reservesAmount = 50;
    uint256 public maxMintAmountPerTx = 20;
    uint256 public maxLimitPerWallet = 999;
    bool public publicMinting = true;
    address acePass;
    address kingPass;
    address queenPass;
    address jackPass;
    address tenPass;

    mapping (address => uint256) public addressBalance;
    address DEVADDRESS = 0x4a40Ef1DA0e73A0df142D06470D7a2cfFC677D2f;


// ================== Variables End =======================  

// ================== Constructor Start =======================

    constructor(
        string memory _uri, address _acePass, address _kingPass, address _queenPass, address _jackPass, address _tenPass
    ) ERC721A("Silly Goat Poker Players", "SGPP")  {
        seturi(_uri);
        setAcePassword(_acePass);
        setKingPassword(_kingPass);
        setQueenPassword(_queenPass);
        setJackPassword(_jackPass);
        setTenPassword(_tenPass);    
    }

// ================== Constructor End =======================

// ================== Modifiers Start =======================

// ================== Modifiers End ========================

// ================== Mint Functions Start =======================
 
    function CollectReserves() public onlyOwner nonReentrant {
        require(totalSupply() + reservesAmount <= maxSupply, 'Max Supply Exceeded.');
        _safeMint(msg.sender, reservesAmount);
    }

    function MintAce(uint256 _mintAmount, address password) public payable nonReentrant  {
        uint256 supply = totalSupply();
        // Normal requirements 
        require(publicMinting, 'Sale not active!');
        require(supply + _mintAmount <= maxSupply, 'Max supply exceeded!');
        require(password == acePass, 'Incorrect password!');
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
        require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
        require(msg.value >= priceAce * _mintAmount, 'Insufficient funds!');
        
        addressBalance[msg.sender] += _mintAmount;
        // Mint
        _safeMint(_msgSender(), _mintAmount);
    }

    function MintKing(uint256 _mintAmount, address password) public payable nonReentrant  {
        uint256 supply = totalSupply();
        // Normal requirements 
        require(publicMinting, 'Sale not active!');
        require(supply + _mintAmount <= maxSupply, 'Max supply exceeded!');
        require(password == kingPass, 'Incorrect password!');
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
        require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
        require(msg.value >= priceKing * _mintAmount, 'Insufficient funds!');
        
        addressBalance[msg.sender] += _mintAmount;
        // Mint
        _safeMint(_msgSender(), _mintAmount);
    }

    function MintQueen(uint256 _mintAmount, address password) public payable nonReentrant  {
        uint256 supply = totalSupply();
        // Normal requirements 
        require(publicMinting, 'Sale not active!');
        require(supply + _mintAmount <= maxSupply, 'Max supply exceeded!');
        require(password == queenPass, 'Incorrect password!');
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
        require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
        require(msg.value >= priceQueen * _mintAmount, 'Insufficient funds!');
        
        addressBalance[msg.sender] += _mintAmount;
        // Mint
        _safeMint(_msgSender(), _mintAmount);
    }

    function MintJack(uint256 _mintAmount, address password) public payable nonReentrant  {
        uint256 supply = totalSupply();
        // Normal requirements 
        require(publicMinting, 'Sale not active!');
        require(supply + _mintAmount <= maxSupply, 'Max supply exceeded!');
        require(password == jackPass, 'Incorrect password!');
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
        require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
        require(msg.value >= priceJack * _mintAmount, 'Insufficient funds!');
        
        addressBalance[msg.sender] += _mintAmount;
        // Mint
        _safeMint(_msgSender(), _mintAmount);
    }

    function MintTen(uint256 _mintAmount, address password) public payable nonReentrant  {
        uint256 supply = totalSupply();
        // Normal requirements 
        require(publicMinting, 'Sale not active!');
        require(supply + _mintAmount <= maxSupply, 'Max supply exceeded!');
        require(password == tenPass, 'Incorrect password!');
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
        require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
        require(msg.value >= priceTen * _mintAmount, 'Insufficient funds!');
        
        addressBalance[msg.sender] += _mintAmount;
        // Mint
        _safeMint(_msgSender(), _mintAmount);
    }

    function Mint(uint256 _mintAmount) public payable nonReentrant {
        uint256 supply = totalSupply();
        // Normal requirements 
        require(publicMinting, 'Public sale not active!');
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
        require(supply + _mintAmount <= maxSupply, 'Max supply exceeded!');
        require(msg.value >= pricePublic * _mintAmount, 'Insufficient funds!');
        
        // Mint
        _safeMint(_msgSender(), _mintAmount);
    }  

    function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
        _safeMint(_receiver, _mintAmount);
    }


// ================== Mint Functions End =======================  

// ================== Set Functions Start =======================

// set passwords
    function setAcePassword(address _acePass) public onlyOwner{
        acePass = _acePass;
    }
    function setKingPassword(address _kingPass) public onlyOwner{
        kingPass = _kingPass;
    }
    function setQueenPassword(address _queenPass) public onlyOwner{
        queenPass = _queenPass;
    }
    function setJackPassword(address _jackPass) public onlyOwner{
        jackPass = _jackPass;
    }
    function setTenPassword(address _tenPass) public onlyOwner{
        tenPass = _tenPass;
    }

// uri
    function seturi(string memory _uri) public onlyOwner {
        uri = _uri;
    }

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

// max per tx
    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

// max per wallet
    function setMaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner {
        maxLimitPerWallet = _maxLimitPerWallet;
    }

// price

    function setCostPublic(uint256 _cost) public onlyOwner {
        pricePublic = _cost;
    }  

    function setCostAce(uint256 _cost) public onlyOwner {
        priceAce = _cost;
    }

    function setCostKing(uint256 _cost) public onlyOwner {
        priceKing = _cost;
    }

    function setCostQueen(uint256 _cost) public onlyOwner {
        priceQueen = _cost;
    }

    function setCostJack(uint256 _cost) public onlyOwner {
        priceJack = _cost;
    }

    function setCostTen(uint256 _cost) public onlyOwner {
        priceTen = _cost;
    }

// supply limit
    function setSupplyLimit(uint256 _supplyLimit) public onlyOwner {
        maxSupply = _supplyLimit;
    }

// set merkles
    function setPublicMinting(bool setActive) public onlyOwner {
        publicMinting = setActive;
    }

// ================== Set Functions End =======================

// ================== Withdraw Function Start =======================
  
    function withdraw() public onlyOwner {
        uint256 _balance = address(this).balance;
        require(_balance > 0);
        _withdraw(DEVADDRESS, (_balance * 50) / 1000);
        _withdraw(owner(), address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }


// ================== Withdraw Function End=======================  

// ================== Read Functions Start =======================

    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256[] memory a = new uint256[](balanceOf(owner)); 
            uint256 end = _nextTokenId();
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            for (uint256 i; i < end; i++) {
                TokenOwnership memory ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    a[tokenIdsIdx++] = i;
                }
            }
            return a;    
        }
    }

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

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

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

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

// ================== Read Functions End =======================  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_acePass","type":"address"},{"internalType":"address","name":"_kingPass","type":"address"},{"internalType":"address","name":"_queenPass","type":"address"},{"internalType":"address","name":"_jackPass","type":"address"},{"internalType":"address","name":"_tenPass","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CollectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"password","type":"address"}],"name":"MintAce","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"password","type":"address"}],"name":"MintJack","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"password","type":"address"}],"name":"MintKing","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"password","type":"address"}],"name":"MintQueen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"password","type":"address"}],"name":"MintTen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressBalance","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceAce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceJack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceKing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceQueen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceTen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservesAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_acePass","type":"address"}],"name":"setAcePassword","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostAce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostJack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostKing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostQueen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostTen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_jackPass","type":"address"}],"name":"setJackPassword","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_kingPass","type":"address"}],"name":"setKingPassword","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setMaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"setActive","type":"bool"}],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_queenPass","type":"address"}],"name":"setQueenPassword","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tenPass","type":"address"}],"name":"setTenPassword","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908051906020019062000051929190620005fe565b506658d15e17628000600c5566470de4df820000600d55663e2c284391c000600e5566354a6ba7a18000600f55662c68af0bb14000601055662386f26fc100006011556103e86012556032601355601480556103e76015556001601660006101000a81548160ff021916908315150217905550734a40ef1da0e73a0df142d06470d7a2cffc677d2f601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012657600080fd5b50604051620058133803806200581383398181016040528101906200014c9190620008b0565b6040518060400160405280601881526020017f53696c6c7920476f617420506f6b657220506c617965727300000000000000008152506040518060400160405280600481526020017f53475050000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001d0929190620005fe565b508060039080519060200190620001e9929190620005fe565b50620001fa6200029c60201b60201c565b60008190555050506200022262000216620002a560201b60201c565b620002ad60201b60201c565b60016009819055506200023b866200037360201b60201c565b6200024c856200039f60201b60201c565b6200025d84620003f360201b60201c565b6200026e836200044760201b60201c565b6200027f826200049b60201b60201c565b6200029081620004ef60201b60201c565b50505050505062000a52565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003836200054360201b60201c565b80600a90805190602001906200039b929190620005fe565b5050565b620003af6200054360201b60201c565b80601660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620004036200054360201b60201c565b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620004576200054360201b60201c565b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620004ab6200054360201b60201c565b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620004ff6200054360201b60201c565b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b62000553620002a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000579620005d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620005d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c990620009cc565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200060c9062000a1d565b90600052602060002090601f0160209004810192826200063057600085556200067c565b82601f106200064b57805160ff19168380011785556200067c565b828001600101855582156200067c579182015b828111156200067b5782518255916020019190600101906200065e565b5b5090506200068b91906200068f565b5090565b5b80821115620006aa57600081600090555060010162000690565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200071782620006cc565b810181811067ffffffffffffffff82111715620007395762000738620006dd565b5b80604052505050565b60006200074e620006ae565b90506200075c82826200070c565b919050565b600067ffffffffffffffff8211156200077f576200077e620006dd565b5b6200078a82620006cc565b9050602081019050919050565b60005b83811015620007b75780820151818401526020810190506200079a565b83811115620007c7576000848401525b50505050565b6000620007e4620007de8462000761565b62000742565b905082815260208101848484011115620008035762000802620006c7565b5b6200081084828562000797565b509392505050565b600082601f83011262000830576200082f620006c2565b5b815162000842848260208601620007cd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000878826200084b565b9050919050565b6200088a816200086b565b81146200089657600080fd5b50565b600081519050620008aa816200087f565b92915050565b60008060008060008060c08789031215620008d057620008cf620006b8565b5b600087015167ffffffffffffffff811115620008f157620008f0620006bd565b5b620008ff89828a0162000818565b96505060206200091289828a0162000899565b95505060406200092589828a0162000899565b94505060606200093889828a0162000899565b93505060806200094b89828a0162000899565b92505060a06200095e89828a0162000899565b9150509295509295509295565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620009b46020836200096b565b9150620009c1826200097c565b602082019050919050565b60006020820190508181036000830152620009e781620009a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a3657607f821691505b60208210810362000a4c5762000a4b620009ee565b5b50919050565b614db18062000a626000396000f3fe6080604052600436106103815760003560e01c80636352211e116101d1578063b88d4fde11610102578063d8d39ca2116100a0578063efa65cf61161006f578063efa65cf614610c43578063f2fde38b14610c6c578063f648498014610c95578063fb03e6ff14610cbe57610381565b8063d8d39ca214610b85578063db4aa51914610bb0578063e985e9c514610bdb578063eac989f814610c1857610381565b8063c914c765116100dc578063c914c76514610adf578063cb23567714610b08578063d4c6eac714610b31578063d5abeb0114610b5a57610381565b8063b88d4fde14610a5d578063c385b67814610a79578063c87b56dd14610aa257610381565b80638462151c1161016f57806394354fd01161014957806394354fd0146109b557806395d89b41146109e0578063a22cb46514610a0b578063b071401b14610a3457610381565b80638462151c146109315780638cdb8ff31461096e5780638da5cb5b1461098a57610381565b806370a08231116101ab57806370a082311461089d578063715018a6146108da5780637871e154146108f15780637e295d661461091a57610381565b80636352211e1461080a578063638024c31461084757806364fcdd121461087257610381565b80632f9a7c58116102b657806342842e0e1161025457806353ac010a1161022357806353ac010a1461076d5780635503a0e8146107985780635a0b8b23146107c35780635ac291e8146107ee57610381565b806342842e0e146106e35780634e474109146106ff5780634f63e7e51461071b578063518b0abe1461074457610381565b80633bf344a6116102905780633bf344a61461064a5780633ccfd60b146106665780633ec4de351461067d5780633fa10135146106ba57610381565b80632f9a7c58146105cf578063316a93e4146105f8578063361fab251461062157610381565b806316ba10e01161032357806323b872dd116102fd57806323b872dd14610536578063254a473714610552578063267550bc1461057b5780632b5ccdb3146105a657610381565b806316ba10e0146104b757806318160ddd146104e05780631a4c0f981461050b57610381565b8063081812fc1161035f578063081812fc1461040a578063095ea7b314610447578063102e766d146104635780631224a2061461048e57610381565b806301ffc9a71461038657806306fdde03146103c357806307883703146103ee575b600080fd5b34801561039257600080fd5b506103ad60048036038101906103a89190613b80565b610cda565b6040516103ba9190613bc8565b60405180910390f35b3480156103cf57600080fd5b506103d8610d6c565b6040516103e59190613c7c565b60405180910390f35b61040860048036038101906104039190613cd4565b610dfe565b005b34801561041657600080fd5b50610431600480360381019061042c9190613cd4565b610fb4565b60405161043e9190613d42565b60405180910390f35b610461600480360381019061045c9190613d89565b611033565b005b34801561046f57600080fd5b50610478611177565b6040516104859190613dd8565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190613cd4565b61117d565b005b3480156104c357600080fd5b506104de60048036038101906104d99190613f28565b61118f565b005b3480156104ec57600080fd5b506104f56111b1565b6040516105029190613dd8565b60405180910390f35b34801561051757600080fd5b506105206111c8565b60405161052d9190613dd8565b60405180910390f35b610550600480360381019061054b9190613f71565b6111ce565b005b34801561055e57600080fd5b5061057960048036038101906105749190613ff0565b6114f0565b005b34801561058757600080fd5b50610590611515565b60405161059d9190613dd8565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613cd4565b61151b565b005b3480156105db57600080fd5b506105f660048036038101906105f19190613cd4565b61152d565b005b34801561060457600080fd5b5061061f600480360381019061061a919061401d565b61153f565b005b34801561062d57600080fd5b5061064860048036038101906106439190613cd4565b61158b565b005b610664600480360381019061065f919061404a565b61159d565b005b34801561067257600080fd5b5061067b611892565b005b34801561068957600080fd5b506106a4600480360381019061069f919061401d565b611905565b6040516106b19190613dd8565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190613cd4565b61191d565b005b6106fd60048036038101906106f89190613f71565b61192f565b005b6107196004803603810190610714919061404a565b61194f565b005b34801561072757600080fd5b50610742600480360381019061073d9190613cd4565b611c44565b005b34801561075057600080fd5b5061076b6004803603810190610766919061401d565b611c56565b005b34801561077957600080fd5b50610782611ca2565b60405161078f9190613bc8565b60405180910390f35b3480156107a457600080fd5b506107ad611cb5565b6040516107ba9190613c7c565b60405180910390f35b3480156107cf57600080fd5b506107d8611d43565b6040516107e59190613dd8565b60405180910390f35b6108086004803603810190610803919061404a565b611d49565b005b34801561081657600080fd5b50610831600480360381019061082c9190613cd4565b61203e565b60405161083e9190613d42565b60405180910390f35b34801561085357600080fd5b5061085c612050565b6040516108699190613dd8565b60405180910390f35b34801561087e57600080fd5b50610887612056565b6040516108949190613dd8565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf919061401d565b61205c565b6040516108d19190613dd8565b60405180910390f35b3480156108e657600080fd5b506108ef612114565b005b3480156108fd57600080fd5b506109186004803603810190610913919061404a565b612128565b005b34801561092657600080fd5b5061092f612195565b005b34801561093d57600080fd5b506109586004803603810190610953919061401d565b612259565b6040516109659190614148565b60405180910390f35b6109886004803603810190610983919061404a565b61239d565b005b34801561099657600080fd5b5061099f612692565b6040516109ac9190613d42565b60405180910390f35b3480156109c157600080fd5b506109ca6126bc565b6040516109d79190613dd8565b60405180910390f35b3480156109ec57600080fd5b506109f56126c2565b604051610a029190613c7c565b60405180910390f35b348015610a1757600080fd5b50610a326004803603810190610a2d919061416a565b612754565b005b348015610a4057600080fd5b50610a5b6004803603810190610a569190613cd4565b61285f565b005b610a776004803603810190610a72919061424b565b612871565b005b348015610a8557600080fd5b50610aa06004803603810190610a9b919061401d565b6128e4565b005b348015610aae57600080fd5b50610ac96004803603810190610ac49190613cd4565b612930565b604051610ad69190613c7c565b60405180910390f35b348015610aeb57600080fd5b50610b066004803603810190610b01919061401d565b6129da565b005b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613cd4565b612a26565b005b348015610b3d57600080fd5b50610b586004803603810190610b539190613cd4565b612a38565b005b348015610b6657600080fd5b50610b6f612a4a565b604051610b7c9190613dd8565b60405180910390f35b348015610b9157600080fd5b50610b9a612a50565b604051610ba79190613dd8565b60405180910390f35b348015610bbc57600080fd5b50610bc5612a56565b604051610bd29190613dd8565b60405180910390f35b348015610be757600080fd5b50610c026004803603810190610bfd91906142ce565b612a5c565b604051610c0f9190613bc8565b60405180910390f35b348015610c2457600080fd5b50610c2d612af0565b604051610c3a9190613c7c565b60405180910390f35b348015610c4f57600080fd5b50610c6a6004803603810190610c65919061401d565b612b7e565b005b348015610c7857600080fd5b50610c936004803603810190610c8e919061401d565b612bca565b005b348015610ca157600080fd5b50610cbc6004803603810190610cb79190613f28565b612c4d565b005b610cd86004803603810190610cd3919061404a565b612c6f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d3557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d655750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610d7b9061433d565b80601f0160208091040260200160405190810160405280929190818152602001828054610da79061433d565b8015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b5050505050905090565b600260095403610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a906143ba565b60405180910390fd5b60026009819055506000610e556111b1565b9050601660009054906101000a900460ff16610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90614426565b60405180910390fd5b600082118015610eb857506014548211155b610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90614492565b60405180910390fd5b6012548282610f0691906144e1565b1115610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90614583565b60405180910390fd5b81600c54610f5591906145a3565b341015610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90614649565b60405180910390fd5b610fa8610fa2612f64565b83612f6c565b50600160098190555050565b6000610fbf82612f8a565b610ff5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061103e8261203e565b90508073ffffffffffffffffffffffffffffffffffffffff1661105f612fe9565b73ffffffffffffffffffffffffffffffffffffffff16146110c25761108b81611086612fe9565b612a5c565b6110c1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b611185612ff1565b8060108190555050565b611197612ff1565b80600b90805190602001906111ad929190613a22565b5050565b60006111bb61306f565b6001546000540303905090565b600e5481565b60006111d982613078565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611240576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061124c84613144565b91509150611262818761125d612fe9565b61316b565b6112ae5761127786611272612fe9565b612a5c565b6112ad576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611314576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61132186868660016131af565b801561132c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506113fa856113d68888876131b5565b7c0200000000000000000000000000000000000000000000000000000000176131dd565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611480576000600185019050600060046000838152602001908152602001600020540361147e57600054811461147d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114e88686866001613208565b505050505050565b6114f8612ff1565b80601660006101000a81548160ff02191690831515021790555050565b60105481565b611523612ff1565b80600e8190555050565b611535612ff1565b80600c8190555050565b611547612ff1565b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611593612ff1565b8060128190555050565b6002600954036115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d9906143ba565b60405180910390fd5b600260098190555060006115f46111b1565b9050601660009054906101000a900460ff16611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c906146b5565b60405180910390fd5b601254838261165491906144e1565b1115611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90614583565b60405180910390fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c90614721565b60405180910390fd5b60008311801561173757506014548311155b611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d90614492565b60405180910390fd5b601554836117833361205c565b61178d91906144e1565b11156117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c59061478d565b60405180910390fd5b826010546117dc91906145a3565b34101561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614649565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461186d91906144e1565b9250508190555061188561187f612f64565b84612f6c565b5060016009819055505050565b61189a612ff1565b6000479050600081116118ac57600080fd5b6118f1601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e86032846118e291906145a3565b6118ec91906147dc565b61320e565b6119026118fc612692565b4761320e565b50565b601b6020528060005260406000206000915090505481565b611925612ff1565b8060158190555050565b61194a83838360405180602001604052806000815250612871565b505050565b600260095403611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b906143ba565b60405180910390fd5b600260098190555060006119a66111b1565b9050601660009054906101000a900460ff166119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906146b5565b60405180910390fd5b6012548382611a0691906144e1565b1115611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614583565b60405180910390fd5b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90614721565b60405180910390fd5b600083118015611ae957506014548311155b611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90614492565b60405180910390fd5b60155483611b353361205c565b611b3f91906144e1565b1115611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b779061478d565b60405180910390fd5b82600e54611b8e91906145a3565b341015611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc790614649565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c1f91906144e1565b92505081905550611c37611c31612f64565b84612f6c565b5060016009819055505050565b611c4c612ff1565b80600d8190555050565b611c5e612ff1565b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601660009054906101000a900460ff1681565b600b8054611cc29061433d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cee9061433d565b8015611d3b5780601f10611d1057610100808354040283529160200191611d3b565b820191906000526020600020905b815481529060010190602001808311611d1e57829003601f168201915b505050505081565b60155481565b600260095403611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d85906143ba565b60405180910390fd5b60026009819055506000611da06111b1565b9050601660009054906101000a900460ff16611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de8906146b5565b60405180910390fd5b6012548382611e0091906144e1565b1115611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890614583565b60405180910390fd5b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890614721565b60405180910390fd5b600083118015611ee357506014548311155b611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614492565b60405180910390fd5b60155483611f2f3361205c565b611f3991906144e1565b1115611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f719061478d565b60405180910390fd5b82600d54611f8891906145a3565b341015611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190614649565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461201991906144e1565b9250508190555061203161202b612f64565b84612f6c565b5060016009819055505050565b600061204982613078565b9050919050565b600d5481565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120c3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61211c612ff1565b61212660006132bf565b565b612130612ff1565b6012548261213c6111b1565b61214691906144e1565b1115612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e90614583565b60405180910390fd5b6121918183612f6c565b5050565b61219d612ff1565b6002600954036121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d9906143ba565b60405180910390fd5b60026009819055506012546013546121f86111b1565b61220291906144e1565b1115612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614859565b60405180910390fd5b61224f33601354612f6c565b6001600981905550565b606060006122668361205c565b67ffffffffffffffff81111561227f5761227e613dfd565b5b6040519080825280602002602001820160405280156122ad5781602001602082028036833780820191505090505b50905060006122ba613385565b905060008060005b838110156123905760006122d58261338e565b90508060400151156122e75750612383565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612381578186858060010196508151811061237457612373614879565b5b6020026020010181815250505b505b80806001019150506122c2565b5083945050505050919050565b6002600954036123e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d9906143ba565b60405180910390fd5b600260098190555060006123f46111b1565b9050601660009054906101000a900460ff16612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243c906146b5565b60405180910390fd5b601254838261245491906144e1565b1115612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90614583565b60405180910390fd5b601660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90614721565b60405180910390fd5b60008311801561253757506014548311155b612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d90614492565b60405180910390fd5b601554836125833361205c565b61258d91906144e1565b11156125ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c59061478d565b60405180910390fd5b826011546125dc91906145a3565b34101561261e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261590614649565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266d91906144e1565b9250508190555061268561267f612f64565b84612f6c565b5060016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b6060600380546126d19061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546126fd9061433d565b801561274a5780601f1061271f5761010080835404028352916020019161274a565b820191906000526020600020905b81548152906001019060200180831161272d57829003601f168201915b5050505050905090565b8060076000612761612fe9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661280e612fe9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128539190613bc8565b60405180910390a35050565b612867612ff1565b8060148190555050565b61287c8484846111ce565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128de576128a7848484846133b9565b6128dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6128ec612ff1565b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061293b82612f8a565b61297a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129719061491a565b60405180910390fd5b6000612984613509565b905060008151116129a457604051806020016040528060008152506129d2565b806129ae8461359b565b600b6040516020016129c293929190614a0a565b6040516020818303038152906040525b915050919050565b6129e2612ff1565b80601660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612a2e612ff1565b80600f8190555050565b612a40612ff1565b8060118190555050565b60125481565b60115481565b60135481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054612afd9061433d565b80601f0160208091040260200160405190810160405280929190818152602001828054612b299061433d565b8015612b765780601f10612b4b57610100808354040283529160200191612b76565b820191906000526020600020905b815481529060010190602001808311612b5957829003601f168201915b505050505081565b612b86612ff1565b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612bd2612ff1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3890614aad565b60405180910390fd5b612c4a816132bf565b50565b612c55612ff1565b80600a9080519060200190612c6b929190613a22565b5050565b600260095403612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab906143ba565b60405180910390fd5b60026009819055506000612cc66111b1565b9050601660009054906101000a900460ff16612d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0e906146b5565b60405180910390fd5b6012548382612d2691906144e1565b1115612d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5e90614583565b60405180910390fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee90614721565b60405180910390fd5b600083118015612e0957506014548311155b612e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3f90614492565b60405180910390fd5b60155483612e553361205c565b612e5f91906144e1565b1115612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e979061478d565b60405180910390fd5b82600f54612eae91906145a3565b341015612ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee790614649565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3f91906144e1565b92505081905550612f57612f51612f64565b84612f6c565b5060016009819055505050565b600033905090565b612f868282604051806020016040528060008152506136fb565b5050565b600081612f9561306f565b11158015612fa4575060005482105b8015612fe2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612ff9612f64565b73ffffffffffffffffffffffffffffffffffffffff16613017612692565b73ffffffffffffffffffffffffffffffffffffffff161461306d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306490614b19565b60405180910390fd5b565b60006001905090565b6000808290508061308761306f565b1161310d5760005481101561310c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361310a575b600081036131005760046000836001900393508381526020019081526020016000205490506130d6565b809250505061313f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86131cc868684613798565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161323490614b6a565b60006040518083038185875af1925050503d8060008114613271576040519150601f19603f3d011682016040523d82523d6000602084013e613276565b606091505b50509050806132ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b190614bcb565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b613396613aa8565b6133b260046000848152602001908152602001600020546137a1565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133df612fe9565b8786866040518563ffffffff1660e01b81526004016134019493929190614c40565b6020604051808303816000875af192505050801561343d57506040513d601f19601f8201168201806040525081019061343a9190614ca1565b60015b6134b6573d806000811461346d576040519150601f19603f3d011682016040523d82523d6000602084013e613472565b606091505b5060008151036134ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546135189061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546135449061433d565b80156135915780601f1061356657610100808354040283529160200191613591565b820191906000526020600020905b81548152906001019060200180831161357457829003601f168201915b5050505050905090565b6060600082036135e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136f6565b600082905060005b600082146136145780806135fd90614cce565b915050600a8261360d91906147dc565b91506135ea565b60008167ffffffffffffffff8111156136305761362f613dfd565b5b6040519080825280601f01601f1916602001820160405280156136625781602001600182028036833780820191505090505b5090505b600085146136ef5760018261367b9190614d16565b9150600a8561368a9190614d4a565b603061369691906144e1565b60f81b8183815181106136ac576136ab614879565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136e891906147dc565b9450613666565b8093505050505b919050565b6137058383613857565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461379357600080549050600083820390505b61374560008683806001019450866133b9565b61377b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061373257816000541461379057600080fd5b50505b505050565b60009392505050565b6137a9613aa8565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008054905060008203613897576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138a460008483856131af565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061391b8361390c60008660006131b5565b61391585613a12565b176131dd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146139bc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613981565b50600082036139f7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613a0d6000848385613208565b505050565b60006001821460e11b9050919050565b828054613a2e9061433d565b90600052602060002090601f016020900481019282613a505760008555613a97565b82601f10613a6957805160ff1916838001178555613a97565b82800160010185558215613a97579182015b82811115613a96578251825591602001919060010190613a7b565b5b509050613aa49190613af7565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115613b10576000816000905550600101613af8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b5d81613b28565b8114613b6857600080fd5b50565b600081359050613b7a81613b54565b92915050565b600060208284031215613b9657613b95613b1e565b5b6000613ba484828501613b6b565b91505092915050565b60008115159050919050565b613bc281613bad565b82525050565b6000602082019050613bdd6000830184613bb9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c1d578082015181840152602081019050613c02565b83811115613c2c576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c4e82613be3565b613c588185613bee565b9350613c68818560208601613bff565b613c7181613c32565b840191505092915050565b60006020820190508181036000830152613c968184613c43565b905092915050565b6000819050919050565b613cb181613c9e565b8114613cbc57600080fd5b50565b600081359050613cce81613ca8565b92915050565b600060208284031215613cea57613ce9613b1e565b5b6000613cf884828501613cbf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d2c82613d01565b9050919050565b613d3c81613d21565b82525050565b6000602082019050613d576000830184613d33565b92915050565b613d6681613d21565b8114613d7157600080fd5b50565b600081359050613d8381613d5d565b92915050565b60008060408385031215613da057613d9f613b1e565b5b6000613dae85828601613d74565b9250506020613dbf85828601613cbf565b9150509250929050565b613dd281613c9e565b82525050565b6000602082019050613ded6000830184613dc9565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e3582613c32565b810181811067ffffffffffffffff82111715613e5457613e53613dfd565b5b80604052505050565b6000613e67613b14565b9050613e738282613e2c565b919050565b600067ffffffffffffffff821115613e9357613e92613dfd565b5b613e9c82613c32565b9050602081019050919050565b82818337600083830152505050565b6000613ecb613ec684613e78565b613e5d565b905082815260208101848484011115613ee757613ee6613df8565b5b613ef2848285613ea9565b509392505050565b600082601f830112613f0f57613f0e613df3565b5b8135613f1f848260208601613eb8565b91505092915050565b600060208284031215613f3e57613f3d613b1e565b5b600082013567ffffffffffffffff811115613f5c57613f5b613b23565b5b613f6884828501613efa565b91505092915050565b600080600060608486031215613f8a57613f89613b1e565b5b6000613f9886828701613d74565b9350506020613fa986828701613d74565b9250506040613fba86828701613cbf565b9150509250925092565b613fcd81613bad565b8114613fd857600080fd5b50565b600081359050613fea81613fc4565b92915050565b60006020828403121561400657614005613b1e565b5b600061401484828501613fdb565b91505092915050565b60006020828403121561403357614032613b1e565b5b600061404184828501613d74565b91505092915050565b6000806040838503121561406157614060613b1e565b5b600061406f85828601613cbf565b925050602061408085828601613d74565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140bf81613c9e565b82525050565b60006140d183836140b6565b60208301905092915050565b6000602082019050919050565b60006140f58261408a565b6140ff8185614095565b935061410a836140a6565b8060005b8381101561413b57815161412288826140c5565b975061412d836140dd565b92505060018101905061410e565b5085935050505092915050565b6000602082019050818103600083015261416281846140ea565b905092915050565b6000806040838503121561418157614180613b1e565b5b600061418f85828601613d74565b92505060206141a085828601613fdb565b9150509250929050565b600067ffffffffffffffff8211156141c5576141c4613dfd565b5b6141ce82613c32565b9050602081019050919050565b60006141ee6141e9846141aa565b613e5d565b90508281526020810184848401111561420a57614209613df8565b5b614215848285613ea9565b509392505050565b600082601f83011261423257614231613df3565b5b81356142428482602086016141db565b91505092915050565b6000806000806080858703121561426557614264613b1e565b5b600061427387828801613d74565b945050602061428487828801613d74565b935050604061429587828801613cbf565b925050606085013567ffffffffffffffff8111156142b6576142b5613b23565b5b6142c28782880161421d565b91505092959194509250565b600080604083850312156142e5576142e4613b1e565b5b60006142f385828601613d74565b925050602061430485828601613d74565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061435557607f821691505b6020821081036143685761436761430e565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006143a4601f83613bee565b91506143af8261436e565b602082019050919050565b600060208201905081810360008301526143d381614397565b9050919050565b7f5075626c69632073616c65206e6f742061637469766521000000000000000000600082015250565b6000614410601783613bee565b915061441b826143da565b602082019050919050565b6000602082019050818103600083015261443f81614403565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061447c601483613bee565b915061448782614446565b602082019050919050565b600060208201905081810360008301526144ab8161446f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144ec82613c9e565b91506144f783613c9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561452c5761452b6144b2565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061456d601483613bee565b915061457882614537565b602082019050919050565b6000602082019050818103600083015261459c81614560565b9050919050565b60006145ae82613c9e565b91506145b983613c9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145f2576145f16144b2565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614633601383613bee565b915061463e826145fd565b602082019050919050565b6000602082019050818103600083015261466281614626565b9050919050565b7f53616c65206e6f74206163746976652100000000000000000000000000000000600082015250565b600061469f601083613bee565b91506146aa82614669565b602082019050919050565b600060208201905081810360008301526146ce81614692565b9050919050565b7f496e636f72726563742070617373776f72642100000000000000000000000000600082015250565b600061470b601383613bee565b9150614716826146d5565b602082019050919050565b6000602082019050818103600083015261473a816146fe565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000614777601d83613bee565b915061478282614741565b602082019050919050565b600060208201905081810360008301526147a68161476a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147e782613c9e565b91506147f283613c9e565b925082614802576148016147ad565b5b828204905092915050565b7f4d617820537570706c792045786365656465642e000000000000000000000000600082015250565b6000614843601483613bee565b915061484e8261480d565b602082019050919050565b6000602082019050818103600083015261487281614836565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614904602f83613bee565b915061490f826148a8565b604082019050919050565b60006020820190508181036000830152614933816148f7565b9050919050565b600081905092915050565b600061495082613be3565b61495a818561493a565b935061496a818560208601613bff565b80840191505092915050565b60008190508160005260206000209050919050565b600081546149988161433d565b6149a2818661493a565b945060018216600081146149bd57600181146149ce57614a01565b60ff19831686528186019350614a01565b6149d785614976565b60005b838110156149f9578154818901526001820191506020810190506149da565b838801955050505b50505092915050565b6000614a168286614945565b9150614a228285614945565b9150614a2e828461498b565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a97602683613bee565b9150614aa282614a3b565b604082019050919050565b60006020820190508181036000830152614ac681614a8a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b03602083613bee565b9150614b0e82614acd565b602082019050919050565b60006020820190508181036000830152614b3281614af6565b9050919050565b600081905092915050565b50565b6000614b54600083614b39565b9150614b5f82614b44565b600082019050919050565b6000614b7582614b47565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614bb5601083613bee565b9150614bc082614b7f565b602082019050919050565b60006020820190508181036000830152614be481614ba8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c1282614beb565b614c1c8185614bf6565b9350614c2c818560208601613bff565b614c3581613c32565b840191505092915050565b6000608082019050614c556000830187613d33565b614c626020830186613d33565b614c6f6040830185613dc9565b8181036060830152614c818184614c07565b905095945050505050565b600081519050614c9b81613b54565b92915050565b600060208284031215614cb757614cb6613b1e565b5b6000614cc584828501614c8c565b91505092915050565b6000614cd982613c9e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d0b57614d0a6144b2565b5b600182019050919050565b6000614d2182613c9e565b9150614d2c83613c9e565b925082821015614d3f57614d3e6144b2565b5b828203905092915050565b6000614d5582613c9e565b9150614d6083613c9e565b925082614d7057614d6f6147ad565b5b82820690509291505056fea2646970667358221220e25b3fd25736b2aa005cfb00004f250f91c49e67436e1bc5c8bbe17f97df6cb264736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000068267bb737f17b026ed4fbdf564ada5d95ffb082000000000000000000000000dc62ca2abe4c68e61c6820cb5a61d91e3e6e5257000000000000000000000000f7caf7dc0bdcd8f59cea8afcff1399eff0622587000000000000000000000000a08ddc6d323a6bc17799cc1aa11eafe242ba59fd000000000000000000000000c49368587fa9f873677c6791a4e66bcc2220351a0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51665a6a415839786f58464b4a6255355338524e36427a48337166546731426471547371584d346238436a6e2f00000000000000000000

Deployed Bytecode

0x6080604052600436106103815760003560e01c80636352211e116101d1578063b88d4fde11610102578063d8d39ca2116100a0578063efa65cf61161006f578063efa65cf614610c43578063f2fde38b14610c6c578063f648498014610c95578063fb03e6ff14610cbe57610381565b8063d8d39ca214610b85578063db4aa51914610bb0578063e985e9c514610bdb578063eac989f814610c1857610381565b8063c914c765116100dc578063c914c76514610adf578063cb23567714610b08578063d4c6eac714610b31578063d5abeb0114610b5a57610381565b8063b88d4fde14610a5d578063c385b67814610a79578063c87b56dd14610aa257610381565b80638462151c1161016f57806394354fd01161014957806394354fd0146109b557806395d89b41146109e0578063a22cb46514610a0b578063b071401b14610a3457610381565b80638462151c146109315780638cdb8ff31461096e5780638da5cb5b1461098a57610381565b806370a08231116101ab57806370a082311461089d578063715018a6146108da5780637871e154146108f15780637e295d661461091a57610381565b80636352211e1461080a578063638024c31461084757806364fcdd121461087257610381565b80632f9a7c58116102b657806342842e0e1161025457806353ac010a1161022357806353ac010a1461076d5780635503a0e8146107985780635a0b8b23146107c35780635ac291e8146107ee57610381565b806342842e0e146106e35780634e474109146106ff5780634f63e7e51461071b578063518b0abe1461074457610381565b80633bf344a6116102905780633bf344a61461064a5780633ccfd60b146106665780633ec4de351461067d5780633fa10135146106ba57610381565b80632f9a7c58146105cf578063316a93e4146105f8578063361fab251461062157610381565b806316ba10e01161032357806323b872dd116102fd57806323b872dd14610536578063254a473714610552578063267550bc1461057b5780632b5ccdb3146105a657610381565b806316ba10e0146104b757806318160ddd146104e05780631a4c0f981461050b57610381565b8063081812fc1161035f578063081812fc1461040a578063095ea7b314610447578063102e766d146104635780631224a2061461048e57610381565b806301ffc9a71461038657806306fdde03146103c357806307883703146103ee575b600080fd5b34801561039257600080fd5b506103ad60048036038101906103a89190613b80565b610cda565b6040516103ba9190613bc8565b60405180910390f35b3480156103cf57600080fd5b506103d8610d6c565b6040516103e59190613c7c565b60405180910390f35b61040860048036038101906104039190613cd4565b610dfe565b005b34801561041657600080fd5b50610431600480360381019061042c9190613cd4565b610fb4565b60405161043e9190613d42565b60405180910390f35b610461600480360381019061045c9190613d89565b611033565b005b34801561046f57600080fd5b50610478611177565b6040516104859190613dd8565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190613cd4565b61117d565b005b3480156104c357600080fd5b506104de60048036038101906104d99190613f28565b61118f565b005b3480156104ec57600080fd5b506104f56111b1565b6040516105029190613dd8565b60405180910390f35b34801561051757600080fd5b506105206111c8565b60405161052d9190613dd8565b60405180910390f35b610550600480360381019061054b9190613f71565b6111ce565b005b34801561055e57600080fd5b5061057960048036038101906105749190613ff0565b6114f0565b005b34801561058757600080fd5b50610590611515565b60405161059d9190613dd8565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613cd4565b61151b565b005b3480156105db57600080fd5b506105f660048036038101906105f19190613cd4565b61152d565b005b34801561060457600080fd5b5061061f600480360381019061061a919061401d565b61153f565b005b34801561062d57600080fd5b5061064860048036038101906106439190613cd4565b61158b565b005b610664600480360381019061065f919061404a565b61159d565b005b34801561067257600080fd5b5061067b611892565b005b34801561068957600080fd5b506106a4600480360381019061069f919061401d565b611905565b6040516106b19190613dd8565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190613cd4565b61191d565b005b6106fd60048036038101906106f89190613f71565b61192f565b005b6107196004803603810190610714919061404a565b61194f565b005b34801561072757600080fd5b50610742600480360381019061073d9190613cd4565b611c44565b005b34801561075057600080fd5b5061076b6004803603810190610766919061401d565b611c56565b005b34801561077957600080fd5b50610782611ca2565b60405161078f9190613bc8565b60405180910390f35b3480156107a457600080fd5b506107ad611cb5565b6040516107ba9190613c7c565b60405180910390f35b3480156107cf57600080fd5b506107d8611d43565b6040516107e59190613dd8565b60405180910390f35b6108086004803603810190610803919061404a565b611d49565b005b34801561081657600080fd5b50610831600480360381019061082c9190613cd4565b61203e565b60405161083e9190613d42565b60405180910390f35b34801561085357600080fd5b5061085c612050565b6040516108699190613dd8565b60405180910390f35b34801561087e57600080fd5b50610887612056565b6040516108949190613dd8565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf919061401d565b61205c565b6040516108d19190613dd8565b60405180910390f35b3480156108e657600080fd5b506108ef612114565b005b3480156108fd57600080fd5b506109186004803603810190610913919061404a565b612128565b005b34801561092657600080fd5b5061092f612195565b005b34801561093d57600080fd5b506109586004803603810190610953919061401d565b612259565b6040516109659190614148565b60405180910390f35b6109886004803603810190610983919061404a565b61239d565b005b34801561099657600080fd5b5061099f612692565b6040516109ac9190613d42565b60405180910390f35b3480156109c157600080fd5b506109ca6126bc565b6040516109d79190613dd8565b60405180910390f35b3480156109ec57600080fd5b506109f56126c2565b604051610a029190613c7c565b60405180910390f35b348015610a1757600080fd5b50610a326004803603810190610a2d919061416a565b612754565b005b348015610a4057600080fd5b50610a5b6004803603810190610a569190613cd4565b61285f565b005b610a776004803603810190610a72919061424b565b612871565b005b348015610a8557600080fd5b50610aa06004803603810190610a9b919061401d565b6128e4565b005b348015610aae57600080fd5b50610ac96004803603810190610ac49190613cd4565b612930565b604051610ad69190613c7c565b60405180910390f35b348015610aeb57600080fd5b50610b066004803603810190610b01919061401d565b6129da565b005b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613cd4565b612a26565b005b348015610b3d57600080fd5b50610b586004803603810190610b539190613cd4565b612a38565b005b348015610b6657600080fd5b50610b6f612a4a565b604051610b7c9190613dd8565b60405180910390f35b348015610b9157600080fd5b50610b9a612a50565b604051610ba79190613dd8565b60405180910390f35b348015610bbc57600080fd5b50610bc5612a56565b604051610bd29190613dd8565b60405180910390f35b348015610be757600080fd5b50610c026004803603810190610bfd91906142ce565b612a5c565b604051610c0f9190613bc8565b60405180910390f35b348015610c2457600080fd5b50610c2d612af0565b604051610c3a9190613c7c565b60405180910390f35b348015610c4f57600080fd5b50610c6a6004803603810190610c65919061401d565b612b7e565b005b348015610c7857600080fd5b50610c936004803603810190610c8e919061401d565b612bca565b005b348015610ca157600080fd5b50610cbc6004803603810190610cb79190613f28565b612c4d565b005b610cd86004803603810190610cd3919061404a565b612c6f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d3557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d655750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610d7b9061433d565b80601f0160208091040260200160405190810160405280929190818152602001828054610da79061433d565b8015610df45780601f10610dc957610100808354040283529160200191610df4565b820191906000526020600020905b815481529060010190602001808311610dd757829003601f168201915b5050505050905090565b600260095403610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a906143ba565b60405180910390fd5b60026009819055506000610e556111b1565b9050601660009054906101000a900460ff16610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90614426565b60405180910390fd5b600082118015610eb857506014548211155b610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90614492565b60405180910390fd5b6012548282610f0691906144e1565b1115610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90614583565b60405180910390fd5b81600c54610f5591906145a3565b341015610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90614649565b60405180910390fd5b610fa8610fa2612f64565b83612f6c565b50600160098190555050565b6000610fbf82612f8a565b610ff5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061103e8261203e565b90508073ffffffffffffffffffffffffffffffffffffffff1661105f612fe9565b73ffffffffffffffffffffffffffffffffffffffff16146110c25761108b81611086612fe9565b612a5c565b6110c1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b611185612ff1565b8060108190555050565b611197612ff1565b80600b90805190602001906111ad929190613a22565b5050565b60006111bb61306f565b6001546000540303905090565b600e5481565b60006111d982613078565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611240576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061124c84613144565b91509150611262818761125d612fe9565b61316b565b6112ae5761127786611272612fe9565b612a5c565b6112ad576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611314576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61132186868660016131af565b801561132c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506113fa856113d68888876131b5565b7c0200000000000000000000000000000000000000000000000000000000176131dd565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611480576000600185019050600060046000838152602001908152602001600020540361147e57600054811461147d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114e88686866001613208565b505050505050565b6114f8612ff1565b80601660006101000a81548160ff02191690831515021790555050565b60105481565b611523612ff1565b80600e8190555050565b611535612ff1565b80600c8190555050565b611547612ff1565b80601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611593612ff1565b8060128190555050565b6002600954036115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d9906143ba565b60405180910390fd5b600260098190555060006115f46111b1565b9050601660009054906101000a900460ff16611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c906146b5565b60405180910390fd5b601254838261165491906144e1565b1115611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90614583565b60405180910390fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c90614721565b60405180910390fd5b60008311801561173757506014548311155b611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d90614492565b60405180910390fd5b601554836117833361205c565b61178d91906144e1565b11156117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c59061478d565b60405180910390fd5b826010546117dc91906145a3565b34101561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614649565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461186d91906144e1565b9250508190555061188561187f612f64565b84612f6c565b5060016009819055505050565b61189a612ff1565b6000479050600081116118ac57600080fd5b6118f1601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e86032846118e291906145a3565b6118ec91906147dc565b61320e565b6119026118fc612692565b4761320e565b50565b601b6020528060005260406000206000915090505481565b611925612ff1565b8060158190555050565b61194a83838360405180602001604052806000815250612871565b505050565b600260095403611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b906143ba565b60405180910390fd5b600260098190555060006119a66111b1565b9050601660009054906101000a900460ff166119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906146b5565b60405180910390fd5b6012548382611a0691906144e1565b1115611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614583565b60405180910390fd5b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90614721565b60405180910390fd5b600083118015611ae957506014548311155b611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90614492565b60405180910390fd5b60155483611b353361205c565b611b3f91906144e1565b1115611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b779061478d565b60405180910390fd5b82600e54611b8e91906145a3565b341015611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc790614649565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c1f91906144e1565b92505081905550611c37611c31612f64565b84612f6c565b5060016009819055505050565b611c4c612ff1565b80600d8190555050565b611c5e612ff1565b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601660009054906101000a900460ff1681565b600b8054611cc29061433d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cee9061433d565b8015611d3b5780601f10611d1057610100808354040283529160200191611d3b565b820191906000526020600020905b815481529060010190602001808311611d1e57829003601f168201915b505050505081565b60155481565b600260095403611d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d85906143ba565b60405180910390fd5b60026009819055506000611da06111b1565b9050601660009054906101000a900460ff16611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de8906146b5565b60405180910390fd5b6012548382611e0091906144e1565b1115611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890614583565b60405180910390fd5b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890614721565b60405180910390fd5b600083118015611ee357506014548311155b611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614492565b60405180910390fd5b60155483611f2f3361205c565b611f3991906144e1565b1115611f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f719061478d565b60405180910390fd5b82600d54611f8891906145a3565b341015611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190614649565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461201991906144e1565b9250508190555061203161202b612f64565b84612f6c565b5060016009819055505050565b600061204982613078565b9050919050565b600d5481565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120c3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61211c612ff1565b61212660006132bf565b565b612130612ff1565b6012548261213c6111b1565b61214691906144e1565b1115612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e90614583565b60405180910390fd5b6121918183612f6c565b5050565b61219d612ff1565b6002600954036121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d9906143ba565b60405180910390fd5b60026009819055506012546013546121f86111b1565b61220291906144e1565b1115612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90614859565b60405180910390fd5b61224f33601354612f6c565b6001600981905550565b606060006122668361205c565b67ffffffffffffffff81111561227f5761227e613dfd565b5b6040519080825280602002602001820160405280156122ad5781602001602082028036833780820191505090505b50905060006122ba613385565b905060008060005b838110156123905760006122d58261338e565b90508060400151156122e75750612383565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612381578186858060010196508151811061237457612373614879565b5b6020026020010181815250505b505b80806001019150506122c2565b5083945050505050919050565b6002600954036123e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d9906143ba565b60405180910390fd5b600260098190555060006123f46111b1565b9050601660009054906101000a900460ff16612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243c906146b5565b60405180910390fd5b601254838261245491906144e1565b1115612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90614583565b60405180910390fd5b601660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90614721565b60405180910390fd5b60008311801561253757506014548311155b612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d90614492565b60405180910390fd5b601554836125833361205c565b61258d91906144e1565b11156125ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c59061478d565b60405180910390fd5b826011546125dc91906145a3565b34101561261e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261590614649565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266d91906144e1565b9250508190555061268561267f612f64565b84612f6c565b5060016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b6060600380546126d19061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546126fd9061433d565b801561274a5780601f1061271f5761010080835404028352916020019161274a565b820191906000526020600020905b81548152906001019060200180831161272d57829003601f168201915b5050505050905090565b8060076000612761612fe9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661280e612fe9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128539190613bc8565b60405180910390a35050565b612867612ff1565b8060148190555050565b61287c8484846111ce565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128de576128a7848484846133b9565b6128dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6128ec612ff1565b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061293b82612f8a565b61297a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129719061491a565b60405180910390fd5b6000612984613509565b905060008151116129a457604051806020016040528060008152506129d2565b806129ae8461359b565b600b6040516020016129c293929190614a0a565b6040516020818303038152906040525b915050919050565b6129e2612ff1565b80601660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612a2e612ff1565b80600f8190555050565b612a40612ff1565b8060118190555050565b60125481565b60115481565b60135481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054612afd9061433d565b80601f0160208091040260200160405190810160405280929190818152602001828054612b299061433d565b8015612b765780601f10612b4b57610100808354040283529160200191612b76565b820191906000526020600020905b815481529060010190602001808311612b5957829003601f168201915b505050505081565b612b86612ff1565b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612bd2612ff1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3890614aad565b60405180910390fd5b612c4a816132bf565b50565b612c55612ff1565b80600a9080519060200190612c6b929190613a22565b5050565b600260095403612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab906143ba565b60405180910390fd5b60026009819055506000612cc66111b1565b9050601660009054906101000a900460ff16612d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0e906146b5565b60405180910390fd5b6012548382612d2691906144e1565b1115612d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5e90614583565b60405180910390fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee90614721565b60405180910390fd5b600083118015612e0957506014548311155b612e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3f90614492565b60405180910390fd5b60155483612e553361205c565b612e5f91906144e1565b1115612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e979061478d565b60405180910390fd5b82600f54612eae91906145a3565b341015612ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee790614649565b60405180910390fd5b82601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f3f91906144e1565b92505081905550612f57612f51612f64565b84612f6c565b5060016009819055505050565b600033905090565b612f868282604051806020016040528060008152506136fb565b5050565b600081612f9561306f565b11158015612fa4575060005482105b8015612fe2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b612ff9612f64565b73ffffffffffffffffffffffffffffffffffffffff16613017612692565b73ffffffffffffffffffffffffffffffffffffffff161461306d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306490614b19565b60405180910390fd5b565b60006001905090565b6000808290508061308761306f565b1161310d5760005481101561310c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361310a575b600081036131005760046000836001900393508381526020019081526020016000205490506130d6565b809250505061313f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86131cc868684613798565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161323490614b6a565b60006040518083038185875af1925050503d8060008114613271576040519150601f19603f3d011682016040523d82523d6000602084013e613276565b606091505b50509050806132ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b190614bcb565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b613396613aa8565b6133b260046000848152602001908152602001600020546137a1565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133df612fe9565b8786866040518563ffffffff1660e01b81526004016134019493929190614c40565b6020604051808303816000875af192505050801561343d57506040513d601f19601f8201168201806040525081019061343a9190614ca1565b60015b6134b6573d806000811461346d576040519150601f19603f3d011682016040523d82523d6000602084013e613472565b606091505b5060008151036134ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546135189061433d565b80601f01602080910402602001604051908101604052809291908181526020018280546135449061433d565b80156135915780601f1061356657610100808354040283529160200191613591565b820191906000526020600020905b81548152906001019060200180831161357457829003601f168201915b5050505050905090565b6060600082036135e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136f6565b600082905060005b600082146136145780806135fd90614cce565b915050600a8261360d91906147dc565b91506135ea565b60008167ffffffffffffffff8111156136305761362f613dfd565b5b6040519080825280601f01601f1916602001820160405280156136625781602001600182028036833780820191505090505b5090505b600085146136ef5760018261367b9190614d16565b9150600a8561368a9190614d4a565b603061369691906144e1565b60f81b8183815181106136ac576136ab614879565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136e891906147dc565b9450613666565b8093505050505b919050565b6137058383613857565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461379357600080549050600083820390505b61374560008683806001019450866133b9565b61377b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061373257816000541461379057600080fd5b50505b505050565b60009392505050565b6137a9613aa8565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008054905060008203613897576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138a460008483856131af565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061391b8361390c60008660006131b5565b61391585613a12565b176131dd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146139bc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613981565b50600082036139f7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613a0d6000848385613208565b505050565b60006001821460e11b9050919050565b828054613a2e9061433d565b90600052602060002090601f016020900481019282613a505760008555613a97565b82601f10613a6957805160ff1916838001178555613a97565b82800160010185558215613a97579182015b82811115613a96578251825591602001919060010190613a7b565b5b509050613aa49190613af7565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115613b10576000816000905550600101613af8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b5d81613b28565b8114613b6857600080fd5b50565b600081359050613b7a81613b54565b92915050565b600060208284031215613b9657613b95613b1e565b5b6000613ba484828501613b6b565b91505092915050565b60008115159050919050565b613bc281613bad565b82525050565b6000602082019050613bdd6000830184613bb9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c1d578082015181840152602081019050613c02565b83811115613c2c576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c4e82613be3565b613c588185613bee565b9350613c68818560208601613bff565b613c7181613c32565b840191505092915050565b60006020820190508181036000830152613c968184613c43565b905092915050565b6000819050919050565b613cb181613c9e565b8114613cbc57600080fd5b50565b600081359050613cce81613ca8565b92915050565b600060208284031215613cea57613ce9613b1e565b5b6000613cf884828501613cbf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d2c82613d01565b9050919050565b613d3c81613d21565b82525050565b6000602082019050613d576000830184613d33565b92915050565b613d6681613d21565b8114613d7157600080fd5b50565b600081359050613d8381613d5d565b92915050565b60008060408385031215613da057613d9f613b1e565b5b6000613dae85828601613d74565b9250506020613dbf85828601613cbf565b9150509250929050565b613dd281613c9e565b82525050565b6000602082019050613ded6000830184613dc9565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613e3582613c32565b810181811067ffffffffffffffff82111715613e5457613e53613dfd565b5b80604052505050565b6000613e67613b14565b9050613e738282613e2c565b919050565b600067ffffffffffffffff821115613e9357613e92613dfd565b5b613e9c82613c32565b9050602081019050919050565b82818337600083830152505050565b6000613ecb613ec684613e78565b613e5d565b905082815260208101848484011115613ee757613ee6613df8565b5b613ef2848285613ea9565b509392505050565b600082601f830112613f0f57613f0e613df3565b5b8135613f1f848260208601613eb8565b91505092915050565b600060208284031215613f3e57613f3d613b1e565b5b600082013567ffffffffffffffff811115613f5c57613f5b613b23565b5b613f6884828501613efa565b91505092915050565b600080600060608486031215613f8a57613f89613b1e565b5b6000613f9886828701613d74565b9350506020613fa986828701613d74565b9250506040613fba86828701613cbf565b9150509250925092565b613fcd81613bad565b8114613fd857600080fd5b50565b600081359050613fea81613fc4565b92915050565b60006020828403121561400657614005613b1e565b5b600061401484828501613fdb565b91505092915050565b60006020828403121561403357614032613b1e565b5b600061404184828501613d74565b91505092915050565b6000806040838503121561406157614060613b1e565b5b600061406f85828601613cbf565b925050602061408085828601613d74565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140bf81613c9e565b82525050565b60006140d183836140b6565b60208301905092915050565b6000602082019050919050565b60006140f58261408a565b6140ff8185614095565b935061410a836140a6565b8060005b8381101561413b57815161412288826140c5565b975061412d836140dd565b92505060018101905061410e565b5085935050505092915050565b6000602082019050818103600083015261416281846140ea565b905092915050565b6000806040838503121561418157614180613b1e565b5b600061418f85828601613d74565b92505060206141a085828601613fdb565b9150509250929050565b600067ffffffffffffffff8211156141c5576141c4613dfd565b5b6141ce82613c32565b9050602081019050919050565b60006141ee6141e9846141aa565b613e5d565b90508281526020810184848401111561420a57614209613df8565b5b614215848285613ea9565b509392505050565b600082601f83011261423257614231613df3565b5b81356142428482602086016141db565b91505092915050565b6000806000806080858703121561426557614264613b1e565b5b600061427387828801613d74565b945050602061428487828801613d74565b935050604061429587828801613cbf565b925050606085013567ffffffffffffffff8111156142b6576142b5613b23565b5b6142c28782880161421d565b91505092959194509250565b600080604083850312156142e5576142e4613b1e565b5b60006142f385828601613d74565b925050602061430485828601613d74565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061435557607f821691505b6020821081036143685761436761430e565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006143a4601f83613bee565b91506143af8261436e565b602082019050919050565b600060208201905081810360008301526143d381614397565b9050919050565b7f5075626c69632073616c65206e6f742061637469766521000000000000000000600082015250565b6000614410601783613bee565b915061441b826143da565b602082019050919050565b6000602082019050818103600083015261443f81614403565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061447c601483613bee565b915061448782614446565b602082019050919050565b600060208201905081810360008301526144ab8161446f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144ec82613c9e565b91506144f783613c9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561452c5761452b6144b2565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061456d601483613bee565b915061457882614537565b602082019050919050565b6000602082019050818103600083015261459c81614560565b9050919050565b60006145ae82613c9e565b91506145b983613c9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145f2576145f16144b2565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614633601383613bee565b915061463e826145fd565b602082019050919050565b6000602082019050818103600083015261466281614626565b9050919050565b7f53616c65206e6f74206163746976652100000000000000000000000000000000600082015250565b600061469f601083613bee565b91506146aa82614669565b602082019050919050565b600060208201905081810360008301526146ce81614692565b9050919050565b7f496e636f72726563742070617373776f72642100000000000000000000000000600082015250565b600061470b601383613bee565b9150614716826146d5565b602082019050919050565b6000602082019050818103600083015261473a816146fe565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000614777601d83613bee565b915061478282614741565b602082019050919050565b600060208201905081810360008301526147a68161476a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147e782613c9e565b91506147f283613c9e565b925082614802576148016147ad565b5b828204905092915050565b7f4d617820537570706c792045786365656465642e000000000000000000000000600082015250565b6000614843601483613bee565b915061484e8261480d565b602082019050919050565b6000602082019050818103600083015261487281614836565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614904602f83613bee565b915061490f826148a8565b604082019050919050565b60006020820190508181036000830152614933816148f7565b9050919050565b600081905092915050565b600061495082613be3565b61495a818561493a565b935061496a818560208601613bff565b80840191505092915050565b60008190508160005260206000209050919050565b600081546149988161433d565b6149a2818661493a565b945060018216600081146149bd57600181146149ce57614a01565b60ff19831686528186019350614a01565b6149d785614976565b60005b838110156149f9578154818901526001820191506020810190506149da565b838801955050505b50505092915050565b6000614a168286614945565b9150614a228285614945565b9150614a2e828461498b565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a97602683613bee565b9150614aa282614a3b565b604082019050919050565b60006020820190508181036000830152614ac681614a8a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b03602083613bee565b9150614b0e82614acd565b602082019050919050565b60006020820190508181036000830152614b3281614af6565b9050919050565b600081905092915050565b50565b6000614b54600083614b39565b9150614b5f82614b44565b600082019050919050565b6000614b7582614b47565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614bb5601083613bee565b9150614bc082614b7f565b602082019050919050565b60006020820190508181036000830152614be481614ba8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c1282614beb565b614c1c8185614bf6565b9350614c2c818560208601613bff565b614c3581613c32565b840191505092915050565b6000608082019050614c556000830187613d33565b614c626020830186613d33565b614c6f6040830185613dc9565b8181036060830152614c818184614c07565b905095945050505050565b600081519050614c9b81613b54565b92915050565b600060208284031215614cb757614cb6613b1e565b5b6000614cc584828501614c8c565b91505092915050565b6000614cd982613c9e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d0b57614d0a6144b2565b5b600182019050919050565b6000614d2182613c9e565b9150614d2c83613c9e565b925082821015614d3f57614d3e6144b2565b5b828203905092915050565b6000614d5582613c9e565b9150614d6083613c9e565b925082614d7057614d6f6147ad565b5b82820690509291505056fea2646970667358221220e25b3fd25736b2aa005cfb00004f250f91c49e67436e1bc5c8bbe17f97df6cb264736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000068267bb737f17b026ed4fbdf564ada5d95ffb082000000000000000000000000dc62ca2abe4c68e61c6820cb5a61d91e3e6e5257000000000000000000000000f7caf7dc0bdcd8f59cea8afcff1399eff0622587000000000000000000000000a08ddc6d323a6bc17799cc1aa11eafe242ba59fd000000000000000000000000c49368587fa9f873677c6791a4e66bcc2220351a0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51665a6a415839786f58464b4a6255355338524e36427a48337166546731426471547371584d346238436a6e2f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmQfZjAX9xoXFKJbU5S8RN6BzH3qfTg1BdqTsqXM4b8Cjn/
Arg [1] : _acePass (address): 0x68267Bb737f17b026Ed4FBDf564adA5D95FfB082
Arg [2] : _kingPass (address): 0xdc62ca2ABe4c68E61C6820cb5a61d91E3e6E5257
Arg [3] : _queenPass (address): 0xf7Caf7DC0bDCD8F59cEA8aFcFF1399EFf0622587
Arg [4] : _jackPass (address): 0xa08dDC6D323A6bc17799Cc1aa11eAFe242Ba59FD
Arg [5] : _tenPass (address): 0xC49368587fA9f873677c6791a4E66bCC2220351a

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 00000000000000000000000068267bb737f17b026ed4fbdf564ada5d95ffb082
Arg [2] : 000000000000000000000000dc62ca2abe4c68e61c6820cb5a61d91e3e6e5257
Arg [3] : 000000000000000000000000f7caf7dc0bdcd8f59cea8afcff1399eff0622587
Arg [4] : 000000000000000000000000a08ddc6d323a6bc17799cc1aa11eafe242ba59fd
Arg [5] : 000000000000000000000000c49368587fa9f873677c6791a4e66bcc2220351a
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [7] : 697066733a2f2f516d51665a6a415839786f58464b4a6255355338524e36427a
Arg [8] : 48337166546731426471547371584d346238436a6e2f00000000000000000000


Deployed Bytecode Sourcemap

89236:10916:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46632:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47534:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95116:533;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54025:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53458:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89478:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97299:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96657:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43285:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89568:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57664:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97834:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89660:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97495:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97101:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96351:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97704:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92000:771;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98087:236;;;;;;;;;;;;;:::i;:::-;;90075:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96949:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60585:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93561:771;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97592:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96456:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89920:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89438:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89875:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94340:768;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48927:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89525:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89614:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44469:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24652:103;;;;;;;;;;;;;:::i;:::-;;95659:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91016:200;;;;;;;;;;;;;:::i;:::-;;98663:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91224:768;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24004:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89830:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47710:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54583:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96786:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61376:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96137:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99572:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96036:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97396:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97204:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89751:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89706:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89789:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54974:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89414:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96242:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24910:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96567:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92779:774;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46632:639;46717:4;47056:10;47041:25;;:11;:25;;;;:102;;;;47133:10;47118:25;;:11;:25;;;;47041:102;:179;;;;47210:10;47195:25;;:11;:25;;;;47041:179;47021:199;;46632:639;;;:::o;47534:100::-;47588:13;47621:5;47614:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47534:100;:::o;95116:533::-;27281:1;27879:7;;:19;27871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;95190:14:::1;95207:13;:11;:13::i;:::-;95190:30;;95272:13;;;;;;;;;;;95264:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;95346:1;95332:11;:15;:52;;;;;95366:18;;95351:11;:33;;95332:52;95324:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;95452:9;;95437:11;95428:6;:20;;;;:::i;:::-;:33;;95420:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;95532:11;95518;;:25;;;;:::i;:::-;95505:9;:38;;95497:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;95605:36;95615:12;:10;:12::i;:::-;95629:11;95605:9;:36::i;:::-;95179:470;27237:1:::0;28191:7;:22;;;;95116:533;:::o;54025:218::-;54101:7;54126:16;54134:7;54126;:16::i;:::-;54121:64;;54151:34;;;;;;;;;;;;;;54121:64;54205:15;:24;54221:7;54205:24;;;;;;;;;;;:30;;;;;;;;;;;;54198:37;;54025:218;;;:::o;53458:408::-;53547:13;53563:16;53571:7;53563;:16::i;:::-;53547:32;;53619:5;53596:28;;:19;:17;:19::i;:::-;:28;;;53592:175;;53644:44;53661:5;53668:19;:17;:19::i;:::-;53644:16;:44::i;:::-;53639:128;;53716:35;;;;;;;;;;;;;;53639:128;53592:175;53812:2;53779:15;:24;53795:7;53779:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;53850:7;53846:2;53830:28;;53839:5;53830:28;;;;;;;;;;;;53536:330;53458:408;;:::o;89478:40::-;;;;:::o;97299:89::-;23890:13;:11;:13::i;:::-;97375:5:::1;97363:9;:17;;;;97299:89:::0;:::o;96657:106::-;23890:13;:11;:13::i;:::-;96745:10:::1;96733:9;:22;;;;;;;;;;;;:::i;:::-;;96657:106:::0;:::o;43285:323::-;43346:7;43574:15;:13;:15::i;:::-;43559:12;;43543:13;;:28;:46;43536:53;;43285:323;:::o;89568:39::-;;;;:::o;57664:2825::-;57806:27;57836;57855:7;57836:18;:27::i;:::-;57806:57;;57921:4;57880:45;;57896:19;57880:45;;;57876:86;;57934:28;;;;;;;;;;;;;;57876:86;57976:27;58005:23;58032:35;58059:7;58032:26;:35::i;:::-;57975:92;;;;58167:68;58192:15;58209:4;58215:19;:17;:19::i;:::-;58167:24;:68::i;:::-;58162:180;;58255:43;58272:4;58278:19;:17;:19::i;:::-;58255:16;:43::i;:::-;58250:92;;58307:35;;;;;;;;;;;;;;58250:92;58162:180;58373:1;58359:16;;:2;:16;;;58355:52;;58384:23;;;;;;;;;;;;;;58355:52;58420:43;58442:4;58448:2;58452:7;58461:1;58420:21;:43::i;:::-;58556:15;58553:160;;;58696:1;58675:19;58668:30;58553:160;59093:18;:24;59112:4;59093:24;;;;;;;;;;;;;;;;59091:26;;;;;;;;;;;;59162:18;:22;59181:2;59162:22;;;;;;;;;;;;;;;;59160:24;;;;;;;;;;;59484:146;59521:2;59570:45;59585:4;59591:2;59595:19;59570:14;:45::i;:::-;39684:8;59542:73;59484:18;:146::i;:::-;59455:17;:26;59473:7;59455:26;;;;;;;;;;;:175;;;;59801:1;39684:8;59750:19;:47;:52;59746:627;;59823:19;59855:1;59845:7;:11;59823:33;;60012:1;59978:17;:30;59996:11;59978:30;;;;;;;;;;;;:35;59974:384;;60116:13;;60101:11;:28;60097:242;;60296:19;60263:17;:30;60281:11;60263:30;;;;;;;;;;;:52;;;;60097:242;59974:384;59804:569;59746:627;60420:7;60416:2;60401:27;;60410:4;60401:27;;;;;;;;;;;;60439:42;60460:4;60466:2;60470:7;60479:1;60439:20;:42::i;:::-;57795:2694;;;57664:2825;;;:::o;97834:103::-;23890:13;:11;:13::i;:::-;97920:9:::1;97904:13;;:25;;;;;;;;;;;;;;;;;;97834:103:::0;:::o;89660:39::-;;;;:::o;97495:89::-;23890:13;:11;:13::i;:::-;97571:5:::1;97559:9;:17;;;;97495:89:::0;:::o;97101:93::-;23890:13;:11;:13::i;:::-;97181:5:::1;97167:11;:19;;;;97101:93:::0;:::o;96351:99::-;23890:13;:11;:13::i;:::-;96433:9:::1;96422:8;;:20;;;;;;;;;;;;;;;;;;96351:99:::0;:::o;97704:106::-;23890:13;:11;:13::i;:::-;97790:12:::1;97778:9;:24;;;;97704:106:::0;:::o;92000:771::-;27281:1;27879:7;;:19;27871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;92097:14:::1;92114:13;:11;:13::i;:::-;92097:30;;92179:13;;;;;;;;;;;92171:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;92256:9;;92241:11;92232:6;:20;;;;:::i;:::-;:33;;92224:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;92321:8;;;;;;;;;;;92309:20;;:8;:20;;;92301:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;92386:1;92372:11;:15;:52;;;;;92406:18;;92391:11;:33;;92372:52;92364:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;92507:17;;92492:11;92468:21;92478:10;92468:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;92460:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;92602:11;92590:9;;:23;;;;:::i;:::-;92577:9;:36;;92569:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;92688:11;92658:14;:26;92673:10;92658:26;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;92727:36;92737:12;:10;:12::i;:::-;92751:11;92727:9;:36::i;:::-;92086:685;27237:1:::0;28191:7;:22;;;;92000:771;;:::o;98087:236::-;23890:13;:11;:13::i;:::-;98135:16:::1;98154:21;98135:40;;98205:1;98194:8;:12;98186:21;;;::::0;::::1;;98218:45;98228:10;;;;;;;;;;;98258:4;98252:2;98241:8;:13;;;;:::i;:::-;98240:22;;;;:::i;:::-;98218:9;:45::i;:::-;98274:41;98284:7;:5;:7::i;:::-;98293:21;98274:9;:41::i;:::-;98124:199;98087:236::o:0;90075:50::-;;;;;;;;;;;;;;;;;:::o;96949:132::-;23890:13;:11;:13::i;:::-;97055:18:::1;97035:17;:38;;;;96949:132:::0;:::o;60585:193::-;60731:39;60748:4;60754:2;60758:7;60731:39;;;;;;;;;;;;:16;:39::i;:::-;60585:193;;;:::o;93561:771::-;27281:1;27879:7;;:19;27871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;93658:14:::1;93675:13;:11;:13::i;:::-;93658:30;;93740:13;;;;;;;;;;;93732:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;93817:9;;93802:11;93793:6;:20;;;;:::i;:::-;:33;;93785:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;93882:8;;;;;;;;;;;93870:20;;:8;:20;;;93862:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;93947:1;93933:11;:15;:52;;;;;93967:18;;93952:11;:33;;93933:52;93925:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;94068:17;;94053:11;94029:21;94039:10;94029:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;94021:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;94163:11;94151:9;;:23;;;;:::i;:::-;94138:9;:36;;94130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;94249:11;94219:14;:26;94234:10;94219:26;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;94288:36;94298:12;:10;:12::i;:::-;94312:11;94288:9;:36::i;:::-;93647:685;27237:1:::0;28191:7;:22;;;;93561:771;;:::o;97592:87::-;23890:13;:11;:13::i;:::-;97666:5:::1;97655:8;:16;;;;97592:87:::0;:::o;96456:95::-;23890:13;:11;:13::i;:::-;96535:8:::1;96525:7;;:18;;;;;;;;;;;;;;;;;;96456:95:::0;:::o;89920:32::-;;;;;;;;;;;;;:::o;89438:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;89875:38::-;;;;:::o;94340:768::-;27281:1;27879:7;;:19;27871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;94436:14:::1;94453:13;:11;:13::i;:::-;94436:30;;94518:13;;;;;;;;;;;94510:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;94595:9;;94580:11;94571:6;:20;;;;:::i;:::-;:33;;94563:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;94660:7;;;;;;;;;;;94648:19;;:8;:19;;;94640:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;94724:1;94710:11;:15;:52;;;;;94744:18;;94729:11;:33;;94710:52;94702:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;94845:17;;94830:11;94806:21;94816:10;94806:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;94798:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;94939:11;94928:8;;:22;;;;:::i;:::-;94915:9;:35;;94907:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;95025:11;94995:14;:26;95010:10;94995:26;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;95064:36;95074:12;:10;:12::i;:::-;95088:11;95064:9;:36::i;:::-;94425:683;27237:1:::0;28191:7;:22;;;;94340:768;;:::o;48927:152::-;48999:7;49042:27;49061:7;49042:18;:27::i;:::-;49019:52;;48927:152;;;:::o;89525:36::-;;;;:::o;89614:39::-;;;;:::o;44469:233::-;44541:7;44582:1;44565:19;;:5;:19;;;44561:60;;44593:28;;;;;;;;;;;;;;44561:60;38628:13;44639:18;:25;44658:5;44639:25;;;;;;;;;;;;;;;;:55;44632:62;;44469:233;;;:::o;24652:103::-;23890:13;:11;:13::i;:::-;24717:30:::1;24744:1;24717:18;:30::i;:::-;24652:103::o:0;95659:210::-;23890:13;:11;:13::i;:::-;95783:9:::1;;95768:11;95752:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;95744:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;95828:33;95838:9;95849:11;95828:9;:33::i;:::-;95659:210:::0;;:::o;91016:200::-;23890:13;:11;:13::i;:::-;27281:1:::1;27879:7;;:19:::0;27871:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;91126:9:::2;;91108:14;;91092:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;91084:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;91171:37;91181:10;91193:14;;91171:9;:37::i;:::-;27237:1:::1;28191:7;:22;;;;91016:200::o:0;98663:792::-;98724:16;98778:18;98813:16;98823:5;98813:9;:16::i;:::-;98799:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98778:52;;98846:11;98860:14;:12;:14::i;:::-;98846:28;;98889:19;98923:25;98968:9;98963:447;98983:3;98979:1;:7;98963:447;;;99012:31;99046:15;99059:1;99046:12;:15::i;:::-;99012:49;;99084:9;:16;;;99080:73;;;99125:8;;;99080:73;99201:1;99175:28;;:9;:14;;;:28;;;99171:111;;99248:9;:14;;;99228:34;;99171:111;99325:5;99304:26;;:17;:26;;;99300:95;;99374:1;99355;99357:13;;;;;;99355:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;99300:95;98993:417;98963:447;98988:3;;;;;;;98963:447;;;;99431:1;99424:8;;;;;;98663:792;;;:::o;91224:768::-;27281:1;27879:7;;:19;27871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;91320:14:::1;91337:13;:11;:13::i;:::-;91320:30;;91402:13;;;;;;;;;;;91394:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;91479:9;;91464:11;91455:6;:20;;;;:::i;:::-;:33;;91447:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;91544:7;;;;;;;;;;;91532:19;;:8;:19;;;91524:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;91608:1;91594:11;:15;:52;;;;;91628:18;;91613:11;:33;;91594:52;91586:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;91729:17;;91714:11;91690:21;91700:10;91690:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;91682:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;91823:11;91812:8;;:22;;;;:::i;:::-;91799:9;:35;;91791:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;91909:11;91879:14;:26;91894:10;91879:26;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;91948:36;91958:12;:10;:12::i;:::-;91972:11;91948:9;:36::i;:::-;91309:683;27237:1:::0;28191:7;:22;;;;91224:768;;:::o;24004:87::-;24050:7;24077:6;;;;;;;;;;;24070:13;;24004:87;:::o;89830:38::-;;;;:::o;47710:104::-;47766:13;47799:7;47792:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47710:104;:::o;54583:234::-;54730:8;54678:18;:39;54697:19;:17;:19::i;:::-;54678:39;;;;;;;;;;;;;;;:49;54718:8;54678:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;54790:8;54754:55;;54769:19;:17;:19::i;:::-;54754:55;;;54800:8;54754:55;;;;;;:::i;:::-;;;;;;;;54583:234;;:::o;96786:136::-;23890:13;:11;:13::i;:::-;96895:19:::1;96874:18;:40;;;;96786:136:::0;:::o;61376:407::-;61551:31;61564:4;61570:2;61574:7;61551:12;:31::i;:::-;61615:1;61597:2;:14;;;:19;61593:183;;61636:56;61667:4;61673:2;61677:7;61686:5;61636:30;:56::i;:::-;61631:145;;61720:40;;;;;;;;;;;;;;61631:145;61593:183;61376:407;;;;:::o;96137:99::-;23890:13;:11;:13::i;:::-;96219:9:::1;96208:8;;:20;;;;;;;;;;;;;;;;;;96137:99:::0;:::o;99572:395::-;99646:13;99680:17;99688:8;99680:7;:17::i;:::-;99672:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;99762:28;99793:10;:8;:10::i;:::-;99762:41;;99852:1;99827:14;99821:28;:32;:138;;;;;;;;;;;;;;;;;99893:14;99909:19;:8;:17;:19::i;:::-;99930:9;99876:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;99821:138;99814:145;;;99572:395;;;:::o;96036:95::-;23890:13;:11;:13::i;:::-;96115:8:::1;96105:7;;:18;;;;;;;;;;;;;;;;;;96036:95:::0;:::o;97396:91::-;23890:13;:11;:13::i;:::-;97474:5:::1;97461:10;:18;;;;97396:91:::0;:::o;97204:87::-;23890:13;:11;:13::i;:::-;97278:5:::1;97267:8;:16;;;;97204:87:::0;:::o;89751:31::-;;;;:::o;89706:36::-;;;;:::o;89789:34::-;;;;:::o;54974:164::-;55071:4;55095:18;:25;55114:5;55095:25;;;;;;;;;;;;;;;:35;55121:8;55095:35;;;;;;;;;;;;;;;;;;;;;;;;;55088:42;;54974:164;;;;:::o;89414:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;96242:103::-;23890:13;:11;:13::i;:::-;96327:10:::1;96315:9;;:22;;;;;;;;;;;;;;;;;;96242:103:::0;:::o;24910:201::-;23890:13;:11;:13::i;:::-;25019:1:::1;24999:22;;:8;:22;;::::0;24991:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25075:28;25094:8;25075:18;:28::i;:::-;24910:201:::0;:::o;96567:82::-;23890:13;:11;:13::i;:::-;96637:4:::1;96631:3;:10;;;;;;;;;;;;:::i;:::-;;96567:82:::0;:::o;92779:774::-;27281:1;27879:7;;:19;27871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;92877:14:::1;92894:13;:11;:13::i;:::-;92877:30;;92959:13;;;;;;;;;;;92951:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;93036:9;;93021:11;93012:6;:20;;;;:::i;:::-;:33;;93004:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;93101:9;;;;;;;;;;;93089:21;;:8;:21;;;93081:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;93167:1;93153:11;:15;:52;;;;;93187:18;;93172:11;:33;;93153:52;93145:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;93288:17;;93273:11;93249:21;93259:10;93249:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;93241:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;93384:11;93371:10;;:24;;;;:::i;:::-;93358:9;:37;;93350:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;93470:11;93440:14;:26;93455:10;93440:26;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;93509:36;93519:12;:10;:12::i;:::-;93533:11;93509:9;:36::i;:::-;92866:687;27237:1:::0;28191:7;:22;;;;92779:774;;:::o;22555:98::-;22608:7;22635:10;22628:17;;22555:98;:::o;71536:112::-;71613:27;71623:2;71627:8;71613:27;;;;;;;;;;;;:9;:27::i;:::-;71536:112;;:::o;55396:282::-;55461:4;55517:7;55498:15;:13;:15::i;:::-;:26;;:66;;;;;55551:13;;55541:7;:23;55498:66;:153;;;;;55650:1;39404:8;55602:17;:26;55620:7;55602:26;;;;;;;;;;;;:44;:49;55498:153;55478:173;;55396:282;;;:::o;77704:105::-;77764:7;77791:10;77784:17;;77704:105;:::o;24169:132::-;24244:12;:10;:12::i;:::-;24233:23;;:7;:5;:7::i;:::-;:23;;;24225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24169:132::o;99463:101::-;99528:7;99555:1;99548:8;;99463:101;:::o;50082:1275::-;50149:7;50169:12;50184:7;50169:22;;50252:4;50233:15;:13;:15::i;:::-;:23;50229:1061;;50286:13;;50279:4;:20;50275:1015;;;50324:14;50341:17;:23;50359:4;50341:23;;;;;;;;;;;;50324:40;;50458:1;39404:8;50430:6;:24;:29;50426:845;;51095:113;51112:1;51102:6;:11;51095:113;;51155:17;:25;51173:6;;;;;;;51155:25;;;;;;;;;;;;51146:34;;51095:113;;;51241:6;51234:13;;;;;;50426:845;50301:989;50275:1015;50229:1061;51318:31;;;;;;;;;;;;;;50082:1275;;;;:::o;56559:485::-;56661:27;56690:23;56731:38;56772:15;:24;56788:7;56772:24;;;;;;;;;;;56731:65;;56949:18;56926:41;;57006:19;57000:26;56981:45;;56911:126;56559:485;;;:::o;55787:659::-;55936:11;56101:16;56094:5;56090:28;56081:37;;56261:16;56250:9;56246:32;56233:45;;56411:15;56400:9;56397:30;56389:5;56378:9;56375:20;56372:56;56362:66;;55787:659;;;;;:::o;62445:159::-;;;;;:::o;77013:311::-;77148:7;77168:16;39808:3;77194:19;:41;;77168:68;;39808:3;77262:31;77273:4;77279:2;77283:9;77262:10;:31::i;:::-;77254:40;;:62;;77247:69;;;77013:311;;;;;:::o;51905:450::-;51985:14;52153:16;52146:5;52142:28;52133:37;;52330:5;52316:11;52291:23;52287:41;52284:52;52277:5;52274:63;52264:73;;51905:450;;;;:::o;63269:158::-;;;;;:::o;98331:180::-;98405:12;98423:8;:13;;98444:7;98423:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98404:52;;;98475:7;98467:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;98393:118;98331:180;;:::o;25271:191::-;25345:16;25364:6;;;;;;;;;;;25345:25;;25390:8;25381:6;;:17;;;;;;;;;;;;;;;;;;25445:8;25414:40;;25435:8;25414:40;;;;;;;;;;;;25334:128;25271:191;:::o;42972:103::-;43027:7;43054:13;;43047:20;;42972:103;:::o;49530:161::-;49598:21;;:::i;:::-;49639:44;49658:17;:24;49676:5;49658:24;;;;;;;;;;;;49639:18;:44::i;:::-;49632:51;;49530:161;;;:::o;63867:716::-;64030:4;64076:2;64051:45;;;64097:19;:17;:19::i;:::-;64118:4;64124:7;64133:5;64051:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64047:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64351:1;64334:6;:13;:18;64330:235;;64380:40;;;;;;;;;;;;;;64330:235;64523:6;64517:13;64508:6;64504:2;64500:15;64493:38;64047:529;64220:54;;;64210:64;;;:6;:64;;;;64203:71;;;63867:716;;;;;;:::o;99975:104::-;100035:13;100068:3;100061:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99975:104;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;70763:689::-;70894:19;70900:2;70904:8;70894:5;:19::i;:::-;70973:1;70955:2;:14;;;:19;70951:483;;70995:11;71009:13;;70995:27;;71041:13;71063:8;71057:3;:14;71041:30;;71090:233;71121:62;71160:1;71164:2;71168:7;;;;;;71177:5;71121:30;:62::i;:::-;71116:167;;71219:40;;;;;;;;;;;;;;71116:167;71318:3;71310:5;:11;71090:233;;71405:3;71388:13;;:20;71384:34;;71410:8;;;71384:34;70976:458;;70951:483;70763:689;;;:::o;76714:147::-;76851:6;76714:147;;;;;:::o;51456:366::-;51522:31;;:::i;:::-;51599:6;51566:9;:14;;:41;;;;;;;;;;;39287:3;51652:6;:33;;51618:9;:24;;:68;;;;;;;;;;;51744:1;39404:8;51716:6;:24;:29;;51697:9;:16;;:48;;;;;;;;;;;39808:3;51785:6;:28;;51756:9;:19;;:58;;;;;;;;;;;51456:366;;;:::o;65045:2966::-;65118:20;65141:13;;65118:36;;65181:1;65169:8;:13;65165:44;;65191:18;;;;;;;;;;;;;;65165:44;65222:61;65252:1;65256:2;65260:12;65274:8;65222:21;:61::i;:::-;65766:1;38766:2;65736:1;:26;;65735:32;65723:8;:45;65697:18;:22;65716:2;65697:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;66045:139;66082:2;66136:33;66159:1;66163:2;66167:1;66136:14;:33::i;:::-;66103:30;66124:8;66103:20;:30::i;:::-;:66;66045:18;:139::i;:::-;66011:17;:31;66029:12;66011:31;;;;;;;;;;;:173;;;;66201:16;66232:11;66261:8;66246:12;:23;66232:37;;66782:16;66778:2;66774:25;66762:37;;67154:12;67114:8;67073:1;67011:25;66952:1;66891;66864:335;67525:1;67511:12;67507:20;67465:346;67566:3;67557:7;67554:16;67465:346;;67784:7;67774:8;67771:1;67744:25;67741:1;67738;67733:59;67619:1;67610:7;67606:15;67595:26;;67465:346;;;67469:77;67856:1;67844:8;:13;67840:45;;67866:19;;;;;;;;;;;;;;67840:45;67918:3;67902:13;:19;;;;65471:2462;;67943:60;67972:1;67976:2;67980:12;67994:8;67943:20;:60::i;:::-;65107:2904;65045:2966;;:::o;52457:324::-;52527:14;52760:1;52750:8;52747:15;52721:24;52717:46;52707:56;;52457:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:116::-;8606:21;8621:5;8606:21;:::i;:::-;8599:5;8596:32;8586:60;;8642:1;8639;8632:12;8586:60;8536:116;:::o;8658:133::-;8701:5;8739:6;8726:20;8717:29;;8755:30;8779:5;8755:30;:::i;:::-;8658:133;;;;:::o;8797:323::-;8853:6;8902:2;8890:9;8881:7;8877:23;8873:32;8870:119;;;8908:79;;:::i;:::-;8870:119;9028:1;9053:50;9095:7;9086:6;9075:9;9071:22;9053:50;:::i;:::-;9043:60;;8999:114;8797:323;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:474::-;9529:6;9537;9586:2;9574:9;9565:7;9561:23;9557:32;9554:119;;;9592:79;;:::i;:::-;9554:119;9712:1;9737:53;9782:7;9773:6;9762:9;9758:22;9737:53;:::i;:::-;9727:63;;9683:117;9839:2;9865:53;9910:7;9901:6;9890:9;9886:22;9865:53;:::i;:::-;9855:63;;9810:118;9461:474;;;;;:::o;9941:114::-;10008:6;10042:5;10036:12;10026:22;;9941:114;;;:::o;10061:184::-;10160:11;10194:6;10189:3;10182:19;10234:4;10229:3;10225:14;10210:29;;10061:184;;;;:::o;10251:132::-;10318:4;10341:3;10333:11;;10371:4;10366:3;10362:14;10354:22;;10251:132;;;:::o;10389:108::-;10466:24;10484:5;10466:24;:::i;:::-;10461:3;10454:37;10389:108;;:::o;10503:179::-;10572:10;10593:46;10635:3;10627:6;10593:46;:::i;:::-;10671:4;10666:3;10662:14;10648:28;;10503:179;;;;:::o;10688:113::-;10758:4;10790;10785:3;10781:14;10773:22;;10688:113;;;:::o;10837:732::-;10956:3;10985:54;11033:5;10985:54;:::i;:::-;11055:86;11134:6;11129:3;11055:86;:::i;:::-;11048:93;;11165:56;11215:5;11165:56;:::i;:::-;11244:7;11275:1;11260:284;11285:6;11282:1;11279:13;11260:284;;;11361:6;11355:13;11388:63;11447:3;11432:13;11388:63;:::i;:::-;11381:70;;11474:60;11527:6;11474:60;:::i;:::-;11464:70;;11320:224;11307:1;11304;11300:9;11295:14;;11260:284;;;11264:14;11560:3;11553:10;;10961:608;;;10837:732;;;;:::o;11575:373::-;11718:4;11756:2;11745:9;11741:18;11733:26;;11805:9;11799:4;11795:20;11791:1;11780:9;11776:17;11769:47;11833:108;11936:4;11927:6;11833:108;:::i;:::-;11825:116;;11575:373;;;;:::o;11954:468::-;12019:6;12027;12076:2;12064:9;12055:7;12051:23;12047:32;12044:119;;;12082:79;;:::i;:::-;12044:119;12202:1;12227:53;12272:7;12263:6;12252:9;12248:22;12227:53;:::i;:::-;12217:63;;12173:117;12329:2;12355:50;12397:7;12388:6;12377:9;12373:22;12355:50;:::i;:::-;12345:60;;12300:115;11954:468;;;;;:::o;12428:307::-;12489:4;12579:18;12571:6;12568:30;12565:56;;;12601:18;;:::i;:::-;12565:56;12639:29;12661:6;12639:29;:::i;:::-;12631:37;;12723:4;12717;12713:15;12705:23;;12428:307;;;:::o;12741:410::-;12818:5;12843:65;12859:48;12900:6;12859:48;:::i;:::-;12843:65;:::i;:::-;12834:74;;12931:6;12924:5;12917:21;12969:4;12962:5;12958:16;13007:3;12998:6;12993:3;12989:16;12986:25;12983:112;;;13014:79;;:::i;:::-;12983:112;13104:41;13138:6;13133:3;13128;13104:41;:::i;:::-;12824:327;12741:410;;;;;:::o;13170:338::-;13225:5;13274:3;13267:4;13259:6;13255:17;13251:27;13241:122;;13282:79;;:::i;:::-;13241:122;13399:6;13386:20;13424:78;13498:3;13490:6;13483:4;13475:6;13471:17;13424:78;:::i;:::-;13415:87;;13231:277;13170:338;;;;:::o;13514:943::-;13609:6;13617;13625;13633;13682:3;13670:9;13661:7;13657:23;13653:33;13650:120;;;13689:79;;:::i;:::-;13650:120;13809:1;13834:53;13879:7;13870:6;13859:9;13855:22;13834:53;:::i;:::-;13824:63;;13780:117;13936:2;13962:53;14007:7;13998:6;13987:9;13983:22;13962:53;:::i;:::-;13952:63;;13907:118;14064:2;14090:53;14135:7;14126:6;14115:9;14111:22;14090:53;:::i;:::-;14080:63;;14035:118;14220:2;14209:9;14205:18;14192:32;14251:18;14243:6;14240:30;14237:117;;;14273:79;;:::i;:::-;14237:117;14378:62;14432:7;14423:6;14412:9;14408:22;14378:62;:::i;:::-;14368:72;;14163:287;13514:943;;;;;;;:::o;14463:474::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:181::-;15595:33;15591:1;15583:6;15579:14;15572:57;15455:181;:::o;15642:366::-;15784:3;15805:67;15869:2;15864:3;15805:67;:::i;:::-;15798:74;;15881:93;15970:3;15881:93;:::i;:::-;15999:2;15994:3;15990:12;15983:19;;15642:366;;;:::o;16014:419::-;16180:4;16218:2;16207:9;16203:18;16195:26;;16267:9;16261:4;16257:20;16253:1;16242:9;16238:17;16231:47;16295:131;16421:4;16295:131;:::i;:::-;16287:139;;16014:419;;;:::o;16439:173::-;16579:25;16575:1;16567:6;16563:14;16556:49;16439:173;:::o;16618:366::-;16760:3;16781:67;16845:2;16840:3;16781:67;:::i;:::-;16774:74;;16857:93;16946:3;16857:93;:::i;:::-;16975:2;16970:3;16966:12;16959:19;;16618:366;;;:::o;16990:419::-;17156:4;17194:2;17183:9;17179:18;17171:26;;17243:9;17237:4;17233:20;17229:1;17218:9;17214:17;17207:47;17271:131;17397:4;17271:131;:::i;:::-;17263:139;;16990:419;;;:::o;17415:170::-;17555:22;17551:1;17543:6;17539:14;17532:46;17415:170;:::o;17591:366::-;17733:3;17754:67;17818:2;17813:3;17754:67;:::i;:::-;17747:74;;17830:93;17919:3;17830:93;:::i;:::-;17948:2;17943:3;17939:12;17932:19;;17591:366;;;:::o;17963:419::-;18129:4;18167:2;18156:9;18152:18;18144:26;;18216:9;18210:4;18206:20;18202:1;18191:9;18187:17;18180:47;18244:131;18370:4;18244:131;:::i;:::-;18236:139;;17963:419;;;:::o;18388:180::-;18436:77;18433:1;18426:88;18533:4;18530:1;18523:15;18557:4;18554:1;18547:15;18574:305;18614:3;18633:20;18651:1;18633:20;:::i;:::-;18628:25;;18667:20;18685:1;18667:20;:::i;:::-;18662:25;;18821:1;18753:66;18749:74;18746:1;18743:81;18740:107;;;18827:18;;:::i;:::-;18740:107;18871:1;18868;18864:9;18857:16;;18574:305;;;;:::o;18885:170::-;19025:22;19021:1;19013:6;19009:14;19002:46;18885:170;:::o;19061:366::-;19203:3;19224:67;19288:2;19283:3;19224:67;:::i;:::-;19217:74;;19300:93;19389:3;19300:93;:::i;:::-;19418:2;19413:3;19409:12;19402:19;;19061:366;;;:::o;19433:419::-;19599:4;19637:2;19626:9;19622:18;19614:26;;19686:9;19680:4;19676:20;19672:1;19661:9;19657:17;19650:47;19714:131;19840:4;19714:131;:::i;:::-;19706:139;;19433:419;;;:::o;19858:348::-;19898:7;19921:20;19939:1;19921:20;:::i;:::-;19916:25;;19955:20;19973:1;19955:20;:::i;:::-;19950:25;;20143:1;20075:66;20071:74;20068:1;20065:81;20060:1;20053:9;20046:17;20042:105;20039:131;;;20150:18;;:::i;:::-;20039:131;20198:1;20195;20191:9;20180:20;;19858:348;;;;:::o;20212:169::-;20352:21;20348:1;20340:6;20336:14;20329:45;20212:169;:::o;20387:366::-;20529:3;20550:67;20614:2;20609:3;20550:67;:::i;:::-;20543:74;;20626:93;20715:3;20626:93;:::i;:::-;20744:2;20739:3;20735:12;20728:19;;20387:366;;;:::o;20759:419::-;20925:4;20963:2;20952:9;20948:18;20940:26;;21012:9;21006:4;21002:20;20998:1;20987:9;20983:17;20976:47;21040:131;21166:4;21040:131;:::i;:::-;21032:139;;20759:419;;;:::o;21184:166::-;21324:18;21320:1;21312:6;21308:14;21301:42;21184:166;:::o;21356:366::-;21498:3;21519:67;21583:2;21578:3;21519:67;:::i;:::-;21512:74;;21595:93;21684:3;21595:93;:::i;:::-;21713:2;21708:3;21704:12;21697:19;;21356:366;;;:::o;21728:419::-;21894:4;21932:2;21921:9;21917:18;21909:26;;21981:9;21975:4;21971:20;21967:1;21956:9;21952:17;21945:47;22009:131;22135:4;22009:131;:::i;:::-;22001:139;;21728:419;;;:::o;22153:169::-;22293:21;22289:1;22281:6;22277:14;22270:45;22153:169;:::o;22328:366::-;22470:3;22491:67;22555:2;22550:3;22491:67;:::i;:::-;22484:74;;22567:93;22656:3;22567:93;:::i;:::-;22685:2;22680:3;22676:12;22669:19;;22328:366;;;:::o;22700:419::-;22866:4;22904:2;22893:9;22889:18;22881:26;;22953:9;22947:4;22943:20;22939:1;22928:9;22924:17;22917:47;22981:131;23107:4;22981:131;:::i;:::-;22973:139;;22700:419;;;:::o;23125:179::-;23265:31;23261:1;23253:6;23249:14;23242:55;23125:179;:::o;23310:366::-;23452:3;23473:67;23537:2;23532:3;23473:67;:::i;:::-;23466:74;;23549:93;23638:3;23549:93;:::i;:::-;23667:2;23662:3;23658:12;23651:19;;23310:366;;;:::o;23682:419::-;23848:4;23886:2;23875:9;23871:18;23863:26;;23935:9;23929:4;23925:20;23921:1;23910:9;23906:17;23899:47;23963:131;24089:4;23963:131;:::i;:::-;23955:139;;23682:419;;;:::o;24107:180::-;24155:77;24152:1;24145:88;24252:4;24249:1;24242:15;24276:4;24273:1;24266:15;24293:185;24333:1;24350:20;24368:1;24350:20;:::i;:::-;24345:25;;24384:20;24402:1;24384:20;:::i;:::-;24379:25;;24423:1;24413:35;;24428:18;;:::i;:::-;24413:35;24470:1;24467;24463:9;24458:14;;24293:185;;;;:::o;24484:170::-;24624:22;24620:1;24612:6;24608:14;24601:46;24484:170;:::o;24660:366::-;24802:3;24823:67;24887:2;24882:3;24823:67;:::i;:::-;24816:74;;24899:93;24988:3;24899:93;:::i;:::-;25017:2;25012:3;25008:12;25001:19;;24660:366;;;:::o;25032:419::-;25198:4;25236:2;25225:9;25221:18;25213:26;;25285:9;25279:4;25275:20;25271:1;25260:9;25256:17;25249:47;25313:131;25439:4;25313:131;:::i;:::-;25305:139;;25032:419;;;:::o;25457:180::-;25505:77;25502:1;25495:88;25602:4;25599:1;25592:15;25626:4;25623:1;25616:15;25643:234;25783:34;25779:1;25771:6;25767:14;25760:58;25852:17;25847:2;25839:6;25835:15;25828:42;25643:234;:::o;25883:366::-;26025:3;26046:67;26110:2;26105:3;26046:67;:::i;:::-;26039:74;;26122:93;26211:3;26122:93;:::i;:::-;26240:2;26235:3;26231:12;26224:19;;25883:366;;;:::o;26255:419::-;26421:4;26459:2;26448:9;26444:18;26436:26;;26508:9;26502:4;26498:20;26494:1;26483:9;26479:17;26472:47;26536:131;26662:4;26536:131;:::i;:::-;26528:139;;26255:419;;;:::o;26680:148::-;26782:11;26819:3;26804:18;;26680:148;;;;:::o;26834:377::-;26940:3;26968:39;27001:5;26968:39;:::i;:::-;27023:89;27105:6;27100:3;27023:89;:::i;:::-;27016:96;;27121:52;27166:6;27161:3;27154:4;27147:5;27143:16;27121:52;:::i;:::-;27198:6;27193:3;27189:16;27182:23;;26944:267;26834:377;;;;:::o;27217:141::-;27266:4;27289:3;27281:11;;27312:3;27309:1;27302:14;27346:4;27343:1;27333:18;27325:26;;27217:141;;;:::o;27388:845::-;27491:3;27528:5;27522:12;27557:36;27583:9;27557:36;:::i;:::-;27609:89;27691:6;27686:3;27609:89;:::i;:::-;27602:96;;27729:1;27718:9;27714:17;27745:1;27740:137;;;;27891:1;27886:341;;;;27707:520;;27740:137;27824:4;27820:9;27809;27805:25;27800:3;27793:38;27860:6;27855:3;27851:16;27844:23;;27740:137;;27886:341;27953:38;27985:5;27953:38;:::i;:::-;28013:1;28027:154;28041:6;28038:1;28035:13;28027:154;;;28115:7;28109:14;28105:1;28100:3;28096:11;28089:35;28165:1;28156:7;28152:15;28141:26;;28063:4;28060:1;28056:12;28051:17;;28027:154;;;28210:6;28205:3;28201:16;28194:23;;27893:334;;27707:520;;27495:738;;27388:845;;;;:::o;28239:589::-;28464:3;28486:95;28577:3;28568:6;28486:95;:::i;:::-;28479:102;;28598:95;28689:3;28680:6;28598:95;:::i;:::-;28591:102;;28710:92;28798:3;28789:6;28710:92;:::i;:::-;28703:99;;28819:3;28812:10;;28239:589;;;;;;:::o;28834:225::-;28974:34;28970:1;28962:6;28958:14;28951:58;29043:8;29038:2;29030:6;29026:15;29019:33;28834:225;:::o;29065:366::-;29207:3;29228:67;29292:2;29287:3;29228:67;:::i;:::-;29221:74;;29304:93;29393:3;29304:93;:::i;:::-;29422:2;29417:3;29413:12;29406:19;;29065:366;;;:::o;29437:419::-;29603:4;29641:2;29630:9;29626:18;29618:26;;29690:9;29684:4;29680:20;29676:1;29665:9;29661:17;29654:47;29718:131;29844:4;29718:131;:::i;:::-;29710:139;;29437:419;;;:::o;29862:182::-;30002:34;29998:1;29990:6;29986:14;29979:58;29862:182;:::o;30050:366::-;30192:3;30213:67;30277:2;30272:3;30213:67;:::i;:::-;30206:74;;30289:93;30378:3;30289:93;:::i;:::-;30407:2;30402:3;30398:12;30391:19;;30050:366;;;:::o;30422:419::-;30588:4;30626:2;30615:9;30611:18;30603:26;;30675:9;30669:4;30665:20;30661:1;30650:9;30646:17;30639:47;30703:131;30829:4;30703:131;:::i;:::-;30695:139;;30422:419;;;:::o;30847:147::-;30948:11;30985:3;30970:18;;30847:147;;;;:::o;31000:114::-;;:::o;31120:398::-;31279:3;31300:83;31381:1;31376:3;31300:83;:::i;:::-;31293:90;;31392:93;31481:3;31392:93;:::i;:::-;31510:1;31505:3;31501:11;31494:18;;31120:398;;;:::o;31524:379::-;31708:3;31730:147;31873:3;31730:147;:::i;:::-;31723:154;;31894:3;31887:10;;31524:379;;;:::o;31909:166::-;32049:18;32045:1;32037:6;32033:14;32026:42;31909:166;:::o;32081:366::-;32223:3;32244:67;32308:2;32303:3;32244:67;:::i;:::-;32237:74;;32320:93;32409:3;32320:93;:::i;:::-;32438:2;32433:3;32429:12;32422:19;;32081:366;;;:::o;32453:419::-;32619:4;32657:2;32646:9;32642:18;32634:26;;32706:9;32700:4;32696:20;32692:1;32681:9;32677:17;32670:47;32734:131;32860:4;32734:131;:::i;:::-;32726:139;;32453:419;;;:::o;32878:98::-;32929:6;32963:5;32957:12;32947:22;;32878:98;;;:::o;32982:168::-;33065:11;33099:6;33094:3;33087:19;33139:4;33134:3;33130:14;33115:29;;32982:168;;;;:::o;33156:360::-;33242:3;33270:38;33302:5;33270:38;:::i;:::-;33324:70;33387:6;33382:3;33324:70;:::i;:::-;33317:77;;33403:52;33448:6;33443:3;33436:4;33429:5;33425:16;33403:52;:::i;:::-;33480:29;33502:6;33480:29;:::i;:::-;33475:3;33471:39;33464:46;;33246:270;33156:360;;;;:::o;33522:640::-;33717:4;33755:3;33744:9;33740:19;33732:27;;33769:71;33837:1;33826:9;33822:17;33813:6;33769:71;:::i;:::-;33850:72;33918:2;33907:9;33903:18;33894:6;33850:72;:::i;:::-;33932;34000:2;33989:9;33985:18;33976:6;33932:72;:::i;:::-;34051:9;34045:4;34041:20;34036:2;34025:9;34021:18;34014:48;34079:76;34150:4;34141:6;34079:76;:::i;:::-;34071:84;;33522:640;;;;;;;:::o;34168:141::-;34224:5;34255:6;34249:13;34240:22;;34271:32;34297:5;34271:32;:::i;:::-;34168:141;;;;:::o;34315:349::-;34384:6;34433:2;34421:9;34412:7;34408:23;34404:32;34401:119;;;34439:79;;:::i;:::-;34401:119;34559:1;34584:63;34639:7;34630:6;34619:9;34615:22;34584:63;:::i;:::-;34574:73;;34530:127;34315:349;;;;:::o;34670:233::-;34709:3;34732:24;34750:5;34732:24;:::i;:::-;34723:33;;34778:66;34771:5;34768:77;34765:103;;34848:18;;:::i;:::-;34765:103;34895:1;34888:5;34884:13;34877:20;;34670:233;;;:::o;34909:191::-;34949:4;34969:20;34987:1;34969:20;:::i;:::-;34964:25;;35003:20;35021:1;35003:20;:::i;:::-;34998:25;;35042:1;35039;35036:8;35033:34;;;35047:18;;:::i;:::-;35033:34;35092:1;35089;35085:9;35077:17;;34909:191;;;;:::o;35106:176::-;35138:1;35155:20;35173:1;35155:20;:::i;:::-;35150:25;;35189:20;35207:1;35189:20;:::i;:::-;35184:25;;35228:1;35218:35;;35233:18;;:::i;:::-;35218:35;35274:1;35271;35267:9;35262:14;;35106:176;;;;:::o

Swarm Source

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