ETH Price: $3,481.17 (+1.69%)
Gas: 13 Gwei

Token

DrinkingFrens (DF)
 

Overview

Max Total Supply

0 DF

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DF
0xbb0173c0e8d5919e0a6a4066a1c506b16748e2d1
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:
DrinkingFrens

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 2023-01-23
*/

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// File: contracts/DrinkingFrens.sol


pragma solidity ^0.8.13;








contract DrinkingFrens is ERC721, Ownable, DefaultOperatorFilterer {
    using Strings for uint256;
    using SafeMath for uint256;

    string public baseURI;

    Counters.Counter private _tokenIdCounter;
    
    // Costs ====================================
    uint256 public publicSaleCost = 0.0129 ether;
    uint256 public drunklistCost = 0.0129 ether;

    // Count values =============================
    uint256 public MAX_TOTAL_SUPPLY = 5080;
    uint256 public MAX_PRESALE_SUPPLY = 2400;
    uint256 public MAX_PUBLIC_SUPPLY = 2400;
    uint256 public MAX_ITEMS_GIVEAWAY = 280;
    uint256 public _mintedItems = 0;
    uint256 public _presaleMinted = 0;
    uint256 public _publicMinted = 0;
    uint256 public _giveawayMinted = 0;
    uint256 public maxMintPerOGWallet = 1;
    uint256 public maxMintPerDrunkWallet = 8;

    bool public presaleActive = false;
    bool public publicActive = false;

    // Tracking tokens in whitelist wallets ========================
    mapping(address => uint256) public OgWalletTokenCount;
    mapping(address => uint256) public DrunkWalletTokenCount;

    bool public paused = false;
    string public notRevealedUri;
    bool public revealed = false;

    // Whitelists Merkle Roots ====================================
    bytes32 public merkleRootDrunkList;
    bytes32 public merkleRootOGDrunkList;

    // Events ===================================
    event PresaleMinted(address indexed _from, uint256 indexed _tokenId);
    event PublicSaleMint(address indexed _from, uint256 indexed _tokenId);

    constructor() ERC721("DrinkingFrens", "DF") {}

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

    // Presale minting Function =========================
    function presaleMint(
        bytes32[] memory proof,
        bool isOGDrunk,
        bool isDrunk
    ) public payable {
        require(!paused, "Contract is Paused");
        require(presaleActive, "Presale not active");
        require(
            (isOGDrunk && !isDrunk) || (isDrunk && !isOGDrunk),
            "You can't be part of both lists during mint. Or either you do not belong here"
        );
        uint256 _mintAmount;
        if (isOGDrunk && !isDrunk) {
            require(
                isValidOGDrunk(proof, msg.sender),
                "You do not belong to OG drunklist"
            );
            require(msg.value == 0, "OG Drunk mint is free of cost");
            _mintAmount = 1;
            require(
                OgWalletTokenCount[msg.sender].add(_mintAmount) <=
                    maxMintPerOGWallet,
                "You will exceed your limit per wallet for OG Drunklist"
            );
        } else if (isDrunk && !isOGDrunk) {
            require(
                isValidDrunk(proof, msg.sender),
                "You do not belong to drunklist"
            );
            require(
                msg.value > 0,
                "Send some value in multiples of drunklist cost"
            );
            uint256 remainder = msg.value % drunklistCost;
            require(remainder == 0, "Send a divisible amount of price");
            _mintAmount = msg.value / drunklistCost;
            require(
                DrunkWalletTokenCount[msg.sender].add(_mintAmount) <=
                    maxMintPerDrunkWallet,
                "You will exceed your limit per wallet for Drunklist"
            );
        }

        require(
            _mintedItems.add(_mintAmount) <= MAX_TOTAL_SUPPLY,
            "Purchase would exceed max supply"
        );
        require(
            _presaleMinted.add(_mintAmount) <= MAX_PRESALE_SUPPLY,
            "Purchase would exceed max presale supply!"
        );

        if (msg.sender != owner()) {
            for (uint256 i = 0; i < _mintAmount; i++) {
                uint256 mintIndex = _mintedItems + 1;
                require(_mintedItems < MAX_TOTAL_SUPPLY, "All items sold!");
                require(_presaleMinted < MAX_PRESALE_SUPPLY, "All items sold!");
                _safeMint(msg.sender, mintIndex);
                emit PresaleMinted(msg.sender, mintIndex);
                _mintedItems++;
                _presaleMinted++;
            }
        }
        if (isOGDrunk && !isDrunk) {
            OgWalletTokenCount[msg.sender] += _mintAmount;
        } else if (isDrunk && !isOGDrunk) {
            DrunkWalletTokenCount[msg.sender] += _mintAmount;
        }
    }

    // Public sale Minting =================================
    function publicSaleMint() public payable {
        require(!paused, "Contract is paused");
        require(publicActive, "Public Sale is not active");
        require(msg.sender != owner(), "This is for public only");
        uint256 remainder = msg.value % publicSaleCost;
        uint256 _mintAmount = msg.value / publicSaleCost;
        require(
            msg.value > 0,
            "Send some value equal to multiple of public price"
        );
        require(remainder == 0, "Send a divisible amount of price");
        require(
            _mintedItems.add(_mintAmount) <= MAX_TOTAL_SUPPLY,
            "Purchase would exceed max supply"
        );
        require(
            _publicMinted.add(_mintAmount) <= MAX_PUBLIC_SUPPLY,
            "Purchase would exceed max public supply!"
        );

        for (uint256 i = 0; i < _mintAmount; i++) {
            uint256 mintIndex = _mintedItems + 1;
            require(_mintedItems < MAX_TOTAL_SUPPLY, "All items sold!");
            _safeMint(msg.sender, mintIndex);
            emit PublicSaleMint(msg.sender, mintIndex);
            _mintedItems++;
            _publicMinted++;
        }
    }

    // Giveaway Mint
    function giveawayMint(address winnerAddress, uint256 _mintAmount)
        public
        onlyOwner
    {
        require(
            _mintedItems.add(1) <= MAX_TOTAL_SUPPLY,
            "Purchase would exceed max supply"
        );
        require(
            _giveawayMinted.add(1) <= MAX_ITEMS_GIVEAWAY,
            "Purchase would exceed max giveaway Supply"
        );

        for (uint256 i = 0; i < _mintAmount; i++) {
            uint256 mintIndex = _mintedItems + 1;
            require(_mintedItems < MAX_TOTAL_SUPPLY, "All items sold!");
            _safeMint(winnerAddress, mintIndex);
            _mintedItems++;
            _giveawayMinted++;
        }
    }

    // Validate Address for Drunklist ====================
    function isValidDrunk(bytes32[] memory proof, address sender)
        internal
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(sender));
        return MerkleProof.verify(proof, merkleRootDrunkList, leaf);
    }

    // Validate Address for OG Drunklist ====================
    function isValidOGDrunk(bytes32[] memory proof, address sender)
        internal
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(sender));
        return MerkleProof.verify(proof, merkleRootOGDrunkList, leaf);
    }

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

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

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

    // Reveal Metadata of Tokens =======================
    function reveal(bool _state) public onlyOwner {
        revealed = _state;
    }

    // Set Presale active =======================
    function setPresaleActive(bool _state) public onlyOwner {
        presaleActive = _state;
    }

    // Set Public active =======================
    function setPublicActive(bool _state) public onlyOwner {
        publicActive = _state;
    }

    // Set Placeholder metadata URI =======================
    function setNotRevealedURI(string memory _notRevealedURI) public {
        notRevealedUri = _notRevealedURI;
    }

    // Set public sale cost for token in ether =======================
    function setPublicSaleCost(uint256 _newCost) public onlyOwner {
        publicSaleCost = _newCost;
    }

    // Set drunk sale cost for token in ether =======================
    function setDrunkSaleCost(uint256 _newCost) public onlyOwner {
        drunklistCost = _newCost;
    }

    // Set max mint limit for OG members =======================
    function setMaxMintAmountForOG(uint256 _maxMintAmount) public onlyOwner {
        maxMintPerOGWallet = _maxMintAmount;
    }

    // Set max mint limit for Drunk members =======================
    function setMaxMintAmountForDrunk(uint256 _maxMintAmount) public onlyOwner {
        maxMintPerDrunkWallet = _maxMintAmount;
    }

    // Set base URI of metadata (an IPFS URL) =======================
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    // Pause the contract which will stop minting process =======================
    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    // Set merkle root for drunklist addresses ================
    function setDrunklistRoot(bytes32 _merkleTreeRoot) public onlyOwner {
        merkleRootDrunkList = _merkleTreeRoot;
    }

    // Set merkle root for drunklist addresses ================
    function setOGDrunklistRoot(bytes32 _merkleTreeRoot) public onlyOwner {
        merkleRootOGDrunkList = _merkleTreeRoot;
    }

    // Withdraw the balance from samrt contract =======================
    function withdraw() external onlyOwner {
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success, "Failed to withdraw");
    }

    // Enforcing Royalties
    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"PresaleMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"PublicSaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DrunkWalletTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ITEMS_GIVEAWAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"OgWalletTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_giveawayMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintedItems","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drunklistCost","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":"winnerAddress","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"giveawayMint","outputs":[],"stateMutability":"nonpayable","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":"maxMintPerDrunkWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerOGWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootDrunkList","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootOGDrunkList","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bool","name":"isOGDrunk","type":"bool"},{"internalType":"bool","name":"isDrunk","type":"bool"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setDrunkSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleTreeRoot","type":"bytes32"}],"name":"setDrunklistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmountForDrunk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmountForOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleTreeRoot","type":"bytes32"}],"name":"setOGDrunklistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPublicSaleCost","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662dd47b4d9a4000600955662dd47b4d9a4000600a556113d8600b55610960600c55610960600d55610118600e556000600f55600060105560006011556000601255600160135560086014556000601560006101000a81548160ff0219169083151502179055506000601560016101000a81548160ff0219169083151502179055506000601860006101000a81548160ff0219169083151502179055506000601a60006101000a81548160ff021916908315150217905550348015620000c957600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020017f4472696e6b696e674672656e73000000000000000000000000000000000000008152506040518060400160405280600281526020017f44460000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001659291906200046c565b5080600190805190602001906200017e9291906200046c565b505050620001a1620001956200039e60201b60201c565b620003a660201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003965780156200025c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200022292919062000561565b600060405180830381600087803b1580156200023d57600080fd5b505af115801562000252573d6000803e3d6000fd5b5050505062000395565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000316576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002dc92919062000561565b600060405180830381600087803b158015620002f757600080fd5b505af11580156200030c573d6000803e3d6000fd5b5050505062000394565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200035f91906200058e565b600060405180830381600087803b1580156200037a57600080fd5b505af11580156200038f573d6000803e3d6000fd5b505050505b5b5b50506200060f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200047a90620005da565b90600052602060002090601f0160209004810192826200049e5760008555620004ea565b82601f10620004b957805160ff1916838001178555620004ea565b82800160010185558215620004ea579182015b82811115620004e9578251825591602001919060010190620004cc565b5b509050620004f99190620004fd565b5090565b5b8082111562000518576000816000905550600101620004fe565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000549826200051c565b9050919050565b6200055b816200053c565b82525050565b600060408201905062000578600083018562000550565b62000587602083018462000550565b9392505050565b6000602082019050620005a5600083018462000550565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005f357607f821691505b602082108103620006095762000608620005ab565b5b50919050565b61588f806200061f6000396000f3fe6080604052600436106103505760003560e01c80636b8dc355116101c6578063ac2f058f116100f7578063e48f228911610095578063ebc45c5b1161006f578063ebc45c5b14610c0b578063eddc034714610c36578063f2c4ce1e14610c52578063f2fde38b14610c7b57610350565b8063e48f228914610b66578063e985e9c514610ba3578063ea2b3f5214610be057610350565b8063ba6f21f9116100d1578063ba6f21f914610ac9578063c87b56dd14610af4578063c9d8b57814610b31578063d2eb86ee14610b5c57610350565b8063ac2f058f14610a4c578063b88d4fde14610a75578063b9b8de4e14610a9e57610350565b80638aca408c11610164578063940cd05b1161013e578063940cd05b146109a457806395d89b41146109cd578063a22cb465146109f8578063aa07390714610a2157610350565b80638aca408c146109275780638da5cb5b146109505780638dbb7c061461097b57610350565b806370a08231116101a057806370a082311461087f578063715018a6146108bc5780637bccb72c146108d357806386eda2c2146108fc57610350565b80636b8dc355146108005780636c0360eb1461082b5780636f8e10d31461085657610350565b80633ccfd60b116102a0578063518302271161023e5780635935b0cb116102185780635935b0cb146107305780635c975abb1461075b57806362599703146107865780636352211e146107c357610350565b806351830227146106b157806353135ca0146106dc57806355f804b31461070757610350565b80633f8121a21161027a5780633f8121a21461060957806341f434341461063257806342842e0e1461065d578063453afb0f1461068657610350565b80633ccfd60b1461059c5780633dff9601146105b35780633f2981cf146105de57610350565b8063095ea7b31161030d578063287099ec116102e7578063287099ec146104f25780632a47f7991461051b57806333039d3d146105465780633a12f26b1461057157610350565b8063095ea7b3146104775780631460fcf3146104a057806323b872dd146104c957610350565b806301ffc9a71461035557806302329a291461039257806304826624146103bb57806306fdde03146103e4578063081812fc1461040f578063081c8c441461044c575b600080fd5b34801561036157600080fd5b5061037c600480360381019061037791906139b4565b610ca4565b60405161038991906139fc565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613a43565b610d86565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190613b04565b610dab565b005b3480156103f057600080fd5b506103f9610f1e565b6040516104069190613bdd565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613bff565b610fb0565b6040516104439190613c3b565b60405180910390f35b34801561045857600080fd5b50610461610ff6565b60405161046e9190613bdd565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190613b04565b611084565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613c8c565b61109d565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613cb9565b6110af565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613bff565b6110fe565b005b34801561052757600080fd5b50610530611110565b60405161053d9190613d1b565b60405180910390f35b34801561055257600080fd5b5061055b611116565b6040516105689190613d1b565b60405180910390f35b34801561057d57600080fd5b5061058661111c565b6040516105939190613d1b565b60405180910390f35b3480156105a857600080fd5b506105b1611122565b005b3480156105bf57600080fd5b506105c86111e0565b6040516105d59190613d1b565b60405180910390f35b3480156105ea57600080fd5b506105f36111e6565b60405161060091906139fc565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613a43565b6111f9565b005b34801561063e57600080fd5b5061064761121e565b6040516106549190613d95565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190613cb9565b611230565b005b34801561069257600080fd5b5061069b61127f565b6040516106a89190613d1b565b60405180910390f35b3480156106bd57600080fd5b506106c6611285565b6040516106d391906139fc565b60405180910390f35b3480156106e857600080fd5b506106f1611298565b6040516106fe91906139fc565b60405180910390f35b34801561071357600080fd5b5061072e60048036038101906107299190613ee5565b6112ab565b005b34801561073c57600080fd5b506107456112cd565b6040516107529190613f3d565b60405180910390f35b34801561076757600080fd5b506107706112d3565b60405161077d91906139fc565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613f58565b6112e6565b6040516107ba9190613d1b565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613bff565b6112fe565b6040516107f79190613c3b565b60405180910390f35b34801561080c57600080fd5b50610815611384565b6040516108229190613d1b565b60405180910390f35b34801561083757600080fd5b5061084061138a565b60405161084d9190613bdd565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613c8c565b611418565b005b34801561088b57600080fd5b506108a660048036038101906108a19190613f58565b61142a565b6040516108b39190613d1b565b60405180910390f35b3480156108c857600080fd5b506108d16114e1565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190613bff565b6114f5565b005b34801561090857600080fd5b50610911611507565b60405161091e9190613d1b565b60405180910390f35b34801561093357600080fd5b5061094e60048036038101906109499190613a43565b61150d565b005b34801561095c57600080fd5b50610965611532565b6040516109729190613c3b565b60405180910390f35b34801561098757600080fd5b506109a2600480360381019061099d9190613bff565b61155c565b005b3480156109b057600080fd5b506109cb60048036038101906109c69190613a43565b61156e565b005b3480156109d957600080fd5b506109e2611593565b6040516109ef9190613bdd565b60405180910390f35b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190613f85565b611625565b005b348015610a2d57600080fd5b50610a3661163e565b604051610a439190613d1b565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e9190613bff565b611644565b005b348015610a8157600080fd5b50610a9c6004803603810190610a979190614066565b611656565b005b348015610aaa57600080fd5b50610ab36116a7565b604051610ac09190613f3d565b60405180910390f35b348015610ad557600080fd5b50610ade6116ad565b604051610aeb9190613d1b565b60405180910390f35b348015610b0057600080fd5b50610b1b6004803603810190610b169190613bff565b6116b3565b604051610b289190613bdd565b60405180910390f35b348015610b3d57600080fd5b50610b46611808565b604051610b539190613d1b565b60405180910390f35b610b6461180e565b005b348015610b7257600080fd5b50610b8d6004803603810190610b889190613f58565b611b79565b604051610b9a9190613d1b565b60405180910390f35b348015610baf57600080fd5b50610bca6004803603810190610bc591906140e9565b611b91565b604051610bd791906139fc565b60405180910390f35b348015610bec57600080fd5b50610bf5611c25565b604051610c029190613d1b565b60405180910390f35b348015610c1757600080fd5b50610c20611c2b565b604051610c2d9190613d1b565b60405180910390f35b610c506004803603810190610c4b91906141f1565b611c31565b005b348015610c5e57600080fd5b50610c796004803603810190610c749190613ee5565b612306565b005b348015610c8757600080fd5b50610ca26004803603810190610c9d9190613f58565b612320565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d7f5750610d7e826123a3565b5b9050919050565b610d8e61240d565b80601860006101000a81548160ff02191690831515021790555050565b610db361240d565b600b54610dcc6001600f5461248b90919063ffffffff16565b1115610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e04906142ac565b60405180910390fd5b600e54610e26600160125461248b90919063ffffffff16565b1115610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e9061433e565b60405180910390fd5b60005b81811015610f195760006001600f54610e83919061438d565b9050600b54600f5410610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec29061442f565b60405180910390fd5b610ed584826124a1565b600f6000815480929190610ee89061444f565b919050555060126000815480929190610f009061444f565b9190505550508080610f119061444f565b915050610e6a565b505050565b606060008054610f2d906144c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f59906144c6565b8015610fa65780601f10610f7b57610100808354040283529160200191610fa6565b820191906000526020600020905b815481529060010190602001808311610f8957829003601f168201915b5050505050905090565b6000610fbb826124bf565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60198054611003906144c6565b80601f016020809104026020016040519081016040528092919081815260200182805461102f906144c6565b801561107c5780601f106110515761010080835404028352916020019161107c565b820191906000526020600020905b81548152906001019060200180831161105f57829003601f168201915b505050505081565b8161108e8161250a565b6110988383612607565b505050565b6110a561240d565b80601c8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110ed576110ec3361250a565b5b6110f884848461271e565b50505050565b61110661240d565b8060138190555050565b600d5481565b600b5481565b600a5481565b61112a61240d565b6000611134611532565b73ffffffffffffffffffffffffffffffffffffffff164760405161115790614528565b60006040518083038185875af1925050503d8060008114611194576040519150601f19603f3d011682016040523d82523d6000602084013e611199565b606091505b50509050806111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490614589565b60405180910390fd5b50565b600f5481565b601560019054906101000a900460ff1681565b61120161240d565b80601560006101000a81548160ff02191690831515021790555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461126e5761126d3361250a565b5b61127984848461277e565b50505050565b60095481565b601a60009054906101000a900460ff1681565b601560009054906101000a900460ff1681565b6112b361240d565b80600790805190602001906112c99291906138a5565b5050565b601b5481565b601860009054906101000a900460ff1681565b60176020528060005260406000206000915090505481565b60008061130a8361279e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906145f5565b60405180910390fd5b80915050919050565b600c5481565b60078054611397906144c6565b80601f01602080910402602001604051908101604052809291908181526020018280546113c3906144c6565b80156114105780601f106113e557610100808354040283529160200191611410565b820191906000526020600020905b8154815290600101906020018083116113f357829003601f168201915b505050505081565b61142061240d565b80601b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190614687565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e961240d565b6114f360006127db565b565b6114fd61240d565b80600a8190555050565b60105481565b61151561240d565b80601560016101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61156461240d565b8060098190555050565b61157661240d565b80601a60006101000a81548160ff02191690831515021790555050565b6060600180546115a2906144c6565b80601f01602080910402602001604051908101604052809291908181526020018280546115ce906144c6565b801561161b5780601f106115f05761010080835404028352916020019161161b565b820191906000526020600020905b8154815290600101906020018083116115fe57829003601f168201915b5050505050905090565b8161162f8161250a565b61163983836128a1565b505050565b60115481565b61164c61240d565b8060148190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611694576116933361250a565b5b6116a0858585856128b7565b5050505050565b601c5481565b60135481565b60606116be82612919565b6116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490614719565b60405180910390fd5b60001515601a60009054906101000a900460ff161515036117aa5760198054611725906144c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611751906144c6565b801561179e5780601f106117735761010080835404028352916020019161179e565b820191906000526020600020905b81548152906001019060200180831161178157829003601f168201915b50505050509050611803565b60006117b461295a565b905060008151116117d457604051806020016040528060008152506117ff565b806117de846129ec565b6040516020016117ef9291906147c1565b6040516020818303038152906040525b9150505b919050565b600e5481565b601860009054906101000a900460ff161561185e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118559061483c565b60405180910390fd5b601560019054906101000a900460ff166118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a4906148a8565b60405180910390fd5b6118b5611532565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990614914565b60405180910390fd5b6000600954346119329190614963565b90506000600954346119449190614994565b905060003411611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090614a37565b60405180910390fd5b600082146119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390614aa3565b60405180910390fd5b600b546119e482600f5461248b90919063ffffffff16565b1115611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c906142ac565b60405180910390fd5b600d54611a3d8260115461248b90919063ffffffff16565b1115611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7590614b35565b60405180910390fd5b60005b81811015611b745760006001600f54611a9a919061438d565b9050600b54600f5410611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad99061442f565b60405180910390fd5b611aec33826124a1565b803373ffffffffffffffffffffffffffffffffffffffff167f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b560405160405180910390a3600f6000815480929190611b439061444f565b919050555060116000815480929190611b5b9061444f565b9190505550508080611b6c9061444f565b915050611a81565b505050565b60166020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60145481565b60125481565b601860009054906101000a900460ff1615611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7890614ba1565b60405180910390fd5b601560009054906101000a900460ff16611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790614c0d565b60405180910390fd5b818015611cdb575080155b80611ced5750808015611cec575081155b5b611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390614cc5565b60405180910390fd5b6000828015611d39575081155b15611e6957611d488433612aba565b611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90614d57565b60405180910390fd5b60003414611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc190614dc3565b60405180910390fd5b60019050601354611e2382601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461248b90919063ffffffff16565b1115611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b90614e55565b60405180910390fd5b612003565b818015611e74575082155b1561200257611e838433612afc565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990614ec1565b60405180910390fd5b60003411611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90614f53565b60405180910390fd5b6000600a5434611f159190614963565b905060008114611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190614aa3565b60405180910390fd5b600a5434611f689190614994565b9150601454611fbf83601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461248b90919063ffffffff16565b1115612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790614fe5565b60405180910390fd5b505b5b600b5461201b82600f5461248b90919063ffffffff16565b111561205c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612053906142ac565b60405180910390fd5b600c546120748260105461248b90919063ffffffff16565b11156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac90615077565b60405180910390fd5b6120bd611532565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461222d5760005b8181101561222b5760006001600f5461210b919061438d565b9050600b54600f5410612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a9061442f565b60405180910390fd5b600c5460105410612199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121909061442f565b60405180910390fd5b6121a333826124a1565b803373ffffffffffffffffffffffffffffffffffffffff167fe8868866b7c25a91a02f2b2df844874118c38bbe83ae4d8e7b86933191246a3060405160405180910390a3600f60008154809291906121fa9061444f565b9190505550601060008154809291906122129061444f565b91905055505080806122239061444f565b9150506120f2565b505b828015612238575081155b156122985780601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461228c919061438d565b92505081905550612300565b8180156122a3575082155b156122ff5780601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f7919061438d565b925050819055505b5b50505050565b806019908051906020019061231c9291906138a5565b5050565b61232861240d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238e90615109565b60405180910390fd5b6123a0816127db565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612415612b3e565b73ffffffffffffffffffffffffffffffffffffffff16612433611532565b73ffffffffffffffffffffffffffffffffffffffff1614612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090615175565b60405180910390fd5b565b60008183612499919061438d565b905092915050565b6124bb828260405180602001604052806000815250612b46565b5050565b6124c881612919565b612507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fe906145f5565b60405180910390fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612604576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401612581929190615195565b602060405180830381865afa15801561259e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125c291906151d3565b61260357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016125fa9190613c3b565b60405180910390fd5b5b50565b6000612612826112fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990615272565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166126a1612b3e565b73ffffffffffffffffffffffffffffffffffffffff1614806126d057506126cf816126ca612b3e565b611b91565b5b61270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690615304565b60405180910390fd5b6127198383612ba1565b505050565b61272f612729612b3e565b82612c5a565b61276e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276590615396565b60405180910390fd5b612779838383612cef565b505050565b61279983838360405180602001604052806000815250611656565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128b36128ac612b3e565b8383612fe8565b5050565b6128c86128c2612b3e565b83612c5a565b612907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fe90615396565b60405180910390fd5b61291384848484613154565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661293b8361279e565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060078054612969906144c6565b80601f0160208091040260200160405190810160405280929190818152602001828054612995906144c6565b80156129e25780601f106129b7576101008083540402835291602001916129e2565b820191906000526020600020905b8154815290600101906020018083116129c557829003601f168201915b5050505050905090565b6060600060016129fb846131b0565b01905060008167ffffffffffffffff811115612a1a57612a19613dba565b5b6040519080825280601f01601f191660200182016040528015612a4c5781602001600182028036833780820191505090505b509050600082602001820190505b600115612aaf578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612aa357612aa2614934565b5b04945060008503612a5a575b819350505050919050565b60008082604051602001612ace91906153fe565b604051602081830303815290604052805190602001209050612af384601c5483613303565b91505092915050565b60008082604051602001612b1091906153fe565b604051602081830303815290604052805190602001209050612b3584601b5483613303565b91505092915050565b600033905090565b612b50838361331a565b612b5d6000848484613537565b612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b939061548b565b60405180910390fd5b505050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c14836112fe565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612c66836112fe565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ca85750612ca78185611b91565b5b80612ce657508373ffffffffffffffffffffffffffffffffffffffff16612cce84610fb0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d0f826112fe565b73ffffffffffffffffffffffffffffffffffffffff1614612d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5c9061551d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb906155af565b60405180910390fd5b612de183838360016136be565b8273ffffffffffffffffffffffffffffffffffffffff16612e01826112fe565b73ffffffffffffffffffffffffffffffffffffffff1614612e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4e9061551d565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fe383838360016137e4565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304d9061561b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161314791906139fc565b60405180910390a3505050565b61315f848484612cef565b61316b84848484613537565b6131aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a19061548b565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061320e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161320457613203614934565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061324b576d04ee2d6d415b85acef8100000000838161324157613240614934565b5b0492506020810190505b662386f26fc10000831061327a57662386f26fc1000083816132705761326f614934565b5b0492506010810190505b6305f5e10083106132a3576305f5e100838161329957613298614934565b5b0492506008810190505b61271083106132c85761271083816132be576132bd614934565b5b0492506004810190505b606483106132eb57606483816132e1576132e0614934565b5b0492506002810190505b600a83106132fa576001810190505b80915050919050565b60008261331085846137ea565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338090615687565b60405180910390fd5b61339281612919565b156133d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c9906156f3565b60405180910390fd5b6133e06000838360016136be565b6133e981612919565b15613429576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613420906156f3565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135336000838360016137e4565b5050565b60006135588473ffffffffffffffffffffffffffffffffffffffff16613840565b156136b1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613581612b3e565b8786866040518563ffffffff1660e01b81526004016135a39493929190615768565b6020604051808303816000875af19250505080156135df57506040513d601f19601f820116820180604052508101906135dc91906157c9565b60015b613661573d806000811461360f576040519150601f19603f3d011682016040523d82523d6000602084013e613614565b606091505b506000815103613659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136509061548b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136b6565b600190505b949350505050565b60018111156137de57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146137525780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461374a91906157f6565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137dd5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137d5919061438d565b925050819055505b5b50505050565b50505050565b60008082905060005b845181101561383557613820828683815181106138135761381261582a565b5b6020026020010151613863565b9150808061382d9061444f565b9150506137f3565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600081831061387b57613876828461388e565b613886565b613885838361388e565b5b905092915050565b600082600052816020526040600020905092915050565b8280546138b1906144c6565b90600052602060002090601f0160209004810192826138d3576000855561391a565b82601f106138ec57805160ff191683800117855561391a565b8280016001018555821561391a579182015b828111156139195782518255916020019190600101906138fe565b5b509050613927919061392b565b5090565b5b8082111561394457600081600090555060010161392c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139918161395c565b811461399c57600080fd5b50565b6000813590506139ae81613988565b92915050565b6000602082840312156139ca576139c9613952565b5b60006139d88482850161399f565b91505092915050565b60008115159050919050565b6139f6816139e1565b82525050565b6000602082019050613a1160008301846139ed565b92915050565b613a20816139e1565b8114613a2b57600080fd5b50565b600081359050613a3d81613a17565b92915050565b600060208284031215613a5957613a58613952565b5b6000613a6784828501613a2e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a9b82613a70565b9050919050565b613aab81613a90565b8114613ab657600080fd5b50565b600081359050613ac881613aa2565b92915050565b6000819050919050565b613ae181613ace565b8114613aec57600080fd5b50565b600081359050613afe81613ad8565b92915050565b60008060408385031215613b1b57613b1a613952565b5b6000613b2985828601613ab9565b9250506020613b3a85828601613aef565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b7e578082015181840152602081019050613b63565b83811115613b8d576000848401525b50505050565b6000601f19601f8301169050919050565b6000613baf82613b44565b613bb98185613b4f565b9350613bc9818560208601613b60565b613bd281613b93565b840191505092915050565b60006020820190508181036000830152613bf78184613ba4565b905092915050565b600060208284031215613c1557613c14613952565b5b6000613c2384828501613aef565b91505092915050565b613c3581613a90565b82525050565b6000602082019050613c506000830184613c2c565b92915050565b6000819050919050565b613c6981613c56565b8114613c7457600080fd5b50565b600081359050613c8681613c60565b92915050565b600060208284031215613ca257613ca1613952565b5b6000613cb084828501613c77565b91505092915050565b600080600060608486031215613cd257613cd1613952565b5b6000613ce086828701613ab9565b9350506020613cf186828701613ab9565b9250506040613d0286828701613aef565b9150509250925092565b613d1581613ace565b82525050565b6000602082019050613d306000830184613d0c565b92915050565b6000819050919050565b6000613d5b613d56613d5184613a70565b613d36565b613a70565b9050919050565b6000613d6d82613d40565b9050919050565b6000613d7f82613d62565b9050919050565b613d8f81613d74565b82525050565b6000602082019050613daa6000830184613d86565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613df282613b93565b810181811067ffffffffffffffff82111715613e1157613e10613dba565b5b80604052505050565b6000613e24613948565b9050613e308282613de9565b919050565b600067ffffffffffffffff821115613e5057613e4f613dba565b5b613e5982613b93565b9050602081019050919050565b82818337600083830152505050565b6000613e88613e8384613e35565b613e1a565b905082815260208101848484011115613ea457613ea3613db5565b5b613eaf848285613e66565b509392505050565b600082601f830112613ecc57613ecb613db0565b5b8135613edc848260208601613e75565b91505092915050565b600060208284031215613efb57613efa613952565b5b600082013567ffffffffffffffff811115613f1957613f18613957565b5b613f2584828501613eb7565b91505092915050565b613f3781613c56565b82525050565b6000602082019050613f526000830184613f2e565b92915050565b600060208284031215613f6e57613f6d613952565b5b6000613f7c84828501613ab9565b91505092915050565b60008060408385031215613f9c57613f9b613952565b5b6000613faa85828601613ab9565b9250506020613fbb85828601613a2e565b9150509250929050565b600067ffffffffffffffff821115613fe057613fdf613dba565b5b613fe982613b93565b9050602081019050919050565b600061400961400484613fc5565b613e1a565b90508281526020810184848401111561402557614024613db5565b5b614030848285613e66565b509392505050565b600082601f83011261404d5761404c613db0565b5b813561405d848260208601613ff6565b91505092915050565b600080600080608085870312156140805761407f613952565b5b600061408e87828801613ab9565b945050602061409f87828801613ab9565b93505060406140b087828801613aef565b925050606085013567ffffffffffffffff8111156140d1576140d0613957565b5b6140dd87828801614038565b91505092959194509250565b60008060408385031215614100576140ff613952565b5b600061410e85828601613ab9565b925050602061411f85828601613ab9565b9150509250929050565b600067ffffffffffffffff82111561414457614143613dba565b5b602082029050602081019050919050565b600080fd5b600061416d61416884614129565b613e1a565b905080838252602082019050602084028301858111156141905761418f614155565b5b835b818110156141b957806141a58882613c77565b845260208401935050602081019050614192565b5050509392505050565b600082601f8301126141d8576141d7613db0565b5b81356141e884826020860161415a565b91505092915050565b60008060006060848603121561420a57614209613952565b5b600084013567ffffffffffffffff81111561422857614227613957565b5b614234868287016141c3565b935050602061424586828701613a2e565b925050604061425686828701613a2e565b9150509250925092565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b6000614296602083613b4f565b91506142a182614260565b602082019050919050565b600060208201905081810360008301526142c581614289565b9050919050565b7f507572636861736520776f756c6420657863656564206d61782067697665617760008201527f617920537570706c790000000000000000000000000000000000000000000000602082015250565b6000614328602983613b4f565b9150614333826142cc565b604082019050919050565b600060208201905081810360008301526143578161431b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061439882613ace565b91506143a383613ace565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143d8576143d761435e565b5b828201905092915050565b7f416c6c206974656d7320736f6c64210000000000000000000000000000000000600082015250565b6000614419600f83613b4f565b9150614424826143e3565b602082019050919050565b600060208201905081810360008301526144488161440c565b9050919050565b600061445a82613ace565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361448c5761448b61435e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144de57607f821691505b6020821081036144f1576144f0614497565b5b50919050565b600081905092915050565b50565b60006145126000836144f7565b915061451d82614502565b600082019050919050565b600061453382614505565b9150819050919050565b7f4661696c656420746f2077697468647261770000000000000000000000000000600082015250565b6000614573601283613b4f565b915061457e8261453d565b602082019050919050565b600060208201905081810360008301526145a281614566565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006145df601883613b4f565b91506145ea826145a9565b602082019050919050565b6000602082019050818103600083015261460e816145d2565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614671602983613b4f565b915061467c82614615565b604082019050919050565b600060208201905081810360008301526146a081614664565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614703602f83613b4f565b915061470e826146a7565b604082019050919050565b60006020820190508181036000830152614732816146f6565b9050919050565b600081905092915050565b600061474f82613b44565b6147598185614739565b9350614769818560208601613b60565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006147ab600583614739565b91506147b682614775565b600582019050919050565b60006147cd8285614744565b91506147d98284614744565b91506147e48261479e565b91508190509392505050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b6000614826601283613b4f565b9150614831826147f0565b602082019050919050565b6000602082019050818103600083015261485581614819565b9050919050565b7f5075626c69632053616c65206973206e6f742061637469766500000000000000600082015250565b6000614892601983613b4f565b915061489d8261485c565b602082019050919050565b600060208201905081810360008301526148c181614885565b9050919050565b7f5468697320697320666f72207075626c6963206f6e6c79000000000000000000600082015250565b60006148fe601783613b4f565b9150614909826148c8565b602082019050919050565b6000602082019050818103600083015261492d816148f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061496e82613ace565b915061497983613ace565b92508261498957614988614934565b5b828206905092915050565b600061499f82613ace565b91506149aa83613ace565b9250826149ba576149b9614934565b5b828204905092915050565b7f53656e6420736f6d652076616c756520657175616c20746f206d756c7469706c60008201527f65206f66207075626c6963207072696365000000000000000000000000000000602082015250565b6000614a21603183613b4f565b9150614a2c826149c5565b604082019050919050565b60006020820190508181036000830152614a5081614a14565b9050919050565b7f53656e64206120646976697369626c6520616d6f756e74206f66207072696365600082015250565b6000614a8d602083613b4f565b9150614a9882614a57565b602082019050919050565b60006020820190508181036000830152614abc81614a80565b9050919050565b7f507572636861736520776f756c6420657863656564206d6178207075626c696360008201527f20737570706c7921000000000000000000000000000000000000000000000000602082015250565b6000614b1f602883613b4f565b9150614b2a82614ac3565b604082019050919050565b60006020820190508181036000830152614b4e81614b12565b9050919050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b6000614b8b601283613b4f565b9150614b9682614b55565b602082019050919050565b60006020820190508181036000830152614bba81614b7e565b9050919050565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b6000614bf7601283613b4f565b9150614c0282614bc1565b602082019050919050565b60006020820190508181036000830152614c2681614bea565b9050919050565b7f596f752063616e27742062652070617274206f6620626f7468206c697374732060008201527f647572696e67206d696e742e204f722065697468657220796f7520646f206e6f60208201527f742062656c6f6e67206865726500000000000000000000000000000000000000604082015250565b6000614caf604d83613b4f565b9150614cba82614c2d565b606082019050919050565b60006020820190508181036000830152614cde81614ca2565b9050919050565b7f596f7520646f206e6f742062656c6f6e6720746f204f47206472756e6b6c697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d41602183613b4f565b9150614d4c82614ce5565b604082019050919050565b60006020820190508181036000830152614d7081614d34565b9050919050565b7f4f47204472756e6b206d696e742069732066726565206f6620636f7374000000600082015250565b6000614dad601d83613b4f565b9150614db882614d77565b602082019050919050565b60006020820190508181036000830152614ddc81614da0565b9050919050565b7f596f752077696c6c2065786365656420796f7572206c696d697420706572207760008201527f616c6c657420666f72204f47204472756e6b6c69737400000000000000000000602082015250565b6000614e3f603683613b4f565b9150614e4a82614de3565b604082019050919050565b60006020820190508181036000830152614e6e81614e32565b9050919050565b7f596f7520646f206e6f742062656c6f6e6720746f206472756e6b6c6973740000600082015250565b6000614eab601e83613b4f565b9150614eb682614e75565b602082019050919050565b60006020820190508181036000830152614eda81614e9e565b9050919050565b7f53656e6420736f6d652076616c756520696e206d756c7469706c6573206f662060008201527f6472756e6b6c69737420636f7374000000000000000000000000000000000000602082015250565b6000614f3d602e83613b4f565b9150614f4882614ee1565b604082019050919050565b60006020820190508181036000830152614f6c81614f30565b9050919050565b7f596f752077696c6c2065786365656420796f7572206c696d697420706572207760008201527f616c6c657420666f72204472756e6b6c69737400000000000000000000000000602082015250565b6000614fcf603383613b4f565b9150614fda82614f73565b604082019050919050565b60006020820190508181036000830152614ffe81614fc2565b9050919050565b7f507572636861736520776f756c6420657863656564206d61782070726573616c60008201527f6520737570706c79210000000000000000000000000000000000000000000000602082015250565b6000615061602983613b4f565b915061506c82615005565b604082019050919050565b6000602082019050818103600083015261509081615054565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150f3602683613b4f565b91506150fe82615097565b604082019050919050565b60006020820190508181036000830152615122816150e6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061515f602083613b4f565b915061516a82615129565b602082019050919050565b6000602082019050818103600083015261518e81615152565b9050919050565b60006040820190506151aa6000830185613c2c565b6151b76020830184613c2c565b9392505050565b6000815190506151cd81613a17565b92915050565b6000602082840312156151e9576151e8613952565b5b60006151f7848285016151be565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061525c602183613b4f565b915061526782615200565b604082019050919050565b6000602082019050818103600083015261528b8161524f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006152ee603d83613b4f565b91506152f982615292565b604082019050919050565b6000602082019050818103600083015261531d816152e1565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000615380602d83613b4f565b915061538b82615324565b604082019050919050565b600060208201905081810360008301526153af81615373565b9050919050565b60008160601b9050919050565b60006153ce826153b6565b9050919050565b60006153e0826153c3565b9050919050565b6153f86153f382613a90565b6153d5565b82525050565b600061540a82846153e7565b60148201915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615475603283613b4f565b915061548082615419565b604082019050919050565b600060208201905081810360008301526154a481615468565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615507602583613b4f565b9150615512826154ab565b604082019050919050565b60006020820190508181036000830152615536816154fa565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615599602483613b4f565b91506155a48261553d565b604082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615605601983613b4f565b9150615610826155cf565b602082019050919050565b60006020820190508181036000830152615634816155f8565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615671602083613b4f565b915061567c8261563b565b602082019050919050565b600060208201905081810360008301526156a081615664565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006156dd601c83613b4f565b91506156e8826156a7565b602082019050919050565b6000602082019050818103600083015261570c816156d0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061573a82615713565b615744818561571e565b9350615754818560208601613b60565b61575d81613b93565b840191505092915050565b600060808201905061577d6000830187613c2c565b61578a6020830186613c2c565b6157976040830185613d0c565b81810360608301526157a9818461572f565b905095945050505050565b6000815190506157c381613988565b92915050565b6000602082840312156157df576157de613952565b5b60006157ed848285016157b4565b91505092915050565b600061580182613ace565b915061580c83613ace565b92508282101561581f5761581e61435e565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122002ccc38d41397e3ad08c3d72a89dd3f5a64fc9f47c74d6cac3f3437e2b5487ad64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106103505760003560e01c80636b8dc355116101c6578063ac2f058f116100f7578063e48f228911610095578063ebc45c5b1161006f578063ebc45c5b14610c0b578063eddc034714610c36578063f2c4ce1e14610c52578063f2fde38b14610c7b57610350565b8063e48f228914610b66578063e985e9c514610ba3578063ea2b3f5214610be057610350565b8063ba6f21f9116100d1578063ba6f21f914610ac9578063c87b56dd14610af4578063c9d8b57814610b31578063d2eb86ee14610b5c57610350565b8063ac2f058f14610a4c578063b88d4fde14610a75578063b9b8de4e14610a9e57610350565b80638aca408c11610164578063940cd05b1161013e578063940cd05b146109a457806395d89b41146109cd578063a22cb465146109f8578063aa07390714610a2157610350565b80638aca408c146109275780638da5cb5b146109505780638dbb7c061461097b57610350565b806370a08231116101a057806370a082311461087f578063715018a6146108bc5780637bccb72c146108d357806386eda2c2146108fc57610350565b80636b8dc355146108005780636c0360eb1461082b5780636f8e10d31461085657610350565b80633ccfd60b116102a0578063518302271161023e5780635935b0cb116102185780635935b0cb146107305780635c975abb1461075b57806362599703146107865780636352211e146107c357610350565b806351830227146106b157806353135ca0146106dc57806355f804b31461070757610350565b80633f8121a21161027a5780633f8121a21461060957806341f434341461063257806342842e0e1461065d578063453afb0f1461068657610350565b80633ccfd60b1461059c5780633dff9601146105b35780633f2981cf146105de57610350565b8063095ea7b31161030d578063287099ec116102e7578063287099ec146104f25780632a47f7991461051b57806333039d3d146105465780633a12f26b1461057157610350565b8063095ea7b3146104775780631460fcf3146104a057806323b872dd146104c957610350565b806301ffc9a71461035557806302329a291461039257806304826624146103bb57806306fdde03146103e4578063081812fc1461040f578063081c8c441461044c575b600080fd5b34801561036157600080fd5b5061037c600480360381019061037791906139b4565b610ca4565b60405161038991906139fc565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613a43565b610d86565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190613b04565b610dab565b005b3480156103f057600080fd5b506103f9610f1e565b6040516104069190613bdd565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190613bff565b610fb0565b6040516104439190613c3b565b60405180910390f35b34801561045857600080fd5b50610461610ff6565b60405161046e9190613bdd565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190613b04565b611084565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190613c8c565b61109d565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613cb9565b6110af565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613bff565b6110fe565b005b34801561052757600080fd5b50610530611110565b60405161053d9190613d1b565b60405180910390f35b34801561055257600080fd5b5061055b611116565b6040516105689190613d1b565b60405180910390f35b34801561057d57600080fd5b5061058661111c565b6040516105939190613d1b565b60405180910390f35b3480156105a857600080fd5b506105b1611122565b005b3480156105bf57600080fd5b506105c86111e0565b6040516105d59190613d1b565b60405180910390f35b3480156105ea57600080fd5b506105f36111e6565b60405161060091906139fc565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613a43565b6111f9565b005b34801561063e57600080fd5b5061064761121e565b6040516106549190613d95565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190613cb9565b611230565b005b34801561069257600080fd5b5061069b61127f565b6040516106a89190613d1b565b60405180910390f35b3480156106bd57600080fd5b506106c6611285565b6040516106d391906139fc565b60405180910390f35b3480156106e857600080fd5b506106f1611298565b6040516106fe91906139fc565b60405180910390f35b34801561071357600080fd5b5061072e60048036038101906107299190613ee5565b6112ab565b005b34801561073c57600080fd5b506107456112cd565b6040516107529190613f3d565b60405180910390f35b34801561076757600080fd5b506107706112d3565b60405161077d91906139fc565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613f58565b6112e6565b6040516107ba9190613d1b565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613bff565b6112fe565b6040516107f79190613c3b565b60405180910390f35b34801561080c57600080fd5b50610815611384565b6040516108229190613d1b565b60405180910390f35b34801561083757600080fd5b5061084061138a565b60405161084d9190613bdd565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613c8c565b611418565b005b34801561088b57600080fd5b506108a660048036038101906108a19190613f58565b61142a565b6040516108b39190613d1b565b60405180910390f35b3480156108c857600080fd5b506108d16114e1565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190613bff565b6114f5565b005b34801561090857600080fd5b50610911611507565b60405161091e9190613d1b565b60405180910390f35b34801561093357600080fd5b5061094e60048036038101906109499190613a43565b61150d565b005b34801561095c57600080fd5b50610965611532565b6040516109729190613c3b565b60405180910390f35b34801561098757600080fd5b506109a2600480360381019061099d9190613bff565b61155c565b005b3480156109b057600080fd5b506109cb60048036038101906109c69190613a43565b61156e565b005b3480156109d957600080fd5b506109e2611593565b6040516109ef9190613bdd565b60405180910390f35b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190613f85565b611625565b005b348015610a2d57600080fd5b50610a3661163e565b604051610a439190613d1b565b60405180910390f35b348015610a5857600080fd5b50610a736004803603810190610a6e9190613bff565b611644565b005b348015610a8157600080fd5b50610a9c6004803603810190610a979190614066565b611656565b005b348015610aaa57600080fd5b50610ab36116a7565b604051610ac09190613f3d565b60405180910390f35b348015610ad557600080fd5b50610ade6116ad565b604051610aeb9190613d1b565b60405180910390f35b348015610b0057600080fd5b50610b1b6004803603810190610b169190613bff565b6116b3565b604051610b289190613bdd565b60405180910390f35b348015610b3d57600080fd5b50610b46611808565b604051610b539190613d1b565b60405180910390f35b610b6461180e565b005b348015610b7257600080fd5b50610b8d6004803603810190610b889190613f58565b611b79565b604051610b9a9190613d1b565b60405180910390f35b348015610baf57600080fd5b50610bca6004803603810190610bc591906140e9565b611b91565b604051610bd791906139fc565b60405180910390f35b348015610bec57600080fd5b50610bf5611c25565b604051610c029190613d1b565b60405180910390f35b348015610c1757600080fd5b50610c20611c2b565b604051610c2d9190613d1b565b60405180910390f35b610c506004803603810190610c4b91906141f1565b611c31565b005b348015610c5e57600080fd5b50610c796004803603810190610c749190613ee5565b612306565b005b348015610c8757600080fd5b50610ca26004803603810190610c9d9190613f58565b612320565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d7f5750610d7e826123a3565b5b9050919050565b610d8e61240d565b80601860006101000a81548160ff02191690831515021790555050565b610db361240d565b600b54610dcc6001600f5461248b90919063ffffffff16565b1115610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e04906142ac565b60405180910390fd5b600e54610e26600160125461248b90919063ffffffff16565b1115610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e9061433e565b60405180910390fd5b60005b81811015610f195760006001600f54610e83919061438d565b9050600b54600f5410610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec29061442f565b60405180910390fd5b610ed584826124a1565b600f6000815480929190610ee89061444f565b919050555060126000815480929190610f009061444f565b9190505550508080610f119061444f565b915050610e6a565b505050565b606060008054610f2d906144c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f59906144c6565b8015610fa65780601f10610f7b57610100808354040283529160200191610fa6565b820191906000526020600020905b815481529060010190602001808311610f8957829003601f168201915b5050505050905090565b6000610fbb826124bf565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60198054611003906144c6565b80601f016020809104026020016040519081016040528092919081815260200182805461102f906144c6565b801561107c5780601f106110515761010080835404028352916020019161107c565b820191906000526020600020905b81548152906001019060200180831161105f57829003601f168201915b505050505081565b8161108e8161250a565b6110988383612607565b505050565b6110a561240d565b80601c8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110ed576110ec3361250a565b5b6110f884848461271e565b50505050565b61110661240d565b8060138190555050565b600d5481565b600b5481565b600a5481565b61112a61240d565b6000611134611532565b73ffffffffffffffffffffffffffffffffffffffff164760405161115790614528565b60006040518083038185875af1925050503d8060008114611194576040519150601f19603f3d011682016040523d82523d6000602084013e611199565b606091505b50509050806111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490614589565b60405180910390fd5b50565b600f5481565b601560019054906101000a900460ff1681565b61120161240d565b80601560006101000a81548160ff02191690831515021790555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461126e5761126d3361250a565b5b61127984848461277e565b50505050565b60095481565b601a60009054906101000a900460ff1681565b601560009054906101000a900460ff1681565b6112b361240d565b80600790805190602001906112c99291906138a5565b5050565b601b5481565b601860009054906101000a900460ff1681565b60176020528060005260406000206000915090505481565b60008061130a8361279e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361137b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611372906145f5565b60405180910390fd5b80915050919050565b600c5481565b60078054611397906144c6565b80601f01602080910402602001604051908101604052809291908181526020018280546113c3906144c6565b80156114105780601f106113e557610100808354040283529160200191611410565b820191906000526020600020905b8154815290600101906020018083116113f357829003601f168201915b505050505081565b61142061240d565b80601b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190614687565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e961240d565b6114f360006127db565b565b6114fd61240d565b80600a8190555050565b60105481565b61151561240d565b80601560016101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61156461240d565b8060098190555050565b61157661240d565b80601a60006101000a81548160ff02191690831515021790555050565b6060600180546115a2906144c6565b80601f01602080910402602001604051908101604052809291908181526020018280546115ce906144c6565b801561161b5780601f106115f05761010080835404028352916020019161161b565b820191906000526020600020905b8154815290600101906020018083116115fe57829003601f168201915b5050505050905090565b8161162f8161250a565b61163983836128a1565b505050565b60115481565b61164c61240d565b8060148190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611694576116933361250a565b5b6116a0858585856128b7565b5050505050565b601c5481565b60135481565b60606116be82612919565b6116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490614719565b60405180910390fd5b60001515601a60009054906101000a900460ff161515036117aa5760198054611725906144c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611751906144c6565b801561179e5780601f106117735761010080835404028352916020019161179e565b820191906000526020600020905b81548152906001019060200180831161178157829003601f168201915b50505050509050611803565b60006117b461295a565b905060008151116117d457604051806020016040528060008152506117ff565b806117de846129ec565b6040516020016117ef9291906147c1565b6040516020818303038152906040525b9150505b919050565b600e5481565b601860009054906101000a900460ff161561185e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118559061483c565b60405180910390fd5b601560019054906101000a900460ff166118ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a4906148a8565b60405180910390fd5b6118b5611532565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990614914565b60405180910390fd5b6000600954346119329190614963565b90506000600954346119449190614994565b905060003411611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090614a37565b60405180910390fd5b600082146119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390614aa3565b60405180910390fd5b600b546119e482600f5461248b90919063ffffffff16565b1115611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c906142ac565b60405180910390fd5b600d54611a3d8260115461248b90919063ffffffff16565b1115611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7590614b35565b60405180910390fd5b60005b81811015611b745760006001600f54611a9a919061438d565b9050600b54600f5410611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad99061442f565b60405180910390fd5b611aec33826124a1565b803373ffffffffffffffffffffffffffffffffffffffff167f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b560405160405180910390a3600f6000815480929190611b439061444f565b919050555060116000815480929190611b5b9061444f565b9190505550508080611b6c9061444f565b915050611a81565b505050565b60166020528060005260406000206000915090505481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60145481565b60125481565b601860009054906101000a900460ff1615611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7890614ba1565b60405180910390fd5b601560009054906101000a900460ff16611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790614c0d565b60405180910390fd5b818015611cdb575080155b80611ced5750808015611cec575081155b5b611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390614cc5565b60405180910390fd5b6000828015611d39575081155b15611e6957611d488433612aba565b611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90614d57565b60405180910390fd5b60003414611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc190614dc3565b60405180910390fd5b60019050601354611e2382601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461248b90919063ffffffff16565b1115611e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5b90614e55565b60405180910390fd5b612003565b818015611e74575082155b1561200257611e838433612afc565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990614ec1565b60405180910390fd5b60003411611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc90614f53565b60405180910390fd5b6000600a5434611f159190614963565b905060008114611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190614aa3565b60405180910390fd5b600a5434611f689190614994565b9150601454611fbf83601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461248b90919063ffffffff16565b1115612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790614fe5565b60405180910390fd5b505b5b600b5461201b82600f5461248b90919063ffffffff16565b111561205c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612053906142ac565b60405180910390fd5b600c546120748260105461248b90919063ffffffff16565b11156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac90615077565b60405180910390fd5b6120bd611532565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461222d5760005b8181101561222b5760006001600f5461210b919061438d565b9050600b54600f5410612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a9061442f565b60405180910390fd5b600c5460105410612199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121909061442f565b60405180910390fd5b6121a333826124a1565b803373ffffffffffffffffffffffffffffffffffffffff167fe8868866b7c25a91a02f2b2df844874118c38bbe83ae4d8e7b86933191246a3060405160405180910390a3600f60008154809291906121fa9061444f565b9190505550601060008154809291906122129061444f565b91905055505080806122239061444f565b9150506120f2565b505b828015612238575081155b156122985780601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461228c919061438d565b92505081905550612300565b8180156122a3575082155b156122ff5780601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f7919061438d565b925050819055505b5b50505050565b806019908051906020019061231c9291906138a5565b5050565b61232861240d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238e90615109565b60405180910390fd5b6123a0816127db565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612415612b3e565b73ffffffffffffffffffffffffffffffffffffffff16612433611532565b73ffffffffffffffffffffffffffffffffffffffff1614612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090615175565b60405180910390fd5b565b60008183612499919061438d565b905092915050565b6124bb828260405180602001604052806000815250612b46565b5050565b6124c881612919565b612507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fe906145f5565b60405180910390fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612604576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401612581929190615195565b602060405180830381865afa15801561259e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125c291906151d3565b61260357806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016125fa9190613c3b565b60405180910390fd5b5b50565b6000612612826112fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990615272565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166126a1612b3e565b73ffffffffffffffffffffffffffffffffffffffff1614806126d057506126cf816126ca612b3e565b611b91565b5b61270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690615304565b60405180910390fd5b6127198383612ba1565b505050565b61272f612729612b3e565b82612c5a565b61276e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276590615396565b60405180910390fd5b612779838383612cef565b505050565b61279983838360405180602001604052806000815250611656565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128b36128ac612b3e565b8383612fe8565b5050565b6128c86128c2612b3e565b83612c5a565b612907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fe90615396565b60405180910390fd5b61291384848484613154565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661293b8361279e565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060078054612969906144c6565b80601f0160208091040260200160405190810160405280929190818152602001828054612995906144c6565b80156129e25780601f106129b7576101008083540402835291602001916129e2565b820191906000526020600020905b8154815290600101906020018083116129c557829003601f168201915b5050505050905090565b6060600060016129fb846131b0565b01905060008167ffffffffffffffff811115612a1a57612a19613dba565b5b6040519080825280601f01601f191660200182016040528015612a4c5781602001600182028036833780820191505090505b509050600082602001820190505b600115612aaf578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612aa357612aa2614934565b5b04945060008503612a5a575b819350505050919050565b60008082604051602001612ace91906153fe565b604051602081830303815290604052805190602001209050612af384601c5483613303565b91505092915050565b60008082604051602001612b1091906153fe565b604051602081830303815290604052805190602001209050612b3584601b5483613303565b91505092915050565b600033905090565b612b50838361331a565b612b5d6000848484613537565b612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b939061548b565b60405180910390fd5b505050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c14836112fe565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612c66836112fe565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ca85750612ca78185611b91565b5b80612ce657508373ffffffffffffffffffffffffffffffffffffffff16612cce84610fb0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d0f826112fe565b73ffffffffffffffffffffffffffffffffffffffff1614612d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5c9061551d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb906155af565b60405180910390fd5b612de183838360016136be565b8273ffffffffffffffffffffffffffffffffffffffff16612e01826112fe565b73ffffffffffffffffffffffffffffffffffffffff1614612e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4e9061551d565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fe383838360016137e4565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304d9061561b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161314791906139fc565b60405180910390a3505050565b61315f848484612cef565b61316b84848484613537565b6131aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a19061548b565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061320e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161320457613203614934565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061324b576d04ee2d6d415b85acef8100000000838161324157613240614934565b5b0492506020810190505b662386f26fc10000831061327a57662386f26fc1000083816132705761326f614934565b5b0492506010810190505b6305f5e10083106132a3576305f5e100838161329957613298614934565b5b0492506008810190505b61271083106132c85761271083816132be576132bd614934565b5b0492506004810190505b606483106132eb57606483816132e1576132e0614934565b5b0492506002810190505b600a83106132fa576001810190505b80915050919050565b60008261331085846137ea565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338090615687565b60405180910390fd5b61339281612919565b156133d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c9906156f3565b60405180910390fd5b6133e06000838360016136be565b6133e981612919565b15613429576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613420906156f3565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135336000838360016137e4565b5050565b60006135588473ffffffffffffffffffffffffffffffffffffffff16613840565b156136b1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613581612b3e565b8786866040518563ffffffff1660e01b81526004016135a39493929190615768565b6020604051808303816000875af19250505080156135df57506040513d601f19601f820116820180604052508101906135dc91906157c9565b60015b613661573d806000811461360f576040519150601f19603f3d011682016040523d82523d6000602084013e613614565b606091505b506000815103613659576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136509061548b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506136b6565b600190505b949350505050565b60018111156137de57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146137525780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461374a91906157f6565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137dd5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137d5919061438d565b925050819055505b5b50505050565b50505050565b60008082905060005b845181101561383557613820828683815181106138135761381261582a565b5b6020026020010151613863565b9150808061382d9061444f565b9150506137f3565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600081831061387b57613876828461388e565b613886565b613885838361388e565b5b905092915050565b600082600052816020526040600020905092915050565b8280546138b1906144c6565b90600052602060002090601f0160209004810192826138d3576000855561391a565b82601f106138ec57805160ff191683800117855561391a565b8280016001018555821561391a579182015b828111156139195782518255916020019190600101906138fe565b5b509050613927919061392b565b5090565b5b8082111561394457600081600090555060010161392c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139918161395c565b811461399c57600080fd5b50565b6000813590506139ae81613988565b92915050565b6000602082840312156139ca576139c9613952565b5b60006139d88482850161399f565b91505092915050565b60008115159050919050565b6139f6816139e1565b82525050565b6000602082019050613a1160008301846139ed565b92915050565b613a20816139e1565b8114613a2b57600080fd5b50565b600081359050613a3d81613a17565b92915050565b600060208284031215613a5957613a58613952565b5b6000613a6784828501613a2e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a9b82613a70565b9050919050565b613aab81613a90565b8114613ab657600080fd5b50565b600081359050613ac881613aa2565b92915050565b6000819050919050565b613ae181613ace565b8114613aec57600080fd5b50565b600081359050613afe81613ad8565b92915050565b60008060408385031215613b1b57613b1a613952565b5b6000613b2985828601613ab9565b9250506020613b3a85828601613aef565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b7e578082015181840152602081019050613b63565b83811115613b8d576000848401525b50505050565b6000601f19601f8301169050919050565b6000613baf82613b44565b613bb98185613b4f565b9350613bc9818560208601613b60565b613bd281613b93565b840191505092915050565b60006020820190508181036000830152613bf78184613ba4565b905092915050565b600060208284031215613c1557613c14613952565b5b6000613c2384828501613aef565b91505092915050565b613c3581613a90565b82525050565b6000602082019050613c506000830184613c2c565b92915050565b6000819050919050565b613c6981613c56565b8114613c7457600080fd5b50565b600081359050613c8681613c60565b92915050565b600060208284031215613ca257613ca1613952565b5b6000613cb084828501613c77565b91505092915050565b600080600060608486031215613cd257613cd1613952565b5b6000613ce086828701613ab9565b9350506020613cf186828701613ab9565b9250506040613d0286828701613aef565b9150509250925092565b613d1581613ace565b82525050565b6000602082019050613d306000830184613d0c565b92915050565b6000819050919050565b6000613d5b613d56613d5184613a70565b613d36565b613a70565b9050919050565b6000613d6d82613d40565b9050919050565b6000613d7f82613d62565b9050919050565b613d8f81613d74565b82525050565b6000602082019050613daa6000830184613d86565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613df282613b93565b810181811067ffffffffffffffff82111715613e1157613e10613dba565b5b80604052505050565b6000613e24613948565b9050613e308282613de9565b919050565b600067ffffffffffffffff821115613e5057613e4f613dba565b5b613e5982613b93565b9050602081019050919050565b82818337600083830152505050565b6000613e88613e8384613e35565b613e1a565b905082815260208101848484011115613ea457613ea3613db5565b5b613eaf848285613e66565b509392505050565b600082601f830112613ecc57613ecb613db0565b5b8135613edc848260208601613e75565b91505092915050565b600060208284031215613efb57613efa613952565b5b600082013567ffffffffffffffff811115613f1957613f18613957565b5b613f2584828501613eb7565b91505092915050565b613f3781613c56565b82525050565b6000602082019050613f526000830184613f2e565b92915050565b600060208284031215613f6e57613f6d613952565b5b6000613f7c84828501613ab9565b91505092915050565b60008060408385031215613f9c57613f9b613952565b5b6000613faa85828601613ab9565b9250506020613fbb85828601613a2e565b9150509250929050565b600067ffffffffffffffff821115613fe057613fdf613dba565b5b613fe982613b93565b9050602081019050919050565b600061400961400484613fc5565b613e1a565b90508281526020810184848401111561402557614024613db5565b5b614030848285613e66565b509392505050565b600082601f83011261404d5761404c613db0565b5b813561405d848260208601613ff6565b91505092915050565b600080600080608085870312156140805761407f613952565b5b600061408e87828801613ab9565b945050602061409f87828801613ab9565b93505060406140b087828801613aef565b925050606085013567ffffffffffffffff8111156140d1576140d0613957565b5b6140dd87828801614038565b91505092959194509250565b60008060408385031215614100576140ff613952565b5b600061410e85828601613ab9565b925050602061411f85828601613ab9565b9150509250929050565b600067ffffffffffffffff82111561414457614143613dba565b5b602082029050602081019050919050565b600080fd5b600061416d61416884614129565b613e1a565b905080838252602082019050602084028301858111156141905761418f614155565b5b835b818110156141b957806141a58882613c77565b845260208401935050602081019050614192565b5050509392505050565b600082601f8301126141d8576141d7613db0565b5b81356141e884826020860161415a565b91505092915050565b60008060006060848603121561420a57614209613952565b5b600084013567ffffffffffffffff81111561422857614227613957565b5b614234868287016141c3565b935050602061424586828701613a2e565b925050604061425686828701613a2e565b9150509250925092565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b6000614296602083613b4f565b91506142a182614260565b602082019050919050565b600060208201905081810360008301526142c581614289565b9050919050565b7f507572636861736520776f756c6420657863656564206d61782067697665617760008201527f617920537570706c790000000000000000000000000000000000000000000000602082015250565b6000614328602983613b4f565b9150614333826142cc565b604082019050919050565b600060208201905081810360008301526143578161431b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061439882613ace565b91506143a383613ace565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143d8576143d761435e565b5b828201905092915050565b7f416c6c206974656d7320736f6c64210000000000000000000000000000000000600082015250565b6000614419600f83613b4f565b9150614424826143e3565b602082019050919050565b600060208201905081810360008301526144488161440c565b9050919050565b600061445a82613ace565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361448c5761448b61435e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144de57607f821691505b6020821081036144f1576144f0614497565b5b50919050565b600081905092915050565b50565b60006145126000836144f7565b915061451d82614502565b600082019050919050565b600061453382614505565b9150819050919050565b7f4661696c656420746f2077697468647261770000000000000000000000000000600082015250565b6000614573601283613b4f565b915061457e8261453d565b602082019050919050565b600060208201905081810360008301526145a281614566565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006145df601883613b4f565b91506145ea826145a9565b602082019050919050565b6000602082019050818103600083015261460e816145d2565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614671602983613b4f565b915061467c82614615565b604082019050919050565b600060208201905081810360008301526146a081614664565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614703602f83613b4f565b915061470e826146a7565b604082019050919050565b60006020820190508181036000830152614732816146f6565b9050919050565b600081905092915050565b600061474f82613b44565b6147598185614739565b9350614769818560208601613b60565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006147ab600583614739565b91506147b682614775565b600582019050919050565b60006147cd8285614744565b91506147d98284614744565b91506147e48261479e565b91508190509392505050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b6000614826601283613b4f565b9150614831826147f0565b602082019050919050565b6000602082019050818103600083015261485581614819565b9050919050565b7f5075626c69632053616c65206973206e6f742061637469766500000000000000600082015250565b6000614892601983613b4f565b915061489d8261485c565b602082019050919050565b600060208201905081810360008301526148c181614885565b9050919050565b7f5468697320697320666f72207075626c6963206f6e6c79000000000000000000600082015250565b60006148fe601783613b4f565b9150614909826148c8565b602082019050919050565b6000602082019050818103600083015261492d816148f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061496e82613ace565b915061497983613ace565b92508261498957614988614934565b5b828206905092915050565b600061499f82613ace565b91506149aa83613ace565b9250826149ba576149b9614934565b5b828204905092915050565b7f53656e6420736f6d652076616c756520657175616c20746f206d756c7469706c60008201527f65206f66207075626c6963207072696365000000000000000000000000000000602082015250565b6000614a21603183613b4f565b9150614a2c826149c5565b604082019050919050565b60006020820190508181036000830152614a5081614a14565b9050919050565b7f53656e64206120646976697369626c6520616d6f756e74206f66207072696365600082015250565b6000614a8d602083613b4f565b9150614a9882614a57565b602082019050919050565b60006020820190508181036000830152614abc81614a80565b9050919050565b7f507572636861736520776f756c6420657863656564206d6178207075626c696360008201527f20737570706c7921000000000000000000000000000000000000000000000000602082015250565b6000614b1f602883613b4f565b9150614b2a82614ac3565b604082019050919050565b60006020820190508181036000830152614b4e81614b12565b9050919050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b6000614b8b601283613b4f565b9150614b9682614b55565b602082019050919050565b60006020820190508181036000830152614bba81614b7e565b9050919050565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b6000614bf7601283613b4f565b9150614c0282614bc1565b602082019050919050565b60006020820190508181036000830152614c2681614bea565b9050919050565b7f596f752063616e27742062652070617274206f6620626f7468206c697374732060008201527f647572696e67206d696e742e204f722065697468657220796f7520646f206e6f60208201527f742062656c6f6e67206865726500000000000000000000000000000000000000604082015250565b6000614caf604d83613b4f565b9150614cba82614c2d565b606082019050919050565b60006020820190508181036000830152614cde81614ca2565b9050919050565b7f596f7520646f206e6f742062656c6f6e6720746f204f47206472756e6b6c697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d41602183613b4f565b9150614d4c82614ce5565b604082019050919050565b60006020820190508181036000830152614d7081614d34565b9050919050565b7f4f47204472756e6b206d696e742069732066726565206f6620636f7374000000600082015250565b6000614dad601d83613b4f565b9150614db882614d77565b602082019050919050565b60006020820190508181036000830152614ddc81614da0565b9050919050565b7f596f752077696c6c2065786365656420796f7572206c696d697420706572207760008201527f616c6c657420666f72204f47204472756e6b6c69737400000000000000000000602082015250565b6000614e3f603683613b4f565b9150614e4a82614de3565b604082019050919050565b60006020820190508181036000830152614e6e81614e32565b9050919050565b7f596f7520646f206e6f742062656c6f6e6720746f206472756e6b6c6973740000600082015250565b6000614eab601e83613b4f565b9150614eb682614e75565b602082019050919050565b60006020820190508181036000830152614eda81614e9e565b9050919050565b7f53656e6420736f6d652076616c756520696e206d756c7469706c6573206f662060008201527f6472756e6b6c69737420636f7374000000000000000000000000000000000000602082015250565b6000614f3d602e83613b4f565b9150614f4882614ee1565b604082019050919050565b60006020820190508181036000830152614f6c81614f30565b9050919050565b7f596f752077696c6c2065786365656420796f7572206c696d697420706572207760008201527f616c6c657420666f72204472756e6b6c69737400000000000000000000000000602082015250565b6000614fcf603383613b4f565b9150614fda82614f73565b604082019050919050565b60006020820190508181036000830152614ffe81614fc2565b9050919050565b7f507572636861736520776f756c6420657863656564206d61782070726573616c60008201527f6520737570706c79210000000000000000000000000000000000000000000000602082015250565b6000615061602983613b4f565b915061506c82615005565b604082019050919050565b6000602082019050818103600083015261509081615054565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150f3602683613b4f565b91506150fe82615097565b604082019050919050565b60006020820190508181036000830152615122816150e6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061515f602083613b4f565b915061516a82615129565b602082019050919050565b6000602082019050818103600083015261518e81615152565b9050919050565b60006040820190506151aa6000830185613c2c565b6151b76020830184613c2c565b9392505050565b6000815190506151cd81613a17565b92915050565b6000602082840312156151e9576151e8613952565b5b60006151f7848285016151be565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061525c602183613b4f565b915061526782615200565b604082019050919050565b6000602082019050818103600083015261528b8161524f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006152ee603d83613b4f565b91506152f982615292565b604082019050919050565b6000602082019050818103600083015261531d816152e1565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000615380602d83613b4f565b915061538b82615324565b604082019050919050565b600060208201905081810360008301526153af81615373565b9050919050565b60008160601b9050919050565b60006153ce826153b6565b9050919050565b60006153e0826153c3565b9050919050565b6153f86153f382613a90565b6153d5565b82525050565b600061540a82846153e7565b60148201915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615475603283613b4f565b915061548082615419565b604082019050919050565b600060208201905081810360008301526154a481615468565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615507602583613b4f565b9150615512826154ab565b604082019050919050565b60006020820190508181036000830152615536816154fa565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615599602483613b4f565b91506155a48261553d565b604082019050919050565b600060208201905081810360008301526155c88161558c565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615605601983613b4f565b9150615610826155cf565b602082019050919050565b60006020820190508181036000830152615634816155f8565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615671602083613b4f565b915061567c8261563b565b602082019050919050565b600060208201905081810360008301526156a081615664565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006156dd601c83613b4f565b91506156e8826156a7565b602082019050919050565b6000602082019050818103600083015261570c816156d0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061573a82615713565b615744818561571e565b9350615754818560208601613b60565b61575d81613b93565b840191505092915050565b600060808201905061577d6000830187613c2c565b61578a6020830186613c2c565b6157976040830185613d0c565b81810360608301526157a9818461572f565b905095945050505050565b6000815190506157c381613988565b92915050565b6000602082840312156157df576157de613952565b5b60006157ed848285016157b4565b91505092915050565b600061580182613ace565b915061580c83613ace565b92508282101561581f5761581e61435e565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122002ccc38d41397e3ad08c3d72a89dd3f5a64fc9f47c74d6cac3f3437e2b5487ad64736f6c634300080d0033

