ETH Price: $2,617.50 (+0.67%)
Gas: 3 Gwei

Token

Silly Goat Poker Club (SGPC)
 

Overview

Max Total Supply

520 SGPC

Holders

184

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
21 SGPC
0x65b4126fa6071c4f91193ee0bda77496ef4b54f3
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:
SillyGoatPokerClub

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`.
        // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
        // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
        // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
        // good first aproximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1;
        uint256 x = a;
        if (x >> 128 > 0) {
            x >>= 128;
            result <<= 64;
        }
        if (x >> 64 > 0) {
            x >>= 64;
            result <<= 32;
        }
        if (x >> 32 > 0) {
            x >>= 32;
            result <<= 16;
        }
        if (x >> 16 > 0) {
            x >>= 16;
            result <<= 8;
        }
        if (x >> 8 > 0) {
            x >>= 8;
            result <<= 4;
        }
        if (x >> 4 > 0) {
            x >>= 4;
            result <<= 2;
        }
        if (x >> 2 > 0) {
            result <<= 1;
        }

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

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


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

pragma solidity ^0.8.4;



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

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

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

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

// File: contracts/SillyGoatPokerClub.sol



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


pragma solidity >=0.8.13 <0.9.0;










contract SillyGoatPokerClub is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

// ================== Variables Start =======================
    
    string public uri;
    string public uriSuffix = ".json";
    uint256 public pricePublic = 0.075 ether;
    uint256 public priceWhiteList = 0.052 ether;
    uint256 public maxSupply = 2500;
    uint256 public reservesAmount = 50;
    uint256 public maxMintAmountPerTx = 10;
    uint256 public maxLimitPerWLWallet = 5;
    bool public publicMinting = false;
    bool public whitelistMinting = false;
    bytes32 public merkleRootWL;
    bytes32 public merkleRootFree;

    mapping (address => uint256) public addressBalance;
    mapping (address => uint256) public freeMintAddressBalance;


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

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

    constructor(
        string memory _uri
    ) ERC721A("Silly Goat Poker Club", "SGPC")  {
        seturi(_uri);
    }

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

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

    modifier mintWLCompliance(uint tokensToMint) {
        require(tokensToMint >= 1, "Min mint is 1 token");
        require(totalSupply() + tokensToMint <= maxSupply, "Minting more tokens than allowed");
        require(addressBalance[msg.sender] + tokensToMint <= maxLimitPerWLWallet,"Max per wallet during WL is 5");
        _;
    }

    modifier mintFreeCompliance()
    {
        require(totalSupply() + 1 <= maxSupply, "Max Supply exceeded.");
        require(freeMintAddressBalance[msg.sender] + 1 <= 1, "Free mint claimed.");
        _;
    }

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

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

    function FreeMint(bytes32[] memory proof) public payable nonReentrant mintFreeCompliance {
        require(isValidFree(proof, msg.sender), "Not eligible for free mint.");
        freeMintAddressBalance[msg.sender] += 1;

        _safeMint(msg.sender, reservesAmount);
    }

    function WhitelistMint(uint256 _mintAmount, bytes32[] memory proof) public payable nonReentrant mintWLCompliance(_mintAmount) {
        // uint256 supply = totalSupply();
        // Normal requirements 
        require(whitelistMinting, 'Whitelist sale not active!');
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
        require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWLWallet, 'Max mint per wallet exceeded!');
        require(isValid(proof, msg.sender), "Not whitelisted");
        require(msg.value >= priceWhiteList * _mintAmount, 'Insufficient funds!');
        
        addressBalance[msg.sender] += _mintAmount;
        // Mint
        _safeMint(_msgSender(), _mintAmount);
    }

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

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

    function isValid(bytes32[] memory proof, address sender) public view returns (bool) {
        return MerkleProof.verify(proof, merkleRootWL, keccak256(abi.encodePacked(sender)));
    }

    function isValidFree(bytes32[] memory proof, address sender) public view returns (bool) {
        return MerkleProof.verify(proof, merkleRootFree, keccak256(abi.encodePacked(sender)));
    }


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

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

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

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

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

// max per wallet
    function setMaxLimitPerWhitelistWallet(uint256 _maxLimitPerWallet) public onlyOwner {
        maxLimitPerWLWallet = _maxLimitPerWallet;
    }

// price

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

    function setCostWL(uint256 _cost) public onlyOwner {
        priceWhiteList = _cost;
    }

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

// set merkles
    function setMerkleRootWL(bytes32 _root) public onlyOwner {
        merkleRootWL = _root;
    }

    function setMerkleRootFree(bytes32 _root) public onlyOwner {
        merkleRootFree = _root;
    }

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

    function setWhitelistMinting(bool setActive) public onlyOwner {
        whitelistMinting = setActive;
    }


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

// ================== Withdraw Function Start =======================
  
    function withdraw() public onlyOwner nonReentrant {
            uint _balance = address(this).balance;
            (bool os, ) = payable(owner()).call{value: _balance}("");
            require(os);
    }

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

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

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

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

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CollectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"FreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"WhitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintAddressBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"sender","type":"address"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"sender","type":"address"}],"name":"isValidFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWLWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootFree","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWL","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservesAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setMaxLimitPerWhitelistWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRootFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRootWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"setActive","type":"bool"}],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"setActive","type":"bool"}],"name":"setWhitelistMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200039b565b5067010a741a46278000600c5566b8bdb978520000600d556109c4600e556032600f55600a60105560056011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550348015620000c157600080fd5b5060405162004f2538038062004f258339818101604052810190620000e79190620005e8565b6040518060400160405280601581526020017f53696c6c7920476f617420506f6b657220436c756200000000000000000000008152506040518060400160405280600481526020017f534750430000000000000000000000000000000000000000000000000000000081525081600290805190602001906200016b9291906200039b565b508060039080519060200190620001849291906200039b565b5062000195620001dd60201b60201c565b6000819055505050620001bd620001b1620001e660201b60201c565b620001ee60201b60201c565b6001600981905550620001d681620002b460201b60201c565b5062000720565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c4620002e060201b60201c565b80600a9080519060200190620002dc9291906200039b565b5050565b620002f0620001e660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003166200037160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200036f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000366906200069a565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a990620006eb565b90600052602060002090601f016020900481019282620003cd576000855562000419565b82601f10620003e857805160ff191683800117855562000419565b8280016001018555821562000419579182015b8281111562000418578251825591602001919060010190620003fb565b5b5090506200042891906200042c565b5090565b5b80821115620004475760008160009055506001016200042d565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004b48262000469565b810181811067ffffffffffffffff82111715620004d657620004d56200047a565b5b80604052505050565b6000620004eb6200044b565b9050620004f98282620004a9565b919050565b600067ffffffffffffffff8211156200051c576200051b6200047a565b5b620005278262000469565b9050602081019050919050565b60005b838110156200055457808201518184015260208101905062000537565b8381111562000564576000848401525b50505050565b6000620005816200057b84620004fe565b620004df565b905082815260208101848484011115620005a0576200059f62000464565b5b620005ad84828562000534565b509392505050565b600082601f830112620005cd57620005cc6200045f565b5b8151620005df8482602086016200056a565b91505092915050565b60006020828403121562000601576200060062000455565b5b600082015167ffffffffffffffff8111156200062257620006216200045a565b5b6200063084828501620005b5565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200068260208362000639565b91506200068f826200064a565b602082019050919050565b60006020820190508181036000830152620006b58162000673565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070457607f821691505b6020821081036200071a5762000719620006bc565b5b50919050565b6147f580620007306000396000f3fe6080604052600436106102e45760003560e01c80637871e15411610190578063b88d4fde116100dc578063d6ac288311610095578063e985e9c51161006f578063e985e9c514610af9578063eac989f814610b36578063f2fde38b14610b61578063f648498014610b8a576102e4565b8063d6ac288314610a54578063db4aa51914610a91578063e6e67bcb14610abc576102e4565b8063b88d4fde14610946578063c40542ec1461096f578063c87b56dd14610998578063ced2053b146109d5578063d5abeb01146109fe578063d6492d8114610a29576102e4565b806394354fd011610149578063a22cb46511610123578063a22cb4651461088e578063ad3e31b7146108b7578063b071401b146108e0578063b365a3e214610909576102e4565b806394354fd01461080d57806395d89b41146108385780639a73894414610863576102e4565b80637871e154146107115780637e295d661461073a57806380a0bcc6146107515780638462151c1461077a57806389ba959c146107b75780638da5cb5b146107e2576102e4565b8063264d4f891161024f57806353ac010a116102085780636992d229116101e25780636992d2291461066957806370a0823114610694578063715018a6146106d1578063734ae080146106e8576102e4565b806353ac010a146105d65780635503a0e8146106015780636352211e1461062c576102e4565b8063264d4f89146104dc5780632f9a7c5814610507578063361fab25146105305780633ccfd60b146105595780633ec4de351461057057806342842e0e146105ad576102e4565b8063095ea7b3116102a1578063095ea7b3146103e2578063102e766d1461040b57806316ba10e01461043657806318160ddd1461045f57806323b872dd1461048a578063254a4737146104b3576102e4565b806301ffc9a7146102e95780630528a65b14610326578063068663251461034257806306fdde031461035e5780630788370314610389578063081812fc146103a5575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b91906130ef565b610bb3565b60405161031d9190613137565b60405180910390f35b610340600480360381019061033b9190613317565b610c45565b005b61035c60048036038101906103579190613373565b610fc2565b005b34801561036a57600080fd5b506103736111ac565b6040516103809190613444565b60405180910390f35b6103a3600480360381019061039e9190613466565b61123e565b005b3480156103b157600080fd5b506103cc60048036038101906103c79190613466565b6113f4565b6040516103d991906134d4565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061351b565b611473565b005b34801561041757600080fd5b506104206115b7565b60405161042d919061356a565b60405180910390f35b34801561044257600080fd5b5061045d6004803603810190610458919061363a565b6115bd565b005b34801561046b57600080fd5b506104746115df565b604051610481919061356a565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613683565b6115f6565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613702565b611918565b005b3480156104e857600080fd5b506104f161193d565b6040516104fe919061356a565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613466565b611943565b005b34801561053c57600080fd5b5061055760048036038101906105529190613466565b611955565b005b34801561056557600080fd5b5061056e611967565b005b34801561057c57600080fd5b506105976004803603810190610592919061372f565b611a4a565b6040516105a4919061356a565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190613683565b611a62565b005b3480156105e257600080fd5b506105eb611a82565b6040516105f89190613137565b60405180910390f35b34801561060d57600080fd5b50610616611a95565b6040516106239190613444565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613466565b611b23565b60405161066091906134d4565b60405180910390f35b34801561067557600080fd5b5061067e611b35565b60405161068b9190613137565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b6919061372f565b611b48565b6040516106c8919061356a565b60405180910390f35b3480156106dd57600080fd5b506106e6611c00565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190613466565b611c14565b005b34801561071d57600080fd5b506107386004803603810190610733919061375c565b611c26565b005b34801561074657600080fd5b5061074f611c93565b005b34801561075d57600080fd5b506107786004803603810190610773919061379c565b611d57565b005b34801561078657600080fd5b506107a1600480360381019061079c919061372f565b611d69565b6040516107ae9190613887565b60405180910390f35b3480156107c357600080fd5b506107cc611ead565b6040516107d991906138b8565b60405180910390f35b3480156107ee57600080fd5b506107f7611eb3565b60405161080491906134d4565b60405180910390f35b34801561081957600080fd5b50610822611edd565b60405161082f919061356a565b60405180910390f35b34801561084457600080fd5b5061084d611ee3565b60405161085a9190613444565b60405180910390f35b34801561086f57600080fd5b50610878611f75565b604051610885919061356a565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b091906138d3565b611f7b565b005b3480156108c357600080fd5b506108de60048036038101906108d9919061379c565b6120f2565b005b3480156108ec57600080fd5b5061090760048036038101906109029190613466565b612104565b005b34801561091557600080fd5b50610930600480360381019061092b9190613913565b612116565b60405161093d9190613137565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190613a10565b612153565b005b34801561097b57600080fd5b5061099660048036038101906109919190613702565b6121c6565b005b3480156109a457600080fd5b506109bf60048036038101906109ba9190613466565b6121eb565b6040516109cc9190613444565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190613466565b612295565b005b348015610a0a57600080fd5b50610a136122a7565b604051610a20919061356a565b60405180910390f35b348015610a3557600080fd5b50610a3e6122ad565b604051610a4b91906138b8565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a76919061372f565b6122b3565b604051610a88919061356a565b60405180910390f35b348015610a9d57600080fd5b50610aa66122cb565b604051610ab3919061356a565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613913565b6122d1565b604051610af09190613137565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613a93565b61230e565b604051610b2d9190613137565b60405180910390f35b348015610b4257600080fd5b50610b4b6123a2565b604051610b589190613444565b60405180910390f35b348015610b6d57600080fd5b50610b886004803603810190610b83919061372f565b612430565b005b348015610b9657600080fd5b50610bb16004803603810190610bac919061363a565b6124b3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c0e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c3e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600260095403610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190613b1f565b60405180910390fd5b6002600981905550816001811015610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90613b8b565b60405180910390fd5b600e5481610ce36115df565b610ced9190613bda565b1115610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590613c7c565b60405180910390fd5b60115481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d7c9190613bda565b1115610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490613ce8565b60405180910390fd5b601260019054906101000a900460ff16610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390613d54565b60405180910390fd5b600083118015610e1e57506010548311155b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490613dc0565b60405180910390fd5b60115483610e6a33611b48565b610e749190613bda565b1115610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90613e2c565b60405180910390fd5b610ebf8233612116565b610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590613e98565b60405180910390fd5b82600d54610f0c9190613eb8565b341015610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613f5e565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f9d9190613bda565b92505081905550610fb5610faf6124d5565b846124dd565b5060016009819055505050565b600260095403611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613b1f565b60405180910390fd5b6002600981905550600e54600161101c6115df565b6110269190613bda565b1115611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90613fca565b60405180910390fd5b600180601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110b49190613bda565b11156110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90614036565b60405180910390fd5b6110ff81336122d1565b61113e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611135906140a2565b60405180910390fd5b6001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118e9190613bda565b925050819055506111a133600f546124dd565b600160098190555050565b6060600280546111bb906140f1565b80601f01602080910402602001604051908101604052809291908181526020018280546111e7906140f1565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b5050505050905090565b600260095403611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90613b1f565b60405180910390fd5b600260098190555060006112956115df565b9050601260009054906101000a900460ff166112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061416e565b60405180910390fd5b6000821180156112f857506010548211155b611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613dc0565b60405180910390fd5b600e5482826113469190613bda565b1115611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e906141da565b60405180910390fd5b81600c546113959190613eb8565b3410156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613f5e565b60405180910390fd5b6113e86113e26124d5565b836124dd565b50600160098190555050565b60006113ff826124fb565b611435576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061147e82611b23565b90508073ffffffffffffffffffffffffffffffffffffffff1661149f61255a565b73ffffffffffffffffffffffffffffffffffffffff1614611502576114cb816114c661255a565b61230e565b611501576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6115c5612562565b80600b90805190602001906115db929190612f91565b5050565b60006115e96125e0565b6001546000540303905090565b6000611601826125e9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611668576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611674846126b5565b9150915061168a818761168561255a565b6126dc565b6116d65761169f8661169a61255a565b61230e565b6116d5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361173c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117498686866001612720565b801561175457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611822856117fe888887612726565b7c02000000000000000000000000000000000000000000000000000000001761274e565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118a857600060018501905060006004600083815260200190815260200160002054036118a65760005481146118a5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119108686866001612779565b505050505050565b611920612562565b80601260006101000a81548160ff02191690831515021790555050565b60115481565b61194b612562565b80600c8190555050565b61195d612562565b80600e8190555050565b61196f612562565b6002600954036119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90613b1f565b60405180910390fd5b6002600981905550600047905060006119cb611eb3565b73ffffffffffffffffffffffffffffffffffffffff16826040516119ee9061422b565b60006040518083038185875af1925050503d8060008114611a2b576040519150601f19603f3d011682016040523d82523d6000602084013e611a30565b606091505b5050905080611a3e57600080fd5b50506001600981905550565b60156020528060005260406000206000915090505481565b611a7d83838360405180602001604052806000815250612153565b505050565b601260009054906101000a900460ff1681565b600b8054611aa2906140f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ace906140f1565b8015611b1b5780601f10611af057610100808354040283529160200191611b1b565b820191906000526020600020905b815481529060010190602001808311611afe57829003601f168201915b505050505081565b6000611b2e826125e9565b9050919050565b601260019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611baf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611c08612562565b611c12600061277f565b565b611c1c612562565b8060118190555050565b611c2e612562565b600e5482611c3a6115df565b611c449190613bda565b1115611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c906141da565b60405180910390fd5b611c8f81836124dd565b5050565b611c9b612562565b600260095403611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd790613b1f565b60405180910390fd5b6002600981905550600e54600f54611cf66115df565b611d009190613bda565b1115611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d389061428c565b60405180910390fd5b611d4d33600f546124dd565b6001600981905550565b611d5f612562565b8060148190555050565b60606000611d7683611b48565b67ffffffffffffffff811115611d8f57611d8e61319e565b5b604051908082528060200260200182016040528015611dbd5781602001602082028036833780820191505090505b5090506000611dca612845565b905060008060005b83811015611ea0576000611de58261284e565b9050806040015115611df75750611e93565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e3757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e915781868580600101965081518110611e8457611e836142ac565b5b6020026020010181815250505b505b8080600101915050611dd2565b5083945050505050919050565b60145481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b606060038054611ef2906140f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1e906140f1565b8015611f6b5780601f10611f4057610100808354040283529160200191611f6b565b820191906000526020600020905b815481529060010190602001808311611f4e57829003601f168201915b5050505050905090565b600d5481565b611f8361255a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fe7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ff461255a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120a161255a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120e69190613137565b60405180910390a35050565b6120fa612562565b8060138190555050565b61210c612562565b8060108190555050565b600061214b83601354846040516020016121309190614323565b60405160208183030381529060405280519060200120612879565b905092915050565b61215e8484846115f6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121c05761218984848484612890565b6121bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6121ce612562565b80601260016101000a81548160ff02191690831515021790555050565b60606121f6826124fb565b612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c906143b0565b60405180910390fd5b600061223f6129e0565b9050600081511161225f576040518060200160405280600081525061228d565b8061226984612a72565b600b60405160200161227d939291906144a0565b6040516020818303038152906040525b915050919050565b61229d612562565b80600d8190555050565b600e5481565b60135481565b60166020528060005260406000206000915090505481565b600f5481565b600061230683601454846040516020016122eb9190614323565b60405160208183030381529060405280519060200120612879565b905092915050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a80546123af906140f1565b80601f01602080910402602001604051908101604052809291908181526020018280546123db906140f1565b80156124285780601f106123fd57610100808354040283529160200191612428565b820191906000526020600020905b81548152906001019060200180831161240b57829003601f168201915b505050505081565b612438612562565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e90614543565b60405180910390fd5b6124b08161277f565b50565b6124bb612562565b80600a90805190602001906124d1929190612f91565b5050565b600033905090565b6124f7828260405180602001604052806000815250612bd2565b5050565b6000816125066125e0565b11158015612515575060005482105b8015612553575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61256a6124d5565b73ffffffffffffffffffffffffffffffffffffffff16612588611eb3565b73ffffffffffffffffffffffffffffffffffffffff16146125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d5906145af565b60405180910390fd5b565b60006001905090565b600080829050806125f86125e0565b1161267e5760005481101561267d5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361267b575b60008103612671576004600083600190039350838152602001908152602001600020549050612647565b80925050506126b0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861273d868684612c6f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b612856613017565b6128726004600084815260200190815260200160002054612c78565b9050919050565b6000826128868584612d2e565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b661255a565b8786866040518563ffffffff1660e01b81526004016128d89493929190614624565b6020604051808303816000875af192505050801561291457506040513d601f19601f820116820180604052508101906129119190614685565b60015b61298d573d8060008114612944576040519150601f19603f3d011682016040523d82523d6000602084013e612949565b606091505b506000815103612985576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546129ef906140f1565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1b906140f1565b8015612a685780601f10612a3d57610100808354040283529160200191612a68565b820191906000526020600020905b815481529060010190602001808311612a4b57829003601f168201915b5050505050905090565b606060008203612ab9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bcd565b600082905060005b60008214612aeb578080612ad4906146b2565b915050600a82612ae49190614729565b9150612ac1565b60008167ffffffffffffffff811115612b0757612b0661319e565b5b6040519080825280601f01601f191660200182016040528015612b395781602001600182028036833780820191505090505b5090505b60008514612bc657600182612b52919061475a565b9150600a85612b61919061478e565b6030612b6d9190613bda565b60f81b818381518110612b8357612b826142ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bbf9190614729565b9450612b3d565b8093505050505b919050565b612bdc8383612d84565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c6a57600080549050600083820390505b612c1c6000868380600101945086612890565b612c52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612c09578160005414612c6757600080fd5b50505b505050565b60009392505050565b612c80613017565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b8451811015612d7957612d6482868381518110612d5757612d566142ac565b5b6020026020010151612f3f565b91508080612d71906146b2565b915050612d37565b508091505092915050565b60008054905060008203612dc4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dd16000848385612720565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612e4883612e396000866000612726565b612e4285612f6a565b1761274e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612ee957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612eae565b5060008203612f24576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612f3a6000848385612779565b505050565b6000818310612f5757612f528284612f7a565b612f62565b612f618383612f7a565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612f9d906140f1565b90600052602060002090601f016020900481019282612fbf5760008555613006565b82601f10612fd857805160ff1916838001178555613006565b82800160010185558215613006579182015b82811115613005578251825591602001919060010190612fea565b5b5090506130139190613066565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561307f576000816000905550600101613067565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130cc81613097565b81146130d757600080fd5b50565b6000813590506130e9816130c3565b92915050565b6000602082840312156131055761310461308d565b5b6000613113848285016130da565b91505092915050565b60008115159050919050565b6131318161311c565b82525050565b600060208201905061314c6000830184613128565b92915050565b6000819050919050565b61316581613152565b811461317057600080fd5b50565b6000813590506131828161315c565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131d68261318d565b810181811067ffffffffffffffff821117156131f5576131f461319e565b5b80604052505050565b6000613208613083565b905061321482826131cd565b919050565b600067ffffffffffffffff8211156132345761323361319e565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61325d8161324a565b811461326857600080fd5b50565b60008135905061327a81613254565b92915050565b600061329361328e84613219565b6131fe565b905080838252602082019050602084028301858111156132b6576132b5613245565b5b835b818110156132df57806132cb888261326b565b8452602084019350506020810190506132b8565b5050509392505050565b600082601f8301126132fe576132fd613188565b5b813561330e848260208601613280565b91505092915050565b6000806040838503121561332e5761332d61308d565b5b600061333c85828601613173565b925050602083013567ffffffffffffffff81111561335d5761335c613092565b5b613369858286016132e9565b9150509250929050565b6000602082840312156133895761338861308d565b5b600082013567ffffffffffffffff8111156133a7576133a6613092565b5b6133b3848285016132e9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133f65780820151818401526020810190506133db565b83811115613405576000848401525b50505050565b6000613416826133bc565b61342081856133c7565b93506134308185602086016133d8565b6134398161318d565b840191505092915050565b6000602082019050818103600083015261345e818461340b565b905092915050565b60006020828403121561347c5761347b61308d565b5b600061348a84828501613173565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134be82613493565b9050919050565b6134ce816134b3565b82525050565b60006020820190506134e960008301846134c5565b92915050565b6134f8816134b3565b811461350357600080fd5b50565b600081359050613515816134ef565b92915050565b600080604083850312156135325761353161308d565b5b600061354085828601613506565b925050602061355185828601613173565b9150509250929050565b61356481613152565b82525050565b600060208201905061357f600083018461355b565b92915050565b600080fd5b600067ffffffffffffffff8211156135a5576135a461319e565b5b6135ae8261318d565b9050602081019050919050565b82818337600083830152505050565b60006135dd6135d88461358a565b6131fe565b9050828152602081018484840111156135f9576135f8613585565b5b6136048482856135bb565b509392505050565b600082601f83011261362157613620613188565b5b81356136318482602086016135ca565b91505092915050565b6000602082840312156136505761364f61308d565b5b600082013567ffffffffffffffff81111561366e5761366d613092565b5b61367a8482850161360c565b91505092915050565b60008060006060848603121561369c5761369b61308d565b5b60006136aa86828701613506565b93505060206136bb86828701613506565b92505060406136cc86828701613173565b9150509250925092565b6136df8161311c565b81146136ea57600080fd5b50565b6000813590506136fc816136d6565b92915050565b6000602082840312156137185761371761308d565b5b6000613726848285016136ed565b91505092915050565b6000602082840312156137455761374461308d565b5b600061375384828501613506565b91505092915050565b600080604083850312156137735761377261308d565b5b600061378185828601613173565b925050602061379285828601613506565b9150509250929050565b6000602082840312156137b2576137b161308d565b5b60006137c08482850161326b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137fe81613152565b82525050565b600061381083836137f5565b60208301905092915050565b6000602082019050919050565b6000613834826137c9565b61383e81856137d4565b9350613849836137e5565b8060005b8381101561387a5781516138618882613804565b975061386c8361381c565b92505060018101905061384d565b5085935050505092915050565b600060208201905081810360008301526138a18184613829565b905092915050565b6138b28161324a565b82525050565b60006020820190506138cd60008301846138a9565b92915050565b600080604083850312156138ea576138e961308d565b5b60006138f885828601613506565b9250506020613909858286016136ed565b9150509250929050565b6000806040838503121561392a5761392961308d565b5b600083013567ffffffffffffffff81111561394857613947613092565b5b613954858286016132e9565b925050602061396585828601613506565b9150509250929050565b600067ffffffffffffffff82111561398a5761398961319e565b5b6139938261318d565b9050602081019050919050565b60006139b36139ae8461396f565b6131fe565b9050828152602081018484840111156139cf576139ce613585565b5b6139da8482856135bb565b509392505050565b600082601f8301126139f7576139f6613188565b5b8135613a078482602086016139a0565b91505092915050565b60008060008060808587031215613a2a57613a2961308d565b5b6000613a3887828801613506565b9450506020613a4987828801613506565b9350506040613a5a87828801613173565b925050606085013567ffffffffffffffff811115613a7b57613a7a613092565b5b613a87878288016139e2565b91505092959194509250565b60008060408385031215613aaa57613aa961308d565b5b6000613ab885828601613506565b9250506020613ac985828601613506565b9150509250929050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b09601f836133c7565b9150613b1482613ad3565b602082019050919050565b60006020820190508181036000830152613b3881613afc565b9050919050565b7f4d696e206d696e74206973203120746f6b656e00000000000000000000000000600082015250565b6000613b756013836133c7565b9150613b8082613b3f565b602082019050919050565b60006020820190508181036000830152613ba481613b68565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613be582613152565b9150613bf083613152565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2557613c24613bab565b5b828201905092915050565b7f4d696e74696e67206d6f726520746f6b656e73207468616e20616c6c6f776564600082015250565b6000613c666020836133c7565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f4d6178207065722077616c6c657420647572696e6720574c2069732035000000600082015250565b6000613cd2601d836133c7565b9150613cdd82613c9c565b602082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b7f57686974656c6973742073616c65206e6f742061637469766521000000000000600082015250565b6000613d3e601a836133c7565b9150613d4982613d08565b602082019050919050565b60006020820190508181036000830152613d6d81613d31565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613daa6014836133c7565b9150613db582613d74565b602082019050919050565b60006020820190508181036000830152613dd981613d9d565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000613e16601d836133c7565b9150613e2182613de0565b602082019050919050565b60006020820190508181036000830152613e4581613e09565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b6000613e82600f836133c7565b9150613e8d82613e4c565b602082019050919050565b60006020820190508181036000830152613eb181613e75565b9050919050565b6000613ec382613152565b9150613ece83613152565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f0757613f06613bab565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613f486013836133c7565b9150613f5382613f12565b602082019050919050565b60006020820190508181036000830152613f7781613f3b565b9050919050565b7f4d617820537570706c792065786365656465642e000000000000000000000000600082015250565b6000613fb46014836133c7565b9150613fbf82613f7e565b602082019050919050565b60006020820190508181036000830152613fe381613fa7565b9050919050565b7f46726565206d696e7420636c61696d65642e0000000000000000000000000000600082015250565b60006140206012836133c7565b915061402b82613fea565b602082019050919050565b6000602082019050818103600083015261404f81614013565b9050919050565b7f4e6f7420656c696769626c6520666f722066726565206d696e742e0000000000600082015250565b600061408c601b836133c7565b915061409782614056565b602082019050919050565b600060208201905081810360008301526140bb8161407f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061410957607f821691505b60208210810361411c5761411b6140c2565b5b50919050565b7f5075626c69632073616c65206e6f742061637469766521000000000000000000600082015250565b60006141586017836133c7565b915061416382614122565b602082019050919050565b600060208201905081810360008301526141878161414b565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006141c46014836133c7565b91506141cf8261418e565b602082019050919050565b600060208201905081810360008301526141f3816141b7565b9050919050565b600081905092915050565b50565b60006142156000836141fa565b915061422082614205565b600082019050919050565b600061423682614208565b9150819050919050565b7f4d617820537570706c792045786365656465642e000000000000000000000000600082015250565b60006142766014836133c7565b915061428182614240565b602082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b60006142f3826142db565b9050919050565b6000614305826142e8565b9050919050565b61431d614318826134b3565b6142fa565b82525050565b600061432f828461430c565b60148201915081905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061439a602f836133c7565b91506143a58261433e565b604082019050919050565b600060208201905081810360008301526143c98161438d565b9050919050565b600081905092915050565b60006143e6826133bc565b6143f081856143d0565b93506144008185602086016133d8565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461442e816140f1565b61443881866143d0565b94506001821660008114614453576001811461446457614497565b60ff19831686528186019350614497565b61446d8561440c565b60005b8381101561448f57815481890152600182019150602081019050614470565b838801955050505b50505092915050565b60006144ac82866143db565b91506144b882856143db565b91506144c48284614421565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061452d6026836133c7565b9150614538826144d1565b604082019050919050565b6000602082019050818103600083015261455c81614520565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145996020836133c7565b91506145a482614563565b602082019050919050565b600060208201905081810360008301526145c88161458c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006145f6826145cf565b61460081856145da565b93506146108185602086016133d8565b6146198161318d565b840191505092915050565b600060808201905061463960008301876134c5565b61464660208301866134c5565b614653604083018561355b565b818103606083015261466581846145eb565b905095945050505050565b60008151905061467f816130c3565b92915050565b60006020828403121561469b5761469a61308d565b5b60006146a984828501614670565b91505092915050565b60006146bd82613152565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146ef576146ee613bab565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061473482613152565b915061473f83613152565b92508261474f5761474e6146fa565b5b828204905092915050565b600061476582613152565b915061477083613152565b92508282101561478357614782613bab565b5b828203905092915050565b600061479982613152565b91506147a483613152565b9250826147b4576147b36146fa565b5b82820690509291505056fea26469706673582212201c88949b1ba8e63ca38950330cad2381793466c582d014b00fc0cd6866f028a664736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d656a6a4776323151704666543634393669696d664b3162465173587478724e7147313670354b7034447472582f00000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80637871e15411610190578063b88d4fde116100dc578063d6ac288311610095578063e985e9c51161006f578063e985e9c514610af9578063eac989f814610b36578063f2fde38b14610b61578063f648498014610b8a576102e4565b8063d6ac288314610a54578063db4aa51914610a91578063e6e67bcb14610abc576102e4565b8063b88d4fde14610946578063c40542ec1461096f578063c87b56dd14610998578063ced2053b146109d5578063d5abeb01146109fe578063d6492d8114610a29576102e4565b806394354fd011610149578063a22cb46511610123578063a22cb4651461088e578063ad3e31b7146108b7578063b071401b146108e0578063b365a3e214610909576102e4565b806394354fd01461080d57806395d89b41146108385780639a73894414610863576102e4565b80637871e154146107115780637e295d661461073a57806380a0bcc6146107515780638462151c1461077a57806389ba959c146107b75780638da5cb5b146107e2576102e4565b8063264d4f891161024f57806353ac010a116102085780636992d229116101e25780636992d2291461066957806370a0823114610694578063715018a6146106d1578063734ae080146106e8576102e4565b806353ac010a146105d65780635503a0e8146106015780636352211e1461062c576102e4565b8063264d4f89146104dc5780632f9a7c5814610507578063361fab25146105305780633ccfd60b146105595780633ec4de351461057057806342842e0e146105ad576102e4565b8063095ea7b3116102a1578063095ea7b3146103e2578063102e766d1461040b57806316ba10e01461043657806318160ddd1461045f57806323b872dd1461048a578063254a4737146104b3576102e4565b806301ffc9a7146102e95780630528a65b14610326578063068663251461034257806306fdde031461035e5780630788370314610389578063081812fc146103a5575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b91906130ef565b610bb3565b60405161031d9190613137565b60405180910390f35b610340600480360381019061033b9190613317565b610c45565b005b61035c60048036038101906103579190613373565b610fc2565b005b34801561036a57600080fd5b506103736111ac565b6040516103809190613444565b60405180910390f35b6103a3600480360381019061039e9190613466565b61123e565b005b3480156103b157600080fd5b506103cc60048036038101906103c79190613466565b6113f4565b6040516103d991906134d4565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061351b565b611473565b005b34801561041757600080fd5b506104206115b7565b60405161042d919061356a565b60405180910390f35b34801561044257600080fd5b5061045d6004803603810190610458919061363a565b6115bd565b005b34801561046b57600080fd5b506104746115df565b604051610481919061356a565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613683565b6115f6565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613702565b611918565b005b3480156104e857600080fd5b506104f161193d565b6040516104fe919061356a565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613466565b611943565b005b34801561053c57600080fd5b5061055760048036038101906105529190613466565b611955565b005b34801561056557600080fd5b5061056e611967565b005b34801561057c57600080fd5b506105976004803603810190610592919061372f565b611a4a565b6040516105a4919061356a565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190613683565b611a62565b005b3480156105e257600080fd5b506105eb611a82565b6040516105f89190613137565b60405180910390f35b34801561060d57600080fd5b50610616611a95565b6040516106239190613444565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190613466565b611b23565b60405161066091906134d4565b60405180910390f35b34801561067557600080fd5b5061067e611b35565b60405161068b9190613137565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b6919061372f565b611b48565b6040516106c8919061356a565b60405180910390f35b3480156106dd57600080fd5b506106e6611c00565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190613466565b611c14565b005b34801561071d57600080fd5b506107386004803603810190610733919061375c565b611c26565b005b34801561074657600080fd5b5061074f611c93565b005b34801561075d57600080fd5b506107786004803603810190610773919061379c565b611d57565b005b34801561078657600080fd5b506107a1600480360381019061079c919061372f565b611d69565b6040516107ae9190613887565b60405180910390f35b3480156107c357600080fd5b506107cc611ead565b6040516107d991906138b8565b60405180910390f35b3480156107ee57600080fd5b506107f7611eb3565b60405161080491906134d4565b60405180910390f35b34801561081957600080fd5b50610822611edd565b60405161082f919061356a565b60405180910390f35b34801561084457600080fd5b5061084d611ee3565b60405161085a9190613444565b60405180910390f35b34801561086f57600080fd5b50610878611f75565b604051610885919061356a565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b091906138d3565b611f7b565b005b3480156108c357600080fd5b506108de60048036038101906108d9919061379c565b6120f2565b005b3480156108ec57600080fd5b5061090760048036038101906109029190613466565b612104565b005b34801561091557600080fd5b50610930600480360381019061092b9190613913565b612116565b60405161093d9190613137565b60405180910390f35b34801561095257600080fd5b5061096d60048036038101906109689190613a10565b612153565b005b34801561097b57600080fd5b5061099660048036038101906109919190613702565b6121c6565b005b3480156109a457600080fd5b506109bf60048036038101906109ba9190613466565b6121eb565b6040516109cc9190613444565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190613466565b612295565b005b348015610a0a57600080fd5b50610a136122a7565b604051610a20919061356a565b60405180910390f35b348015610a3557600080fd5b50610a3e6122ad565b604051610a4b91906138b8565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a76919061372f565b6122b3565b604051610a88919061356a565b60405180910390f35b348015610a9d57600080fd5b50610aa66122cb565b604051610ab3919061356a565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613913565b6122d1565b604051610af09190613137565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613a93565b61230e565b604051610b2d9190613137565b60405180910390f35b348015610b4257600080fd5b50610b4b6123a2565b604051610b589190613444565b60405180910390f35b348015610b6d57600080fd5b50610b886004803603810190610b83919061372f565b612430565b005b348015610b9657600080fd5b50610bb16004803603810190610bac919061363a565b6124b3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c0e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c3e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600260095403610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190613b1f565b60405180910390fd5b6002600981905550816001811015610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90613b8b565b60405180910390fd5b600e5481610ce36115df565b610ced9190613bda565b1115610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590613c7c565b60405180910390fd5b60115481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d7c9190613bda565b1115610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490613ce8565b60405180910390fd5b601260019054906101000a900460ff16610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390613d54565b60405180910390fd5b600083118015610e1e57506010548311155b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490613dc0565b60405180910390fd5b60115483610e6a33611b48565b610e749190613bda565b1115610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90613e2c565b60405180910390fd5b610ebf8233612116565b610efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef590613e98565b60405180910390fd5b82600d54610f0c9190613eb8565b341015610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590613f5e565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f9d9190613bda565b92505081905550610fb5610faf6124d5565b846124dd565b5060016009819055505050565b600260095403611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90613b1f565b60405180910390fd5b6002600981905550600e54600161101c6115df565b6110269190613bda565b1115611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e90613fca565b60405180910390fd5b600180601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110b49190613bda565b11156110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90614036565b60405180910390fd5b6110ff81336122d1565b61113e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611135906140a2565b60405180910390fd5b6001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118e9190613bda565b925050819055506111a133600f546124dd565b600160098190555050565b6060600280546111bb906140f1565b80601f01602080910402602001604051908101604052809291908181526020018280546111e7906140f1565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b5050505050905090565b600260095403611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90613b1f565b60405180910390fd5b600260098190555060006112956115df565b9050601260009054906101000a900460ff166112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061416e565b60405180910390fd5b6000821180156112f857506010548211155b611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613dc0565b60405180910390fd5b600e5482826113469190613bda565b1115611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e906141da565b60405180910390fd5b81600c546113959190613eb8565b3410156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90613f5e565b60405180910390fd5b6113e86113e26124d5565b836124dd565b50600160098190555050565b60006113ff826124fb565b611435576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061147e82611b23565b90508073ffffffffffffffffffffffffffffffffffffffff1661149f61255a565b73ffffffffffffffffffffffffffffffffffffffff1614611502576114cb816114c661255a565b61230e565b611501576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6115c5612562565b80600b90805190602001906115db929190612f91565b5050565b60006115e96125e0565b6001546000540303905090565b6000611601826125e9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611668576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611674846126b5565b9150915061168a818761168561255a565b6126dc565b6116d65761169f8661169a61255a565b61230e565b6116d5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361173c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117498686866001612720565b801561175457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611822856117fe888887612726565b7c02000000000000000000000000000000000000000000000000000000001761274e565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118a857600060018501905060006004600083815260200190815260200160002054036118a65760005481146118a5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119108686866001612779565b505050505050565b611920612562565b80601260006101000a81548160ff02191690831515021790555050565b60115481565b61194b612562565b80600c8190555050565b61195d612562565b80600e8190555050565b61196f612562565b6002600954036119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90613b1f565b60405180910390fd5b6002600981905550600047905060006119cb611eb3565b73ffffffffffffffffffffffffffffffffffffffff16826040516119ee9061422b565b60006040518083038185875af1925050503d8060008114611a2b576040519150601f19603f3d011682016040523d82523d6000602084013e611a30565b606091505b5050905080611a3e57600080fd5b50506001600981905550565b60156020528060005260406000206000915090505481565b611a7d83838360405180602001604052806000815250612153565b505050565b601260009054906101000a900460ff1681565b600b8054611aa2906140f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ace906140f1565b8015611b1b5780601f10611af057610100808354040283529160200191611b1b565b820191906000526020600020905b815481529060010190602001808311611afe57829003601f168201915b505050505081565b6000611b2e826125e9565b9050919050565b601260019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611baf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611c08612562565b611c12600061277f565b565b611c1c612562565b8060118190555050565b611c2e612562565b600e5482611c3a6115df565b611c449190613bda565b1115611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c906141da565b60405180910390fd5b611c8f81836124dd565b5050565b611c9b612562565b600260095403611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd790613b1f565b60405180910390fd5b6002600981905550600e54600f54611cf66115df565b611d009190613bda565b1115611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d389061428c565b60405180910390fd5b611d4d33600f546124dd565b6001600981905550565b611d5f612562565b8060148190555050565b60606000611d7683611b48565b67ffffffffffffffff811115611d8f57611d8e61319e565b5b604051908082528060200260200182016040528015611dbd5781602001602082028036833780820191505090505b5090506000611dca612845565b905060008060005b83811015611ea0576000611de58261284e565b9050806040015115611df75750611e93565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e3757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e915781868580600101965081518110611e8457611e836142ac565b5b6020026020010181815250505b505b8080600101915050611dd2565b5083945050505050919050565b60145481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b606060038054611ef2906140f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611f1e906140f1565b8015611f6b5780601f10611f4057610100808354040283529160200191611f6b565b820191906000526020600020905b815481529060010190602001808311611f4e57829003601f168201915b5050505050905090565b600d5481565b611f8361255a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fe7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ff461255a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120a161255a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120e69190613137565b60405180910390a35050565b6120fa612562565b8060138190555050565b61210c612562565b8060108190555050565b600061214b83601354846040516020016121309190614323565b60405160208183030381529060405280519060200120612879565b905092915050565b61215e8484846115f6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121c05761218984848484612890565b6121bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6121ce612562565b80601260016101000a81548160ff02191690831515021790555050565b60606121f6826124fb565b612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c906143b0565b60405180910390fd5b600061223f6129e0565b9050600081511161225f576040518060200160405280600081525061228d565b8061226984612a72565b600b60405160200161227d939291906144a0565b6040516020818303038152906040525b915050919050565b61229d612562565b80600d8190555050565b600e5481565b60135481565b60166020528060005260406000206000915090505481565b600f5481565b600061230683601454846040516020016122eb9190614323565b60405160208183030381529060405280519060200120612879565b905092915050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a80546123af906140f1565b80601f01602080910402602001604051908101604052809291908181526020018280546123db906140f1565b80156124285780601f106123fd57610100808354040283529160200191612428565b820191906000526020600020905b81548152906001019060200180831161240b57829003601f168201915b505050505081565b612438612562565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249e90614543565b60405180910390fd5b6124b08161277f565b50565b6124bb612562565b80600a90805190602001906124d1929190612f91565b5050565b600033905090565b6124f7828260405180602001604052806000815250612bd2565b5050565b6000816125066125e0565b11158015612515575060005482105b8015612553575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61256a6124d5565b73ffffffffffffffffffffffffffffffffffffffff16612588611eb3565b73ffffffffffffffffffffffffffffffffffffffff16146125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d5906145af565b60405180910390fd5b565b60006001905090565b600080829050806125f86125e0565b1161267e5760005481101561267d5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361267b575b60008103612671576004600083600190039350838152602001908152602001600020549050612647565b80925050506126b0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861273d868684612c6f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b612856613017565b6128726004600084815260200190815260200160002054612c78565b9050919050565b6000826128868584612d2e565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128b661255a565b8786866040518563ffffffff1660e01b81526004016128d89493929190614624565b6020604051808303816000875af192505050801561291457506040513d601f19601f820116820180604052508101906129119190614685565b60015b61298d573d8060008114612944576040519150601f19603f3d011682016040523d82523d6000602084013e612949565b606091505b506000815103612985576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546129ef906140f1565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1b906140f1565b8015612a685780601f10612a3d57610100808354040283529160200191612a68565b820191906000526020600020905b815481529060010190602001808311612a4b57829003601f168201915b5050505050905090565b606060008203612ab9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bcd565b600082905060005b60008214612aeb578080612ad4906146b2565b915050600a82612ae49190614729565b9150612ac1565b60008167ffffffffffffffff811115612b0757612b0661319e565b5b6040519080825280601f01601f191660200182016040528015612b395781602001600182028036833780820191505090505b5090505b60008514612bc657600182612b52919061475a565b9150600a85612b61919061478e565b6030612b6d9190613bda565b60f81b818381518110612b8357612b826142ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bbf9190614729565b9450612b3d565b8093505050505b919050565b612bdc8383612d84565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c6a57600080549050600083820390505b612c1c6000868380600101945086612890565b612c52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612c09578160005414612c6757600080fd5b50505b505050565b60009392505050565b612c80613017565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b8451811015612d7957612d6482868381518110612d5757612d566142ac565b5b6020026020010151612f3f565b91508080612d71906146b2565b915050612d37565b508091505092915050565b60008054905060008203612dc4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dd16000848385612720565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612e4883612e396000866000612726565b612e4285612f6a565b1761274e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612ee957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612eae565b5060008203612f24576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612f3a6000848385612779565b505050565b6000818310612f5757612f528284612f7a565b612f62565b612f618383612f7a565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612f9d906140f1565b90600052602060002090601f016020900481019282612fbf5760008555613006565b82601f10612fd857805160ff1916838001178555613006565b82800160010185558215613006579182015b82811115613005578251825591602001919060010190612fea565b5b5090506130139190613066565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561307f576000816000905550600101613067565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6130cc81613097565b81146130d757600080fd5b50565b6000813590506130e9816130c3565b92915050565b6000602082840312156131055761310461308d565b5b6000613113848285016130da565b91505092915050565b60008115159050919050565b6131318161311c565b82525050565b600060208201905061314c6000830184613128565b92915050565b6000819050919050565b61316581613152565b811461317057600080fd5b50565b6000813590506131828161315c565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131d68261318d565b810181811067ffffffffffffffff821117156131f5576131f461319e565b5b80604052505050565b6000613208613083565b905061321482826131cd565b919050565b600067ffffffffffffffff8211156132345761323361319e565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61325d8161324a565b811461326857600080fd5b50565b60008135905061327a81613254565b92915050565b600061329361328e84613219565b6131fe565b905080838252602082019050602084028301858111156132b6576132b5613245565b5b835b818110156132df57806132cb888261326b565b8452602084019350506020810190506132b8565b5050509392505050565b600082601f8301126132fe576132fd613188565b5b813561330e848260208601613280565b91505092915050565b6000806040838503121561332e5761332d61308d565b5b600061333c85828601613173565b925050602083013567ffffffffffffffff81111561335d5761335c613092565b5b613369858286016132e9565b9150509250929050565b6000602082840312156133895761338861308d565b5b600082013567ffffffffffffffff8111156133a7576133a6613092565b5b6133b3848285016132e9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133f65780820151818401526020810190506133db565b83811115613405576000848401525b50505050565b6000613416826133bc565b61342081856133c7565b93506134308185602086016133d8565b6134398161318d565b840191505092915050565b6000602082019050818103600083015261345e818461340b565b905092915050565b60006020828403121561347c5761347b61308d565b5b600061348a84828501613173565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134be82613493565b9050919050565b6134ce816134b3565b82525050565b60006020820190506134e960008301846134c5565b92915050565b6134f8816134b3565b811461350357600080fd5b50565b600081359050613515816134ef565b92915050565b600080604083850312156135325761353161308d565b5b600061354085828601613506565b925050602061355185828601613173565b9150509250929050565b61356481613152565b82525050565b600060208201905061357f600083018461355b565b92915050565b600080fd5b600067ffffffffffffffff8211156135a5576135a461319e565b5b6135ae8261318d565b9050602081019050919050565b82818337600083830152505050565b60006135dd6135d88461358a565b6131fe565b9050828152602081018484840111156135f9576135f8613585565b5b6136048482856135bb565b509392505050565b600082601f83011261362157613620613188565b5b81356136318482602086016135ca565b91505092915050565b6000602082840312156136505761364f61308d565b5b600082013567ffffffffffffffff81111561366e5761366d613092565b5b61367a8482850161360c565b91505092915050565b60008060006060848603121561369c5761369b61308d565b5b60006136aa86828701613506565b93505060206136bb86828701613506565b92505060406136cc86828701613173565b9150509250925092565b6136df8161311c565b81146136ea57600080fd5b50565b6000813590506136fc816136d6565b92915050565b6000602082840312156137185761371761308d565b5b6000613726848285016136ed565b91505092915050565b6000602082840312156137455761374461308d565b5b600061375384828501613506565b91505092915050565b600080604083850312156137735761377261308d565b5b600061378185828601613173565b925050602061379285828601613506565b9150509250929050565b6000602082840312156137b2576137b161308d565b5b60006137c08482850161326b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137fe81613152565b82525050565b600061381083836137f5565b60208301905092915050565b6000602082019050919050565b6000613834826137c9565b61383e81856137d4565b9350613849836137e5565b8060005b8381101561387a5781516138618882613804565b975061386c8361381c565b92505060018101905061384d565b5085935050505092915050565b600060208201905081810360008301526138a18184613829565b905092915050565b6138b28161324a565b82525050565b60006020820190506138cd60008301846138a9565b92915050565b600080604083850312156138ea576138e961308d565b5b60006138f885828601613506565b9250506020613909858286016136ed565b9150509250929050565b6000806040838503121561392a5761392961308d565b5b600083013567ffffffffffffffff81111561394857613947613092565b5b613954858286016132e9565b925050602061396585828601613506565b9150509250929050565b600067ffffffffffffffff82111561398a5761398961319e565b5b6139938261318d565b9050602081019050919050565b60006139b36139ae8461396f565b6131fe565b9050828152602081018484840111156139cf576139ce613585565b5b6139da8482856135bb565b509392505050565b600082601f8301126139f7576139f6613188565b5b8135613a078482602086016139a0565b91505092915050565b60008060008060808587031215613a2a57613a2961308d565b5b6000613a3887828801613506565b9450506020613a4987828801613506565b9350506040613a5a87828801613173565b925050606085013567ffffffffffffffff811115613a7b57613a7a613092565b5b613a87878288016139e2565b91505092959194509250565b60008060408385031215613aaa57613aa961308d565b5b6000613ab885828601613506565b9250506020613ac985828601613506565b9150509250929050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613b09601f836133c7565b9150613b1482613ad3565b602082019050919050565b60006020820190508181036000830152613b3881613afc565b9050919050565b7f4d696e206d696e74206973203120746f6b656e00000000000000000000000000600082015250565b6000613b756013836133c7565b9150613b8082613b3f565b602082019050919050565b60006020820190508181036000830152613ba481613b68565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613be582613152565b9150613bf083613152565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2557613c24613bab565b5b828201905092915050565b7f4d696e74696e67206d6f726520746f6b656e73207468616e20616c6c6f776564600082015250565b6000613c666020836133c7565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f4d6178207065722077616c6c657420647572696e6720574c2069732035000000600082015250565b6000613cd2601d836133c7565b9150613cdd82613c9c565b602082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b7f57686974656c6973742073616c65206e6f742061637469766521000000000000600082015250565b6000613d3e601a836133c7565b9150613d4982613d08565b602082019050919050565b60006020820190508181036000830152613d6d81613d31565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613daa6014836133c7565b9150613db582613d74565b602082019050919050565b60006020820190508181036000830152613dd981613d9d565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b6000613e16601d836133c7565b9150613e2182613de0565b602082019050919050565b60006020820190508181036000830152613e4581613e09565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b6000613e82600f836133c7565b9150613e8d82613e4c565b602082019050919050565b60006020820190508181036000830152613eb181613e75565b9050919050565b6000613ec382613152565b9150613ece83613152565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f0757613f06613bab565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613f486013836133c7565b9150613f5382613f12565b602082019050919050565b60006020820190508181036000830152613f7781613f3b565b9050919050565b7f4d617820537570706c792065786365656465642e000000000000000000000000600082015250565b6000613fb46014836133c7565b9150613fbf82613f7e565b602082019050919050565b60006020820190508181036000830152613fe381613fa7565b9050919050565b7f46726565206d696e7420636c61696d65642e0000000000000000000000000000600082015250565b60006140206012836133c7565b915061402b82613fea565b602082019050919050565b6000602082019050818103600083015261404f81614013565b9050919050565b7f4e6f7420656c696769626c6520666f722066726565206d696e742e0000000000600082015250565b600061408c601b836133c7565b915061409782614056565b602082019050919050565b600060208201905081810360008301526140bb8161407f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061410957607f821691505b60208210810361411c5761411b6140c2565b5b50919050565b7f5075626c69632073616c65206e6f742061637469766521000000000000000000600082015250565b60006141586017836133c7565b915061416382614122565b602082019050919050565b600060208201905081810360008301526141878161414b565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006141c46014836133c7565b91506141cf8261418e565b602082019050919050565b600060208201905081810360008301526141f3816141b7565b9050919050565b600081905092915050565b50565b60006142156000836141fa565b915061422082614205565b600082019050919050565b600061423682614208565b9150819050919050565b7f4d617820537570706c792045786365656465642e000000000000000000000000600082015250565b60006142766014836133c7565b915061428182614240565b602082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160601b9050919050565b60006142f3826142db565b9050919050565b6000614305826142e8565b9050919050565b61431d614318826134b3565b6142fa565b82525050565b600061432f828461430c565b60148201915081905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061439a602f836133c7565b91506143a58261433e565b604082019050919050565b600060208201905081810360008301526143c98161438d565b9050919050565b600081905092915050565b60006143e6826133bc565b6143f081856143d0565b93506144008185602086016133d8565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461442e816140f1565b61443881866143d0565b94506001821660008114614453576001811461446457614497565b60ff19831686528186019350614497565b61446d8561440c565b60005b8381101561448f57815481890152600182019150602081019050614470565b838801955050505b50505092915050565b60006144ac82866143db565b91506144b882856143db565b91506144c48284614421565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061452d6026836133c7565b9150614538826144d1565b604082019050919050565b6000602082019050818103600083015261455c81614520565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145996020836133c7565b91506145a482614563565b602082019050919050565b600060208201905081810360008301526145c88161458c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006145f6826145cf565b61460081856145da565b93506146108185602086016133d8565b6146198161318d565b840191505092915050565b600060808201905061463960008301876134c5565b61464660208301866134c5565b614653604083018561355b565b818103606083015261466581846145eb565b905095945050505050565b60008151905061467f816130c3565b92915050565b60006020828403121561469b5761469a61308d565b5b60006146a984828501614670565b91505092915050565b60006146bd82613152565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036146ef576146ee613bab565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061473482613152565b915061473f83613152565b92508261474f5761474e6146fa565b5b828204905092915050565b600061476582613152565b915061477083613152565b92508282101561478357614782613bab565b5b828203905092915050565b600061479982613152565b91506147a483613152565b9250826147b4576147b36146fa565b5b82820690509291505056fea26469706673582212201c88949b1ba8e63ca38950330cad2381793466c582d014b00fc0cd6866f028a664736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d656a6a4776323151704666543634393669696d664b3162465173587478724e7147313670354b7034447472582f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmejjGv21QpFfT6496iimfK1bFQsXtxrNqG16p5Kp4DtrX/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d656a6a4776323151704666543634393669696d664b3162
Arg [3] : 465173587478724e7147313670354b7034447472582f00000000000000000000


Deployed Bytecode Sourcemap

89045:7772:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46663:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91419:759;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91133:278;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47565:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92186:533;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54048:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53489:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89284:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93580:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43316:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57755:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94597:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89505:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94035:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94255:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94969:207;;;;;;;;;;;;;:::i;:::-;;89705:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60668:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89550:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89244;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48958:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89590:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44500:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24652:103;;;;;;;;;;;;;:::i;:::-;;93872:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92729:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90925:200;;;;;;;;;;;;;:::i;:::-;;94489:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95326:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89667:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24004:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89460:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47741:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89331:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54606:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94385:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93709:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92947:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61451:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94708:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96235:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94138:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89381:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89633:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89762:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89419:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93141:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55071:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89220:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24910:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93490:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46663:639;46748:4;47087:10;47072:25;;:11;:25;;;;:102;;;;47164:10;47149:25;;:11;:25;;;;47072:102;:179;;;;47241:10;47226:25;;:11;:25;;;;47072:179;47052:199;;46663:639;;;:::o;91419:759::-;27281:1;27879:7;;:19;27871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;91532:11:::1;90302:1;90286:12;:17;;90278:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;90378:9;;90362:12;90346:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;;90338:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;90488:19;;90472:12;90443:14;:26;90458:10;90443:26;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;:64;;90435:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;91641:16:::2;;;;;;;;;;;91633:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;91721:1;91707:11;:15;:52;;;;;91741:18;;91726:11;:33;;91707:52;91699:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;91842:19;;91827:11;91803:21;91813:10;91803:9;:21::i;:::-;:35;;;;:::i;:::-;:58;;91795:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;91914:26;91922:5;91929:10;91914:7;:26::i;:::-;91906:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;92009:11;91992:14;;:28;;;;:::i;:::-;91979:9;:41;;91971:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;92095:11;92065:14;:26;92080:10;92065:26;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;92134:36;92144:12;:10;:12::i;:::-;92158:11;92134:9;:36::i;:::-;28043:1:::1;27237::::0;28191:7;:22;;;;91419:759;;:::o;91133:278::-;27281:1;27879:7;;:19;27871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;90643:9:::1;;90638:1;90622:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;90614:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;90738:1;90733::::0;90696:22:::1;:34;90719:10;90696:34;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:43;;90688:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;91241:30:::2;91253:5;91260:10;91241:11;:30::i;:::-;91233:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;91352:1;91314:22;:34;91337:10;91314:34;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;91366:37;91376:10;91388:14;;91366:9;:37::i;:::-;27237:1:::0;28191:7;:22;;;;91133:278;:::o;47565:100::-;47619:13;47652:5;47645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47565:100;:::o;92186:533::-;27281:1;27879:7;;:19;27871:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;92260:14:::1;92277:13;:11;:13::i;:::-;92260:30;;92342:13;;;;;;;;;;;92334:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;92416:1;92402:11;:15;:52;;;;;92436:18;;92421:11;:33;;92402:52;92394:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;92522:9;;92507:11;92498:6;:20;;;;:::i;:::-;:33;;92490:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;92602:11;92588;;:25;;;;:::i;:::-;92575:9;:38;;92567:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;92675:36;92685:12;:10;:12::i;:::-;92699:11;92675:9;:36::i;:::-;92249:470;27237:1:::0;28191:7;:22;;;;92186:533;:::o;54048:218::-;54124:7;54149:16;54157:7;54149;:16::i;:::-;54144:64;;54174:34;;;;;;;;;;;;;;54144:64;54228:15;:24;54244:7;54228:24;;;;;;;;;;;:30;;;;;;;;;;;;54221:37;;54048:218;;;:::o;53489:400::-;53570:13;53586:16;53594:7;53586;:16::i;:::-;53570:32;;53642:5;53619:28;;:19;:17;:19::i;:::-;:28;;;53615:175;;53667:44;53684:5;53691:19;:17;:19::i;:::-;53667:16;:44::i;:::-;53662:128;;53739:35;;;;;;;;;;;;;;53662:128;53615:175;53835:2;53802:15;:24;53818:7;53802:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;53873:7;53869:2;53853:28;;53862:5;53853:28;;;;;;;;;;;;53559:330;53489:400;;:::o;89284:40::-;;;;:::o;93580:106::-;23890:13;:11;:13::i;:::-;93668:10:::1;93656:9;:22;;;;;;;;;;;;:::i;:::-;;93580:106:::0;:::o;43316:323::-;43377:7;43605:15;:13;:15::i;:::-;43590:12;;43574:13;;:28;:46;43567:53;;43316:323;:::o;57755:2817::-;57889:27;57919;57938:7;57919:18;:27::i;:::-;57889:57;;58004:4;57963:45;;57979:19;57963:45;;;57959:86;;58017:28;;;;;;;;;;;;;;57959:86;58059:27;58088:23;58115:35;58142:7;58115:26;:35::i;:::-;58058:92;;;;58250:68;58275:15;58292:4;58298:19;:17;:19::i;:::-;58250:24;:68::i;:::-;58245:180;;58338:43;58355:4;58361:19;:17;:19::i;:::-;58338:16;:43::i;:::-;58333:92;;58390:35;;;;;;;;;;;;;;58333:92;58245:180;58456:1;58442:16;;:2;:16;;;58438:52;;58467:23;;;;;;;;;;;;;;58438:52;58503:43;58525:4;58531:2;58535:7;58544:1;58503:21;:43::i;:::-;58639:15;58636:160;;;58779:1;58758:19;58751:30;58636:160;59176:18;:24;59195:4;59176:24;;;;;;;;;;;;;;;;59174:26;;;;;;;;;;;;59245:18;:22;59264:2;59245:22;;;;;;;;;;;;;;;;59243:24;;;;;;;;;;;59567:146;59604:2;59653:45;59668:4;59674:2;59678:19;59653:14;:45::i;:::-;39715:8;59625:73;59567:18;:146::i;:::-;59538:17;:26;59556:7;59538:26;;;;;;;;;;;:175;;;;59884:1;39715:8;59833:19;:47;:52;59829:627;;59906:19;59938:1;59928:7;:11;59906:33;;60095:1;60061:17;:30;60079:11;60061:30;;;;;;;;;;;;:35;60057:384;;60199:13;;60184:11;:28;60180:242;;60379:19;60346:17;:30;60364:11;60346:30;;;;;;;;;;;:52;;;;60180:242;60057:384;59887:569;59829:627;60503:7;60499:2;60484:27;;60493:4;60484:27;;;;;;;;;;;;60522:42;60543:4;60549:2;60553:7;60562:1;60522:20;:42::i;:::-;57878:2694;;;57755:2817;;;:::o;94597:103::-;23890:13;:11;:13::i;:::-;94683:9:::1;94667:13;;:25;;;;;;;;;;;;;;;;;;94597:103:::0;:::o;89505:38::-;;;;:::o;94035:93::-;23890:13;:11;:13::i;:::-;94115:5:::1;94101:11;:19;;;;94035:93:::0;:::o;94255:106::-;23890:13;:11;:13::i;:::-;94341:12:::1;94329:9;:24;;;;94255:106:::0;:::o;94969:207::-;23890:13;:11;:13::i;:::-;27281:1:::1;27879:7;;:19:::0;27871:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;95034:13:::2;95050:21;95034:37;;95087:7;95108;:5;:7::i;:::-;95100:21;;95129:8;95100:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95086:56;;;95165:2;95157:11;;;::::0;::::2;;95019:157;;27237:1:::1;28191:7;:22;;;;94969:207::o:0;89705:50::-;;;;;;;;;;;;;;;;;:::o;60668:185::-;60806:39;60823:4;60829:2;60833:7;60806:39;;;;;;;;;;;;:16;:39::i;:::-;60668:185;;;:::o;89550:33::-;;;;;;;;;;;;;:::o;89244:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48958:152::-;49030:7;49073:27;49092:7;49073:18;:27::i;:::-;49050:52;;48958:152;;;:::o;89590:36::-;;;;;;;;;;;;;:::o;44500:233::-;44572:7;44613:1;44596:19;;:5;:19;;;44592:60;;44624:28;;;;;;;;;;;;;;44592:60;38659:13;44670:18;:25;44689:5;44670:25;;;;;;;;;;;;;;;;:55;44663:62;;44500:233;;;:::o;24652:103::-;23890:13;:11;:13::i;:::-;24717:30:::1;24744:1;24717:18;:30::i;:::-;24652:103::o:0;93872:143::-;23890:13;:11;:13::i;:::-;93989:18:::1;93967:19;:40;;;;93872:143:::0;:::o;92729:210::-;23890:13;:11;:13::i;:::-;92853:9:::1;;92838:11;92822:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;92814:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;92898:33;92908:9;92919:11;92898:9;:33::i;:::-;92729:210:::0;;:::o;90925:200::-;23890:13;:11;:13::i;:::-;27281:1:::1;27879:7;;:19:::0;27871:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27281:1;28012:7;:18;;;;91035:9:::2;;91017:14;;91001:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;90993:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;91080:37;91090:10;91102:14;;91080:9;:37::i;:::-;27237:1:::1;28191:7;:22;;;;90925:200::o:0;94489:100::-;23890:13;:11;:13::i;:::-;94576:5:::1;94559:14;:22;;;;94489:100:::0;:::o;95326:792::-;95387:16;95441:18;95476:16;95486:5;95476:9;:16::i;:::-;95462:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95441:52;;95509:11;95523:14;:12;:14::i;:::-;95509:28;;95552:19;95586:25;95631:9;95626:447;95646:3;95642:1;:7;95626:447;;;95675:31;95709:15;95722:1;95709:12;:15::i;:::-;95675:49;;95747:9;:16;;;95743:73;;;95788:8;;;95743:73;95864:1;95838:28;;:9;:14;;;:28;;;95834:111;;95911:9;:14;;;95891:34;;95834:111;95988:5;95967:26;;:17;:26;;;95963:95;;96037:1;96018;96020:13;;;;;;96018:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;95963:95;95656:417;95626:447;95651:3;;;;;;;95626:447;;;;96094:1;96087:8;;;;;;95326:792;;;:::o;89667:29::-;;;;:::o;24004:87::-;24050:7;24077:6;;;;;;;;;;;24070:13;;24004:87;:::o;89460:38::-;;;;:::o;47741:104::-;47797:13;47830:7;47823:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47741:104;:::o;89331:43::-;;;;:::o;54606:308::-;54717:19;:17;:19::i;:::-;54705:31;;:8;:31;;;54701:61;;54745:17;;;;;;;;;;;;;;54701:61;54827:8;54775:18;:39;54794:19;:17;:19::i;:::-;54775:39;;;;;;;;;;;;;;;:49;54815:8;54775:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;54887:8;54851:55;;54866:19;:17;:19::i;:::-;54851:55;;;54897:8;54851:55;;;;;;:::i;:::-;;;;;;;;54606:308;;:::o;94385:96::-;23890:13;:11;:13::i;:::-;94468:5:::1;94453:12;:20;;;;94385:96:::0;:::o;93709:136::-;23890:13;:11;:13::i;:::-;93818:19:::1;93797:18;:40;;;;93709:136:::0;:::o;92947:186::-;93025:4;93049:76;93068:5;93075:12;;93116:6;93099:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;93089:35;;;;;;93049:18;:76::i;:::-;93042:83;;92947:186;;;;:::o;61451:399::-;61618:31;61631:4;61637:2;61641:7;61618:12;:31::i;:::-;61682:1;61664:2;:14;;;:19;61660:183;;61703:56;61734:4;61740:2;61744:7;61753:5;61703:30;:56::i;:::-;61698:145;;61787:40;;;;;;;;;;;;;;61698:145;61660:183;61451:399;;;;:::o;94708:109::-;23890:13;:11;:13::i;:::-;94800:9:::1;94781:16;;:28;;;;;;;;;;;;;;;;;;94708:109:::0;:::o;96235:395::-;96309:13;96343:17;96351:8;96343:7;:17::i;:::-;96335:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;96425:28;96456:10;:8;:10::i;:::-;96425:41;;96515:1;96490:14;96484:28;:32;:138;;;;;;;;;;;;;;;;;96556:14;96572:19;:8;:17;:19::i;:::-;96593:9;96539:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;96484:138;96477:145;;;96235:395;;;:::o;94138:92::-;23890:13;:11;:13::i;:::-;94217:5:::1;94200:14;:22;;;;94138:92:::0;:::o;89381:31::-;;;;:::o;89633:27::-;;;;:::o;89762:58::-;;;;;;;;;;;;;;;;;:::o;89419:34::-;;;;:::o;93141:192::-;93223:4;93247:78;93266:5;93273:14;;93316:6;93299:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;93289:35;;;;;;93247:18;:78::i;:::-;93240:85;;93141:192;;;;:::o;55071:164::-;55168:4;55192:18;:25;55211:5;55192:25;;;;;;;;;;;;;;;:35;55218:8;55192:35;;;;;;;;;;;;;;;;;;;;;;;;;55185:42;;55071:164;;;;:::o;89220:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24910:201::-;23890:13;:11;:13::i;:::-;25019:1:::1;24999:22;;:8;:22;;::::0;24991:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25075:28;25094:8;25075:18;:28::i;:::-;24910:201:::0;:::o;93490:82::-;23890:13;:11;:13::i;:::-;93560:4:::1;93554:3;:10;;;;;;;;;;;;:::i;:::-;;93490:82:::0;:::o;22555:98::-;22608:7;22635:10;22628:17;;22555:98;:::o;71091:112::-;71168:27;71178:2;71182:8;71168:27;;;;;;;;;;;;:9;:27::i;:::-;71091:112;;:::o;55493:282::-;55558:4;55614:7;55595:15;:13;:15::i;:::-;:26;;:66;;;;;55648:13;;55638:7;:23;55595:66;:153;;;;;55747:1;39435:8;55699:17;:26;55717:7;55699:26;;;;;;;;;;;;:44;:49;55595:153;55575:173;;55493:282;;;:::o;77259:105::-;77319:7;77346:10;77339:17;;77259:105;:::o;24169:132::-;24244:12;:10;:12::i;:::-;24233:23;;:7;:5;:7::i;:::-;:23;;;24225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24169:132::o;96126:101::-;96191:7;96218:1;96211:8;;96126:101;:::o;50113:1275::-;50180:7;50200:12;50215:7;50200:22;;50283:4;50264:15;:13;:15::i;:::-;:23;50260:1061;;50317:13;;50310:4;:20;50306:1015;;;50355:14;50372:17;:23;50390:4;50372:23;;;;;;;;;;;;50355:40;;50489:1;39435:8;50461:6;:24;:29;50457:845;;51126:113;51143:1;51133:6;:11;51126:113;;51186:17;:25;51204:6;;;;;;;51186:25;;;;;;;;;;;;51177:34;;51126:113;;;51272:6;51265:13;;;;;;50457:845;50332:989;50306:1015;50260:1061;51349:31;;;;;;;;;;;;;;50113:1275;;;;:::o;56656:479::-;56758:27;56787:23;56828:38;56869:15;:24;56885:7;56869:24;;;;;;;;;;;56828:65;;57040:18;57017:41;;57097:19;57091:26;57072:45;;57002:126;56656:479;;;:::o;55884:659::-;56033:11;56198:16;56191:5;56187:28;56178:37;;56358:16;56347:9;56343:32;56330:45;;56508:15;56497:9;56494:30;56486:5;56475:9;56472:20;56469:56;56459:66;;55884:659;;;;;:::o;62512:159::-;;;;;:::o;76568:311::-;76703:7;76723:16;39839:3;76749:19;:41;;76723:68;;39839:3;76817:31;76828:4;76834:2;76838:9;76817:10;:31::i;:::-;76809:40;;:62;;76802:69;;;76568:311;;;;;:::o;51936:450::-;52016:14;52184:16;52177:5;52173:28;52164:37;;52361:5;52347:11;52322:23;52318:41;52315:52;52308:5;52305:63;52295:73;;51936:450;;;;:::o;63336:158::-;;;;;:::o;25271:191::-;25345:16;25364:6;;;;;;;;;;;25345:25;;25390:8;25381:6;;:17;;;;;;;;;;;;;;;;;;25445:8;25414:40;;25435:8;25414:40;;;;;;;;;;;;25334:128;25271:191;:::o;43003:103::-;43058:7;43085:13;;43078:20;;43003:103;:::o;49561:161::-;49629:21;;:::i;:::-;49670:44;49689:17;:24;49707:5;49689:24;;;;;;;;;;;;49670:18;:44::i;:::-;49663:51;;49561:161;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;63934:716::-;64097:4;64143:2;64118:45;;;64164:19;:17;:19::i;:::-;64185:4;64191:7;64200:5;64118:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64114:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64418:1;64401:6;:13;:18;64397:235;;64447:40;;;;;;;;;;;;;;64397:235;64590:6;64584:13;64575:6;64571:2;64567:15;64560:38;64114:529;64287:54;;;64277:64;;;:6;:64;;;;64270:71;;;63934:716;;;;;;:::o;96638:104::-;96698:13;96731:3;96724:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96638:104;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;70318:689::-;70449:19;70455:2;70459:8;70449:5;:19::i;:::-;70528:1;70510:2;:14;;;:19;70506:483;;70550:11;70564:13;;70550:27;;70596:13;70618:8;70612:3;:14;70596:30;;70645:233;70676:62;70715:1;70719:2;70723:7;;;;;;70732:5;70676:30;:62::i;:::-;70671:167;;70774:40;;;;;;;;;;;;;;70671:167;70873:3;70865:5;:11;70645:233;;70960:3;70943:13;;:20;70939:34;;70965:8;;;70939:34;70531:458;;70506:483;70318:689;;;:::o;76269:147::-;76406:6;76269:147;;;;;:::o;51487:366::-;51553:31;;:::i;:::-;51630:6;51597:9;:14;;:41;;;;;;;;;;;39318:3;51683:6;:33;;51649:9;:24;;:68;;;;;;;;;;;51775:1;39435:8;51747:6;:24;:29;;51728:9;:16;;:48;;;;;;;;;;;39839:3;51816:6;:28;;51787:9;:19;;:58;;;;;;;;;;;51487:366;;;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;65112:2454::-;65185:20;65208:13;;65185:36;;65248:1;65236:8;:13;65232:44;;65258:18;;;;;;;;;;;;;;65232:44;65289:61;65319:1;65323:2;65327:12;65341:8;65289:21;:61::i;:::-;65833:1;38797:2;65803:1;:26;;65802:32;65790:8;:45;65764:18;:22;65783:2;65764:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;66112:139;66149:2;66203:33;66226:1;66230:2;66234:1;66203:14;:33::i;:::-;66170:30;66191:8;66170:20;:30::i;:::-;:66;66112:18;:139::i;:::-;66078:17;:31;66096:12;66078:31;;;;;;;;;;;:173;;;;66268:16;66299:11;66328:8;66313:12;:23;66299:37;;66583:16;66579:2;66575:25;66563:37;;66955:12;66915:8;66874:1;66812:25;66753:1;66692;66665:335;67080:1;67066:12;67062:20;67020:346;67121:3;67112:7;67109:16;67020:346;;67339:7;67329:8;67326:1;67299:25;67296:1;67293;67288:59;67174:1;67165:7;67161:15;67150:26;;67020:346;;;67024:77;67411:1;67399:8;:13;67395:45;;67421:19;;;;;;;;;;;;;;67395:45;67473:3;67457:13;:19;;;;65538:1950;;67498:60;67527:1;67531:2;67535:12;67549:8;67498:20;:60::i;:::-;65174:2392;65112:2454;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;52488:324::-;52558:14;52791:1;52781:8;52778:15;52752:24;52748:46;52738:56;;52488:324;;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:117::-;1983:1;1980;1973:12;1997:102;2038:6;2089:2;2085:7;2080:2;2073:5;2069:14;2065:28;2055:38;;1997:102;;;:::o;2105:180::-;2153:77;2150:1;2143:88;2250:4;2247:1;2240:15;2274:4;2271:1;2264:15;2291:281;2374:27;2396:4;2374:27;:::i;:::-;2366:6;2362:40;2504:6;2492:10;2489:22;2468:18;2456:10;2453:34;2450:62;2447:88;;;2515:18;;:::i;:::-;2447:88;2555:10;2551:2;2544:22;2334:238;2291:281;;:::o;2578:129::-;2612:6;2639:20;;:::i;:::-;2629:30;;2668:33;2696:4;2688:6;2668:33;:::i;:::-;2578:129;;;:::o;2713:311::-;2790:4;2880:18;2872:6;2869:30;2866:56;;;2902:18;;:::i;:::-;2866:56;2952:4;2944:6;2940:17;2932:25;;3012:4;3006;3002:15;2994:23;;2713:311;;;:::o;3030:117::-;3139:1;3136;3129:12;3153:77;3190:7;3219:5;3208:16;;3153:77;;;:::o;3236:122::-;3309:24;3327:5;3309:24;:::i;:::-;3302:5;3299:35;3289:63;;3348:1;3345;3338:12;3289:63;3236:122;:::o;3364:139::-;3410:5;3448:6;3435:20;3426:29;;3464:33;3491:5;3464:33;:::i;:::-;3364:139;;;;:::o;3526:710::-;3622:5;3647:81;3663:64;3720:6;3663:64;:::i;:::-;3647:81;:::i;:::-;3638:90;;3748:5;3777:6;3770:5;3763:21;3811:4;3804:5;3800:16;3793:23;;3864:4;3856:6;3852:17;3844:6;3840:30;3893:3;3885:6;3882:15;3879:122;;;3912:79;;:::i;:::-;3879:122;4027:6;4010:220;4044:6;4039:3;4036:15;4010:220;;;4119:3;4148:37;4181:3;4169:10;4148:37;:::i;:::-;4143:3;4136:50;4215:4;4210:3;4206:14;4199:21;;4086:144;4070:4;4065:3;4061:14;4054:21;;4010:220;;;4014:21;3628:608;;3526:710;;;;;:::o;4259:370::-;4330:5;4379:3;4372:4;4364:6;4360:17;4356:27;4346:122;;4387:79;;:::i;:::-;4346:122;4504:6;4491:20;4529:94;4619:3;4611:6;4604:4;4596:6;4592:17;4529:94;:::i;:::-;4520:103;;4336:293;4259:370;;;;:::o;4635:684::-;4728:6;4736;4785:2;4773:9;4764:7;4760:23;4756:32;4753:119;;;4791:79;;:::i;:::-;4753:119;4911:1;4936:53;4981:7;4972:6;4961:9;4957:22;4936:53;:::i;:::-;4926:63;;4882:117;5066:2;5055:9;5051:18;5038:32;5097:18;5089:6;5086:30;5083:117;;;5119:79;;:::i;:::-;5083:117;5224:78;5294:7;5285:6;5274:9;5270:22;5224:78;:::i;:::-;5214:88;;5009:303;4635:684;;;;;:::o;5325:539::-;5409:6;5458:2;5446:9;5437:7;5433:23;5429:32;5426:119;;;5464:79;;:::i;:::-;5426:119;5612:1;5601:9;5597:17;5584:31;5642:18;5634:6;5631:30;5628:117;;;5664:79;;:::i;:::-;5628:117;5769:78;5839:7;5830:6;5819:9;5815:22;5769:78;:::i;:::-;5759:88;;5555:302;5325:539;;;;:::o;5870:99::-;5922:6;5956:5;5950:12;5940:22;;5870:99;;;:::o;5975:169::-;6059:11;6093:6;6088:3;6081:19;6133:4;6128:3;6124:14;6109:29;;5975:169;;;;:::o;6150:307::-;6218:1;6228:113;6242:6;6239:1;6236:13;6228:113;;;6327:1;6322:3;6318:11;6312:18;6308:1;6303:3;6299:11;6292:39;6264:2;6261:1;6257:10;6252:15;;6228:113;;;6359:6;6356:1;6353:13;6350:101;;;6439:1;6430:6;6425:3;6421:16;6414:27;6350:101;6199:258;6150:307;;;:::o;6463:364::-;6551:3;6579:39;6612:5;6579:39;:::i;:::-;6634:71;6698:6;6693:3;6634:71;:::i;:::-;6627:78;;6714:52;6759:6;6754:3;6747:4;6740:5;6736:16;6714:52;:::i;:::-;6791:29;6813:6;6791:29;:::i;:::-;6786:3;6782:39;6775:46;;6555:272;6463:364;;;;:::o;6833:313::-;6946:4;6984:2;6973:9;6969:18;6961:26;;7033:9;7027:4;7023:20;7019:1;7008:9;7004:17;6997:47;7061:78;7134:4;7125:6;7061:78;:::i;:::-;7053:86;;6833:313;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:126::-;7524:7;7564:42;7557:5;7553:54;7542:65;;7487:126;;;:::o;7619:96::-;7656:7;7685:24;7703:5;7685:24;:::i;:::-;7674:35;;7619:96;;;:::o;7721:118::-;7808:24;7826:5;7808:24;:::i;:::-;7803:3;7796:37;7721:118;;:::o;7845:222::-;7938:4;7976:2;7965:9;7961:18;7953:26;;7989:71;8057:1;8046:9;8042:17;8033:6;7989:71;:::i;:::-;7845:222;;;;:::o;8073:122::-;8146:24;8164:5;8146:24;:::i;:::-;8139:5;8136:35;8126:63;;8185:1;8182;8175:12;8126:63;8073:122;:::o;8201:139::-;8247:5;8285:6;8272:20;8263:29;;8301:33;8328:5;8301:33;:::i;:::-;8201:139;;;;:::o;8346:474::-;8414:6;8422;8471:2;8459:9;8450:7;8446:23;8442:32;8439:119;;;8477:79;;:::i;:::-;8439:119;8597:1;8622:53;8667:7;8658:6;8647:9;8643:22;8622:53;:::i;:::-;8612:63;;8568:117;8724:2;8750:53;8795:7;8786:6;8775:9;8771:22;8750:53;:::i;:::-;8740:63;;8695:118;8346:474;;;;;:::o;8826:118::-;8913:24;8931:5;8913:24;:::i;:::-;8908:3;8901:37;8826:118;;:::o;8950:222::-;9043:4;9081:2;9070:9;9066:18;9058:26;;9094:71;9162:1;9151:9;9147:17;9138:6;9094:71;:::i;:::-;8950:222;;;;:::o;9178:117::-;9287:1;9284;9277:12;9301:308;9363:4;9453:18;9445:6;9442:30;9439:56;;;9475:18;;:::i;:::-;9439:56;9513:29;9535:6;9513:29;:::i;:::-;9505:37;;9597:4;9591;9587:15;9579:23;;9301:308;;;:::o;9615:154::-;9699:6;9694:3;9689;9676:30;9761:1;9752:6;9747:3;9743:16;9736:27;9615:154;;;:::o;9775:412::-;9853:5;9878:66;9894:49;9936:6;9894:49;:::i;:::-;9878:66;:::i;:::-;9869:75;;9967:6;9960:5;9953:21;10005:4;9998:5;9994:16;10043:3;10034:6;10029:3;10025:16;10022:25;10019:112;;;10050:79;;:::i;:::-;10019:112;10140:41;10174:6;10169:3;10164;10140:41;:::i;:::-;9859:328;9775:412;;;;;:::o;10207:340::-;10263:5;10312:3;10305:4;10297:6;10293:17;10289:27;10279:122;;10320:79;;:::i;:::-;10279:122;10437:6;10424:20;10462:79;10537:3;10529:6;10522:4;10514:6;10510:17;10462:79;:::i;:::-;10453:88;;10269:278;10207:340;;;;:::o;10553:509::-;10622:6;10671:2;10659:9;10650:7;10646:23;10642:32;10639:119;;;10677:79;;:::i;:::-;10639:119;10825:1;10814:9;10810:17;10797:31;10855:18;10847:6;10844:30;10841:117;;;10877:79;;:::i;:::-;10841:117;10982:63;11037:7;11028:6;11017:9;11013:22;10982:63;:::i;:::-;10972:73;;10768:287;10553:509;;;;:::o;11068:619::-;11145:6;11153;11161;11210:2;11198:9;11189:7;11185:23;11181:32;11178:119;;;11216:79;;:::i;:::-;11178:119;11336:1;11361:53;11406:7;11397:6;11386:9;11382:22;11361:53;:::i;:::-;11351:63;;11307:117;11463:2;11489:53;11534:7;11525:6;11514:9;11510:22;11489:53;:::i;:::-;11479:63;;11434:118;11591:2;11617:53;11662:7;11653:6;11642:9;11638:22;11617:53;:::i;:::-;11607:63;;11562:118;11068:619;;;;;:::o;11693:116::-;11763:21;11778:5;11763:21;:::i;:::-;11756:5;11753:32;11743:60;;11799:1;11796;11789:12;11743:60;11693:116;:::o;11815:133::-;11858:5;11896:6;11883:20;11874:29;;11912:30;11936:5;11912:30;:::i;:::-;11815:133;;;;:::o;11954:323::-;12010:6;12059:2;12047:9;12038:7;12034:23;12030:32;12027:119;;;12065:79;;:::i;:::-;12027:119;12185:1;12210:50;12252:7;12243:6;12232:9;12228:22;12210:50;:::i;:::-;12200:60;;12156:114;11954:323;;;;:::o;12283:329::-;12342:6;12391:2;12379:9;12370:7;12366:23;12362:32;12359:119;;;12397:79;;:::i;:::-;12359:119;12517:1;12542:53;12587:7;12578:6;12567:9;12563:22;12542:53;:::i;:::-;12532:63;;12488:117;12283:329;;;;:::o;12618:474::-;12686:6;12694;12743:2;12731:9;12722:7;12718:23;12714:32;12711:119;;;12749:79;;:::i;:::-;12711:119;12869:1;12894:53;12939:7;12930:6;12919:9;12915:22;12894:53;:::i;:::-;12884:63;;12840:117;12996:2;13022:53;13067:7;13058:6;13047:9;13043:22;13022:53;:::i;:::-;13012:63;;12967:118;12618:474;;;;;:::o;13098:329::-;13157:6;13206:2;13194:9;13185:7;13181:23;13177:32;13174:119;;;13212:79;;:::i;:::-;13174:119;13332:1;13357:53;13402:7;13393:6;13382:9;13378:22;13357:53;:::i;:::-;13347:63;;13303:117;13098:329;;;;:::o;13433:114::-;13500:6;13534:5;13528:12;13518:22;;13433:114;;;:::o;13553:184::-;13652:11;13686:6;13681:3;13674:19;13726:4;13721:3;13717:14;13702:29;;13553:184;;;;:::o;13743:132::-;13810:4;13833:3;13825:11;;13863:4;13858:3;13854:14;13846:22;;13743:132;;;:::o;13881:108::-;13958:24;13976:5;13958:24;:::i;:::-;13953:3;13946:37;13881:108;;:::o;13995:179::-;14064:10;14085:46;14127:3;14119:6;14085:46;:::i;:::-;14163:4;14158:3;14154:14;14140:28;;13995:179;;;;:::o;14180:113::-;14250:4;14282;14277:3;14273:14;14265:22;;14180:113;;;:::o;14329:732::-;14448:3;14477:54;14525:5;14477:54;:::i;:::-;14547:86;14626:6;14621:3;14547:86;:::i;:::-;14540:93;;14657:56;14707:5;14657:56;:::i;:::-;14736:7;14767:1;14752:284;14777:6;14774:1;14771:13;14752:284;;;14853:6;14847:13;14880:63;14939:3;14924:13;14880:63;:::i;:::-;14873:70;;14966:60;15019:6;14966:60;:::i;:::-;14956:70;;14812:224;14799:1;14796;14792:9;14787:14;;14752:284;;;14756:14;15052:3;15045:10;;14453:608;;;14329:732;;;;:::o;15067:373::-;15210:4;15248:2;15237:9;15233:18;15225:26;;15297:9;15291:4;15287:20;15283:1;15272:9;15268:17;15261:47;15325:108;15428:4;15419:6;15325:108;:::i;:::-;15317:116;;15067:373;;;;:::o;15446:118::-;15533:24;15551:5;15533:24;:::i;:::-;15528:3;15521:37;15446:118;;:::o;15570:222::-;15663:4;15701:2;15690:9;15686:18;15678:26;;15714:71;15782:1;15771:9;15767:17;15758:6;15714:71;:::i;:::-;15570:222;;;;:::o;15798:468::-;15863:6;15871;15920:2;15908:9;15899:7;15895:23;15891:32;15888:119;;;15926:79;;:::i;:::-;15888:119;16046:1;16071:53;16116:7;16107:6;16096:9;16092:22;16071:53;:::i;:::-;16061:63;;16017:117;16173:2;16199:50;16241:7;16232:6;16221:9;16217:22;16199:50;:::i;:::-;16189:60;;16144:115;15798:468;;;;;:::o;16272:684::-;16365:6;16373;16422:2;16410:9;16401:7;16397:23;16393:32;16390:119;;;16428:79;;:::i;:::-;16390:119;16576:1;16565:9;16561:17;16548:31;16606:18;16598:6;16595:30;16592:117;;;16628:79;;:::i;:::-;16592:117;16733:78;16803:7;16794:6;16783:9;16779:22;16733:78;:::i;:::-;16723:88;;16519:302;16860:2;16886:53;16931:7;16922:6;16911:9;16907:22;16886:53;:::i;:::-;16876:63;;16831:118;16272:684;;;;;:::o;16962:307::-;17023:4;17113:18;17105:6;17102:30;17099:56;;;17135:18;;:::i;:::-;17099:56;17173:29;17195:6;17173:29;:::i;:::-;17165:37;;17257:4;17251;17247:15;17239:23;;16962:307;;;:::o;17275:410::-;17352:5;17377:65;17393:48;17434:6;17393:48;:::i;:::-;17377:65;:::i;:::-;17368:74;;17465:6;17458:5;17451:21;17503:4;17496:5;17492:16;17541:3;17532:6;17527:3;17523:16;17520:25;17517:112;;;17548:79;;:::i;:::-;17517:112;17638:41;17672:6;17667:3;17662;17638:41;:::i;:::-;17358:327;17275:410;;;;;:::o;17704:338::-;17759:5;17808:3;17801:4;17793:6;17789:17;17785:27;17775:122;;17816:79;;:::i;:::-;17775:122;17933:6;17920:20;17958:78;18032:3;18024:6;18017:4;18009:6;18005:17;17958:78;:::i;:::-;17949:87;;17765:277;17704:338;;;;:::o;18048:943::-;18143:6;18151;18159;18167;18216:3;18204:9;18195:7;18191:23;18187:33;18184:120;;;18223:79;;:::i;:::-;18184:120;18343:1;18368:53;18413:7;18404:6;18393:9;18389:22;18368:53;:::i;:::-;18358:63;;18314:117;18470:2;18496:53;18541:7;18532:6;18521:9;18517:22;18496:53;:::i;:::-;18486:63;;18441:118;18598:2;18624:53;18669:7;18660:6;18649:9;18645:22;18624:53;:::i;:::-;18614:63;;18569:118;18754:2;18743:9;18739:18;18726:32;18785:18;18777:6;18774:30;18771:117;;;18807:79;;:::i;:::-;18771:117;18912:62;18966:7;18957:6;18946:9;18942:22;18912:62;:::i;:::-;18902:72;;18697:287;18048:943;;;;;;;:::o;18997:474::-;19065:6;19073;19122:2;19110:9;19101:7;19097:23;19093:32;19090:119;;;19128:79;;:::i;:::-;19090:119;19248:1;19273:53;19318:7;19309:6;19298:9;19294:22;19273:53;:::i;:::-;19263:63;;19219:117;19375:2;19401:53;19446:7;19437:6;19426:9;19422:22;19401:53;:::i;:::-;19391:63;;19346:118;18997:474;;;;;:::o;19477:181::-;19617:33;19613:1;19605:6;19601:14;19594:57;19477:181;:::o;19664:366::-;19806:3;19827:67;19891:2;19886:3;19827:67;:::i;:::-;19820:74;;19903:93;19992:3;19903:93;:::i;:::-;20021:2;20016:3;20012:12;20005:19;;19664:366;;;:::o;20036:419::-;20202:4;20240:2;20229:9;20225:18;20217:26;;20289:9;20283:4;20279:20;20275:1;20264:9;20260:17;20253:47;20317:131;20443:4;20317:131;:::i;:::-;20309:139;;20036:419;;;:::o;20461:169::-;20601:21;20597:1;20589:6;20585:14;20578:45;20461:169;:::o;20636:366::-;20778:3;20799:67;20863:2;20858:3;20799:67;:::i;:::-;20792:74;;20875:93;20964:3;20875:93;:::i;:::-;20993:2;20988:3;20984:12;20977:19;;20636:366;;;:::o;21008:419::-;21174:4;21212:2;21201:9;21197:18;21189:26;;21261:9;21255:4;21251:20;21247:1;21236:9;21232:17;21225:47;21289:131;21415:4;21289:131;:::i;:::-;21281:139;;21008:419;;;:::o;21433:180::-;21481:77;21478:1;21471:88;21578:4;21575:1;21568:15;21602:4;21599:1;21592:15;21619:305;21659:3;21678:20;21696:1;21678:20;:::i;:::-;21673:25;;21712:20;21730:1;21712:20;:::i;:::-;21707:25;;21866:1;21798:66;21794:74;21791:1;21788:81;21785:107;;;21872:18;;:::i;:::-;21785:107;21916:1;21913;21909:9;21902:16;;21619:305;;;;:::o;21930:182::-;22070:34;22066:1;22058:6;22054:14;22047:58;21930:182;:::o;22118:366::-;22260:3;22281:67;22345:2;22340:3;22281:67;:::i;:::-;22274:74;;22357:93;22446:3;22357:93;:::i;:::-;22475:2;22470:3;22466:12;22459:19;;22118:366;;;:::o;22490:419::-;22656:4;22694:2;22683:9;22679:18;22671:26;;22743:9;22737:4;22733:20;22729:1;22718:9;22714:17;22707:47;22771:131;22897:4;22771:131;:::i;:::-;22763:139;;22490:419;;;:::o;22915:179::-;23055:31;23051:1;23043:6;23039:14;23032:55;22915:179;:::o;23100:366::-;23242:3;23263:67;23327:2;23322:3;23263:67;:::i;:::-;23256:74;;23339:93;23428:3;23339:93;:::i;:::-;23457:2;23452:3;23448:12;23441:19;;23100:366;;;:::o;23472:419::-;23638:4;23676:2;23665:9;23661:18;23653:26;;23725:9;23719:4;23715:20;23711:1;23700:9;23696:17;23689:47;23753:131;23879:4;23753:131;:::i;:::-;23745:139;;23472:419;;;:::o;23897:176::-;24037:28;24033:1;24025:6;24021:14;24014:52;23897:176;:::o;24079:366::-;24221:3;24242:67;24306:2;24301:3;24242:67;:::i;:::-;24235:74;;24318:93;24407:3;24318:93;:::i;:::-;24436:2;24431:3;24427:12;24420:19;;24079:366;;;:::o;24451:419::-;24617:4;24655:2;24644:9;24640:18;24632:26;;24704:9;24698:4;24694:20;24690:1;24679:9;24675:17;24668:47;24732:131;24858:4;24732:131;:::i;:::-;24724:139;;24451:419;;;:::o;24876:170::-;25016:22;25012:1;25004:6;25000:14;24993:46;24876:170;:::o;25052:366::-;25194:3;25215:67;25279:2;25274:3;25215:67;:::i;:::-;25208:74;;25291:93;25380:3;25291:93;:::i;:::-;25409:2;25404:3;25400:12;25393:19;;25052:366;;;:::o;25424:419::-;25590:4;25628:2;25617:9;25613:18;25605:26;;25677:9;25671:4;25667:20;25663:1;25652:9;25648:17;25641:47;25705:131;25831:4;25705:131;:::i;:::-;25697:139;;25424:419;;;:::o;25849:179::-;25989:31;25985:1;25977:6;25973:14;25966:55;25849:179;:::o;26034:366::-;26176:3;26197:67;26261:2;26256:3;26197:67;:::i;:::-;26190:74;;26273:93;26362:3;26273:93;:::i;:::-;26391:2;26386:3;26382:12;26375:19;;26034:366;;;:::o;26406:419::-;26572:4;26610:2;26599:9;26595:18;26587:26;;26659:9;26653:4;26649:20;26645:1;26634:9;26630:17;26623:47;26687:131;26813:4;26687:131;:::i;:::-;26679:139;;26406:419;;;:::o;26831:165::-;26971:17;26967:1;26959:6;26955:14;26948:41;26831:165;:::o;27002:366::-;27144:3;27165:67;27229:2;27224:3;27165:67;:::i;:::-;27158:74;;27241:93;27330:3;27241:93;:::i;:::-;27359:2;27354:3;27350:12;27343:19;;27002:366;;;:::o;27374:419::-;27540:4;27578:2;27567:9;27563:18;27555:26;;27627:9;27621:4;27617:20;27613:1;27602:9;27598:17;27591:47;27655:131;27781:4;27655:131;:::i;:::-;27647:139;;27374:419;;;:::o;27799:348::-;27839:7;27862:20;27880:1;27862:20;:::i;:::-;27857:25;;27896:20;27914:1;27896:20;:::i;:::-;27891:25;;28084:1;28016:66;28012:74;28009:1;28006:81;28001:1;27994:9;27987:17;27983:105;27980:131;;;28091:18;;:::i;:::-;27980:131;28139:1;28136;28132:9;28121:20;;27799:348;;;;:::o;28153:169::-;28293:21;28289:1;28281:6;28277:14;28270:45;28153:169;:::o;28328:366::-;28470:3;28491:67;28555:2;28550:3;28491:67;:::i;:::-;28484:74;;28567:93;28656:3;28567:93;:::i;:::-;28685:2;28680:3;28676:12;28669:19;;28328:366;;;:::o;28700:419::-;28866:4;28904:2;28893:9;28889:18;28881:26;;28953:9;28947:4;28943:20;28939:1;28928:9;28924:17;28917:47;28981:131;29107:4;28981:131;:::i;:::-;28973:139;;28700:419;;;:::o;29125:170::-;29265:22;29261:1;29253:6;29249:14;29242:46;29125:170;:::o;29301:366::-;29443:3;29464:67;29528:2;29523:3;29464:67;:::i;:::-;29457:74;;29540:93;29629:3;29540:93;:::i;:::-;29658:2;29653:3;29649:12;29642:19;;29301:366;;;:::o;29673:419::-;29839:4;29877:2;29866:9;29862:18;29854:26;;29926:9;29920:4;29916:20;29912:1;29901:9;29897:17;29890:47;29954:131;30080:4;29954:131;:::i;:::-;29946:139;;29673:419;;;:::o;30098:168::-;30238:20;30234:1;30226:6;30222:14;30215:44;30098:168;:::o;30272:366::-;30414:3;30435:67;30499:2;30494:3;30435:67;:::i;:::-;30428:74;;30511:93;30600:3;30511:93;:::i;:::-;30629:2;30624:3;30620:12;30613:19;;30272:366;;;:::o;30644:419::-;30810:4;30848:2;30837:9;30833:18;30825:26;;30897:9;30891:4;30887:20;30883:1;30872:9;30868:17;30861:47;30925:131;31051:4;30925:131;:::i;:::-;30917:139;;30644:419;;;:::o;31069:177::-;31209:29;31205:1;31197:6;31193:14;31186:53;31069:177;:::o;31252:366::-;31394:3;31415:67;31479:2;31474:3;31415:67;:::i;:::-;31408:74;;31491:93;31580:3;31491:93;:::i;:::-;31609:2;31604:3;31600:12;31593:19;;31252:366;;;:::o;31624:419::-;31790:4;31828:2;31817:9;31813:18;31805:26;;31877:9;31871:4;31867:20;31863:1;31852:9;31848:17;31841:47;31905:131;32031:4;31905:131;:::i;:::-;31897:139;;31624:419;;;:::o;32049:180::-;32097:77;32094:1;32087:88;32194:4;32191:1;32184:15;32218:4;32215:1;32208:15;32235:320;32279:6;32316:1;32310:4;32306:12;32296:22;;32363:1;32357:4;32353:12;32384:18;32374:81;;32440:4;32432:6;32428:17;32418:27;;32374:81;32502:2;32494:6;32491:14;32471:18;32468:38;32465:84;;32521:18;;:::i;:::-;32465:84;32286:269;32235:320;;;:::o;32561:173::-;32701:25;32697:1;32689:6;32685:14;32678:49;32561:173;:::o;32740:366::-;32882:3;32903:67;32967:2;32962:3;32903:67;:::i;:::-;32896:74;;32979:93;33068:3;32979:93;:::i;:::-;33097:2;33092:3;33088:12;33081:19;;32740:366;;;:::o;33112:419::-;33278:4;33316:2;33305:9;33301:18;33293:26;;33365:9;33359:4;33355:20;33351:1;33340:9;33336:17;33329:47;33393:131;33519:4;33393:131;:::i;:::-;33385:139;;33112:419;;;:::o;33537:170::-;33677:22;33673:1;33665:6;33661:14;33654:46;33537:170;:::o;33713:366::-;33855:3;33876:67;33940:2;33935:3;33876:67;:::i;:::-;33869:74;;33952:93;34041:3;33952:93;:::i;:::-;34070:2;34065:3;34061:12;34054:19;;33713:366;;;:::o;34085:419::-;34251:4;34289:2;34278:9;34274:18;34266:26;;34338:9;34332:4;34328:20;34324:1;34313:9;34309:17;34302:47;34366:131;34492:4;34366:131;:::i;:::-;34358:139;;34085:419;;;:::o;34510:147::-;34611:11;34648:3;34633:18;;34510:147;;;;:::o;34663:114::-;;:::o;34783:398::-;34942:3;34963:83;35044:1;35039:3;34963:83;:::i;:::-;34956:90;;35055:93;35144:3;35055:93;:::i;:::-;35173:1;35168:3;35164:11;35157:18;;34783:398;;;:::o;35187:379::-;35371:3;35393:147;35536:3;35393:147;:::i;:::-;35386:154;;35557:3;35550:10;;35187:379;;;:::o;35572:170::-;35712:22;35708:1;35700:6;35696:14;35689:46;35572:170;:::o;35748:366::-;35890:3;35911:67;35975:2;35970:3;35911:67;:::i;:::-;35904:74;;35987:93;36076:3;35987:93;:::i;:::-;36105:2;36100:3;36096:12;36089:19;;35748:366;;;:::o;36120:419::-;36286:4;36324:2;36313:9;36309:18;36301:26;;36373:9;36367:4;36363:20;36359:1;36348:9;36344:17;36337:47;36401:131;36527:4;36401:131;:::i;:::-;36393:139;;36120:419;;;:::o;36545:180::-;36593:77;36590:1;36583:88;36690:4;36687:1;36680:15;36714:4;36711:1;36704:15;36731:94;36764:8;36812:5;36808:2;36804:14;36783:35;;36731:94;;;:::o;36831:::-;36870:7;36899:20;36913:5;36899:20;:::i;:::-;36888:31;;36831:94;;;:::o;36931:100::-;36970:7;36999:26;37019:5;36999:26;:::i;:::-;36988:37;;36931:100;;;:::o;37037:157::-;37142:45;37162:24;37180:5;37162:24;:::i;:::-;37142:45;:::i;:::-;37137:3;37130:58;37037:157;;:::o;37200:256::-;37312:3;37327:75;37398:3;37389:6;37327:75;:::i;:::-;37427:2;37422:3;37418:12;37411:19;;37447:3;37440:10;;37200:256;;;;:::o;37462:234::-;37602:34;37598:1;37590:6;37586:14;37579:58;37671:17;37666:2;37658:6;37654:15;37647:42;37462:234;:::o;37702:366::-;37844:3;37865:67;37929:2;37924:3;37865:67;:::i;:::-;37858:74;;37941:93;38030:3;37941:93;:::i;:::-;38059:2;38054:3;38050:12;38043:19;;37702:366;;;:::o;38074:419::-;38240:4;38278:2;38267:9;38263:18;38255:26;;38327:9;38321:4;38317:20;38313:1;38302:9;38298:17;38291:47;38355:131;38481:4;38355:131;:::i;:::-;38347:139;;38074:419;;;:::o;38499:148::-;38601:11;38638:3;38623:18;;38499:148;;;;:::o;38653:377::-;38759:3;38787:39;38820:5;38787:39;:::i;:::-;38842:89;38924:6;38919:3;38842:89;:::i;:::-;38835:96;;38940:52;38985:6;38980:3;38973:4;38966:5;38962:16;38940:52;:::i;:::-;39017:6;39012:3;39008:16;39001:23;;38763:267;38653:377;;;;:::o;39036:141::-;39085:4;39108:3;39100:11;;39131:3;39128:1;39121:14;39165:4;39162:1;39152:18;39144:26;;39036:141;;;:::o;39207:845::-;39310:3;39347:5;39341:12;39376:36;39402:9;39376:36;:::i;:::-;39428:89;39510:6;39505:3;39428:89;:::i;:::-;39421:96;;39548:1;39537:9;39533:17;39564:1;39559:137;;;;39710:1;39705:341;;;;39526:520;;39559:137;39643:4;39639:9;39628;39624:25;39619:3;39612:38;39679:6;39674:3;39670:16;39663:23;;39559:137;;39705:341;39772:38;39804:5;39772:38;:::i;:::-;39832:1;39846:154;39860:6;39857:1;39854:13;39846:154;;;39934:7;39928:14;39924:1;39919:3;39915:11;39908:35;39984:1;39975:7;39971:15;39960:26;;39882:4;39879:1;39875:12;39870:17;;39846:154;;;40029:6;40024:3;40020:16;40013:23;;39712:334;;39526:520;;39314:738;;39207:845;;;;:::o;40058:589::-;40283:3;40305:95;40396:3;40387:6;40305:95;:::i;:::-;40298:102;;40417:95;40508:3;40499:6;40417:95;:::i;:::-;40410:102;;40529:92;40617:3;40608:6;40529:92;:::i;:::-;40522:99;;40638:3;40631:10;;40058:589;;;;;;:::o;40653:225::-;40793:34;40789:1;40781:6;40777:14;40770:58;40862:8;40857:2;40849:6;40845:15;40838:33;40653:225;:::o;40884:366::-;41026:3;41047:67;41111:2;41106:3;41047:67;:::i;:::-;41040:74;;41123:93;41212:3;41123:93;:::i;:::-;41241:2;41236:3;41232:12;41225:19;;40884:366;;;:::o;41256:419::-;41422:4;41460:2;41449:9;41445:18;41437:26;;41509:9;41503:4;41499:20;41495:1;41484:9;41480:17;41473:47;41537:131;41663:4;41537:131;:::i;:::-;41529:139;;41256:419;;;:::o;41681:182::-;41821:34;41817:1;41809:6;41805:14;41798:58;41681:182;:::o;41869:366::-;42011:3;42032:67;42096:2;42091:3;42032:67;:::i;:::-;42025:74;;42108:93;42197:3;42108:93;:::i;:::-;42226:2;42221:3;42217:12;42210:19;;41869:366;;;:::o;42241:419::-;42407:4;42445:2;42434:9;42430:18;42422:26;;42494:9;42488:4;42484:20;42480:1;42469:9;42465:17;42458:47;42522:131;42648:4;42522:131;:::i;:::-;42514:139;;42241:419;;;:::o;42666:98::-;42717:6;42751:5;42745:12;42735:22;;42666:98;;;:::o;42770:168::-;42853:11;42887:6;42882:3;42875:19;42927:4;42922:3;42918:14;42903:29;;42770:168;;;;:::o;42944:360::-;43030:3;43058:38;43090:5;43058:38;:::i;:::-;43112:70;43175:6;43170:3;43112:70;:::i;:::-;43105:77;;43191:52;43236:6;43231:3;43224:4;43217:5;43213:16;43191:52;:::i;:::-;43268:29;43290:6;43268:29;:::i;:::-;43263:3;43259:39;43252:46;;43034:270;42944:360;;;;:::o;43310:640::-;43505:4;43543:3;43532:9;43528:19;43520:27;;43557:71;43625:1;43614:9;43610:17;43601:6;43557:71;:::i;:::-;43638:72;43706:2;43695:9;43691:18;43682:6;43638:72;:::i;:::-;43720;43788:2;43777:9;43773:18;43764:6;43720:72;:::i;:::-;43839:9;43833:4;43829:20;43824:2;43813:9;43809:18;43802:48;43867:76;43938:4;43929:6;43867:76;:::i;:::-;43859:84;;43310:640;;;;;;;:::o;43956:141::-;44012:5;44043:6;44037:13;44028:22;;44059:32;44085:5;44059:32;:::i;:::-;43956:141;;;;:::o;44103:349::-;44172:6;44221:2;44209:9;44200:7;44196:23;44192:32;44189:119;;;44227:79;;:::i;:::-;44189:119;44347:1;44372:63;44427:7;44418:6;44407:9;44403:22;44372:63;:::i;:::-;44362:73;;44318:127;44103:349;;;;:::o;44458:233::-;44497:3;44520:24;44538:5;44520:24;:::i;:::-;44511:33;;44566:66;44559:5;44556:77;44553:103;;44636:18;;:::i;:::-;44553:103;44683:1;44676:5;44672:13;44665:20;;44458:233;;;:::o;44697:180::-;44745:77;44742:1;44735:88;44842:4;44839:1;44832:15;44866:4;44863:1;44856:15;44883:185;44923:1;44940:20;44958:1;44940:20;:::i;:::-;44935:25;;44974:20;44992:1;44974:20;:::i;:::-;44969:25;;45013:1;45003:35;;45018:18;;:::i;:::-;45003:35;45060:1;45057;45053:9;45048:14;;44883:185;;;;:::o;45074:191::-;45114:4;45134:20;45152:1;45134:20;:::i;:::-;45129:25;;45168:20;45186:1;45168:20;:::i;:::-;45163:25;;45207:1;45204;45201:8;45198:34;;;45212:18;;:::i;:::-;45198:34;45257:1;45254;45250:9;45242:17;;45074:191;;;;:::o;45271:176::-;45303:1;45320:20;45338:1;45320:20;:::i;:::-;45315:25;;45354:20;45372:1;45354:20;:::i;:::-;45349:25;;45393:1;45383:35;;45398:18;;:::i;:::-;45383:35;45439:1;45436;45432:9;45427:14;;45271:176;;;;:::o

Swarm Source

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