Deployed Bytecode Sourcemap

91584:11383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57691:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101269:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97433:694;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58619:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60131:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92757:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102219:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101618:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102384:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;100660:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92105:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92013:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91910:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101827:172;;;;;;;;;;;;;:::i;:::-;;92197:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92488:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99782:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88166:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102555:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91859:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92792:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92448:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101074:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92898:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92724:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92659:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58329:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92058:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91725:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101421:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58060:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36042:103;;;;;;;;;;;;;:::i;:::-;;100482:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92235:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99937:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35394:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100297:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99641:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58788:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102035:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92275:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100863:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102734:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92939:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92355:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98856:719;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92151:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96219:1184;;;:::i;:::-;;92599:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60600:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92399:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92314:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93417:2732;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;100101:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36300:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57691:305;57793:4;57845:25;57830:40;;;:11;:40;;;;:105;;;;57902:33;57887:48;;;:11;:48;;;;57830:105;:158;;;;57952:36;57976:11;57952:23;:36::i;:::-;57830:158;57810:178;;57691:305;;;:::o;101269:79::-;35280:13;:11;:13::i;:::-;101334:6:::1;101325;;:15;;;;;;;;;;;;;;;;;;101269:79:::0;:::o;97433:694::-;35280:13;:11;:13::i;:::-;97595:16:::1;;97572:19;97589:1;97572:12;;:16;;:19;;;;:::i;:::-;:39;;97550:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;97730:18;;97704:22;97724:1;97704:15;;:19;;:22;;;;:::i;:::-;:44;;97682:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;97835:9;97830:290;97854:11;97850:1;:15;97830:290;;;97887:17;97922:1;97907:12;;:16;;;;:::i;:::-;97887:36;;97961:16;;97946:12;;:31;97938:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;98012:35;98022:13;98037:9;98012;:35::i;:::-;98062:12;;:14;;;;;;;;;:::i;:::-;;;;;;98091:15;;:17;;;;;;;;;:::i;:::-;;;;;;97872:248;97867:3;;;;;:::i;:::-;;;;97830:290;;;;97433:694:::0;;:::o;58619:100::-;58673:13;58706:5;58699:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58619:100;:::o;60131:171::-;60207:7;60227:23;60242:7;60227:14;:23::i;:::-;60270:15;:24;60286:7;60270:24;;;;;;;;;;;;;;;;;;;;;60263:31;;60131:171;;;:::o;92757:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;102219:157::-;102315:8;89948:30;89969:8;89948:20;:30::i;:::-;102336:32:::1;102350:8;102360:7;102336:13;:32::i;:::-;102219:157:::0;;;:::o;101618:128::-;35280:13;:11;:13::i;:::-;101723:15:::1;101699:21;:39;;;;101618:128:::0;:::o;102384:163::-;102485:4;89682:10;89674:18;;:4;:18;;;89670:83;;89709:32;89730:10;89709:20;:32::i;:::-;89670:83;102502:37:::1;102521:4;102527:2;102531:7;102502:18;:37::i;:::-;102384:163:::0;;;;:::o;100660:126::-;35280:13;:11;:13::i;:::-;100764:14:::1;100743:18;:35;;;;100660:126:::0;:::o;92105:39::-;;;;:::o;92013:38::-;;;;:::o;91910:43::-;;;;:::o;101827:172::-;35280:13;:11;:13::i;:::-;101878:12:::1;101896:7;:5;:7::i;:::-;:12;;101916:21;101896:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101877:65;;;101961:7;101953:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;101866:133;101827:172::o:0;92197:31::-;;;;:::o;92488:32::-;;;;;;;;;;;;;:::o;99782:97::-;35280:13;:11;:13::i;:::-;99865:6:::1;99849:13;;:22;;;;;;;;;;;;;;;;;;99782:97:::0;:::o;88166:143::-;80620:42;88166:143;:::o;102555:171::-;102660:4;89682:10;89674:18;;:4;:18;;;89670:83;;89709:32;89730:10;89709:20;:32::i;:::-;89670:83;102677:41:::1;102700:4;102706:2;102710:7;102677:22;:41::i;:::-;102555:171:::0;;;;:::o;91859:44::-;;;;:::o;92792:28::-;;;;;;;;;;;;;:::o;92448:33::-;;;;;;;;;;;;;:::o;101074:104::-;35280:13;:11;:13::i;:::-;101159:11:::1;101149:7;:21;;;;;;;;;;;;:::i;:::-;;101074:104:::0;:::o;92898:34::-;;;;:::o;92724:26::-;;;;;;;;;;;;;:::o;92659:56::-;;;;;;;;;;;;;;;;;:::o;58329:223::-;58401:7;58421:13;58437:17;58446:7;58437:8;:17::i;:::-;58421:33;;58490:1;58473:19;;:5;:19;;;58465:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;58539:5;58532:12;;;58329:223;;;:::o;92058:40::-;;;;:::o;91725:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;101421:124::-;35280:13;:11;:13::i;:::-;101522:15:::1;101500:19;:37;;;;101421:124:::0;:::o;58060:207::-;58132:7;58177:1;58160:19;;:5;:19;;;58152:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58243:9;:16;58253:5;58243:16;;;;;;;;;;;;;;;;58236:23;;58060:207;;;:::o;36042:103::-;35280:13;:11;:13::i;:::-;36107:30:::1;36134:1;36107:18;:30::i;:::-;36042:103::o:0;100482:104::-;35280:13;:11;:13::i;:::-;100570:8:::1;100554:13;:24;;;;100482:104:::0;:::o;92235:33::-;;;;:::o;99937:95::-;35280:13;:11;:13::i;:::-;100018:6:::1;100003:12;;:21;;;;;;;;;;;;;;;;;;99937:95:::0;:::o;35394:87::-;35440:7;35467:6;;;;;;;;;;;35460:13;;35394:87;:::o;100297:106::-;35280:13;:11;:13::i;:::-;100387:8:::1;100370:14;:25;;;;100297:106:::0;:::o;99641:82::-;35280:13;:11;:13::i;:::-;99709:6:::1;99698:8;;:17;;;;;;;;;;;;;;;;;;99641:82:::0;:::o;58788:104::-;58844:13;58877:7;58870:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58788:104;:::o;102035:176::-;102139:8;89948:30;89969:8;89948:20;:30::i;:::-;102160:43:::1;102184:8;102194;102160:23;:43::i;:::-;102035:176:::0;;;:::o;92275:32::-;;;;:::o;100863:132::-;35280:13;:11;:13::i;:::-;100973:14:::1;100949:21;:38;;;;100863:132:::0;:::o;102734:228::-;102885:4;89682:10;89674:18;;:4;:18;;;89670:83;;89709:32;89730:10;89709:20;:32::i;:::-;89670:83;102907:47:::1;102930:4;102936:2;102940:7;102949:4;102907:22;:47::i;:::-;102734:228:::0;;;;;:::o;92939:36::-;;;;:::o;92355:37::-;;;;:::o;98856:719::-;98974:13;99027:16;99035:7;99027;:16::i;:::-;99005:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;99147:5;99135:17;;:8;;;;;;;;;;;:17;;;99131:71;;99176:14;99169:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99131:71;99214:28;99245:10;:8;:10::i;:::-;99214:41;;99317:1;99292:14;99286:28;:32;:281;;;;;;;;;;;;;;;;;99410:14;99451:18;:7;:16;:18::i;:::-;99367:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;99286:281;99266:301;;;98856:719;;;;:::o;92151:39::-;;;;:::o;96219:1184::-;96280:6;;;;;;;;;;;96279:7;96271:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;96328:12;;;;;;;;;;;96320:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;96403:7;:5;:7::i;:::-;96389:21;;:10;:21;;;96381:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;96449:17;96481:14;;96469:9;:26;;;;:::i;:::-;96449:46;;96506:19;96540:14;;96528:9;:26;;;;:::i;:::-;96506:48;;96599:1;96587:9;:13;96565:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;96709:1;96696:9;:14;96688:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;96813:16;;96780:29;96797:11;96780:12;;:16;;:29;;;;:::i;:::-;:49;;96758:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;96956:17;;96922:30;96940:11;96922:13;;:17;;:30;;;;:::i;:::-;:51;;96900:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;97059:9;97054:342;97078:11;97074:1;:15;97054:342;;;97111:17;97146:1;97131:12;;:16;;;;:::i;:::-;97111:36;;97185:16;;97170:12;;:31;97162:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;97236:32;97246:10;97258:9;97236;:32::i;:::-;97315:9;97303:10;97288:37;;;;;;;;;;;;97340:12;;:14;;;;;;;;;:::i;:::-;;;;;;97369:13;;:15;;;;;;;;;:::i;:::-;;;;;;97096:300;97091:3;;;;;:::i;:::-;;;;97054:342;;;;96260:1143;;96219:1184::o;92599:53::-;;;;;;;;;;;;;;;;;:::o;60600:164::-;60697:4;60721:18;:25;60740:5;60721:25;;;;;;;;;;;;;;;:35;60747:8;60721:35;;;;;;;;;;;;;;;;;;;;;;;;;60714:42;;60600:164;;;;:::o;92399:40::-;;;;:::o;92314:34::-;;;;:::o;93417:2732::-;93561:6;;;;;;;;;;;93560:7;93552:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;93609:13;;;;;;;;;;;93601:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;93679:9;:21;;;;;93693:7;93692:8;93679:21;93678:50;;;;93706:7;:21;;;;;93718:9;93717:10;93706:21;93678:50;93656:177;;;;;;;;;;;;:::i;:::-;;;;;;;;;93844:19;93878:9;:21;;;;;93892:7;93891:8;93878:21;93874:1235;;;93942:33;93957:5;93964:10;93942:14;:33::i;:::-;93916:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;94080:1;94067:9;:14;94059:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;94144:1;94130:15;;94258:18;;94186:47;94221:11;94186:18;:30;94205:10;94186:30;;;;;;;;;;;;;;;;:34;;:47;;;;:::i;:::-;:90;;94160:206;;;;;;;;;;;;:::i;:::-;;;;;;;;;93874:1235;;;94388:7;:21;;;;;94400:9;94399:10;94388:21;94384:725;;;94452:31;94465:5;94472:10;94452:12;:31::i;:::-;94426:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;94602:1;94590:9;:13;94564:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;94700:17;94732:13;;94720:9;:25;;;;:::i;:::-;94700:45;;94781:1;94768:9;:14;94760:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;94860:13;;94848:9;:25;;;;:::i;:::-;94834:39;;94989:21;;94914:50;94952:11;94914:21;:33;94936:10;94914:33;;;;;;;;;;;;;;;;:37;;:50;;;;:::i;:::-;:96;;94888:209;;;;;;;;;;;;:::i;:::-;;;;;;;;;94411:698;94384:725;93874:1235;95176:16;;95143:29;95160:11;95143:12;;:16;;:29;;;;:::i;:::-;:49;;95121:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;95320:18;;95285:31;95304:11;95285:14;;:18;;:31;;;;:::i;:::-;:53;;95263:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;95438:7;:5;:7::i;:::-;95424:21;;:10;:21;;;95420:505;;95467:9;95462:452;95486:11;95482:1;:15;95462:452;;;95523:17;95558:1;95543:12;;:16;;;;:::i;:::-;95523:36;;95601:16;;95586:12;;:31;95578:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;95681:18;;95664:14;;:35;95656:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;95738:32;95748:10;95760:9;95738;:32::i;:::-;95820:9;95808:10;95794:36;;;;;;;;;;;;95849:12;;:14;;;;;;;;;:::i;:::-;;;;;;95882;;:16;;;;;;;;;:::i;:::-;;;;;;95504:410;95499:3;;;;;:::i;:::-;;;;95462:452;;;;95420:505;95939:9;:21;;;;;95953:7;95952:8;95939:21;95935:207;;;96011:11;95977:18;:30;95996:10;95977:30;;;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;95935:207;;;96044:7;:21;;;;;96056:9;96055:10;96044:21;96040:102;;;96119:11;96082:21;:33;96104:10;96082:33;;;;;;;;;;;;;;;;:48;;;;;;;:::i;:::-;;;;;;;;96040:102;95935:207;93541:2608;93417:2732;;;:::o;100101:116::-;100194:15;100177:14;:32;;;;;;;;;;;;:::i;:::-;;100101:116;:::o;36300:201::-;35280:13;:11;:13::i;:::-;36409:1:::1;36389:22;;:8;:22;;::::0;36381:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36465:28;36484:8;36465:18;:28::i;:::-;36300:201:::0;:::o;49123:157::-;49208:4;49247:25;49232:40;;;:11;:40;;;;49225:47;;49123:157;;;:::o;35559:132::-;35634:12;:10;:12::i;:::-;35623:23;;:7;:5;:7::i;:::-;:23;;;35615:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35559:132::o;13902:98::-;13960:7;13991:1;13987;:5;;;;:::i;:::-;13980:12;;13902:98;;;;:::o;64454:110::-;64530:26;64540:2;64544:7;64530:26;;;;;;;;;;;;:9;:26::i;:::-;64454:110;;:::o;69950:135::-;70032:16;70040:7;70032;:16::i;:::-;70024:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;69950:135;:::o;90091:647::-;90330:1;80620:42;90282:45;;;:49;90278:453;;;80620:42;90581;;;90632:4;90639:8;90581:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;90576:144;;90695:8;90676:28;;;;;;;;;;;:::i;:::-;;;;;;;;90576:144;90278:453;90091:647;:::o;59649:416::-;59730:13;59746:23;59761:7;59746:14;:23::i;:::-;59730:39;;59794:5;59788:11;;:2;:11;;;59780:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;59888:5;59872:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;59897:37;59914:5;59921:12;:10;:12::i;:::-;59897:16;:37::i;:::-;59872:62;59850:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;60036:21;60045:2;60049:7;60036:8;:21::i;:::-;59719:346;59649:416;;:::o;60831:335::-;61026:41;61045:12;:10;:12::i;:::-;61059:7;61026:18;:41::i;:::-;61018:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;61130:28;61140:4;61146:2;61150:7;61130:9;:28::i;:::-;60831:335;;;:::o;61237:185::-;61375:39;61392:4;61398:2;61402:7;61375:39;;;;;;;;;;;;:16;:39::i;:::-;61237:185;;;:::o;63123:117::-;63189:7;63216;:16;63224:7;63216:16;;;;;;;;;;;;;;;;;;;;;63209:23;;63123:117;;;:::o;36661:191::-;36735:16;36754:6;;;;;;;;;;;36735:25;;36780:8;36771:6;;:17;;;;;;;;;;;;;;;;;;36835:8;36804:40;;36825:8;36804:40;;;;;;;;;;;;36724:128;36661:191;:::o;60374:155::-;60469:52;60488:12;:10;:12::i;:::-;60502:8;60512;60469:18;:52::i;:::-;60374:155;;:::o;61493:322::-;61667:41;61686:12;:10;:12::i;:::-;61700:7;61667:18;:41::i;:::-;61659:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;61769:38;61783:4;61789:2;61793:7;61802:4;61769:13;:38::i;:::-;61493:322;;;;:::o;63553:128::-;63618:4;63671:1;63642:31;;:17;63651:7;63642:8;:17::i;:::-;:31;;;;63635:38;;63553:128;;;:::o;93242:108::-;93302:13;93335:7;93328:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93242:108;:::o;31372:716::-;31428:13;31479:14;31516:1;31496:17;31507:5;31496:10;:17::i;:::-;:21;31479:38;;31532:20;31566:6;31555:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31532:41;;31588:11;31717:6;31713:2;31709:15;31701:6;31697:28;31690:35;;31754:288;31761:4;31754:288;;;31786:5;;;;;;;;31928:8;31923:2;31916:5;31912:14;31907:30;31902:3;31894:44;31984:2;31975:11;;;;;;:::i;:::-;;;;;32018:1;32009:5;:10;31754:288;32005:21;31754:288;32063:6;32056:13;;;;;31372:716;;;:::o;98528:266::-;98642:4;98664:12;98706:6;98689:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;98679:35;;;;;;98664:50;;98732:54;98751:5;98758:21;;98781:4;98732:18;:54::i;:::-;98725:61;;;98528:266;;;;:::o;98195:262::-;98307:4;98329:12;98371:6;98354:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;98344:35;;;;;;98329:50;;98397:52;98416:5;98423:19;;98444:4;98397:18;:52::i;:::-;98390:59;;;98195:262;;;;:::o;33945:98::-;33998:7;34025:10;34018:17;;33945:98;:::o;64791:319::-;64920:18;64926:2;64930:7;64920:5;:18::i;:::-;64971:53;65002:1;65006:2;65010:7;65019:4;64971:22;:53::i;:::-;64949:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;64791:319;;;:::o;69229:174::-;69331:2;69304:15;:24;69320:7;69304:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;69387:7;69383:2;69349:46;;69358:23;69373:7;69358:14;:23::i;:::-;69349:46;;;;;;;;;;;;69229:174;;:::o;63848:264::-;63941:4;63958:13;63974:23;63989:7;63974:14;:23::i;:::-;63958:39;;64027:5;64016:16;;:7;:16;;;:52;;;;64036:32;64053:5;64060:7;64036:16;:32::i;:::-;64016:52;:87;;;;64096:7;64072:31;;:20;64084:7;64072:11;:20::i;:::-;:31;;;64016:87;64008:96;;;63848:264;;;;:::o;67847:1263::-;68006:4;67979:31;;:23;67994:7;67979:14;:23::i;:::-;:31;;;67971:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;68085:1;68071:16;;:2;:16;;;68063:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;68141:42;68162:4;68168:2;68172:7;68181:1;68141:20;:42::i;:::-;68313:4;68286:31;;:23;68301:7;68286:14;:23::i;:::-;:31;;;68278:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;68431:15;:24;68447:7;68431:24;;;;;;;;;;;;68424:31;;;;;;;;;;;68926:1;68907:9;:15;68917:4;68907:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;68959:1;68942:9;:13;68952:2;68942:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;69001:2;68982:7;:16;68990:7;68982:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;69040:7;69036:2;69021:27;;69030:4;69021:27;;;;;;;;;;;;69061:41;69081:4;69087:2;69091:7;69100:1;69061:19;:41::i;:::-;67847:1263;;;:::o;69546:315::-;69701:8;69692:17;;:5;:17;;;69684:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;69788:8;69750:18;:25;69769:5;69750:25;;;;;;;;;;;;;;;:35;69776:8;69750:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;69834:8;69812:41;;69827:5;69812:41;;;69844:8;69812:41;;;;;;:::i;:::-;;;;;;;;69546:315;;;:::o;62696:313::-;62852:28;62862:4;62868:2;62872:7;62852:9;:28::i;:::-;62899:47;62922:4;62928:2;62932:7;62941:4;62899:22;:47::i;:::-;62891:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;62696:313;;;;:::o;28238:922::-;28291:7;28311:14;28328:1;28311:18;;28378:6;28369:5;:15;28365:102;;28414:6;28405:15;;;;;;:::i;:::-;;;;;28449:2;28439:12;;;;28365:102;28494:6;28485:5;:15;28481:102;;28530:6;28521:15;;;;;;:::i;:::-;;;;;28565:2;28555:12;;;;28481:102;28610:6;28601:5;:15;28597:102;;28646:6;28637:15;;;;;;:::i;:::-;;;;;28681:2;28671:12;;;;28597:102;28726:5;28717;:14;28713:99;;28761:5;28752:14;;;;;;:::i;:::-;;;;;28795:1;28785:11;;;;28713:99;28839:5;28830;:14;28826:99;;28874:5;28865:14;;;;;;:::i;:::-;;;;;28908:1;28898:11;;;;28826:99;28952:5;28943;:14;28939:99;;28987:5;28978:14;;;;;;:::i;:::-;;;;;29021:1;29011:11;;;;28939:99;29065:5;29056;:14;29052:66;;29101:1;29091:11;;;;29052:66;29146:6;29139:13;;;28238:922;;;:::o;2687:190::-;2812:4;2865;2836:25;2849:5;2856:4;2836:12;:25::i;:::-;:33;2829:40;;2687:190;;;;;:::o;65446:942::-;65540:1;65526:16;;:2;:16;;;65518:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;65599:16;65607:7;65599;:16::i;:::-;65598:17;65590:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;65661:48;65690:1;65694:2;65698:7;65707:1;65661:20;:48::i;:::-;65808:16;65816:7;65808;:16::i;:::-;65807:17;65799:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;66223:1;66206:9;:13;66216:2;66206:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;66267:2;66248:7;:16;66256:7;66248:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;66312:7;66308:2;66287:33;;66304:1;66287:33;;;;;;;;;;;;66333:47;66361:1;66365:2;66369:7;66378:1;66333:19;:47::i;:::-;65446:942;;:::o;70649:853::-;70803:4;70824:15;:2;:13;;;:15::i;:::-;70820:675;;;70876:2;70860:36;;;70897:12;:10;:12::i;:::-;70911:4;70917:7;70926:4;70860:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;70856:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71118:1;71101:6;:13;:18;71097:328;;71144:60;;;;;;;;;;:::i;:::-;;;;;;;;71097:328;71375:6;71369:13;71360:6;71356:2;71352:15;71345:38;70856:584;70992:41;;;70982:51;;;:6;:51;;;;70975:58;;;;;70820:675;71479:4;71472:11;;70649:853;;;;;;;:::o;72234:410::-;72424:1;72412:9;:13;72408:229;;;72462:1;72446:18;;:4;:18;;;72442:87;;72504:9;72485;:15;72495:4;72485:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;72442:87;72561:1;72547:16;;:2;:16;;;72543:83;;72601:9;72584;:13;72594:2;72584:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;72543:83;72408:229;72234:410;;;;:::o;73366:158::-;;;;;:::o;3554:296::-;3637:7;3657:20;3680:4;3657:27;;3700:9;3695:118;3719:5;:12;3715:1;:16;3695:118;;;3768:33;3778:12;3792:5;3798:1;3792:8;;;;;;;;:::i;:::-;;;;;;;;3768:9;:33::i;:::-;3753:48;;3733:3;;;;;:::i;:::-;;;;3695:118;;;;3830:12;3823:19;;;3554:296;;;;:::o;38092:326::-;38152:4;38409:1;38387:7;:19;;;:23;38380:30;;38092:326;;;:::o;10594:149::-;10657:7;10688:1;10684;:5;:51;;10715:20;10730:1;10733;10715:14;:20::i;:::-;10684:51;;;10692:20;10707:1;10710;10692:14;:20::i;:::-;10684:51;10677:58;;10594:149;;;;:::o;10751:268::-;10819:13;10926:1;10920:4;10913:15;10955:1;10949:4;10942:15;10996:4;10990;10980:21;10971:30;;10751:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:126::-;2145:7;2185:42;2178:5;2174:54;2163:65;;2108:126;;;:::o;2240:96::-;2277:7;2306:24;2324:5;2306:24;:::i;:::-;2295:35;;2240:96;;;:::o;2342:122::-;2415:24;2433:5;2415:24;:::i;:::-;2408:5;2405:35;2395:63;;2454:1;2451;2444:12;2395:63;2342:122;:::o;2470:139::-;2516:5;2554:6;2541:20;2532:29;;2570:33;2597:5;2570:33;:::i;:::-;2470:139;;;;:::o;2615:77::-;2652:7;2681:5;2670:16;;2615:77;;;:::o;2698:122::-;2771:24;2789:5;2771:24;:::i;:::-;2764:5;2761:35;2751:63;;2810:1;2807;2800:12;2751:63;2698:122;:::o;2826:139::-;2872:5;2910:6;2897:20;2888:29;;2926:33;2953:5;2926:33;:::i;:::-;2826:139;;;;:::o;2971:474::-;3039:6;3047;3096:2;3084:9;3075:7;3071:23;3067:32;3064:119;;;3102:79;;:::i;:::-;3064:119;3222:1;3247:53;3292:7;3283:6;3272:9;3268:22;3247:53;:::i;:::-;3237:63;;3193:117;3349:2;3375:53;3420:7;3411:6;3400:9;3396:22;3375:53;:::i;:::-;3365:63;;3320:118;2971:474;;;;;:::o;3451:99::-;3503:6;3537:5;3531:12;3521:22;;3451:99;;;:::o;3556:169::-;3640:11;3674:6;3669:3;3662:19;3714:4;3709:3;3705:14;3690:29;;3556:169;;;;:::o;3731:307::-;3799:1;3809:113;3823:6;3820:1;3817:13;3809:113;;;3908:1;3903:3;3899:11;3893:18;3889:1;3884:3;3880:11;3873:39;3845:2;3842:1;3838:10;3833:15;;3809:113;;;3940:6;3937:1;3934:13;3931:101;;;4020:1;4011:6;4006:3;4002:16;3995:27;3931:101;3780:258;3731:307;;;:::o;4044:102::-;4085:6;4136:2;4132:7;4127:2;4120:5;4116:14;4112:28;4102:38;;4044:102;;;:::o;4152:364::-;4240:3;4268:39;4301:5;4268:39;:::i;:::-;4323:71;4387:6;4382:3;4323:71;:::i;:::-;4316:78;;4403:52;4448:6;4443:3;4436:4;4429:5;4425:16;4403:52;:::i;:::-;4480:29;4502:6;4480:29;:::i;:::-;4475:3;4471:39;4464:46;;4244:272;4152:364;;;;:::o;4522:313::-;4635:4;4673:2;4662:9;4658:18;4650:26;;4722:9;4716:4;4712:20;4708:1;4697:9;4693:17;4686:47;4750:78;4823:4;4814:6;4750:78;:::i;:::-;4742:86;;4522:313;;;;:::o;4841:329::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:53;5145:7;5136:6;5125:9;5121:22;5100:53;:::i;:::-;5090:63;;5046:117;4841:329;;;;:::o;5176:118::-;5263:24;5281:5;5263:24;:::i;:::-;5258:3;5251:37;5176:118;;:::o;5300:222::-;5393:4;5431:2;5420:9;5416:18;5408:26;;5444:71;5512:1;5501:9;5497:17;5488:6;5444:71;:::i;:::-;5300:222;;;;:::o;5528:77::-;5565:7;5594:5;5583:16;;5528:77;;;:::o;5611:122::-;5684:24;5702:5;5684:24;:::i;:::-;5677:5;5674:35;5664:63;;5723:1;5720;5713:12;5664:63;5611:122;:::o;5739:139::-;5785:5;5823:6;5810:20;5801:29;;5839:33;5866:5;5839:33;:::i;:::-;5739:139;;;;:::o;5884:329::-;5943:6;5992:2;5980:9;5971:7;5967:23;5963:32;5960:119;;;5998:79;;:::i;:::-;5960:119;6118:1;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6089:117;5884:329;;;;:::o;6219:619::-;6296:6;6304;6312;6361:2;6349:9;6340:7;6336:23;6332:32;6329:119;;;6367:79;;:::i;:::-;6329:119;6487:1;6512:53;6557:7;6548:6;6537:9;6533:22;6512:53;:::i;:::-;6502:63;;6458:117;6614:2;6640:53;6685:7;6676:6;6665:9;6661:22;6640:53;:::i;:::-;6630:63;;6585:118;6742:2;6768:53;6813:7;6804:6;6793:9;6789:22;6768:53;:::i;:::-;6758:63;;6713:118;6219:619;;;;;:::o;6844:118::-;6931:24;6949:5;6931:24;:::i;:::-;6926:3;6919:37;6844:118;;:::o;6968:222::-;7061:4;7099:2;7088:9;7084:18;7076:26;;7112:71;7180:1;7169:9;7165:17;7156:6;7112:71;:::i;:::-;6968:222;;;;:::o;7196:60::-;7224:3;7245:5;7238:12;;7196:60;;;:::o;7262:142::-;7312:9;7345:53;7363:34;7372:24;7390:5;7372:24;:::i;:::-;7363:34;:::i;:::-;7345:53;:::i;:::-;7332:66;;7262:142;;;:::o;7410:126::-;7460:9;7493:37;7524:5;7493:37;:::i;:::-;7480:50;;7410:126;;;:::o;7542:158::-;7624:9;7657:37;7688:5;7657:37;:::i;:::-;7644:50;;7542:158;;;:::o;7706:195::-;7825:69;7888:5;7825:69;:::i;:::-;7820:3;7813:82;7706:195;;:::o;7907:286::-;8032:4;8070:2;8059:9;8055:18;8047:26;;8083:103;8183:1;8172:9;8168:17;8159:6;8083:103;:::i;:::-;7907:286;;;;:::o;8199:117::-;8308:1;8305;8298:12;8322:117;8431:1;8428;8421:12;8445:180;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:281;8714:27;8736:4;8714:27;:::i;:::-;8706:6;8702:40;8844:6;8832:10;8829:22;8808:18;8796:10;8793:34;8790:62;8787:88;;;8855:18;;:::i;:::-;8787:88;8895:10;8891:2;8884:22;8674:238;8631:281;;:::o;8918:129::-;8952:6;8979:20;;:::i;:::-;8969:30;;9008:33;9036:4;9028:6;9008:33;:::i;:::-;8918:129;;;:::o;9053:308::-;9115:4;9205:18;9197:6;9194:30;9191:56;;;9227:18;;:::i;:::-;9191:56;9265:29;9287:6;9265:29;:::i;:::-;9257:37;;9349:4;9343;9339:15;9331:23;;9053:308;;;:::o;9367:154::-;9451:6;9446:3;9441;9428:30;9513:1;9504:6;9499:3;9495:16;9488:27;9367:154;;;:::o;9527:412::-;9605:5;9630:66;9646:49;9688:6;9646:49;:::i;:::-;9630:66;:::i;:::-;9621:75;;9719:6;9712:5;9705:21;9757:4;9750:5;9746:16;9795:3;9786:6;9781:3;9777:16;9774:25;9771:112;;;9802:79;;:::i;:::-;9771:112;9892:41;9926:6;9921:3;9916;9892:41;:::i;:::-;9611:328;9527:412;;;;;:::o;9959:340::-;10015:5;10064:3;10057:4;10049:6;10045:17;10041:27;10031:122;;10072:79;;:::i;:::-;10031:122;10189:6;10176:20;10214:79;10289:3;10281:6;10274:4;10266:6;10262:17;10214:79;:::i;:::-;10205:88;;10021:278;9959:340;;;;:::o;10305:509::-;10374:6;10423:2;10411:9;10402:7;10398:23;10394:32;10391:119;;;10429:79;;:::i;:::-;10391:119;10577:1;10566:9;10562:17;10549:31;10607:18;10599:6;10596:30;10593:117;;;10629:79;;:::i;:::-;10593:117;10734:63;10789:7;10780:6;10769:9;10765:22;10734:63;:::i;:::-;10724:73;;10520:287;10305:509;;;;:::o;10820:118::-;10907:24;10925:5;10907:24;:::i;:::-;10902:3;10895:37;10820:118;;:::o;10944:222::-;11037:4;11075:2;11064:9;11060:18;11052:26;;11088:71;11156:1;11145:9;11141:17;11132:6;11088:71;:::i;:::-;10944:222;;;;:::o;11172:329::-;11231:6;11280:2;11268:9;11259:7;11255:23;11251:32;11248:119;;;11286:79;;:::i;:::-;11248:119;11406:1;11431:53;11476:7;11467:6;11456:9;11452:22;11431:53;:::i;:::-;11421:63;;11377:117;11172:329;;;;:::o;11507:468::-;11572:6;11580;11629:2;11617:9;11608:7;11604:23;11600:32;11597:119;;;11635:79;;:::i;:::-;11597:119;11755:1;11780:53;11825:7;11816:6;11805:9;11801:22;11780:53;:::i;:::-;11770:63;;11726:117;11882:2;11908:50;11950:7;11941:6;11930:9;11926:22;11908:50;:::i;:::-;11898:60;;11853:115;11507:468;;;;;:::o;11981:307::-;12042:4;12132:18;12124:6;12121:30;12118:56;;;12154:18;;:::i;:::-;12118:56;12192:29;12214:6;12192:29;:::i;:::-;12184:37;;12276:4;12270;12266:15;12258:23;;11981:307;;;:::o;12294:410::-;12371:5;12396:65;12412:48;12453:6;12412:48;:::i;:::-;12396:65;:::i;:::-;12387:74;;12484:6;12477:5;12470:21;12522:4;12515:5;12511:16;12560:3;12551:6;12546:3;12542:16;12539:25;12536:112;;;12567:79;;:::i;:::-;12536:112;12657:41;12691:6;12686:3;12681;12657:41;:::i;:::-;12377:327;12294:410;;;;;:::o;12723:338::-;12778:5;12827:3;12820:4;12812:6;12808:17;12804:27;12794:122;;12835:79;;:::i;:::-;12794:122;12952:6;12939:20;12977:78;13051:3;13043:6;13036:4;13028:6;13024:17;12977:78;:::i;:::-;12968:87;;12784:277;12723:338;;;;:::o;13067:943::-;13162:6;13170;13178;13186;13235:3;13223:9;13214:7;13210:23;13206:33;13203:120;;;13242:79;;:::i;:::-;13203:120;13362:1;13387:53;13432:7;13423:6;13412:9;13408:22;13387:53;:::i;:::-;13377:63;;13333:117;13489:2;13515:53;13560:7;13551:6;13540:9;13536:22;13515:53;:::i;:::-;13505:63;;13460:118;13617:2;13643:53;13688:7;13679:6;13668:9;13664:22;13643:53;:::i;:::-;13633:63;;13588:118;13773:2;13762:9;13758:18;13745:32;13804:18;13796:6;13793:30;13790:117;;;13826:79;;:::i;:::-;13790:117;13931:62;13985:7;13976:6;13965:9;13961:22;13931:62;:::i;:::-;13921:72;;13716:287;13067:943;;;;;;;:::o;14016:474::-;14084:6;14092;14141:2;14129:9;14120:7;14116:23;14112:32;14109:119;;;14147:79;;:::i;:::-;14109:119;14267:1;14292:53;14337:7;14328:6;14317:9;14313:22;14292:53;:::i;:::-;14282:63;;14238:117;14394:2;14420:53;14465:7;14456:6;14445:9;14441:22;14420:53;:::i;:::-;14410:63;;14365:118;14016:474;;;;;:::o;14496:311::-;14573:4;14663:18;14655:6;14652:30;14649:56;;;14685:18;;:::i;:::-;14649:56;14735:4;14727:6;14723:17;14715:25;;14795:4;14789;14785:15;14777:23;;14496:311;;;:::o;14813:117::-;14922:1;14919;14912:12;14953:710;15049:5;15074:81;15090:64;15147:6;15090:64;:::i;:::-;15074:81;:::i;:::-;15065:90;;15175:5;15204:6;15197:5;15190:21;15238:4;15231:5;15227:16;15220:23;;15291:4;15283:6;15279:17;15271:6;15267:30;15320:3;15312:6;15309:15;15306:122;;;15339:79;;:::i;:::-;15306:122;15454:6;15437:220;15471:6;15466:3;15463:15;15437:220;;;15546:3;15575:37;15608:3;15596:10;15575:37;:::i;:::-;15570:3;15563:50;15642:4;15637:3;15633:14;15626:21;;15513:144;15497:4;15492:3;15488:14;15481:21;;15437:220;;;15441:21;15055:608;;14953:710;;;;;:::o;15686:370::-;15757:5;15806:3;15799:4;15791:6;15787:17;15783:27;15773:122;;15814:79;;:::i;:::-;15773:122;15931:6;15918:20;15956:94;16046:3;16038:6;16031:4;16023:6;16019:17;15956:94;:::i;:::-;15947:103;;15763:293;15686:370;;;;:::o;16062:817::-;16158:6;16166;16174;16223:2;16211:9;16202:7;16198:23;16194:32;16191:119;;;16229:79;;:::i;:::-;16191:119;16377:1;16366:9;16362:17;16349:31;16407:18;16399:6;16396:30;16393:117;;;16429:79;;:::i;:::-;16393:117;16534:78;16604:7;16595:6;16584:9;16580:22;16534:78;:::i;:::-;16524:88;;16320:302;16661:2;16687:50;16729:7;16720:6;16709:9;16705:22;16687:50;:::i;:::-;16677:60;;16632:115;16786:2;16812:50;16854:7;16845:6;16834:9;16830:22;16812:50;:::i;:::-;16802:60;;16757:115;16062:817;;;;;:::o;16885:182::-;17025:34;17021:1;17013:6;17009:14;17002:58;16885:182;:::o;17073:366::-;17215:3;17236:67;17300:2;17295:3;17236:67;:::i;:::-;17229:74;;17312:93;17401:3;17312:93;:::i;:::-;17430:2;17425:3;17421:12;17414:19;;17073:366;;;:::o;17445:419::-;17611:4;17649:2;17638:9;17634:18;17626:26;;17698:9;17692:4;17688:20;17684:1;17673:9;17669:17;17662:47;17726:131;17852:4;17726:131;:::i;:::-;17718:139;;17445:419;;;:::o;17870:228::-;18010:34;18006:1;17998:6;17994:14;17987:58;18079:11;18074:2;18066:6;18062:15;18055:36;17870:228;:::o;18104:366::-;18246:3;18267:67;18331:2;18326:3;18267:67;:::i;:::-;18260:74;;18343:93;18432:3;18343:93;:::i;:::-;18461:2;18456:3;18452:12;18445:19;;18104:366;;;:::o;18476:419::-;18642:4;18680:2;18669:9;18665:18;18657:26;;18729:9;18723:4;18719:20;18715:1;18704:9;18700:17;18693:47;18757:131;18883:4;18757:131;:::i;:::-;18749:139;;18476:419;;;:::o;18901:180::-;18949:77;18946:1;18939:88;19046:4;19043:1;19036:15;19070:4;19067:1;19060:15;19087:305;19127:3;19146:20;19164:1;19146:20;:::i;:::-;19141:25;;19180:20;19198:1;19180:20;:::i;:::-;19175:25;;19334:1;19266:66;19262:74;19259:1;19256:81;19253:107;;;19340:18;;:::i;:::-;19253:107;19384:1;19381;19377:9;19370:16;;19087:305;;;;:::o;19398:165::-;19538:17;19534:1;19526:6;19522:14;19515:41;19398:165;:::o;19569:366::-;19711:3;19732:67;19796:2;19791:3;19732:67;:::i;:::-;19725:74;;19808:93;19897:3;19808:93;:::i;:::-;19926:2;19921:3;19917:12;19910:19;;19569:366;;;:::o;19941:419::-;20107:4;20145:2;20134:9;20130:18;20122:26;;20194:9;20188:4;20184:20;20180:1;20169:9;20165:17;20158:47;20222:131;20348:4;20222:131;:::i;:::-;20214:139;;19941:419;;;:::o;20366:233::-;20405:3;20428:24;20446:5;20428:24;:::i;:::-;20419:33;;20474:66;20467:5;20464:77;20461:103;;20544:18;;:::i;:::-;20461:103;20591:1;20584:5;20580:13;20573:20;;20366:233;;;:::o;20605:180::-;20653:77;20650:1;20643:88;20750:4;20747:1;20740:15;20774:4;20771:1;20764:15;20791:320;20835:6;20872:1;20866:4;20862:12;20852:22;;20919:1;20913:4;20909:12;20940:18;20930:81;;20996:4;20988:6;20984:17;20974:27;;20930:81;21058:2;21050:6;21047:14;21027:18;21024:38;21021:84;;21077:18;;:::i;:::-;21021:84;20842:269;20791:320;;;:::o;21117:147::-;21218:11;21255:3;21240:18;;21117:147;;;;:::o;21270:114::-;;:::o;21390:398::-;21549:3;21570:83;21651:1;21646:3;21570:83;:::i;:::-;21563:90;;21662:93;21751:3;21662:93;:::i;:::-;21780:1;21775:3;21771:11;21764:18;;21390:398;;;:::o;21794:379::-;21978:3;22000:147;22143:3;22000:147;:::i;:::-;21993:154;;22164:3;22157:10;;21794:379;;;:::o;22179:168::-;22319:20;22315:1;22307:6;22303:14;22296:44;22179:168;:::o;22353:366::-;22495:3;22516:67;22580:2;22575:3;22516:67;:::i;:::-;22509:74;;22592:93;22681:3;22592:93;:::i;:::-;22710:2;22705:3;22701:12;22694:19;;22353:366;;;:::o;22725:419::-;22891:4;22929:2;22918:9;22914:18;22906:26;;22978:9;22972:4;22968:20;22964:1;22953:9;22949:17;22942:47;23006:131;23132:4;23006:131;:::i;:::-;22998:139;;22725:419;;;:::o;23150:174::-;23290:26;23286:1;23278:6;23274:14;23267:50;23150:174;:::o;23330:366::-;23472:3;23493:67;23557:2;23552:3;23493:67;:::i;:::-;23486:74;;23569:93;23658:3;23569:93;:::i;:::-;23687:2;23682:3;23678:12;23671:19;;23330:366;;;:::o;23702:419::-;23868:4;23906:2;23895:9;23891:18;23883:26;;23955:9;23949:4;23945:20;23941:1;23930:9;23926:17;23919:47;23983:131;24109:4;23983:131;:::i;:::-;23975:139;;23702:419;;;:::o;24127:228::-;24267:34;24263:1;24255:6;24251:14;24244:58;24336:11;24331:2;24323:6;24319:15;24312:36;24127:228;:::o;24361:366::-;24503:3;24524:67;24588:2;24583:3;24524:67;:::i;:::-;24517:74;;24600:93;24689:3;24600:93;:::i;:::-;24718:2;24713:3;24709:12;24702:19;;24361:366;;;:::o;24733:419::-;24899:4;24937:2;24926:9;24922:18;24914:26;;24986:9;24980:4;24976:20;24972:1;24961:9;24957:17;24950:47;25014:131;25140:4;25014:131;:::i;:::-;25006:139;;24733:419;;;:::o;25158:234::-;25298:34;25294:1;25286:6;25282:14;25275:58;25367:17;25362:2;25354:6;25350:15;25343:42;25158:234;:::o;25398:366::-;25540:3;25561:67;25625:2;25620:3;25561:67;:::i;:::-;25554:74;;25637:93;25726:3;25637:93;:::i;:::-;25755:2;25750:3;25746:12;25739:19;;25398:366;;;:::o;25770:419::-;25936:4;25974:2;25963:9;25959:18;25951:26;;26023:9;26017:4;26013:20;26009:1;25998:9;25994:17;25987:47;26051:131;26177:4;26051:131;:::i;:::-;26043:139;;25770:419;;;:::o;26195:148::-;26297:11;26334:3;26319:18;;26195:148;;;;:::o;26349:377::-;26455:3;26483:39;26516:5;26483:39;:::i;:::-;26538:89;26620:6;26615:3;26538:89;:::i;:::-;26531:96;;26636:52;26681:6;26676:3;26669:4;26662:5;26658:16;26636:52;:::i;:::-;26713:6;26708:3;26704:16;26697:23;;26459:267;26349:377;;;;:::o;26732:155::-;26872:7;26868:1;26860:6;26856:14;26849:31;26732:155;:::o;26893:400::-;27053:3;27074:84;27156:1;27151:3;27074:84;:::i;:::-;27067:91;;27167:93;27256:3;27167:93;:::i;:::-;27285:1;27280:3;27276:11;27269:18;;26893:400;;;:::o;27299:701::-;27580:3;27602:95;27693:3;27684:6;27602:95;:::i;:::-;27595:102;;27714:95;27805:3;27796:6;27714:95;:::i;:::-;27707:102;;27826:148;27970:3;27826:148;:::i;:::-;27819:155;;27991:3;27984:10;;27299:701;;;;;:::o;28006:168::-;28146:20;28142:1;28134:6;28130:14;28123:44;28006:168;:::o;28180:366::-;28322:3;28343:67;28407:2;28402:3;28343:67;:::i;:::-;28336:74;;28419:93;28508:3;28419:93;:::i;:::-;28537:2;28532:3;28528:12;28521:19;;28180:366;;;:::o;28552:419::-;28718:4;28756:2;28745:9;28741:18;28733:26;;28805:9;28799:4;28795:20;28791:1;28780:9;28776:17;28769:47;28833:131;28959:4;28833:131;:::i;:::-;28825:139;;28552:419;;;:::o;28977:175::-;29117:27;29113:1;29105:6;29101:14;29094:51;28977:175;:::o;29158:366::-;29300:3;29321:67;29385:2;29380:3;29321:67;:::i;:::-;29314:74;;29397:93;29486:3;29397:93;:::i;:::-;29515:2;29510:3;29506:12;29499:19;;29158:366;;;:::o;29530:419::-;29696:4;29734:2;29723:9;29719:18;29711:26;;29783:9;29777:4;29773:20;29769:1;29758:9;29754:17;29747:47;29811:131;29937:4;29811:131;:::i;:::-;29803:139;;29530:419;;;:::o;29955:173::-;30095:25;30091:1;30083:6;30079:14;30072:49;29955:173;:::o;30134:366::-;30276:3;30297:67;30361:2;30356:3;30297:67;:::i;:::-;30290:74;;30373:93;30462:3;30373:93;:::i;:::-;30491:2;30486:3;30482:12;30475:19;;30134:366;;;:::o;30506:419::-;30672:4;30710:2;30699:9;30695:18;30687:26;;30759:9;30753:4;30749:20;30745:1;30734:9;30730:17;30723:47;30787:131;30913:4;30787:131;:::i;:::-;30779:139;;30506:419;;;:::o;30931:180::-;30979:77;30976:1;30969:88;31076:4;31073:1;31066:15;31100:4;31097:1;31090:15;31117:176;31149:1;31166:20;31184:1;31166:20;:::i;:::-;31161:25;;31200:20;31218:1;31200:20;:::i;:::-;31195:25;;31239:1;31229:35;;31244:18;;:::i;:::-;31229:35;31285:1;31282;31278:9;31273:14;;31117:176;;;;:::o;31299:185::-;31339:1;31356:20;31374:1;31356:20;:::i;:::-;31351:25;;31390:20;31408:1;31390:20;:::i;:::-;31385:25;;31429:1;31419:35;;31434:18;;:::i;:::-;31419:35;31476:1;31473;31469:9;31464:14;;31299:185;;;;:::o;31490:236::-;31630:34;31626:1;31618:6;31614:14;31607:58;31699:19;31694:2;31686:6;31682:15;31675:44;31490:236;:::o;31732:366::-;31874:3;31895:67;31959:2;31954:3;31895:67;:::i;:::-;31888:74;;31971:93;32060:3;31971:93;:::i;:::-;32089:2;32084:3;32080:12;32073:19;;31732:366;;;:::o;32104:419::-;32270:4;32308:2;32297:9;32293:18;32285:26;;32357:9;32351:4;32347:20;32343:1;32332:9;32328:17;32321:47;32385:131;32511:4;32385:131;:::i;:::-;32377:139;;32104:419;;;:::o;32529:182::-;32669:34;32665:1;32657:6;32653:14;32646:58;32529:182;:::o;32717:366::-;32859:3;32880:67;32944:2;32939:3;32880:67;:::i;:::-;32873:74;;32956:93;33045:3;32956:93;:::i;:::-;33074:2;33069:3;33065:12;33058:19;;32717:366;;;:::o;33089:419::-;33255:4;33293:2;33282:9;33278:18;33270:26;;33342:9;33336:4;33332:20;33328:1;33317:9;33313:17;33306:47;33370:131;33496:4;33370:131;:::i;:::-;33362:139;;33089:419;;;:::o;33514:227::-;33654:34;33650:1;33642:6;33638:14;33631:58;33723:10;33718:2;33710:6;33706:15;33699:35;33514:227;:::o;33747:366::-;33889:3;33910:67;33974:2;33969:3;33910:67;:::i;:::-;33903:74;;33986:93;34075:3;33986:93;:::i;:::-;34104:2;34099:3;34095:12;34088:19;;33747:366;;;:::o;34119:419::-;34285:4;34323:2;34312:9;34308:18;34300:26;;34372:9;34366:4;34362:20;34358:1;34347:9;34343:17;34336:47;34400:131;34526:4;34400:131;:::i;:::-;34392:139;;34119:419;;;:::o;34544:168::-;34684:20;34680:1;34672:6;34668:14;34661:44;34544:168;:::o;34718:366::-;34860:3;34881:67;34945:2;34940:3;34881:67;:::i;:::-;34874:74;;34957:93;35046:3;34957:93;:::i;:::-;35075:2;35070:3;35066:12;35059:19;;34718:366;;;:::o;35090:419::-;35256:4;35294:2;35283:9;35279:18;35271:26;;35343:9;35337:4;35333:20;35329:1;35318:9;35314:17;35307:47;35371:131;35497:4;35371:131;:::i;:::-;35363:139;;35090:419;;;:::o;35515:168::-;35655:20;35651:1;35643:6;35639:14;35632:44;35515:168;:::o;35689:366::-;35831:3;35852:67;35916:2;35911:3;35852:67;:::i;:::-;35845:74;;35928:93;36017:3;35928:93;:::i;:::-;36046:2;36041:3;36037:12;36030:19;;35689:366;;;:::o;36061:419::-;36227:4;36265:2;36254:9;36250:18;36242:26;;36314:9;36308:4;36304:20;36300:1;36289:9;36285:17;36278:47;36342:131;36468:4;36342:131;:::i;:::-;36334:139;;36061:419;;;:::o;36486:301::-;36626:34;36622:1;36614:6;36610:14;36603:58;36695:34;36690:2;36682:6;36678:15;36671:59;36764:15;36759:2;36751:6;36747:15;36740:40;36486:301;:::o;36793:366::-;36935:3;36956:67;37020:2;37015:3;36956:67;:::i;:::-;36949:74;;37032:93;37121:3;37032:93;:::i;:::-;37150:2;37145:3;37141:12;37134:19;;36793:366;;;:::o;37165:419::-;37331:4;37369:2;37358:9;37354:18;37346:26;;37418:9;37412:4;37408:20;37404:1;37393:9;37389:17;37382:47;37446:131;37572:4;37446:131;:::i;:::-;37438:139;;37165:419;;;:::o;37590:220::-;37730:34;37726:1;37718:6;37714:14;37707:58;37799:3;37794:2;37786:6;37782:15;37775:28;37590:220;:::o;37816:366::-;37958:3;37979:67;38043:2;38038:3;37979:67;:::i;:::-;37972:74;;38055:93;38144:3;38055:93;:::i;:::-;38173:2;38168:3;38164:12;38157:19;;37816:366;;;:::o;38188:419::-;38354:4;38392:2;38381:9;38377:18;38369:26;;38441:9;38435:4;38431:20;38427:1;38416:9;38412:17;38405:47;38469:131;38595:4;38469:131;:::i;:::-;38461:139;;38188:419;;;:::o;38613:179::-;38753:31;38749:1;38741:6;38737:14;38730:55;38613:179;:::o;38798:366::-;38940:3;38961:67;39025:2;39020:3;38961:67;:::i;:::-;38954:74;;39037:93;39126:3;39037:93;:::i;:::-;39155:2;39150:3;39146:12;39139:19;;38798:366;;;:::o;39170:419::-;39336:4;39374:2;39363:9;39359:18;39351:26;;39423:9;39417:4;39413:20;39409:1;39398:9;39394:17;39387:47;39451:131;39577:4;39451:131;:::i;:::-;39443:139;;39170:419;;;:::o;39595:241::-;39735:34;39731:1;39723:6;39719:14;39712:58;39804:24;39799:2;39791:6;39787:15;39780:49;39595:241;:::o;39842:366::-;39984:3;40005:67;40069:2;40064:3;40005:67;:::i;:::-;39998:74;;40081:93;40170:3;40081:93;:::i;:::-;40199:2;40194:3;40190:12;40183:19;;39842:366;;;:::o;40214:419::-;40380:4;40418:2;40407:9;40403:18;40395:26;;40467:9;40461:4;40457:20;40453:1;40442:9;40438:17;40431:47;40495:131;40621:4;40495:131;:::i;:::-;40487:139;;40214:419;;;:::o;40639:180::-;40779:32;40775:1;40767:6;40763:14;40756:56;40639:180;:::o;40825:366::-;40967:3;40988:67;41052:2;41047:3;40988:67;:::i;:::-;40981:74;;41064:93;41153:3;41064:93;:::i;:::-;41182:2;41177:3;41173:12;41166:19;;40825:366;;;:::o;41197:419::-;41363:4;41401:2;41390:9;41386:18;41378:26;;41450:9;41444:4;41440:20;41436:1;41425:9;41421:17;41414:47;41478:131;41604:4;41478:131;:::i;:::-;41470:139;;41197:419;;;:::o;41622:233::-;41762:34;41758:1;41750:6;41746:14;41739:58;41831:16;41826:2;41818:6;41814:15;41807:41;41622:233;:::o;41861:366::-;42003:3;42024:67;42088:2;42083:3;42024:67;:::i;:::-;42017:74;;42100:93;42189:3;42100:93;:::i;:::-;42218:2;42213:3;42209:12;42202:19;;41861:366;;;:::o;42233:419::-;42399:4;42437:2;42426:9;42422:18;42414:26;;42486:9;42480:4;42476:20;42472:1;42461:9;42457:17;42450:47;42514:131;42640:4;42514:131;:::i;:::-;42506:139;;42233:419;;;:::o;42658:238::-;42798:34;42794:1;42786:6;42782:14;42775:58;42867:21;42862:2;42854:6;42850:15;42843:46;42658:238;:::o;42902:366::-;43044:3;43065:67;43129:2;43124:3;43065:67;:::i;:::-;43058:74;;43141:93;43230:3;43141:93;:::i;:::-;43259:2;43254:3;43250:12;43243:19;;42902:366;;;:::o;43274:419::-;43440:4;43478:2;43467:9;43463:18;43455:26;;43527:9;43521:4;43517:20;43513:1;43502:9;43498:17;43491:47;43555:131;43681:4;43555:131;:::i;:::-;43547:139;;43274:419;;;:::o;43699:228::-;43839:34;43835:1;43827:6;43823:14;43816:58;43908:11;43903:2;43895:6;43891:15;43884:36;43699:228;:::o;43933:366::-;44075:3;44096:67;44160:2;44155:3;44096:67;:::i;:::-;44089:74;;44172:93;44261:3;44172:93;:::i;:::-;44290:2;44285:3;44281:12;44274:19;;43933:366;;;:::o;44305:419::-;44471:4;44509:2;44498:9;44494:18;44486:26;;44558:9;44552:4;44548:20;44544:1;44533:9;44529:17;44522:47;44586:131;44712:4;44586:131;:::i;:::-;44578:139;;44305:419;;;:::o;44730:225::-;44870:34;44866:1;44858:6;44854:14;44847:58;44939:8;44934:2;44926:6;44922:15;44915:33;44730:225;:::o;44961:366::-;45103:3;45124:67;45188:2;45183:3;45124:67;:::i;:::-;45117:74;;45200:93;45289:3;45200:93;:::i;:::-;45318:2;45313:3;45309:12;45302:19;;44961:366;;;:::o;45333:419::-;45499:4;45537:2;45526:9;45522:18;45514:26;;45586:9;45580:4;45576:20;45572:1;45561:9;45557:17;45550:47;45614:131;45740:4;45614:131;:::i;:::-;45606:139;;45333:419;;;:::o;45758:182::-;45898:34;45894:1;45886:6;45882:14;45875:58;45758:182;:::o;45946:366::-;46088:3;46109:67;46173:2;46168:3;46109:67;:::i;:::-;46102:74;;46185:93;46274:3;46185:93;:::i;:::-;46303:2;46298:3;46294:12;46287:19;;45946:366;;;:::o;46318:419::-;46484:4;46522:2;46511:9;46507:18;46499:26;;46571:9;46565:4;46561:20;46557:1;46546:9;46542:17;46535:47;46599:131;46725:4;46599:131;:::i;:::-;46591:139;;46318:419;;;:::o;46743:332::-;46864:4;46902:2;46891:9;46887:18;46879:26;;46915:71;46983:1;46972:9;46968:17;46959:6;46915:71;:::i;:::-;46996:72;47064:2;47053:9;47049:18;47040:6;46996:72;:::i;:::-;46743:332;;;;;:::o;47081:137::-;47135:5;47166:6;47160:13;47151:22;;47182:30;47206:5;47182:30;:::i;:::-;47081:137;;;;:::o;47224:345::-;47291:6;47340:2;47328:9;47319:7;47315:23;47311:32;47308:119;;;47346:79;;:::i;:::-;47308:119;47466:1;47491:61;47544:7;47535:6;47524:9;47520:22;47491:61;:::i;:::-;47481:71;;47437:125;47224:345;;;;:::o;47575:220::-;47715:34;47711:1;47703:6;47699:14;47692:58;47784:3;47779:2;47771:6;47767:15;47760:28;47575:220;:::o;47801:366::-;47943:3;47964:67;48028:2;48023:3;47964:67;:::i;:::-;47957:74;;48040:93;48129:3;48040:93;:::i;:::-;48158:2;48153:3;48149:12;48142:19;;47801:366;;;:::o;48173:419::-;48339:4;48377:2;48366:9;48362:18;48354:26;;48426:9;48420:4;48416:20;48412:1;48401:9;48397:17;48390:47;48454:131;48580:4;48454:131;:::i;:::-;48446:139;;48173:419;;;:::o;48598:248::-;48738:34;48734:1;48726:6;48722:14;48715:58;48807:31;48802:2;48794:6;48790:15;48783:56;48598:248;:::o;48852:366::-;48994:3;49015:67;49079:2;49074:3;49015:67;:::i;:::-;49008:74;;49091:93;49180:3;49091:93;:::i;:::-;49209:2;49204:3;49200:12;49193:19;;48852:366;;;:::o;49224:419::-;49390:4;49428:2;49417:9;49413:18;49405:26;;49477:9;49471:4;49467:20;49463:1;49452:9;49448:17;49441:47;49505:131;49631:4;49505:131;:::i;:::-;49497:139;;49224:419;;;:::o;49649:232::-;49789:34;49785:1;49777:6;49773:14;49766:58;49858:15;49853:2;49845:6;49841:15;49834:40;49649:232;:::o;49887:366::-;50029:3;50050:67;50114:2;50109:3;50050:67;:::i;:::-;50043:74;;50126:93;50215:3;50126:93;:::i;:::-;50244:2;50239:3;50235:12;50228:19;;49887:366;;;:::o;50259:419::-;50425:4;50463:2;50452:9;50448:18;50440:26;;50512:9;50506:4;50502:20;50498:1;50487:9;50483:17;50476:47;50540:131;50666:4;50540:131;:::i;:::-;50532:139;;50259:419;;;:::o;50684:94::-;50717:8;50765:5;50761:2;50757:14;50736:35;;50684:94;;;:::o;50784:::-;50823:7;50852:20;50866:5;50852:20;:::i;:::-;50841:31;;50784:94;;;:::o;50884:100::-;50923:7;50952:26;50972:5;50952:26;:::i;:::-;50941:37;;50884:100;;;:::o;50990:157::-;51095:45;51115:24;51133:5;51115:24;:::i;:::-;51095:45;:::i;:::-;51090:3;51083:58;50990:157;;:::o;51153:256::-;51265:3;51280:75;51351:3;51342:6;51280:75;:::i;:::-;51380:2;51375:3;51371:12;51364:19;;51400:3;51393:10;;51153:256;;;;:::o;51415:237::-;51555:34;51551:1;51543:6;51539:14;51532:58;51624:20;51619:2;51611:6;51607:15;51600:45;51415:237;:::o;51658:366::-;51800:3;51821:67;51885:2;51880:3;51821:67;:::i;:::-;51814:74;;51897:93;51986:3;51897:93;:::i;:::-;52015:2;52010:3;52006:12;51999:19;;51658:366;;;:::o;52030:419::-;52196:4;52234:2;52223:9;52219:18;52211:26;;52283:9;52277:4;52273:20;52269:1;52258:9;52254:17;52247:47;52311:131;52437:4;52311:131;:::i;:::-;52303:139;;52030:419;;;:::o;52455:224::-;52595:34;52591:1;52583:6;52579:14;52572:58;52664:7;52659:2;52651:6;52647:15;52640:32;52455:224;:::o;52685:366::-;52827:3;52848:67;52912:2;52907:3;52848:67;:::i;:::-;52841:74;;52924:93;53013:3;52924:93;:::i;:::-;53042:2;53037:3;53033:12;53026:19;;52685:366;;;:::o;53057:419::-;53223:4;53261:2;53250:9;53246:18;53238:26;;53310:9;53304:4;53300:20;53296:1;53285:9;53281:17;53274:47;53338:131;53464:4;53338:131;:::i;:::-;53330:139;;53057:419;;;:::o;53482:223::-;53622:34;53618:1;53610:6;53606:14;53599:58;53691:6;53686:2;53678:6;53674:15;53667:31;53482:223;:::o;53711:366::-;53853:3;53874:67;53938:2;53933:3;53874:67;:::i;:::-;53867:74;;53950:93;54039:3;53950:93;:::i;:::-;54068:2;54063:3;54059:12;54052:19;;53711:366;;;:::o;54083:419::-;54249:4;54287:2;54276:9;54272:18;54264:26;;54336:9;54330:4;54326:20;54322:1;54311:9;54307:17;54300:47;54364:131;54490:4;54364:131;:::i;:::-;54356:139;;54083:419;;;:::o;54508:175::-;54648:27;54644:1;54636:6;54632:14;54625:51;54508:175;:::o;54689:366::-;54831:3;54852:67;54916:2;54911:3;54852:67;:::i;:::-;54845:74;;54928:93;55017:3;54928:93;:::i;:::-;55046:2;55041:3;55037:12;55030:19;;54689:366;;;:::o;55061:419::-;55227:4;55265:2;55254:9;55250:18;55242:26;;55314:9;55308:4;55304:20;55300:1;55289:9;55285:17;55278:47;55342:131;55468:4;55342:131;:::i;:::-;55334:139;;55061:419;;;:::o;55486:182::-;55626:34;55622:1;55614:6;55610:14;55603:58;55486:182;:::o;55674:366::-;55816:3;55837:67;55901:2;55896:3;55837:67;:::i;:::-;55830:74;;55913:93;56002:3;55913:93;:::i;:::-;56031:2;56026:3;56022:12;56015:19;;55674:366;;;:::o;56046:419::-;56212:4;56250:2;56239:9;56235:18;56227:26;;56299:9;56293:4;56289:20;56285:1;56274:9;56270:17;56263:47;56327:131;56453:4;56327:131;:::i;:::-;56319:139;;56046:419;;;:::o;56471:178::-;56611:30;56607:1;56599:6;56595:14;56588:54;56471:178;:::o;56655:366::-;56797:3;56818:67;56882:2;56877:3;56818:67;:::i;:::-;56811:74;;56894:93;56983:3;56894:93;:::i;:::-;57012:2;57007:3;57003:12;56996:19;;56655:366;;;:::o;57027:419::-;57193:4;57231:2;57220:9;57216:18;57208:26;;57280:9;57274:4;57270:20;57266:1;57255:9;57251:17;57244:47;57308:131;57434:4;57308:131;:::i;:::-;57300:139;;57027:419;;;:::o;57452:98::-;57503:6;57537:5;57531:12;57521:22;;57452:98;;;:::o;57556:168::-;57639:11;57673:6;57668:3;57661:19;57713:4;57708:3;57704:14;57689:29;;57556:168;;;;:::o;57730:360::-;57816:3;57844:38;57876:5;57844:38;:::i;:::-;57898:70;57961:6;57956:3;57898:70;:::i;:::-;57891:77;;57977:52;58022:6;58017:3;58010:4;58003:5;57999:16;57977:52;:::i;:::-;58054:29;58076:6;58054:29;:::i;:::-;58049:3;58045:39;58038:46;;57820:270;57730:360;;;;:::o;58096:640::-;58291:4;58329:3;58318:9;58314:19;58306:27;;58343:71;58411:1;58400:9;58396:17;58387:6;58343:71;:::i;:::-;58424:72;58492:2;58481:9;58477:18;58468:6;58424:72;:::i;:::-;58506;58574:2;58563:9;58559:18;58550:6;58506:72;:::i;:::-;58625:9;58619:4;58615:20;58610:2;58599:9;58595:18;58588:48;58653:76;58724:4;58715:6;58653:76;:::i;:::-;58645:84;;58096:640;;;;;;;:::o;58742:141::-;58798:5;58829:6;58823:13;58814:22;;58845:32;58871:5;58845:32;:::i;:::-;58742:141;;;;:::o;58889:349::-;58958:6;59007:2;58995:9;58986:7;58982:23;58978:32;58975:119;;;59013:79;;:::i;:::-;58975:119;59133:1;59158:63;59213:7;59204:6;59193:9;59189:22;59158:63;:::i;:::-;59148:73;;59104:127;58889:349;;;;:::o;59244:191::-;59284:4;59304:20;59322:1;59304:20;:::i;:::-;59299:25;;59338:20;59356:1;59338:20;:::i;:::-;59333:25;;59377:1;59374;59371:8;59368:34;;;59382:18;;:::i;:::-;59368:34;59427:1;59424;59420:9;59412:17;;59244:191;;;;:::o;59441:180::-;59489:77;59486:1;59479:88;59586:4;59583:1;59576:15;59610:4;59607:1;59600:15

Swarm Source

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