ETH Price: $2,722.85 (+9.53%)
 

Overview

Max Total Supply

330 Pyramidal (2023)

Holders

149

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Pyramidal (2023)
0xea5ec21cd8012ab77d2519dc1edc1873c85416b8
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:
Pyramidal_2023

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-16
*/

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



pragma solidity ^0.8.18;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
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) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.18;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.18;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the 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 towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (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 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

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

            uint256 twos = denominator & (0 - denominator);
            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 (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.18;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        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);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.20;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS
    }

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * return address(0) without also returning an error description. Errors are documented using an enum (error type)
     * and a bytes32 providing additional information about the error.
     *
     * If no error is returned, then the address can be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            uint8 v = uint8((uint256(vs) >> 255) + 27);
            return tryRecover(hash, v, r, s);
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError, bytes32) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS, s);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.18;

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.18;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.18;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.18;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 tokenId => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev The default royalty set is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidDefaultRoyalty(uint256 numerator, uint256 denominator);

    /**
     * @dev The default royalty receiver is invalid.
     */
    error ERC2981InvalidDefaultRoyaltyReceiver(address receiver);

    /**
     * @dev The royalty set for an specific `tokenId` is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidTokenRoyalty(uint256 tokenId, uint256 numerator, uint256 denominator);

    /**
     * @dev The royalty receiver for `tokenId` is invalid.
     */
    error ERC2981InvalidTokenRoyaltyReceiver(uint256 tokenId, address receiver);

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidDefaultRoyalty(feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidDefaultRoyaltyReceiver(address(0));
        }

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidTokenRoyalty(tokenId, feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidTokenRoyaltyReceiver(tokenId, address(0));
        }

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.18;

/**
 * @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 v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.18;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: contracts/pyramidalLive.sol



pragma solidity ^0.8.0;








pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION =
        0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY =
        0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(
        address subscriptionOrRegistrantToCopy,
        bool subscribe
    ) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(
                96,
                shl(96, subscriptionOrRegistrantToCopy)
            )
            // prettier-ignore
            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            pop(
                call(
                    gas(),
                    _OPERATOR_FILTER_REGISTRY,
                    0,
                    0x00,
                    0x44,
                    0x00,
                    0x00
                )
            )
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if `from` is a blocked operator.
    /// Can be turned on / off via `enabled`.
    /// For gas efficiency, you can use tight variable packing to efficiently read / write
    /// the boolean value for `enabled`.
    modifier onlyAllowedOperator(address from, bool enabled) virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // This code prioritizes runtime gas costs on a chain with the registry.
            // As such, we will not use `extcodesize`, but rather abuse the behavior
            // of `staticcall` returning 1 when called on an empty / missing contract,
            // to avoid reverting when a chain does not have the registry.

            if enabled {
                // Check if `from` is not equal to `msg.sender`,
                // discarding the upper 96 bits of `from` in case they are dirty.
                if iszero(eq(shr(96, shl(96, from)), caller())) {
                    // Store the function selector of `isOperatorAllowed(address,address)`,
                    // shifted left by 6 bytes, which is enough for 8tb of memory.
                    // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
                    mstore(0x00, 0xc6171134001122334455)
                    // Store the `address(this)`.
                    mstore(0x1a, address())
                    // Store the `msg.sender`.
                    mstore(0x3a, caller())

                    // `isOperatorAllowed` always returns true if it does not revert.
                    if iszero(
                        staticcall(
                            gas(),
                            _OPERATOR_FILTER_REGISTRY,
                            0x16,
                            0x44,
                            0x00,
                            0x00
                        )
                    ) {
                        // Bubble up the revert if the staticcall reverts.
                        returndatacopy(0x00, 0x00, returndatasize())
                        revert(0x00, returndatasize())
                    }

                    // We'll skip checking if `from` is inside the blacklist.
                    // Even though that can block transferring out of wrapper contracts,
                    // we don't want tokens to be stuck.

                    // Restore the part of the free memory pointer that was overwritten,
                    // which is guaranteed to be zero, if less than 8tb of memory is used.
                    mstore(0x3a, 0)
                }
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator.
    /// Can be turned on / off via `enabled`.
    /// For efficiency, you can use tight variable packing to efficiently read / write
    /// the boolean value for `enabled`.
    modifier onlyAllowedOperatorApproval(address operator, bool enabled)
        virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // For more information on the optimization techniques used,
            // see the comments in `onlyAllowedOperator`.

            if enabled {
                // Store the function selector of `isOperatorAllowed(address,address)`,
                mstore(0x00, 0xc6171134001122334455)
                // Store the `address(this)`.
                mstore(0x1a, address())
                // Store the `operator`, discarding the upper 96 bits in case they are dirty.
                mstore(0x3a, shr(96, shl(96, operator)))

                // `isOperatorAllowed` always returns true if it does not revert.
                if iszero(
                    staticcall(
                        gas(),
                        _OPERATOR_FILTER_REGISTRY,
                        0x16,
                        0x44,
                        0x00,
                        0x00
                    )
                ) {
                    // Bubble up the revert if the staticcall reverts.
                    returndatacopy(0x00, 0x00, returndatasize())
                    revert(0x00, returndatasize())
                }

                // Restore the part of the free memory pointer that was overwritten.
                mstore(0x3a, 0)
            }
        }
        _;
    }
}

error AlreadyReservedTokens();
error CallerNotOffsetter();
error FunctionLocked();
error InsufficientValue();
error InsufficientMints();
error InsufficientSupply();
error InvalidSignature();
error NoContractMinting();
error ProvenanceHashAlreadySet();
error ProvenanceHashNotSet();
error TokenOffsetAlreadySet();
error TokenOffsetNotSet();
error WithdrawFailed();

interface Offsetable {
    function setOffset(uint256 randomness) external;
}

contract Pyramidal_2023 is ERC721A, ERC2981, OperatorFilterer, Ownable {
    using ECDSA for bytes32;

    string private _baseTokenURI;
    bytes32 public merkleRoot;
    string public baseExtension = ".json";
    address public contractAddress1;
    uint256 public MAX_SUPPLY = 330;
    uint256 public constant RESERVED = 5;
    uint256 public SEC_RESERVED = 25;
    uint256 public PUBLIC_SUPPLY = 300;  
    uint256 public WHITELIST_SUPPLY = 300; 
    uint256 public mintPrice = 0.034 ether;
    uint256 public whiteListPrice = 0.034 ether;
    string public provenanceHash;
    bool public operatorFilteringEnabled;
    mapping(bytes4 => bool) public functionLocked;
    bool public publicSaleStatus = false;
    bool public whitelistSaleStatus = false;
    mapping(address => bool) public isUk;
    mapping(address => uint256) public Claimed;
    uint256 public totalClaimed = 0;

    event WHITELISTMINT(address to, uint256 quantity, bool _isUk);
    event PUBLICMINT(address to, uint256 quantity, bool _isUk);
    

    constructor(
        address _royaltyReceiver,
        address initialOwner,
        uint96 _royaltyFraction
    ) ERC721A(unicode"Pyramidal (2023)", unicode"Pyramidal (2023)") Ownable(initialOwner) {
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        contractAddress1 = 0xcf808358C1cBD3F8d574E3eE235463F5ed4c1BEF;

        _setDefaultRoyalty(_royaltyReceiver, _royaltyFraction);
    }

    /**
     * @notice Modifier applied to functions that will be disabled when they're no longer needed
     */
    modifier lockable() {
        if (functionLocked[msg.sig]) revert FunctionLocked();
        _;
    }


    /**
     * @inheritdoc ERC721A
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

    /**
     * @notice Override ERC721A _baseURI function to use base URI pattern
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    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,
                        Strings.toString(tokenId),
                        baseExtension
                    )
                )
                : "";
    }

    /**
     * @notice Return the number of tokens an address has minted
     * @param account Address to return the number of tokens minted for
     */
    function numberMinted(address account) external view returns (uint256) {
        return _numberMinted(account);
    }

    /**
     * @notice Lock a function so that it can no longer be called
     * @dev WARNING: THIS CANNOT BE UNDONE
     * @param id Function signature
     */
    function lockFunction(bytes4 id) external onlyOwner {
        functionLocked[id] = true;
    }

    /**
     * @notice Set the state of the OpenSea operator filter
     * @param value Flag indicating if the operator filter should be applied to transfers and approvals
     */
    function setOperatorFilteringEnabled(bool value)
        external
        lockable
        onlyOwner
    {
        operatorFilteringEnabled = value;
    }

    /**
     * @notice Set new royalties settings for the collection
     * @param receiver Address to receive royalties
     * @param royaltyFraction Royalty fee respective to fee denominator (10_000)
     */
    function setRoyalties(address receiver, uint96 royaltyFraction)
        external
        onlyOwner
    {
        _setDefaultRoyalty(receiver, royaltyFraction);
    }

    /**
     * @notice Set token metadata base URI
     * @param _newBaseURI New base URI
     */
    function setBaseURI(string calldata _newBaseURI)
        external
        lockable
        onlyOwner
    {
        _baseTokenURI = _newBaseURI;
    }

    /**
     * @notice Set provenance hash for the collection
     * @param _provenanceHash New hash of the metadata
     */
    function setProvenanceHash(string calldata _provenanceHash)
        external
        lockable
        onlyOwner
    {
        if (bytes(provenanceHash).length != 0)
            revert ProvenanceHashAlreadySet();

        provenanceHash = _provenanceHash;
    }

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

    /**
     * @notice Mint `RESERVED` amount of tokens to an address
     * @param to Address to send the reserved tokens
     */
    function reserve(address to) external lockable onlyOwner {
        if (_totalMinted() >= RESERVED) revert AlreadyReservedTokens();
        _mint(to, RESERVED);
    }

    function secondaryReserve(address to, uint256 quantity)
        external
        lockable
        onlyOwner
    {   
        _mint(to, quantity);
    }

    function whiteListMint(
        address to,
        uint256 quantity,
        bool _isUk,
        bytes32[] calldata merkleProof
    ) external payable{
        require(whitelistSaleStatus == true, "Minting is not yet open.");
        require(_totalMinted() + quantity <= MAX_SUPPLY , "Exceeds Maximum Supply" );
        IERC721A whiteListContract1 = IERC721A(contractAddress1);

        require(
            Claimed[to] + quantity <= whiteListContract1.balanceOf(to),
            "Invalid Whitelist Proof or Already Claimed"
        );
        require(
            totalClaimed + quantity <= WHITELIST_SUPPLY,
            "All NFTs Claimed."
        );
        bytes32 node = keccak256(abi.encodePacked(to));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "Invalid Whitelist Proof."
        );
        uint256 totalCost = quantity * whiteListPrice;
        require(msg.value >= totalCost, "Ether sent is not correct.");
        _mint(to, quantity);
        totalClaimed += quantity;
        Claimed[to] += quantity;
        isUk[to] = _isUk;
        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
        emit WHITELISTMINT(to, quantity, _isUk);
    }

    function publicMint(
        uint256 quantity,
        bool _isUk
    ) external payable{
        require(publicSaleStatus == true, "Minting is not yet open.");
        require(quantity <= PUBLIC_SUPPLY, "NFT amount exceeds");
        require(_totalMinted() + quantity <= MAX_SUPPLY , "Exceeds Maximum Supply" );
        uint256 totalCost = quantity * mintPrice;
        require(msg.value >= totalCost, "Ether sent is not correct.");
        _mint(msg.sender, quantity);
        PUBLIC_SUPPLY -= quantity;
        isUk[msg.sender] = _isUk;
        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
        emit PUBLICMINT(msg.sender, quantity, _isUk);
    }

    function setPublicMintPrice(uint256 _newPrice) external onlyOwner {
        mintPrice = _newPrice;
    }

    function setWhiteListPrice(uint256 _newPrice) external onlyOwner {
        whiteListPrice = _newPrice;
    }

    function setWhiteListSupply(uint256 _newSupply) external onlyOwner {
        WHITELIST_SUPPLY = _newSupply;
    }

    function setPublicSupply(uint256 _newSupply) external onlyOwner {
        PUBLIC_SUPPLY = _newSupply;
    }

    function enablePublicMint(bool _status) external onlyOwner {
            publicSaleStatus = _status;
    }

    function enablePrivateMint(bool _status) external onlyOwner {
            whitelistSaleStatus = _status;
    }

    /**
     * @notice Withdraw all ETH sent to the contract
     */
    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        if (!success) revert WithdrawFailed();
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
        onlyAllowedOperatorApproval(operator, operatorFilteringEnabled)
    {
        super.setApprovalForAll(operator, approved);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function approve(address operator, uint256 tokenId)
        public
        payable
        override
        onlyAllowedOperatorApproval(operator, operatorFilteringEnabled)
    {
        super.approve(operator, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    )
        public
        payable
        override
        onlyAllowedOperator(from, operatorFilteringEnabled)
    {
        super.transferFrom(from, to, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    )
        public
        payable
        override
        onlyAllowedOperator(from, operatorFilteringEnabled)
    {
        super.safeTransferFrom(from, to, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    )
        public
        payable
        override
        onlyAllowedOperator(from, operatorFilteringEnabled)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyReservedTokens","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidDefaultRoyalty","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidDefaultRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidTokenRoyalty","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidTokenRoyaltyReceiver","type":"error"},{"inputs":[],"name":"FunctionLocked","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ProvenanceHashAlreadySet","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"},{"inputs":[],"name":"WithdrawFailed","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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"bool","name":"_isUk","type":"bool"}],"name":"PUBLICMINT","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"bool","name":"_isUk","type":"bool"}],"name":"WHITELISTMINT","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEC_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractAddress1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"enablePrivateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"enablePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"","type":"address"}],"name":"isUk","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"_isUk","type":"bool"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"secondaryReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setWhiteListSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"_isUk","type":"bool"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816200004a91906200080f565b5061014a600f55601960105561012c60115561012c6012556678cad1e25d00006013556678cad1e25d00006014555f60185f6101000a81548160ff0219169083151502179055505f601860016101000a81548160ff0219169083151502179055505f601b55348015620000bb575f80fd5b5060405162005836380380620058368339818101604052810190620000e191906200099e565b816040518060400160405280601081526020017f507972616d6964616c20283230323329000000000000000000000000000000008152506040518060400160405280601081526020017f507972616d6964616c202832303233290000000000000000000000000000000081525081600290816200015f91906200080f565b5080600390816200017191906200080f565b5062000182620002a760201b60201c565b5f8190555050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001fc575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001f3919062000a08565b60405180910390fd5b6200020d81620002af60201b60201c565b506200021e6200037260201b60201c565b600160165f6101000a81548160ff02191690831515021790555073cf808358c1cbd3f8d574e3ee235463f5ed4c1bef600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200029e83826200039b60201b60201c565b50505062000a97565b5f6001905090565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000399733cc6cdda760b79bafa08df41ecfa224f810dceb660016200054460201b60201c565b565b5f620003ac620005a260201b60201c565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff161115620004145781816040517f6f483d090000000000000000000000000000000000000000000000000000000081526004016200040b92919062000a6c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000487575f6040517fb6d9900a0000000000000000000000000000000000000000000000000000000081526004016200047e919062000a08565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b637d3e3dbe8260601b60601c9250816200057357826200056b57634420e486905062000573565b63a0af290390505b8060e01b5f5230600452826024525f8060445f806daaeb6d7670e522a718067333cd4e5af1505f602452505050565b5f612710905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200062757607f821691505b6020821081036200063d576200063c620005e2565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000664565b620006ad868362000664565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006f7620006f1620006eb84620006c5565b620006ce565b620006c5565b9050919050565b5f819050919050565b6200071283620006d7565b6200072a6200072182620006fe565b84845462000670565b825550505050565b5f90565b6200074062000732565b6200074d81848462000707565b505050565b5b818110156200077457620007685f8262000736565b60018101905062000753565b5050565b601f821115620007c3576200078d8162000643565b620007988462000655565b81016020851015620007a8578190505b620007c0620007b78562000655565b83018262000752565b50505b505050565b5f82821c905092915050565b5f620007e55f1984600802620007c8565b1980831691505092915050565b5f620007ff8383620007d4565b9150826002028217905092915050565b6200081a82620005ab565b67ffffffffffffffff811115620008365762000835620005b5565b5b6200084282546200060f565b6200084f82828562000778565b5f60209050601f83116001811462000885575f841562000870578287015190505b6200087c8582620007f2565b865550620008eb565b601f198416620008958662000643565b5f5b82811015620008be5784890151825560018201915060208501945060208101905062000897565b86831015620008de5784890151620008da601f891682620007d4565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200092282620008f7565b9050919050565b620009348162000916565b81146200093f575f80fd5b50565b5f81519050620009528162000929565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b6200097a8162000958565b811462000985575f80fd5b50565b5f8151905062000998816200096f565b92915050565b5f805f60608486031215620009b857620009b7620008f3565b5b5f620009c78682870162000942565b9350506020620009da8682870162000942565b9250506040620009ed8682870162000988565b9150509250925092565b62000a028162000916565b82525050565b5f60208201905062000a1d5f830184620009f7565b92915050565b5f62000a4362000a3d62000a378462000958565b620006ce565b620006c5565b9050919050565b62000a558162000a23565b82525050565b62000a6681620006c5565b82525050565b5f60408201905062000a815f83018562000a4a565b62000a90602083018462000a5b565b9392505050565b614d918062000aa55f395ff3fe60806040526004361061034f575f3560e01c80637bc02806116101c5578063bbadfe76116100f6578063d54ad2a111610094578063e75179a41161006e578063e75179a414610bcc578063e985e9c514610bf4578063f2fde38b14610c30578063fb796e6c14610c585761034f565b8063d54ad2a114610b3e578063da3ef23f14610b68578063dc33e68114610b905761034f565b8063c21b471b116100d0578063c21b471b14610a86578063c668286214610aae578063c6ab67a314610ad8578063c87b56dd14610b025761034f565b8063bbadfe76146109f8578063bc1ac5c114610a34578063beafc89b14610a5e5761034f565b8063a243d3b611610163578063b629f1921161013d578063b629f1921461094e578063b6c693e51461098a578063b7c0b8e8146109b4578063b88d4fde146109dc5761034f565b8063a243d3b6146108cc578063aa592f25146108e8578063b449c24d146109125761034f565b80638da5cb5b1161019f5780638da5cb5b1461082857806395d89b41146108525780639e3545161461087c578063a22cb465146108a45761034f565b80637bc02806146107ac5780637cb64759146107d65780638342083a146107fe5761034f565b8063381a35061161029f5780636817c76c1161023d57806370a082311161021757806370a0823114610716578063715018a61461075257806374d0101d1461076857806378bfbdbb146107905761034f565b80636817c76c1461069857806368575685146106c25780636e56539b146106ec5761034f565b806355f804b31161027957806355f804b3146105e25780635d82cf6e1461060a578063601e5e77146106325780636352211e1461065c5761034f565b8063381a3506146105885780633ccfd60b146105b057806342842e0e146105c65761034f565b806323b872dd1161030c5780632eb4a7ab116102e65780632eb4a7ab146104e457806332cb6b0c1461050e5780633453182814610538578063353094d9146105605761034f565b806323b872dd1461046357806326aa420a1461047f5780632a55205a146104a75761034f565b806301ffc9a71461035357806306fdde031461038f578063081812fc146103b9578063095ea7b3146103f5578063109695231461041157806318160ddd14610439575b5f80fd5b34801561035e575f80fd5b5061037960048036038101906103749190613802565b610c82565b6040516103869190613847565b60405180910390f35b34801561039a575f80fd5b506103a3610ca3565b6040516103b091906138ea565b60405180910390f35b3480156103c4575f80fd5b506103df60048036038101906103da919061393d565b610d33565b6040516103ec91906139a7565b60405180910390f35b61040f600480360381019061040a91906139ea565b610dad565b005b34801561041c575f80fd5b5061043760048036038101906104329190613a89565b610e16565b005b348015610444575f80fd5b5061044d610f31565b60405161045a9190613ae3565b60405180910390f35b61047d60048036038101906104789190613afc565b610f46565b005b34801561048a575f80fd5b506104a560048036038101906104a0919061393d565b610fb9565b005b3480156104b2575f80fd5b506104cd60048036038101906104c89190613b4c565b610fcb565b6040516104db929190613b8a565b60405180910390f35b3480156104ef575f80fd5b506104f86111a7565b6040516105059190613bc9565b60405180910390f35b348015610519575f80fd5b506105226111ad565b60405161052f9190613ae3565b60405180910390f35b348015610543575f80fd5b5061055e60048036038101906105599190613802565b6111b3565b005b34801561056b575f80fd5b5061058660048036038101906105819190613c0c565b611225565b005b348015610593575f80fd5b506105ae60048036038101906105a9919061393d565b611249565b005b3480156105bb575f80fd5b506105c461125b565b005b6105e060048036038101906105db9190613afc565b611305565b005b3480156105ed575f80fd5b5061060860048036038101906106039190613a89565b611378565b005b348015610615575f80fd5b50610630600480360381019061062b919061393d565b61144c565b005b34801561063d575f80fd5b5061064661145e565b6040516106539190613ae3565b60405180910390f35b348015610667575f80fd5b50610682600480360381019061067d919061393d565b611464565b60405161068f91906139a7565b60405180910390f35b3480156106a3575f80fd5b506106ac611475565b6040516106b99190613ae3565b60405180910390f35b3480156106cd575f80fd5b506106d661147b565b6040516106e39190613ae3565b60405180910390f35b3480156106f7575f80fd5b50610700611481565b60405161070d9190613ae3565b60405180910390f35b348015610721575f80fd5b5061073c60048036038101906107379190613c37565b611487565b6040516107499190613ae3565b60405180910390f35b34801561075d575f80fd5b5061076661153c565b005b348015610773575f80fd5b5061078e600480360381019061078991906139ea565b61154f565b005b6107aa60048036038101906107a59190613cb7565b61161b565b005b3480156107b7575f80fd5b506107c0611ab1565b6040516107cd91906139a7565b60405180910390f35b3480156107e1575f80fd5b506107fc60048036038101906107f79190613d65565b611ad6565b005b348015610809575f80fd5b50610812611ae8565b60405161081f9190613ae3565b60405180910390f35b348015610833575f80fd5b5061083c611aee565b60405161084991906139a7565b60405180910390f35b34801561085d575f80fd5b50610866611b16565b60405161087391906138ea565b60405180910390f35b348015610887575f80fd5b506108a2600480360381019061089d9190613c0c565b611ba6565b005b3480156108af575f80fd5b506108ca60048036038101906108c59190613d90565b611bcb565b005b6108e660048036038101906108e19190613dce565b611c34565b005b3480156108f3575f80fd5b506108fc611e87565b6040516109099190613ae3565b60405180910390f35b34801561091d575f80fd5b5061093860048036038101906109339190613c37565b611e8c565b6040516109459190613ae3565b60405180910390f35b348015610959575f80fd5b50610974600480360381019061096f9190613c37565b611ea1565b6040516109819190613847565b60405180910390f35b348015610995575f80fd5b5061099e611ebe565b6040516109ab9190613847565b60405180910390f35b3480156109bf575f80fd5b506109da60048036038101906109d59190613c0c565b611ed0565b005b6109f660048036038101906109f19190613f34565b611faa565b005b348015610a03575f80fd5b50610a1e6004803603810190610a199190613802565b61201f565b604051610a2b9190613847565b60405180910390f35b348015610a3f575f80fd5b50610a4861203c565b604051610a559190613847565b60405180910390f35b348015610a69575f80fd5b50610a846004803603810190610a7f919061393d565b61204f565b005b348015610a91575f80fd5b50610aac6004803603810190610aa79190613ff5565b612061565b005b348015610ab9575f80fd5b50610ac2612077565b604051610acf91906138ea565b60405180910390f35b348015610ae3575f80fd5b50610aec612103565b604051610af991906138ea565b60405180910390f35b348015610b0d575f80fd5b50610b286004803603810190610b23919061393d565b61218f565b604051610b3591906138ea565b60405180910390f35b348015610b49575f80fd5b50610b52612236565b604051610b5f9190613ae3565b60405180910390f35b348015610b73575f80fd5b50610b8e6004803603810190610b8991906140d1565b61223c565b005b348015610b9b575f80fd5b50610bb66004803603810190610bb19190613c37565b612257565b604051610bc39190613ae3565b60405180910390f35b348015610bd7575f80fd5b50610bf26004803603810190610bed9190613c37565b612268565b005b348015610bff575f80fd5b50610c1a6004803603810190610c159190614118565b612375565b604051610c279190613847565b60405180910390f35b348015610c3b575f80fd5b50610c566004803603810190610c519190613c37565b612403565b005b348015610c63575f80fd5b50610c6c612487565b604051610c799190613847565b60405180910390f35b5f610c8c82612499565b80610c9c5750610c9b8261252a565b5b9050919050565b606060028054610cb290614183565b80601f0160208091040260200160405190810160405280929190818152602001828054610cde90614183565b8015610d295780601f10610d0057610100808354040283529160200191610d29565b820191905f5260205f20905b815481529060010190602001808311610d0c57829003601f168201915b5050505050905090565b5f610d3d826125a3565b610d73576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160165f9054906101000a900460ff168015610e065769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610e01573d5f803e3d5ffd5b5f603a525b610e1084846125fd565b50505050565b60175f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615610ecc576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ed461273c565b5f60158054610ee290614183565b905014610f1b576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160159182610f2c92919061435a565b505050565b5f610f3a6127c3565b6001545f540303905090565b8260165f9054906101000a900460ff168015610fa757338260601b60601c14610fa65769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610fa1573d5f803e3d5ffd5b5f603a525b5b610fb28585856127cb565b5050505050565b610fc161273c565b8060118190555050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff16036111545760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f61115d612ad9565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866111899190614454565b61119391906144c2565b9050815f0151819350935050509250929050565b600c5481565b600f5481565b6111bb61273c565b600160175f837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61122d61273c565b8060185f6101000a81548160ff02191690831515021790555050565b61125161273c565b8060128190555050565b61126361273c565b5f3373ffffffffffffffffffffffffffffffffffffffff16476040516112889061451f565b5f6040518083038185875af1925050503d805f81146112c2576040519150601f19603f3d011682016040523d82523d5f602084013e6112c7565b606091505b5050905080611302576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b8260165f9054906101000a900460ff16801561136657338260601b60601c146113655769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa611360573d5f803e3d5ffd5b5f603a525b5b611371858585612ae2565b5050505050565b60175f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff161561142e576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61143661273c565b8181600b918261144792919061435a565b505050565b61145461273c565b8060138190555050565b60105481565b5f61146e82612b01565b9050919050565b60135481565b60145481565b60125481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61154461273c565b61154d5f612bc4565b565b60175f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611605576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61160d61273c565b6116178282612c87565b5050565b60011515601860019054906101000a900460ff16151514611671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116689061457d565b60405180910390fd5b600f548461167d612e30565b611687919061459b565b11156116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90614618565b60405180910390fd5b5f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b815260040161172691906139a7565b602060405180830381865afa158015611741573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611765919061464a565b85601a5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117ae919061459b565b11156117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e6906146e5565b60405180910390fd5b60125485601b54611800919061459b565b1115611841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118389061474d565b60405180910390fd5b5f8660405160200161185391906147b0565b6040516020818303038152906040528051906020012090506118b88484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050600c5483612e41565b6118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90614814565b60405180910390fd5b5f601454876119069190614454565b90508034101561194b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119429061487c565b60405180910390fd5b6119558888612c87565b86601b5f828254611966919061459b565b9250508190555086601a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546119b9919061459b565b925050819055508560195f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080341115611a6c573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611a42919061489a565b90811502906040515f60405180830381858888f19350505050158015611a6a573d5f803e3d5ffd5b505b7fa971331509d7a373cc4bdff3328d10bab1fe3c84dc4f0841d6c86a680eb03f5b888888604051611a9f939291906148cd565b60405180910390a15050505050505050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ade61273c565b80600c8190555050565b60115481565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b2590614183565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5190614183565b8015611b9c5780601f10611b7357610100808354040283529160200191611b9c565b820191905f5260205f20905b815481529060010190602001808311611b7f57829003601f168201915b5050505050905090565b611bae61273c565b80601860016101000a81548160ff02191690831515021790555050565b8160165f9054906101000a900460ff168015611c245769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa611c1f573d5f803e3d5ffd5b5f603a525b611c2e8484612eee565b50505050565b6001151560185f9054906101000a900460ff16151514611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061457d565b60405180910390fd5b601154821115611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc59061494c565b60405180910390fd5b600f5482611cda612e30565b611ce4919061459b565b1115611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90614618565b60405180910390fd5b5f60135483611d349190614454565b905080341015611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d709061487c565b60405180910390fd5b611d833384612c87565b8260115f828254611d94919061489a565b925050819055508160195f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080341115611e47573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611e1d919061489a565b90811502906040515f60405180830381858888f19350505050158015611e45573d5f803e3d5ffd5b505b7f1bb382e9d53b459c87b27472552ef310651dfbc65ef02e78380dd3780a427149338484604051611e7a939291906148cd565b60405180910390a1505050565b600581565b601a602052805f5260405f205f915090505481565b6019602052805f5260405f205f915054906101000a900460ff1681565b60185f9054906101000a900460ff1681565b60175f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611f86576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f8e61273c565b8060165f6101000a81548160ff02191690831515021790555050565b8360165f9054906101000a900460ff16801561200b57338260601b60601c1461200a5769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa612005573d5f803e3d5ffd5b5f603a525b5b61201786868686612ff4565b505050505050565b6017602052805f5260405f205f915054906101000a900460ff1681565b601860019054906101000a900460ff1681565b61205761273c565b8060148190555050565b61206961273c565b6120738282613066565b5050565b600d805461208490614183565b80601f01602080910402602001604051908101604052809291908181526020018280546120b090614183565b80156120fb5780601f106120d2576101008083540402835291602001916120fb565b820191905f5260205f20905b8154815290600101906020018083116120de57829003601f168201915b505050505081565b6015805461211090614183565b80601f016020809104026020016040519081016040528092919081815260200182805461213c90614183565b80156121875780601f1061215e57610100808354040283529160200191612187565b820191905f5260205f20905b81548152906001019060200180831161216a57829003601f168201915b505050505081565b606061219a826125a3565b6121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d0906149da565b60405180910390fd5b5f6121e2613201565b90505f8151116122005760405180602001604052805f81525061222e565b8061220a84613291565b600d60405160200161221e93929190614ab2565b6040516020818303038152906040525b915050919050565b601b5481565b61224461273c565b80600d90816122539190614ae2565b5050565b5f6122618261335b565b9050919050565b60175f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff161561231e576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61232661273c565b6005612330612e30565b10612367576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612372816005612c87565b50565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61240b61273c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361247b575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161247291906139a7565b60405180910390fd5b61248481612bc4565b50565b60165f9054906101000a900460ff1681565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125235750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061259c575061259b826133af565b5b9050919050565b5f816125ad6127c3565b111580156125bb57505f5482105b80156125f657505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f61260782611464565b90508073ffffffffffffffffffffffffffffffffffffffff16612628613418565b73ffffffffffffffffffffffffffffffffffffffff161461268b576126548161264f613418565b612375565b61268a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61274461341f565b73ffffffffffffffffffffffffffffffffffffffff16612762611aee565b73ffffffffffffffffffffffffffffffffffffffff16146127c15761278561341f565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016127b891906139a7565b60405180910390fd5b565b5f6001905090565b5f6127d582612b01565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461283c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061284784613426565b9150915061285d8187612858613418565b613449565b6128a9576128728661286d613418565b612375565b6128a8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361290e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61291b868686600161348c565b8015612925575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506129ed856129c9888887613492565b7c0200000000000000000000000000000000000000000000000000000000176134b9565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603612a69575f6001850190505f60045f8381526020019081526020015f205403612a67575f548114612a66578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ad186868660016134e3565b505050505050565b5f612710905090565b612afc83838360405180602001604052805f815250611faa565b505050565b5f8082905080612b0f6127c3565b11612b8d575f54811015612b8c575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612b8a575b5f8103612b805760045f836001900393508381526020019081526020015f20549050612b59565b8092505050612bbf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f8203612cc5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cd15f84838561348c565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612d4383612d345f865f613492565b612d3d856134e9565b176134b9565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114612ddd5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612da4565b505f8203612e17576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050612e2b5f8483856134e3565b505050565b5f612e396127c3565b5f5403905090565b5f808290505f5b8551811015612ee0575f868281518110612e6557612e64614bb1565b5b60200260200101519050808311612ea6578281604051602001612e89929190614bfe565b604051602081830303815290604052805190602001209250612ed2565b8083604051602001612eb9929190614bfe565b6040516020818303038152906040528051906020012092505b508080600101915050612e48565b508381149150509392505050565b8060075f612efa613418565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612fa3613418565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fe89190613847565b60405180910390a35050565b612fff848484610f46565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461306057613029848484846134f8565b61305f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b5f61306f612ad9565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff1611156130d45781816040517f6f483d090000000000000000000000000000000000000000000000000000000081526004016130cb929190614c59565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613144575f6040517fb6d9900a00000000000000000000000000000000000000000000000000000000815260040161313b91906139a7565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6060600b805461321090614183565b80601f016020809104026020016040519081016040528092919081815260200182805461323c90614183565b80156132875780601f1061325e57610100808354040283529160200191613287565b820191905f5260205f20905b81548152906001019060200180831161326a57829003601f168201915b5050505050905090565b60605f600161329f84613643565b0190505f8167ffffffffffffffff8111156132bd576132bc613e10565b5b6040519080825280601f01601f1916602001820160405280156132ef5781602001600182028036833780820191505090505b5090505f82602001820190505b600115613350578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161334557613344614495565b5b0494505f85036132fc575b819350505050919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86134a8868684613794565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261351d613418565b8786866040518563ffffffff1660e01b815260040161353f9493929190614cd2565b6020604051808303815f875af192505050801561357a57506040513d601f19601f820116820180604052508101906135779190614d30565b60015b6135f0573d805f81146135a8576040519150601f19603f3d011682016040523d82523d5f602084013e6135ad565b606091505b505f8151036135e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061369f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161369557613694614495565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106136dc576d04ee2d6d415b85acef810000000083816136d2576136d1614495565b5b0492506020810190505b662386f26fc10000831061370b57662386f26fc10000838161370157613700614495565b5b0492506010810190505b6305f5e1008310613734576305f5e100838161372a57613729614495565b5b0492506008810190505b612710831061375957612710838161374f5761374e614495565b5b0492506004810190505b6064831061377c576064838161377257613771614495565b5b0492506002810190505b600a831061378b576001810190505b80915050919050565b5f9392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137e1816137ad565b81146137eb575f80fd5b50565b5f813590506137fc816137d8565b92915050565b5f60208284031215613817576138166137a5565b5b5f613824848285016137ee565b91505092915050565b5f8115159050919050565b6138418161382d565b82525050565b5f60208201905061385a5f830184613838565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561389757808201518184015260208101905061387c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6138bc82613860565b6138c6818561386a565b93506138d681856020860161387a565b6138df816138a2565b840191505092915050565b5f6020820190508181035f83015261390281846138b2565b905092915050565b5f819050919050565b61391c8161390a565b8114613926575f80fd5b50565b5f8135905061393781613913565b92915050565b5f60208284031215613952576139516137a5565b5b5f61395f84828501613929565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61399182613968565b9050919050565b6139a181613987565b82525050565b5f6020820190506139ba5f830184613998565b92915050565b6139c981613987565b81146139d3575f80fd5b50565b5f813590506139e4816139c0565b92915050565b5f8060408385031215613a00576139ff6137a5565b5b5f613a0d858286016139d6565b9250506020613a1e85828601613929565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112613a4957613a48613a28565b5b8235905067ffffffffffffffff811115613a6657613a65613a2c565b5b602083019150836001820283011115613a8257613a81613a30565b5b9250929050565b5f8060208385031215613a9f57613a9e6137a5565b5b5f83013567ffffffffffffffff811115613abc57613abb6137a9565b5b613ac885828601613a34565b92509250509250929050565b613add8161390a565b82525050565b5f602082019050613af65f830184613ad4565b92915050565b5f805f60608486031215613b1357613b126137a5565b5b5f613b20868287016139d6565b9350506020613b31868287016139d6565b9250506040613b4286828701613929565b9150509250925092565b5f8060408385031215613b6257613b616137a5565b5b5f613b6f85828601613929565b9250506020613b8085828601613929565b9150509250929050565b5f604082019050613b9d5f830185613998565b613baa6020830184613ad4565b9392505050565b5f819050919050565b613bc381613bb1565b82525050565b5f602082019050613bdc5f830184613bba565b92915050565b613beb8161382d565b8114613bf5575f80fd5b50565b5f81359050613c0681613be2565b92915050565b5f60208284031215613c2157613c206137a5565b5b5f613c2e84828501613bf8565b91505092915050565b5f60208284031215613c4c57613c4b6137a5565b5b5f613c59848285016139d6565b91505092915050565b5f8083601f840112613c7757613c76613a28565b5b8235905067ffffffffffffffff811115613c9457613c93613a2c565b5b602083019150836020820283011115613cb057613caf613a30565b5b9250929050565b5f805f805f60808688031215613cd057613ccf6137a5565b5b5f613cdd888289016139d6565b9550506020613cee88828901613929565b9450506040613cff88828901613bf8565b935050606086013567ffffffffffffffff811115613d2057613d1f6137a9565b5b613d2c88828901613c62565b92509250509295509295909350565b613d4481613bb1565b8114613d4e575f80fd5b50565b5f81359050613d5f81613d3b565b92915050565b5f60208284031215613d7a57613d796137a5565b5b5f613d8784828501613d51565b91505092915050565b5f8060408385031215613da657613da56137a5565b5b5f613db3858286016139d6565b9250506020613dc485828601613bf8565b9150509250929050565b5f8060408385031215613de457613de36137a5565b5b5f613df185828601613929565b9250506020613e0285828601613bf8565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613e46826138a2565b810181811067ffffffffffffffff82111715613e6557613e64613e10565b5b80604052505050565b5f613e7761379c565b9050613e838282613e3d565b919050565b5f67ffffffffffffffff821115613ea257613ea1613e10565b5b613eab826138a2565b9050602081019050919050565b828183375f83830152505050565b5f613ed8613ed384613e88565b613e6e565b905082815260208101848484011115613ef457613ef3613e0c565b5b613eff848285613eb8565b509392505050565b5f82601f830112613f1b57613f1a613a28565b5b8135613f2b848260208601613ec6565b91505092915050565b5f805f8060808587031215613f4c57613f4b6137a5565b5b5f613f59878288016139d6565b9450506020613f6a878288016139d6565b9350506040613f7b87828801613929565b925050606085013567ffffffffffffffff811115613f9c57613f9b6137a9565b5b613fa887828801613f07565b91505092959194509250565b5f6bffffffffffffffffffffffff82169050919050565b613fd481613fb4565b8114613fde575f80fd5b50565b5f81359050613fef81613fcb565b92915050565b5f806040838503121561400b5761400a6137a5565b5b5f614018858286016139d6565b925050602061402985828601613fe1565b9150509250929050565b5f67ffffffffffffffff82111561404d5761404c613e10565b5b614056826138a2565b9050602081019050919050565b5f61407561407084614033565b613e6e565b90508281526020810184848401111561409157614090613e0c565b5b61409c848285613eb8565b509392505050565b5f82601f8301126140b8576140b7613a28565b5b81356140c8848260208601614063565b91505092915050565b5f602082840312156140e6576140e56137a5565b5b5f82013567ffffffffffffffff811115614103576141026137a9565b5b61410f848285016140a4565b91505092915050565b5f806040838503121561412e5761412d6137a5565b5b5f61413b858286016139d6565b925050602061414c858286016139d6565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061419a57607f821691505b6020821081036141ad576141ac614156565b5b50919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026142197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826141de565b61422386836141de565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61425e6142596142548461390a565b61423b565b61390a565b9050919050565b5f819050919050565b61427783614244565b61428b61428382614265565b8484546141ea565b825550505050565b5f90565b61429f614293565b6142aa81848461426e565b505050565b5b818110156142cd576142c25f82614297565b6001810190506142b0565b5050565b601f821115614312576142e3816141bd565b6142ec846141cf565b810160208510156142fb578190505b61430f614307856141cf565b8301826142af565b50505b505050565b5f82821c905092915050565b5f6143325f1984600802614317565b1980831691505092915050565b5f61434a8383614323565b9150826002028217905092915050565b61436483836141b3565b67ffffffffffffffff81111561437d5761437c613e10565b5b6143878254614183565b6143928282856142d1565b5f601f8311600181146143bf575f84156143ad578287013590505b6143b7858261433f565b86555061441e565b601f1984166143cd866141bd565b5f5b828110156143f4578489013582556001820191506020850194506020810190506143cf565b86831015614411578489013561440d601f891682614323565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61445e8261390a565b91506144698361390a565b92508282026144778161390a565b9150828204841483151761448e5761448d614427565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6144cc8261390a565b91506144d78361390a565b9250826144e7576144e6614495565b5b828204905092915050565b5f81905092915050565b50565b5f61450a5f836144f2565b9150614515826144fc565b5f82019050919050565b5f614529826144ff565b9150819050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e00000000000000005f82015250565b5f61456760188361386a565b915061457282614533565b602082019050919050565b5f6020820190508181035f8301526145948161455b565b9050919050565b5f6145a58261390a565b91506145b08361390a565b92508282019050808211156145c8576145c7614427565b5b92915050565b7f45786365656473204d6178696d756d20537570706c79000000000000000000005f82015250565b5f61460260168361386a565b915061460d826145ce565b602082019050919050565b5f6020820190508181035f83015261462f816145f6565b9050919050565b5f8151905061464481613913565b92915050565b5f6020828403121561465f5761465e6137a5565b5b5f61466c84828501614636565b91505092915050565b7f496e76616c69642057686974656c6973742050726f6f66206f7220416c7265615f8201527f647920436c61696d656400000000000000000000000000000000000000000000602082015250565b5f6146cf602a8361386a565b91506146da82614675565b604082019050919050565b5f6020820190508181035f8301526146fc816146c3565b9050919050565b7f416c6c204e46547320436c61696d65642e0000000000000000000000000000005f82015250565b5f61473760118361386a565b915061474282614703565b602082019050919050565b5f6020820190508181035f8301526147648161472b565b9050919050565b5f8160601b9050919050565b5f6147818261476b565b9050919050565b5f61479282614777565b9050919050565b6147aa6147a582613987565b614788565b82525050565b5f6147bb8284614799565b60148201915081905092915050565b7f496e76616c69642057686974656c6973742050726f6f662e00000000000000005f82015250565b5f6147fe60188361386a565b9150614809826147ca565b602082019050919050565b5f6020820190508181035f83015261482b816147f2565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e0000000000005f82015250565b5f614866601a8361386a565b915061487182614832565b602082019050919050565b5f6020820190508181035f8301526148938161485a565b9050919050565b5f6148a48261390a565b91506148af8361390a565b92508282039050818111156148c7576148c6614427565b5b92915050565b5f6060820190506148e05f830186613998565b6148ed6020830185613ad4565b6148fa6040830184613838565b949350505050565b7f4e465420616d6f756e74206578636565647300000000000000000000000000005f82015250565b5f61493660128361386a565b915061494182614902565b602082019050919050565b5f6020820190508181035f8301526149638161492a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f6149c4602f8361386a565b91506149cf8261496a565b604082019050919050565b5f6020820190508181035f8301526149f1816149b8565b9050919050565b5f81905092915050565b5f614a0c82613860565b614a1681856149f8565b9350614a2681856020860161387a565b80840191505092915050565b5f8154614a3e81614183565b614a4881866149f8565b9450600182165f8114614a625760018114614a7757614aa9565b60ff1983168652811515820286019350614aa9565b614a80856141bd565b5f5b83811015614aa157815481890152600182019150602081019050614a82565b838801955050505b50505092915050565b5f614abd8286614a02565b9150614ac98285614a02565b9150614ad58284614a32565b9150819050949350505050565b614aeb82613860565b67ffffffffffffffff811115614b0457614b03613e10565b5b614b0e8254614183565b614b198282856142d1565b5f60209050601f831160018114614b4a575f8415614b38578287015190505b614b42858261433f565b865550614ba9565b601f198416614b58866141bd565b5f5b82811015614b7f57848901518255600182019150602085019450602081019050614b5a565b86831015614b9c5784890151614b98601f891682614323565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b614bf8614bf382613bb1565b614bde565b82525050565b5f614c098285614be7565b602082019150614c198284614be7565b6020820191508190509392505050565b5f614c43614c3e614c3984613fb4565b61423b565b61390a565b9050919050565b614c5381614c29565b82525050565b5f604082019050614c6c5f830185614c4a565b614c796020830184613ad4565b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f614ca482614c80565b614cae8185614c8a565b9350614cbe81856020860161387a565b614cc7816138a2565b840191505092915050565b5f608082019050614ce55f830187613998565b614cf26020830186613998565b614cff6040830185613ad4565b8181036060830152614d118184614c9a565b905095945050505050565b5f81519050614d2a816137d8565b92915050565b5f60208284031215614d4557614d446137a5565b5b5f614d5284828501614d1c565b9150509291505056fea2646970667358221220b275424012da0018df9acc39f1a4a47769675afc2404a618aea33d81e26e3cd864736f6c634300081600330000000000000000000000009d500db2c7b218a944a1e1fe8f40c43759f94bac00000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb731800000000000000000000000000000000000000000000000000000000000002ee

Deployed Bytecode

0x60806040526004361061034f575f3560e01c80637bc02806116101c5578063bbadfe76116100f6578063d54ad2a111610094578063e75179a41161006e578063e75179a414610bcc578063e985e9c514610bf4578063f2fde38b14610c30578063fb796e6c14610c585761034f565b8063d54ad2a114610b3e578063da3ef23f14610b68578063dc33e68114610b905761034f565b8063c21b471b116100d0578063c21b471b14610a86578063c668286214610aae578063c6ab67a314610ad8578063c87b56dd14610b025761034f565b8063bbadfe76146109f8578063bc1ac5c114610a34578063beafc89b14610a5e5761034f565b8063a243d3b611610163578063b629f1921161013d578063b629f1921461094e578063b6c693e51461098a578063b7c0b8e8146109b4578063b88d4fde146109dc5761034f565b8063a243d3b6146108cc578063aa592f25146108e8578063b449c24d146109125761034f565b80638da5cb5b1161019f5780638da5cb5b1461082857806395d89b41146108525780639e3545161461087c578063a22cb465146108a45761034f565b80637bc02806146107ac5780637cb64759146107d65780638342083a146107fe5761034f565b8063381a35061161029f5780636817c76c1161023d57806370a082311161021757806370a0823114610716578063715018a61461075257806374d0101d1461076857806378bfbdbb146107905761034f565b80636817c76c1461069857806368575685146106c25780636e56539b146106ec5761034f565b806355f804b31161027957806355f804b3146105e25780635d82cf6e1461060a578063601e5e77146106325780636352211e1461065c5761034f565b8063381a3506146105885780633ccfd60b146105b057806342842e0e146105c65761034f565b806323b872dd1161030c5780632eb4a7ab116102e65780632eb4a7ab146104e457806332cb6b0c1461050e5780633453182814610538578063353094d9146105605761034f565b806323b872dd1461046357806326aa420a1461047f5780632a55205a146104a75761034f565b806301ffc9a71461035357806306fdde031461038f578063081812fc146103b9578063095ea7b3146103f5578063109695231461041157806318160ddd14610439575b5f80fd5b34801561035e575f80fd5b5061037960048036038101906103749190613802565b610c82565b6040516103869190613847565b60405180910390f35b34801561039a575f80fd5b506103a3610ca3565b6040516103b091906138ea565b60405180910390f35b3480156103c4575f80fd5b506103df60048036038101906103da919061393d565b610d33565b6040516103ec91906139a7565b60405180910390f35b61040f600480360381019061040a91906139ea565b610dad565b005b34801561041c575f80fd5b5061043760048036038101906104329190613a89565b610e16565b005b348015610444575f80fd5b5061044d610f31565b60405161045a9190613ae3565b60405180910390f35b61047d60048036038101906104789190613afc565b610f46565b005b34801561048a575f80fd5b506104a560048036038101906104a0919061393d565b610fb9565b005b3480156104b2575f80fd5b506104cd60048036038101906104c89190613b4c565b610fcb565b6040516104db929190613b8a565b60405180910390f35b3480156104ef575f80fd5b506104f86111a7565b6040516105059190613bc9565b60405180910390f35b348015610519575f80fd5b506105226111ad565b60405161052f9190613ae3565b60405180910390f35b348015610543575f80fd5b5061055e60048036038101906105599190613802565b6111b3565b005b34801561056b575f80fd5b5061058660048036038101906105819190613c0c565b611225565b005b348015610593575f80fd5b506105ae60048036038101906105a9919061393d565b611249565b005b3480156105bb575f80fd5b506105c461125b565b005b6105e060048036038101906105db9190613afc565b611305565b005b3480156105ed575f80fd5b5061060860048036038101906106039190613a89565b611378565b005b348015610615575f80fd5b50610630600480360381019061062b919061393d565b61144c565b005b34801561063d575f80fd5b5061064661145e565b6040516106539190613ae3565b60405180910390f35b348015610667575f80fd5b50610682600480360381019061067d919061393d565b611464565b60405161068f91906139a7565b60405180910390f35b3480156106a3575f80fd5b506106ac611475565b6040516106b99190613ae3565b60405180910390f35b3480156106cd575f80fd5b506106d661147b565b6040516106e39190613ae3565b60405180910390f35b3480156106f7575f80fd5b50610700611481565b60405161070d9190613ae3565b60405180910390f35b348015610721575f80fd5b5061073c60048036038101906107379190613c37565b611487565b6040516107499190613ae3565b60405180910390f35b34801561075d575f80fd5b5061076661153c565b005b348015610773575f80fd5b5061078e600480360381019061078991906139ea565b61154f565b005b6107aa60048036038101906107a59190613cb7565b61161b565b005b3480156107b7575f80fd5b506107c0611ab1565b6040516107cd91906139a7565b60405180910390f35b3480156107e1575f80fd5b506107fc60048036038101906107f79190613d65565b611ad6565b005b348015610809575f80fd5b50610812611ae8565b60405161081f9190613ae3565b60405180910390f35b348015610833575f80fd5b5061083c611aee565b60405161084991906139a7565b60405180910390f35b34801561085d575f80fd5b50610866611b16565b60405161087391906138ea565b60405180910390f35b348015610887575f80fd5b506108a2600480360381019061089d9190613c0c565b611ba6565b005b3480156108af575f80fd5b506108ca60048036038101906108c59190613d90565b611bcb565b005b6108e660048036038101906108e19190613dce565b611c34565b005b3480156108f3575f80fd5b506108fc611e87565b6040516109099190613ae3565b60405180910390f35b34801561091d575f80fd5b5061093860048036038101906109339190613c37565b611e8c565b6040516109459190613ae3565b60405180910390f35b348015610959575f80fd5b50610974600480360381019061096f9190613c37565b611ea1565b6040516109819190613847565b60405180910390f35b348015610995575f80fd5b5061099e611ebe565b6040516109ab9190613847565b60405180910390f35b3480156109bf575f80fd5b506109da60048036038101906109d59190613c0c565b611ed0565b005b6109f660048036038101906109f19190613f34565b611faa565b005b348015610a03575f80fd5b50610a1e6004803603810190610a199190613802565b61201f565b604051610a2b9190613847565b60405180910390f35b348015610a3f575f80fd5b50610a4861203c565b604051610a559190613847565b60405180910390f35b348015610a69575f80fd5b50610a846004803603810190610a7f919061393d565b61204f565b005b348015610a91575f80fd5b50610aac6004803603810190610aa79190613ff5565b612061565b005b348015610ab9575f80fd5b50610ac2612077565b604051610acf91906138ea565b60405180910390f35b348015610ae3575f80fd5b50610aec612103565b604051610af991906138ea565b60405180910390f35b348015610b0d575f80fd5b50610b286004803603810190610b23919061393d565b61218f565b604051610b3591906138ea565b60405180910390f35b348015610b49575f80fd5b50610b52612236565b604051610b5f9190613ae3565b60405180910390f35b348015610b73575f80fd5b50610b8e6004803603810190610b8991906140d1565b61223c565b005b348015610b9b575f80fd5b50610bb66004803603810190610bb19190613c37565b612257565b604051610bc39190613ae3565b60405180910390f35b348015610bd7575f80fd5b50610bf26004803603810190610bed9190613c37565b612268565b005b348015610bff575f80fd5b50610c1a6004803603810190610c159190614118565b612375565b604051610c279190613847565b60405180910390f35b348015610c3b575f80fd5b50610c566004803603810190610c519190613c37565b612403565b005b348015610c63575f80fd5b50610c6c612487565b604051610c799190613847565b60405180910390f35b5f610c8c82612499565b80610c9c5750610c9b8261252a565b5b9050919050565b606060028054610cb290614183565b80601f0160208091040260200160405190810160405280929190818152602001828054610cde90614183565b8015610d295780601f10610d0057610100808354040283529160200191610d29565b820191905f5260205f20905b815481529060010190602001808311610d0c57829003601f168201915b5050505050905090565b5f610d3d826125a3565b610d73576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160165f9054906101000a900460ff168015610e065769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610e01573d5f803e3d5ffd5b5f603a525b610e1084846125fd565b50505050565b60175f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615610ecc576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ed461273c565b5f60158054610ee290614183565b905014610f1b576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160159182610f2c92919061435a565b505050565b5f610f3a6127c3565b6001545f540303905090565b8260165f9054906101000a900460ff168015610fa757338260601b60601c14610fa65769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610fa1573d5f803e3d5ffd5b5f603a525b5b610fb28585856127cb565b5050505050565b610fc161273c565b8060118190555050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff16036111545760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f61115d612ad9565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866111899190614454565b61119391906144c2565b9050815f0151819350935050509250929050565b600c5481565b600f5481565b6111bb61273c565b600160175f837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61122d61273c565b8060185f6101000a81548160ff02191690831515021790555050565b61125161273c565b8060128190555050565b61126361273c565b5f3373ffffffffffffffffffffffffffffffffffffffff16476040516112889061451f565b5f6040518083038185875af1925050503d805f81146112c2576040519150601f19603f3d011682016040523d82523d5f602084013e6112c7565b606091505b5050905080611302576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b8260165f9054906101000a900460ff16801561136657338260601b60601c146113655769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa611360573d5f803e3d5ffd5b5f603a525b5b611371858585612ae2565b5050505050565b60175f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff161561142e576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61143661273c565b8181600b918261144792919061435a565b505050565b61145461273c565b8060138190555050565b60105481565b5f61146e82612b01565b9050919050565b60135481565b60145481565b60125481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ed576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61154461273c565b61154d5f612bc4565b565b60175f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611605576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61160d61273c565b6116178282612c87565b5050565b60011515601860019054906101000a900460ff16151514611671576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116689061457d565b60405180910390fd5b600f548461167d612e30565b611687919061459b565b11156116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90614618565b60405180910390fd5b5f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b815260040161172691906139a7565b602060405180830381865afa158015611741573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611765919061464a565b85601a5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546117ae919061459b565b11156117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e6906146e5565b60405180910390fd5b60125485601b54611800919061459b565b1115611841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118389061474d565b60405180910390fd5b5f8660405160200161185391906147b0565b6040516020818303038152906040528051906020012090506118b88484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050600c5483612e41565b6118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90614814565b60405180910390fd5b5f601454876119069190614454565b90508034101561194b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119429061487c565b60405180910390fd5b6119558888612c87565b86601b5f828254611966919061459b565b9250508190555086601a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546119b9919061459b565b925050819055508560195f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080341115611a6c573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611a42919061489a565b90811502906040515f60405180830381858888f19350505050158015611a6a573d5f803e3d5ffd5b505b7fa971331509d7a373cc4bdff3328d10bab1fe3c84dc4f0841d6c86a680eb03f5b888888604051611a9f939291906148cd565b60405180910390a15050505050505050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ade61273c565b80600c8190555050565b60115481565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611b2590614183565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5190614183565b8015611b9c5780601f10611b7357610100808354040283529160200191611b9c565b820191905f5260205f20905b815481529060010190602001808311611b7f57829003601f168201915b5050505050905090565b611bae61273c565b80601860016101000a81548160ff02191690831515021790555050565b8160165f9054906101000a900460ff168015611c245769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa611c1f573d5f803e3d5ffd5b5f603a525b611c2e8484612eee565b50505050565b6001151560185f9054906101000a900460ff16151514611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061457d565b60405180910390fd5b601154821115611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc59061494c565b60405180910390fd5b600f5482611cda612e30565b611ce4919061459b565b1115611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90614618565b60405180910390fd5b5f60135483611d349190614454565b905080341015611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d709061487c565b60405180910390fd5b611d833384612c87565b8260115f828254611d94919061489a565b925050819055508160195f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080341115611e47573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611e1d919061489a565b90811502906040515f60405180830381858888f19350505050158015611e45573d5f803e3d5ffd5b505b7f1bb382e9d53b459c87b27472552ef310651dfbc65ef02e78380dd3780a427149338484604051611e7a939291906148cd565b60405180910390a1505050565b600581565b601a602052805f5260405f205f915090505481565b6019602052805f5260405f205f915054906101000a900460ff1681565b60185f9054906101000a900460ff1681565b60175f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611f86576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f8e61273c565b8060165f6101000a81548160ff02191690831515021790555050565b8360165f9054906101000a900460ff16801561200b57338260601b60601c1461200a5769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa612005573d5f803e3d5ffd5b5f603a525b5b61201786868686612ff4565b505050505050565b6017602052805f5260405f205f915054906101000a900460ff1681565b601860019054906101000a900460ff1681565b61205761273c565b8060148190555050565b61206961273c565b6120738282613066565b5050565b600d805461208490614183565b80601f01602080910402602001604051908101604052809291908181526020018280546120b090614183565b80156120fb5780601f106120d2576101008083540402835291602001916120fb565b820191905f5260205f20905b8154815290600101906020018083116120de57829003601f168201915b505050505081565b6015805461211090614183565b80601f016020809104026020016040519081016040528092919081815260200182805461213c90614183565b80156121875780601f1061215e57610100808354040283529160200191612187565b820191905f5260205f20905b81548152906001019060200180831161216a57829003601f168201915b505050505081565b606061219a826125a3565b6121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d0906149da565b60405180910390fd5b5f6121e2613201565b90505f8151116122005760405180602001604052805f81525061222e565b8061220a84613291565b600d60405160200161221e93929190614ab2565b6040516020818303038152906040525b915050919050565b601b5481565b61224461273c565b80600d90816122539190614ae2565b5050565b5f6122618261335b565b9050919050565b60175f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff161561231e576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61232661273c565b6005612330612e30565b10612367576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612372816005612c87565b50565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61240b61273c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361247b575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161247291906139a7565b60405180910390fd5b61248481612bc4565b50565b60165f9054906101000a900460ff1681565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124f357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806125235750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061259c575061259b826133af565b5b9050919050565b5f816125ad6127c3565b111580156125bb57505f5482105b80156125f657505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f61260782611464565b90508073ffffffffffffffffffffffffffffffffffffffff16612628613418565b73ffffffffffffffffffffffffffffffffffffffff161461268b576126548161264f613418565b612375565b61268a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61274461341f565b73ffffffffffffffffffffffffffffffffffffffff16612762611aee565b73ffffffffffffffffffffffffffffffffffffffff16146127c15761278561341f565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016127b891906139a7565b60405180910390fd5b565b5f6001905090565b5f6127d582612b01565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461283c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061284784613426565b9150915061285d8187612858613418565b613449565b6128a9576128728661286d613418565b612375565b6128a8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361290e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61291b868686600161348c565b8015612925575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506129ed856129c9888887613492565b7c0200000000000000000000000000000000000000000000000000000000176134b9565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603612a69575f6001850190505f60045f8381526020019081526020015f205403612a67575f548114612a66578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ad186868660016134e3565b505050505050565b5f612710905090565b612afc83838360405180602001604052805f815250611faa565b505050565b5f8082905080612b0f6127c3565b11612b8d575f54811015612b8c575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612b8a575b5f8103612b805760045f836001900393508381526020019081526020015f20549050612b59565b8092505050612bbf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f8203612cc5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cd15f84838561348c565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612d4383612d345f865f613492565b612d3d856134e9565b176134b9565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114612ddd5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612da4565b505f8203612e17576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050612e2b5f8483856134e3565b505050565b5f612e396127c3565b5f5403905090565b5f808290505f5b8551811015612ee0575f868281518110612e6557612e64614bb1565b5b60200260200101519050808311612ea6578281604051602001612e89929190614bfe565b604051602081830303815290604052805190602001209250612ed2565b8083604051602001612eb9929190614bfe565b6040516020818303038152906040528051906020012092505b508080600101915050612e48565b508381149150509392505050565b8060075f612efa613418565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612fa3613418565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fe89190613847565b60405180910390a35050565b612fff848484610f46565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461306057613029848484846134f8565b61305f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b5f61306f612ad9565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff1611156130d45781816040517f6f483d090000000000000000000000000000000000000000000000000000000081526004016130cb929190614c59565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613144575f6040517fb6d9900a00000000000000000000000000000000000000000000000000000000815260040161313b91906139a7565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6060600b805461321090614183565b80601f016020809104026020016040519081016040528092919081815260200182805461323c90614183565b80156132875780601f1061325e57610100808354040283529160200191613287565b820191905f5260205f20905b81548152906001019060200180831161326a57829003601f168201915b5050505050905090565b60605f600161329f84613643565b0190505f8167ffffffffffffffff8111156132bd576132bc613e10565b5b6040519080825280601f01601f1916602001820160405280156132ef5781602001600182028036833780820191505090505b5090505f82602001820190505b600115613350578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161334557613344614495565b5b0494505f85036132fc575b819350505050919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86134a8868684613794565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261351d613418565b8786866040518563ffffffff1660e01b815260040161353f9493929190614cd2565b6020604051808303815f875af192505050801561357a57506040513d601f19601f820116820180604052508101906135779190614d30565b60015b6135f0573d805f81146135a8576040519150601f19603f3d011682016040523d82523d5f602084013e6135ad565b606091505b505f8151036135e8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061369f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161369557613694614495565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106136dc576d04ee2d6d415b85acef810000000083816136d2576136d1614495565b5b0492506020810190505b662386f26fc10000831061370b57662386f26fc10000838161370157613700614495565b5b0492506010810190505b6305f5e1008310613734576305f5e100838161372a57613729614495565b5b0492506008810190505b612710831061375957612710838161374f5761374e614495565b5b0492506004810190505b6064831061377c576064838161377257613771614495565b5b0492506002810190505b600a831061378b576001810190505b80915050919050565b5f9392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137e1816137ad565b81146137eb575f80fd5b50565b5f813590506137fc816137d8565b92915050565b5f60208284031215613817576138166137a5565b5b5f613824848285016137ee565b91505092915050565b5f8115159050919050565b6138418161382d565b82525050565b5f60208201905061385a5f830184613838565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561389757808201518184015260208101905061387c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6138bc82613860565b6138c6818561386a565b93506138d681856020860161387a565b6138df816138a2565b840191505092915050565b5f6020820190508181035f83015261390281846138b2565b905092915050565b5f819050919050565b61391c8161390a565b8114613926575f80fd5b50565b5f8135905061393781613913565b92915050565b5f60208284031215613952576139516137a5565b5b5f61395f84828501613929565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61399182613968565b9050919050565b6139a181613987565b82525050565b5f6020820190506139ba5f830184613998565b92915050565b6139c981613987565b81146139d3575f80fd5b50565b5f813590506139e4816139c0565b92915050565b5f8060408385031215613a00576139ff6137a5565b5b5f613a0d858286016139d6565b9250506020613a1e85828601613929565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112613a4957613a48613a28565b5b8235905067ffffffffffffffff811115613a6657613a65613a2c565b5b602083019150836001820283011115613a8257613a81613a30565b5b9250929050565b5f8060208385031215613a9f57613a9e6137a5565b5b5f83013567ffffffffffffffff811115613abc57613abb6137a9565b5b613ac885828601613a34565b92509250509250929050565b613add8161390a565b82525050565b5f602082019050613af65f830184613ad4565b92915050565b5f805f60608486031215613b1357613b126137a5565b5b5f613b20868287016139d6565b9350506020613b31868287016139d6565b9250506040613b4286828701613929565b9150509250925092565b5f8060408385031215613b6257613b616137a5565b5b5f613b6f85828601613929565b9250506020613b8085828601613929565b9150509250929050565b5f604082019050613b9d5f830185613998565b613baa6020830184613ad4565b9392505050565b5f819050919050565b613bc381613bb1565b82525050565b5f602082019050613bdc5f830184613bba565b92915050565b613beb8161382d565b8114613bf5575f80fd5b50565b5f81359050613c0681613be2565b92915050565b5f60208284031215613c2157613c206137a5565b5b5f613c2e84828501613bf8565b91505092915050565b5f60208284031215613c4c57613c4b6137a5565b5b5f613c59848285016139d6565b91505092915050565b5f8083601f840112613c7757613c76613a28565b5b8235905067ffffffffffffffff811115613c9457613c93613a2c565b5b602083019150836020820283011115613cb057613caf613a30565b5b9250929050565b5f805f805f60808688031215613cd057613ccf6137a5565b5b5f613cdd888289016139d6565b9550506020613cee88828901613929565b9450506040613cff88828901613bf8565b935050606086013567ffffffffffffffff811115613d2057613d1f6137a9565b5b613d2c88828901613c62565b92509250509295509295909350565b613d4481613bb1565b8114613d4e575f80fd5b50565b5f81359050613d5f81613d3b565b92915050565b5f60208284031215613d7a57613d796137a5565b5b5f613d8784828501613d51565b91505092915050565b5f8060408385031215613da657613da56137a5565b5b5f613db3858286016139d6565b9250506020613dc485828601613bf8565b9150509250929050565b5f8060408385031215613de457613de36137a5565b5b5f613df185828601613929565b9250506020613e0285828601613bf8565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613e46826138a2565b810181811067ffffffffffffffff82111715613e6557613e64613e10565b5b80604052505050565b5f613e7761379c565b9050613e838282613e3d565b919050565b5f67ffffffffffffffff821115613ea257613ea1613e10565b5b613eab826138a2565b9050602081019050919050565b828183375f83830152505050565b5f613ed8613ed384613e88565b613e6e565b905082815260208101848484011115613ef457613ef3613e0c565b5b613eff848285613eb8565b509392505050565b5f82601f830112613f1b57613f1a613a28565b5b8135613f2b848260208601613ec6565b91505092915050565b5f805f8060808587031215613f4c57613f4b6137a5565b5b5f613f59878288016139d6565b9450506020613f6a878288016139d6565b9350506040613f7b87828801613929565b925050606085013567ffffffffffffffff811115613f9c57613f9b6137a9565b5b613fa887828801613f07565b91505092959194509250565b5f6bffffffffffffffffffffffff82169050919050565b613fd481613fb4565b8114613fde575f80fd5b50565b5f81359050613fef81613fcb565b92915050565b5f806040838503121561400b5761400a6137a5565b5b5f614018858286016139d6565b925050602061402985828601613fe1565b9150509250929050565b5f67ffffffffffffffff82111561404d5761404c613e10565b5b614056826138a2565b9050602081019050919050565b5f61407561407084614033565b613e6e565b90508281526020810184848401111561409157614090613e0c565b5b61409c848285613eb8565b509392505050565b5f82601f8301126140b8576140b7613a28565b5b81356140c8848260208601614063565b91505092915050565b5f602082840312156140e6576140e56137a5565b5b5f82013567ffffffffffffffff811115614103576141026137a9565b5b61410f848285016140a4565b91505092915050565b5f806040838503121561412e5761412d6137a5565b5b5f61413b858286016139d6565b925050602061414c858286016139d6565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061419a57607f821691505b6020821081036141ad576141ac614156565b5b50919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026142197fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826141de565b61422386836141de565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61425e6142596142548461390a565b61423b565b61390a565b9050919050565b5f819050919050565b61427783614244565b61428b61428382614265565b8484546141ea565b825550505050565b5f90565b61429f614293565b6142aa81848461426e565b505050565b5b818110156142cd576142c25f82614297565b6001810190506142b0565b5050565b601f821115614312576142e3816141bd565b6142ec846141cf565b810160208510156142fb578190505b61430f614307856141cf565b8301826142af565b50505b505050565b5f82821c905092915050565b5f6143325f1984600802614317565b1980831691505092915050565b5f61434a8383614323565b9150826002028217905092915050565b61436483836141b3565b67ffffffffffffffff81111561437d5761437c613e10565b5b6143878254614183565b6143928282856142d1565b5f601f8311600181146143bf575f84156143ad578287013590505b6143b7858261433f565b86555061441e565b601f1984166143cd866141bd565b5f5b828110156143f4578489013582556001820191506020850194506020810190506143cf565b86831015614411578489013561440d601f891682614323565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61445e8261390a565b91506144698361390a565b92508282026144778161390a565b9150828204841483151761448e5761448d614427565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6144cc8261390a565b91506144d78361390a565b9250826144e7576144e6614495565b5b828204905092915050565b5f81905092915050565b50565b5f61450a5f836144f2565b9150614515826144fc565b5f82019050919050565b5f614529826144ff565b9150819050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e00000000000000005f82015250565b5f61456760188361386a565b915061457282614533565b602082019050919050565b5f6020820190508181035f8301526145948161455b565b9050919050565b5f6145a58261390a565b91506145b08361390a565b92508282019050808211156145c8576145c7614427565b5b92915050565b7f45786365656473204d6178696d756d20537570706c79000000000000000000005f82015250565b5f61460260168361386a565b915061460d826145ce565b602082019050919050565b5f6020820190508181035f83015261462f816145f6565b9050919050565b5f8151905061464481613913565b92915050565b5f6020828403121561465f5761465e6137a5565b5b5f61466c84828501614636565b91505092915050565b7f496e76616c69642057686974656c6973742050726f6f66206f7220416c7265615f8201527f647920436c61696d656400000000000000000000000000000000000000000000602082015250565b5f6146cf602a8361386a565b91506146da82614675565b604082019050919050565b5f6020820190508181035f8301526146fc816146c3565b9050919050565b7f416c6c204e46547320436c61696d65642e0000000000000000000000000000005f82015250565b5f61473760118361386a565b915061474282614703565b602082019050919050565b5f6020820190508181035f8301526147648161472b565b9050919050565b5f8160601b9050919050565b5f6147818261476b565b9050919050565b5f61479282614777565b9050919050565b6147aa6147a582613987565b614788565b82525050565b5f6147bb8284614799565b60148201915081905092915050565b7f496e76616c69642057686974656c6973742050726f6f662e00000000000000005f82015250565b5f6147fe60188361386a565b9150614809826147ca565b602082019050919050565b5f6020820190508181035f83015261482b816147f2565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e0000000000005f82015250565b5f614866601a8361386a565b915061487182614832565b602082019050919050565b5f6020820190508181035f8301526148938161485a565b9050919050565b5f6148a48261390a565b91506148af8361390a565b92508282039050818111156148c7576148c6614427565b5b92915050565b5f6060820190506148e05f830186613998565b6148ed6020830185613ad4565b6148fa6040830184613838565b949350505050565b7f4e465420616d6f756e74206578636565647300000000000000000000000000005f82015250565b5f61493660128361386a565b915061494182614902565b602082019050919050565b5f6020820190508181035f8301526149638161492a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f6149c4602f8361386a565b91506149cf8261496a565b604082019050919050565b5f6020820190508181035f8301526149f1816149b8565b9050919050565b5f81905092915050565b5f614a0c82613860565b614a1681856149f8565b9350614a2681856020860161387a565b80840191505092915050565b5f8154614a3e81614183565b614a4881866149f8565b9450600182165f8114614a625760018114614a7757614aa9565b60ff1983168652811515820286019350614aa9565b614a80856141bd565b5f5b83811015614aa157815481890152600182019150602081019050614a82565b838801955050505b50505092915050565b5f614abd8286614a02565b9150614ac98285614a02565b9150614ad58284614a32565b9150819050949350505050565b614aeb82613860565b67ffffffffffffffff811115614b0457614b03613e10565b5b614b0e8254614183565b614b198282856142d1565b5f60209050601f831160018114614b4a575f8415614b38578287015190505b614b42858261433f565b865550614ba9565b601f198416614b58866141bd565b5f5b82811015614b7f57848901518255600182019150602085019450602081019050614b5a565b86831015614b9c5784890151614b98601f891682614323565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b614bf8614bf382613bb1565b614bde565b82525050565b5f614c098285614be7565b602082019150614c198284614be7565b6020820191508190509392505050565b5f614c43614c3e614c3984613fb4565b61423b565b61390a565b9050919050565b614c5381614c29565b82525050565b5f604082019050614c6c5f830185614c4a565b614c796020830184613ad4565b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f614ca482614c80565b614cae8185614c8a565b9350614cbe81856020860161387a565b614cc7816138a2565b840191505092915050565b5f608082019050614ce55f830187613998565b614cf26020830186613998565b614cff6040830185613ad4565b8181036060830152614d118184614c9a565b905095945050505050565b5f81519050614d2a816137d8565b92915050565b5f60208284031215614d4557614d446137a5565b5b5f614d5284828501614d1c565b9150509291505056fea2646970667358221220b275424012da0018df9acc39f1a4a47769675afc2404a618aea33d81e26e3cd864736f6c63430008160033

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

0000000000000000000000009d500db2c7b218a944a1e1fe8f40c43759f94bac00000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb731800000000000000000000000000000000000000000000000000000000000002ee

-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0x9d500DB2c7b218a944a1e1Fe8f40c43759f94baC
Arg [1] : initialOwner (address): 0x59dE7273191E6bf1907d614e94eCFbe8e5FB7318
Arg [2] : _royaltyFraction (uint96): 750

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000009d500db2c7b218a944a1e1fe8f40c43759f94bac
Arg [1] : 00000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb7318
Arg [2] : 00000000000000000000000000000000000000000000000000000000000002ee


Deployed Bytecode Sourcemap

102369:10796:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104140:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60863:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67801:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111584:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107146:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56436:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111976:272;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110398:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34397:429;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;102514:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102628:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105903:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110515:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110275:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110823:207;;;;;;;;;;;;;:::i;:::-;;112408:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106854:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110043:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102709:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62353:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102836:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102881:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102791:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57620:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40485:103;;;;;;;;;;;;;:::i;:::-;;107848:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108013:1287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102590:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107423:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102748:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39810:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61039:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110631:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;111190:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109308:727;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102666:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103193:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103150:36;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103061;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106191:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112848:314;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103009:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103104:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110157:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106574:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102546:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102931:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104796:649;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103242:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104637:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;105610:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107672:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68832:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40743:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102966:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104140:274;104271:4;104313:38;104339:11;104313:25;:38::i;:::-;:93;;;;104368:38;104394:11;104368:25;:38::i;:::-;104313:93;104293:113;;104140:274;;;:::o;60863:100::-;60917:13;60950:5;60943:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60863:100;:::o;67801:268::-;67922:7;67952:16;67960:7;67952;:16::i;:::-;67947:64;;67977:34;;;;;;;;;;;;;;67947:64;68031:15;:24;68047:7;68031:24;;;;;;;;;;;:30;;;;;;;;;;;;68024:37;;67801:268;;;:::o;111584:232::-;111724:8;111734:24;;;;;;;;;;;100735:7;100732:1138;;;100864:22;100858:4;100851:36;100965:9;100959:4;100952:23;101117:8;101113:2;101109:17;101105:2;101101:26;101095:4;101088:40;101477:4;101446;101415;101384;101332:25;101300:5;101263:241;101231:503;;101646:16;101640:4;101634;101619:44;101698:16;101692:4;101685:30;101231:503;101853:1;101847:4;101840:15;100732:1138;111776:32:::1;111790:8;111800:7;111776:13;:32::i;:::-;111584:232:::0;;;;:::o;107146:269::-;104016:14;:23;104031:7;;;;104016:23;;;;;;;;;;;;;;;;;;;;;;;;;;;104012:52;;;104048:16;;;;;;;;;;;;;;104012:52;39696:13:::1;:11;:13::i;:::-;107313:1:::2;107287:14;107281:28;;;;;:::i;:::-;;;:33;107277:85;;107336:26;;;;;;;;;;;;;;107277:85;107392:15;;107375:14;:32;;;;;;;:::i;:::-;;107146:269:::0;;:::o;56436:323::-;56497:7;56725:15;:13;:15::i;:::-;56710:12;;56694:13;;:28;:46;56687:53;;56436:323;:::o;111976:272::-;112155:4;112161:24;;;;;;;;;;;98250:7;98247:1892;;;98463:8;98455:4;98451:2;98447:13;98443:2;98439:22;98436:36;98426:1698;;98778:22;98772:4;98765:36;98887:9;98881:4;98874:23;98980:8;98974:4;98967:22;99374:4;99339;99304;99269;99213:25;99177:5;99136:269;99100:555;;99559:16;99553:4;99547;99532:44;99615:16;99609:4;99602:30;99100:555;100103:1;100097:4;100090:15;98426:1698;98247:1892;112203:37:::1;112222:4;112228:2;112232:7;112203:18;:37::i;:::-;111976:272:::0;;;;;:::o;110398:109::-;39696:13;:11;:13::i;:::-;110489:10:::1;110473:13;:26;;;;110398:109:::0;:::o;34397:429::-;34483:7;34492;34512:26;34541:17;:26;34559:7;34541:26;;;;;;;;;;;34512:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34612:1;34584:30;;:7;:16;;;:30;;;34580:92;;34641:19;34631:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34580:92;34684:21;34748:17;:15;:17::i;:::-;34708:57;;34721:7;:23;;;34709:35;;:9;:35;;;;:::i;:::-;34708:57;;;;:::i;:::-;34684:81;;34786:7;:16;;;34804:13;34778:40;;;;;;34397:429;;;;;:::o;102514:25::-;;;;:::o;102628:31::-;;;;:::o;105903:96::-;39696:13;:11;:13::i;:::-;105987:4:::1;105966:14;:18;105981:2;105966:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;105903:96:::0;:::o;110515:108::-;39696:13;:11;:13::i;:::-;110608:7:::1;110589:16;;:26;;;;;;;;;;;;;;;;;;110515:108:::0;:::o;110275:115::-;39696:13;:11;:13::i;:::-;110372:10:::1;110353:16;:29;;;;110275:115:::0;:::o;110823:207::-;39696:13;:11;:13::i;:::-;110874:12:::1;110900:10;110892:24;;110938:21;110892:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110873:101;;;110990:7;110985:37;;111006:16;;;;;;;;;;;;;;110985:37;110862:168;110823:207::o:0;112408:280::-;112591:4;112597:24;;;;;;;;;;;98250:7;98247:1892;;;98463:8;98455:4;98451:2;98447:13;98443:2;98439:22;98436:36;98426:1698;;98778:22;98772:4;98765:36;98887:9;98881:4;98874:23;98980:8;98974:4;98967:22;99374:4;99339;99304;99269;99213:25;99177:5;99136:269;99100:555;;99559:16;99553:4;99547;99532:44;99615:16;99609:4;99602:30;99100:555;100103:1;100097:4;100090:15;98426:1698;98247:1892;112639:41:::1;112662:4;112668:2;112672:7;112639:22;:41::i;:::-;112408:280:::0;;;;;:::o;106854:155::-;104016:14;:23;104031:7;;;;104016:23;;;;;;;;;;;;;;;;;;;;;;;;;;;104012:52;;;104048:16;;;;;;;;;;;;;;104012:52;39696:13:::1;:11;:13::i;:::-;106990:11:::2;;106974:13;:27;;;;;;;:::i;:::-;;106854:155:::0;;:::o;110043:106::-;39696:13;:11;:13::i;:::-;110132:9:::1;110120;:21;;;;110043:106:::0;:::o;102709:32::-;;;;:::o;62353:202::-;62470:7;62518:27;62537:7;62518:18;:27::i;:::-;62495:52;;62353:202;;;:::o;102836:38::-;;;;:::o;102881:43::-;;;;:::o;102791:37::-;;;;:::o;57620:283::-;57737:7;57783:1;57766:19;;:5;:19;;;57762:60;;57794:28;;;;;;;;;;;;;;57762:60;51779:13;57840:18;:25;57859:5;57840:25;;;;;;;;;;;;;;;;:55;57833:62;;57620:283;;;:::o;40485:103::-;39696:13;:11;:13::i;:::-;40550:30:::1;40577:1;40550:18;:30::i;:::-;40485:103::o:0;107848:157::-;104016:14;:23;104031:7;;;;104016:23;;;;;;;;;;;;;;;;;;;;;;;;;;;104012:52;;;104048:16;;;;;;;;;;;;;;104012:52;39696:13:::1;:11;:13::i;:::-;107978:19:::2;107984:2;107988:8;107978:5;:19::i;:::-;107848:157:::0;;:::o;108013:1287::-;108211:4;108188:27;;:19;;;;;;;;;;;:27;;;108180:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;108292:10;;108280:8;108263:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;108255:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;108342:27;108381:16;;;;;;;;;;;108342:56;;108459:18;:28;;;108488:2;108459:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;108447:8;108433:7;:11;108441:2;108433:11;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;:58;;108411:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;108621:16;;108609:8;108594:12;;:23;;;;:::i;:::-;:43;;108572:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;108693:12;108735:2;108718:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;108708:31;;;;;;108693:46;;108772:49;108791:11;;108772:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108804:10;;108816:4;108772:18;:49::i;:::-;108750:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;108884:17;108915:14;;108904:8;:25;;;;:::i;:::-;108884:45;;108961:9;108948;:22;;108940:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;109012:19;109018:2;109022:8;109012:5;:19::i;:::-;109058:8;109042:12;;:24;;;;;;;:::i;:::-;;;;;;;;109092:8;109077:7;:11;109085:2;109077:11;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;109122:5;109111:4;:8;109116:2;109111:8;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;109154:9;109142;:21;109138:105;;;109188:10;109180:28;;:51;109221:9;109209;:21;;;;:::i;:::-;109180:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109138:105;109258:34;109272:2;109276:8;109286:5;109258:34;;;;;;;;:::i;:::-;;;;;;;;108169:1131;;;108013:1287;;;;;:::o;102590:31::-;;;;;;;;;;;;;:::o;107423:106::-;39696:13;:11;:13::i;:::-;107510:11:::1;107497:10;:24;;;;107423:106:::0;:::o;102748:34::-;;;;:::o;39810:87::-;39856:7;39883:6;;;;;;;;;;;39876:13;;39810:87;:::o;61039:104::-;61095:13;61128:7;61121:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61039:104;:::o;110631:112::-;39696:13;:11;:13::i;:::-;110728:7:::1;110706:19;;:29;;;;;;;;;;;;;;;;;;110631:112:::0;:::o;111190:234::-;111321:8;111331:24;;;;;;;;;;;100735:7;100732:1138;;;100864:22;100858:4;100851:36;100965:9;100959:4;100952:23;101117:8;101113:2;101109:17;101105:2;101101:26;101095:4;101088:40;101477:4;101446;101415;101384;101332:25;101300:5;101263:241;101231:503;;101646:16;101640:4;101634;101619:44;101698:16;101692:4;101685:30;101231:503;101853:1;101847:4;101840:15;100732:1138;111373:43:::1;111397:8;111407;111373:23;:43::i;:::-;111190:234:::0;;;;:::o;109308:727::-;109438:4;109418:24;;:16;;;;;;;;;;;:24;;;109410:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;109502:13;;109490:8;:25;;109482:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;109586:10;;109574:8;109557:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;109549:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;109636:17;109667:9;;109656:8;:20;;;;:::i;:::-;109636:40;;109708:9;109695;:22;;109687:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;109759:27;109765:10;109777:8;109759:5;:27::i;:::-;109814:8;109797:13;;:25;;;;;;;:::i;:::-;;;;;;;;109852:5;109833:4;:16;109838:10;109833:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;109884:9;109872;:21;109868:105;;;109918:10;109910:28;;:51;109951:9;109939;:21;;;;:::i;:::-;109910:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109868:105;109988:39;109999:10;110011:8;110021:5;109988:39;;;;;;;;:::i;:::-;;;;;;;;109399:636;109308:727;;:::o;102666:36::-;102701:1;102666:36;:::o;103193:42::-;;;;;;;;;;;;;;;;;:::o;103150:36::-;;;;;;;;;;;;;;;;;;;;;;:::o;103061:::-;;;;;;;;;;;;;:::o;106191:160::-;104016:14;:23;104031:7;;;;104016:23;;;;;;;;;;;;;;;;;;;;;;;;;;;104012:52;;;104048:16;;;;;;;;;;;;;;104012:52;39696:13:::1;:11;:13::i;:::-;106338:5:::2;106311:24;;:32;;;;;;;;;;;;;;;;;;106191:160:::0;:::o;112848:314::-;113059:4;113065:24;;;;;;;;;;;98250:7;98247:1892;;;98463:8;98455:4;98451:2;98447:13;98443:2;98439:22;98436:36;98426:1698;;98778:22;98772:4;98765:36;98887:9;98881:4;98874:23;98980:8;98974:4;98967:22;99374:4;99339;99304;99269;99213:25;99177:5;99136:269;99100:555;;99559:16;99553:4;99547;99532:44;99615:16;99609:4;99602:30;99100:555;100103:1;100097:4;100090:15;98426:1698;98247:1892;113107:47:::1;113130:4;113136:2;113140:7;113149:4;113107:22;:47::i;:::-;112848:314:::0;;;;;;:::o;103009:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;103104:39::-;;;;;;;;;;;;;:::o;110157:110::-;39696:13;:11;:13::i;:::-;110250:9:::1;110233:14;:26;;;;110157:110:::0;:::o;106574:170::-;39696:13;:11;:13::i;:::-;106691:45:::1;106710:8;106720:15;106691:18;:45::i;:::-;106574:170:::0;;:::o;102546:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;102931:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;104796:649::-;104914:13;104967:16;104975:7;104967;:16::i;:::-;104945:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;105071:28;105102:10;:8;:10::i;:::-;105071:41;;105174:1;105149:14;105143:28;:32;:294;;;;;;;;;;;;;;;;;105267:14;105308:25;105325:7;105308:16;:25::i;:::-;105360:13;105224:172;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;105143:294;105123:314;;;104796:649;;;:::o;103242:31::-;;;;:::o;104637:151::-;39696:13;:11;:13::i;:::-;104763:17:::1;104747:13;:33;;;;;;:::i;:::-;;104637:151:::0;:::o;105610:119::-;105672:7;105699:22;105713:7;105699:13;:22::i;:::-;105692:29;;105610:119;;;:::o;107672:168::-;104016:14;:23;104031:7;;;;104016:23;;;;;;;;;;;;;;;;;;;;;;;;;;;104012:52;;;104048:16;;;;;;;;;;;;;;104012:52;39696:13:::1;:11;:13::i;:::-;102701:1:::2;107744:14;:12;:14::i;:::-;:26;107740:62;;107779:23;;;;;;;;;;;;;;107740:62;107813:19;107819:2;102701:1;107813:5;:19::i;:::-;107672:168:::0;:::o;68832:214::-;68974:4;69003:18;:25;69022:5;69003:25;;;;;;;;;;;;;;;:35;69029:8;69003:35;;;;;;;;;;;;;;;;;;;;;;;;;68996:42;;68832:214;;;;:::o;40743:220::-;39696:13;:11;:13::i;:::-;40848:1:::1;40828:22;;:8;:22;;::::0;40824:93:::1;;40902:1;40874:31;;;;;;;;;;;:::i;:::-;;;;;;;;40824:93;40927:28;40946:8;40927:18;:28::i;:::-;40743:220:::0;:::o;102966:36::-;;;;;;;;;;;;;:::o;59911:689::-;60041:4;60385:10;60370:25;;:11;:25;;;;:102;;;;60462:10;60447:25;;:11;:25;;;;60370:102;:179;;;;60539:10;60524:25;;:11;:25;;;;60370:179;60350:199;;59911:689;;;:::o;34127:215::-;34229:4;34268:26;34253:41;;;:11;:41;;;;:81;;;;34298:36;34322:11;34298:23;:36::i;:::-;34253:81;34246:88;;34127:215;;;:::o;69304:282::-;69369:4;69425:7;69406:15;:13;:15::i;:::-;:26;;:66;;;;;69459:13;;69449:7;:23;69406:66;:153;;;;;69558:1;52555:8;69510:17;:26;69528:7;69510:26;;;;;;;;;;;;:44;:49;69406:153;69386:173;;69304:282;;;:::o;67193:449::-;67323:13;67339:16;67347:7;67339;:16::i;:::-;67323:32;;67395:5;67372:28;;:19;:17;:19::i;:::-;:28;;;67368:175;;67420:44;67437:5;67444:19;:17;:19::i;:::-;67420:16;:44::i;:::-;67415:128;;67492:35;;;;;;;;;;;;;;67415:128;67368:175;67588:2;67555:15;:24;67571:7;67555:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;67626:7;67622:2;67606:28;;67615:5;67606:28;;;;;;;;;;;;67312:330;67193:449;;:::o;39975:166::-;40046:12;:10;:12::i;:::-;40035:23;;:7;:5;:7::i;:::-;:23;;;40031:103;;40109:12;:10;:12::i;:::-;40082:40;;;;;;;;;;;:::i;:::-;;;;;;;;40031:103;39975:166::o;55952:92::-;56008:7;56035:1;56028:8;;55952:92;:::o;71572:3003::-;71714:27;71744;71763:7;71744:18;:27::i;:::-;71714:57;;71829:4;71788:45;;71804:19;71788:45;;;71784:99;;71855:28;;;;;;;;;;;;;;71784:99;71911:27;71953:23;71990:35;72017:7;71990:26;:35::i;:::-;71896:129;;;;72139:134;72182:15;72216:4;72239:19;:17;:19::i;:::-;72139:24;:134::i;:::-;72120:287;;72303:43;72320:4;72326:19;:17;:19::i;:::-;72303:16;:43::i;:::-;72298:109;;72372:35;;;;;;;;;;;;;;72298:109;72120:287;72438:1;72424:16;;:2;:16;;;72420:52;;72449:23;;;;;;;;;;;;;;72420:52;72485:43;72507:4;72513:2;72517:7;72526:1;72485:21;:43::i;:::-;72621:15;72618:160;;;72761:1;72740:19;72733:30;72618:160;73158:18;:24;73177:4;73158:24;;;;;;;;;;;;;;;;73156:26;;;;;;;;;;;;73227:18;:22;73246:2;73227:22;;;;;;;;;;;;;;;;73225:24;;;;;;;;;;;73549:167;73586:2;73656:45;73671:4;73677:2;73681:19;73656:14;:45::i;:::-;52835:8;73607:94;73549:18;:167::i;:::-;73520:17;:26;73538:7;73520:26;;;;;;;;;;;:196;;;;73887:1;52835:8;73836:19;:47;:52;73832:627;;73909:19;73941:1;73931:7;:11;73909:33;;74098:1;74064:17;:30;74082:11;74064:30;;;;;;;;;;;;:35;74060:384;;74202:13;;74187:11;:28;74183:242;;74382:19;74349:17;:30;74367:11;74349:30;;;;;;;;;;;:52;;;;74183:242;74060:384;73890:569;73832:627;74506:7;74502:2;74487:27;;74496:4;74487:27;;;;;;;;;;;;74525:42;74546:4;74552:2;74556:7;74565:1;74525:20;:42::i;:::-;71703:2872;;;71572:3003;;;:::o;35108:97::-;35166:6;35192:5;35185:12;;35108:97;:::o;74671:193::-;74817:39;74834:4;74840:2;74844:7;74817:39;;;;;;;;;;;;:16;:39::i;:::-;74671:193;;;:::o;63640:1307::-;63734:7;63759:12;63774:7;63759:22;;63842:4;63823:15;:13;:15::i;:::-;:23;63819:1061;;63876:13;;63869:4;:20;63865:1015;;;63914:14;63931:17;:23;63949:4;63931:23;;;;;;;;;;;;63914:40;;64048:1;52555:8;64020:6;:24;:29;64016:845;;64685:113;64702:1;64692:6;:11;64685:113;;64745:17;:25;64763:6;;;;;;;64745:25;;;;;;;;;;;;64736:34;;64685:113;;;64831:6;64824:13;;;;;;64016:845;63891:989;63865:1015;63819:1061;64908:31;;;;;;;;;;;;;;63640:1307;;;;:::o;41123:191::-;41197:16;41216:6;;;;;;;;;;;41197:25;;41242:8;41233:6;;:17;;;;;;;;;;;;;;;;;;41297:8;41266:40;;41287:8;41266:40;;;;;;;;;;;;41186:128;41123:191;:::o;79246:3021::-;79319:20;79342:13;;79319:36;;79382:1;79370:8;:13;79366:44;;79392:18;;;;;;;;;;;;;;79366:44;79423:61;79453:1;79457:2;79461:12;79475:8;79423:21;:61::i;:::-;80001:1;51917:2;79971:1;:26;;79970:32;79941:8;:62;79898:18;:22;79917:2;79898:22;;;;;;;;;;;;;;;;:105;;;;;;;;;;;80280:160;80317:2;80392:33;80415:1;80419:2;80423:1;80392:14;:33::i;:::-;80338:30;80359:8;80338:20;:30::i;:::-;:87;80280:18;:160::i;:::-;80246:17;:31;80264:12;80246:31;;;;;;;;;;;:194;;;;80457:16;80488:11;80517:8;80502:12;:23;80488:37;;81038:16;81034:2;81030:25;81018:37;;81410:12;81370:8;81329:1;81267:25;81208:1;81147;81120:335;81781:1;81767:12;81763:20;81721:346;81822:3;81813:7;81810:16;81721:346;;82040:7;82030:8;82027:1;82000:25;81997:1;81994;81989:59;81875:1;81866:7;81862:15;81851:26;;81721:346;;;81725:77;82112:1;82100:8;:13;82096:45;;82122:19;;;;;;;;;;;;;;82096:45;82174:3;82158:13;:19;;;;79672:2517;;82199:60;82228:1;82232:2;82236:12;82250:8;82199:20;:60::i;:::-;79308:2959;79246:3021;;:::o;56857:296::-;56912:7;57119:15;:13;:15::i;:::-;57103:13;;:31;57096:38;;56857:296;:::o;546:796::-;637:4;654:20;677:4;654:27;;699:9;694:525;718:5;:12;714:1;:16;694:525;;;752:20;775:5;781:1;775:8;;;;;;;;:::i;:::-;;;;;;;;752:31;;820:12;804;:28;800:408;;974:12;988;957:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;947:55;;;;;;932:70;;800:408;;;1164:12;1178;1147:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1137:55;;;;;;1122:70;;800:408;737:482;732:3;;;;;;;694:525;;;;1330:4;1314:12;:20;1307:27;;;546:796;;;;;:::o;68409:266::-;68588:8;68536:18;:39;68555:19;:17;:19::i;:::-;68536:39;;;;;;;;;;;;;;;:49;68576:8;68536:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;68648:8;68612:55;;68627:19;:17;:19::i;:::-;68612:55;;;68658:8;68612:55;;;;;;:::i;:::-;;;;;;;;68409:266;;:::o;75462:407::-;75637:31;75650:4;75656:2;75660:7;75637:12;:31::i;:::-;75701:1;75683:2;:14;;;:19;75679:183;;75722:56;75753:4;75759:2;75763:7;75772:5;75722:30;:56::i;:::-;75717:145;;75806:40;;;;;;;;;;;;;;75717:145;75679:183;75462:407;;;;:::o;35476:518::-;35571:19;35593:17;:15;:17::i;:::-;35571:39;;;;35640:11;35625:12;:26;;;35621:176;;;35759:12;35773:11;35730:55;;;;;;;;;;;;:::i;:::-;;;;;;;;35621:176;35831:1;35811:22;;:8;:22;;;35807:110;;35902:1;35857:48;;;;;;;;;;;:::i;:::-;;;;;;;;35807:110;35951:35;;;;;;;;35963:8;35951:35;;;;;;35973:12;35951:35;;;;;35929:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35560:434;35476:518;;:::o;104515:114::-;104575:13;104608;104601:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104515:114;:::o;18844:718::-;18900:13;18951:14;18988:1;18968:17;18979:5;18968:10;:17::i;:::-;:21;18951:38;;19004:20;19038:6;19027:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19004:41;;19060:11;19189:6;19185:2;19181:15;19173:6;19169:28;19162:35;;19226:290;19233:4;19226:290;;;19258:5;;;;;;;;19400:10;19395:2;19388:5;19384:14;19379:32;19374:3;19366:46;19458:2;19449:11;;;;;;:::i;:::-;;;;;19492:1;19483:5;:10;19226:290;19479:21;19226:290;19537:6;19530:13;;;;;18844:718;;;:::o;57985:204::-;58046:7;51779:13;51917:2;58087:18;:25;58106:5;58087:25;;;;;;;;;;;;;;;;:50;;58086:95;58066:115;;57985:204;;;:::o;31034:148::-;31110:4;31149:25;31134:40;;;:11;:40;;;;31127:47;;31034:148;;;:::o;92521:105::-;92581:7;92608:10;92601:17;;92521:105;:::o;37926:98::-;37979:7;38006:10;37999:17;;37926:98;:::o;70467:485::-;70569:27;70598:23;70639:38;70680:15;:24;70696:7;70680:24;;;;;;;;;;;70639:65;;70857:18;70834:41;;70914:19;70908:26;70889:45;;70819:126;70467:485;;;:::o;69695:659::-;69844:11;70009:16;70002:5;69998:28;69989:37;;70169:16;70158:9;70154:32;70141:45;;70319:15;70308:9;70305:30;70297:5;70286:9;70283:20;70280:56;70270:66;;69695:659;;;;;:::o;76531:159::-;;;;;:::o;91830:311::-;91965:7;91985:16;52959:3;92011:19;:41;;91985:68;;52959:3;92079:31;92090:4;92096:2;92100:9;92079:10;:31::i;:::-;92071:40;;:62;;92064:69;;;91830:311;;;;;:::o;65527:531::-;65634:14;65807:16;65800:5;65796:28;65787:37;;66019:5;66005:11;65980:23;65976:41;65973:52;65949:5;65928:112;65918:122;;65527:531;;;;:::o;77355:158::-;;;;;:::o;66160:356::-;66257:14;66495:1;66485:8;66482:15;66456:24;66452:46;66442:56;;66160:356;;;:::o;77953:831::-;78116:4;78175:2;78150:45;;;78214:19;:17;:19::i;:::-;78252:4;78275:7;78301:5;78150:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;78133:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78552:1;78535:6;:13;:18;78531:235;;78581:40;;;;;;;;;;;;;;78531:235;78724:6;78718:13;78709:6;78705:2;78701:15;78694:38;78133:644;78421:54;;;78394:81;;;:6;:81;;;;78370:105;;;77953:831;;;;;;:::o;15248:948::-;15301:7;15321:14;15338:1;15321:18;;15388:8;15379:5;:17;15375:106;;15426:8;15417:17;;;;;;:::i;:::-;;;;;15463:2;15453:12;;;;15375:106;15508:8;15499:5;:17;15495:106;;15546:8;15537:17;;;;;;:::i;:::-;;;;;15583:2;15573:12;;;;15495:106;15628:8;15619:5;:17;15615:106;;15666:8;15657:17;;;;;;:::i;:::-;;;;;15703:2;15693:12;;;;15615:106;15748:7;15739:5;:16;15735:103;;15785:7;15776:16;;;;;;:::i;:::-;;;;;15821:1;15811:11;;;;15735:103;15865:7;15856:5;:16;15852:103;;15902:7;15893:16;;;;;;:::i;:::-;;;;;15938:1;15928:11;;;;15852:103;15982:7;15973:5;:16;15969:103;;16019:7;16010:16;;;;;;:::i;:::-;;;;;16055:1;16045:11;;;;15969:103;16099:7;16090:5;:16;16086:68;;16137:1;16127:11;;;;16086:68;16182:6;16175:13;;;15248:948;;;:::o;91531:147::-;91668:6;91531:147;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:117;5245:1;5242;5235:12;5273:553;5331:8;5341:6;5391:3;5384:4;5376:6;5372:17;5368:27;5358:122;;5399:79;;:::i;:::-;5358:122;5512:6;5499:20;5489:30;;5542:18;5534:6;5531:30;5528:117;;;5564:79;;:::i;:::-;5528:117;5678:4;5670:6;5666:17;5654:29;;5732:3;5724:4;5716:6;5712:17;5702:8;5698:32;5695:41;5692:128;;;5739:79;;:::i;:::-;5692:128;5273:553;;;;;:::o;5832:529::-;5903:6;5911;5960:2;5948:9;5939:7;5935:23;5931:32;5928:119;;;5966:79;;:::i;:::-;5928:119;6114:1;6103:9;6099:17;6086:31;6144:18;6136:6;6133:30;6130:117;;;6166:79;;:::i;:::-;6130:117;6279:65;6336:7;6327:6;6316:9;6312:22;6279:65;:::i;:::-;6261:83;;;;6057:297;5832:529;;;;;:::o;6367:118::-;6454:24;6472:5;6454:24;:::i;:::-;6449:3;6442:37;6367:118;;:::o;6491:222::-;6584:4;6622:2;6611:9;6607:18;6599:26;;6635:71;6703:1;6692:9;6688:17;6679:6;6635:71;:::i;:::-;6491:222;;;;:::o;6719:619::-;6796:6;6804;6812;6861:2;6849:9;6840:7;6836:23;6832:32;6829:119;;;6867:79;;:::i;:::-;6829:119;6987:1;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6958:117;7114:2;7140:53;7185:7;7176:6;7165:9;7161:22;7140:53;:::i;:::-;7130:63;;7085:118;7242:2;7268:53;7313:7;7304:6;7293:9;7289:22;7268:53;:::i;:::-;7258:63;;7213:118;6719:619;;;;;:::o;7344:474::-;7412:6;7420;7469:2;7457:9;7448:7;7444:23;7440:32;7437:119;;;7475:79;;:::i;:::-;7437:119;7595:1;7620:53;7665:7;7656:6;7645:9;7641:22;7620:53;:::i;:::-;7610:63;;7566:117;7722:2;7748:53;7793:7;7784:6;7773:9;7769:22;7748:53;:::i;:::-;7738:63;;7693:118;7344:474;;;;;:::o;7824:332::-;7945:4;7983:2;7972:9;7968:18;7960:26;;7996:71;8064:1;8053:9;8049:17;8040:6;7996:71;:::i;:::-;8077:72;8145:2;8134:9;8130:18;8121:6;8077:72;:::i;:::-;7824:332;;;;;:::o;8162:77::-;8199:7;8228:5;8217:16;;8162:77;;;:::o;8245:118::-;8332:24;8350:5;8332:24;:::i;:::-;8327:3;8320:37;8245:118;;:::o;8369:222::-;8462:4;8500:2;8489:9;8485:18;8477:26;;8513:71;8581:1;8570:9;8566:17;8557:6;8513:71;:::i;:::-;8369:222;;;;:::o;8597:116::-;8667:21;8682:5;8667:21;:::i;:::-;8660:5;8657:32;8647:60;;8703:1;8700;8693:12;8647:60;8597:116;:::o;8719:133::-;8762:5;8800:6;8787:20;8778:29;;8816:30;8840:5;8816:30;:::i;:::-;8719:133;;;;:::o;8858:323::-;8914:6;8963:2;8951:9;8942:7;8938:23;8934:32;8931:119;;;8969:79;;:::i;:::-;8931:119;9089:1;9114:50;9156:7;9147:6;9136:9;9132:22;9114:50;:::i;:::-;9104:60;;9060:114;8858:323;;;;:::o;9187:329::-;9246:6;9295:2;9283:9;9274:7;9270:23;9266:32;9263:119;;;9301:79;;:::i;:::-;9263:119;9421:1;9446:53;9491:7;9482:6;9471:9;9467:22;9446:53;:::i;:::-;9436:63;;9392:117;9187:329;;;;:::o;9539:568::-;9612:8;9622:6;9672:3;9665:4;9657:6;9653:17;9649:27;9639:122;;9680:79;;:::i;:::-;9639:122;9793:6;9780:20;9770:30;;9823:18;9815:6;9812:30;9809:117;;;9845:79;;:::i;:::-;9809:117;9959:4;9951:6;9947:17;9935:29;;10013:3;10005:4;9997:6;9993:17;9983:8;9979:32;9976:41;9973:128;;;10020:79;;:::i;:::-;9973:128;9539:568;;;;;:::o;10113:989::-;10223:6;10231;10239;10247;10255;10304:3;10292:9;10283:7;10279:23;10275:33;10272:120;;;10311:79;;:::i;:::-;10272:120;10431:1;10456:53;10501:7;10492:6;10481:9;10477:22;10456:53;:::i;:::-;10446:63;;10402:117;10558:2;10584:53;10629:7;10620:6;10609:9;10605:22;10584:53;:::i;:::-;10574:63;;10529:118;10686:2;10712:50;10754:7;10745:6;10734:9;10730:22;10712:50;:::i;:::-;10702:60;;10657:115;10839:2;10828:9;10824:18;10811:32;10870:18;10862:6;10859:30;10856:117;;;10892:79;;:::i;:::-;10856:117;11005:80;11077:7;11068:6;11057:9;11053:22;11005:80;:::i;:::-;10987:98;;;;10782:313;10113:989;;;;;;;;:::o;11108:122::-;11181:24;11199:5;11181:24;:::i;:::-;11174:5;11171:35;11161:63;;11220:1;11217;11210:12;11161:63;11108:122;:::o;11236:139::-;11282:5;11320:6;11307:20;11298:29;;11336:33;11363:5;11336:33;:::i;:::-;11236:139;;;;:::o;11381:329::-;11440:6;11489:2;11477:9;11468:7;11464:23;11460:32;11457:119;;;11495:79;;:::i;:::-;11457:119;11615:1;11640:53;11685:7;11676:6;11665:9;11661:22;11640:53;:::i;:::-;11630:63;;11586:117;11381:329;;;;:::o;11716:468::-;11781:6;11789;11838:2;11826:9;11817:7;11813:23;11809:32;11806:119;;;11844:79;;:::i;:::-;11806:119;11964:1;11989:53;12034:7;12025:6;12014:9;12010:22;11989:53;:::i;:::-;11979:63;;11935:117;12091:2;12117:50;12159:7;12150:6;12139:9;12135:22;12117:50;:::i;:::-;12107:60;;12062:115;11716:468;;;;;:::o;12190:::-;12255:6;12263;12312:2;12300:9;12291:7;12287:23;12283:32;12280:119;;;12318:79;;:::i;:::-;12280:119;12438:1;12463:53;12508:7;12499:6;12488:9;12484:22;12463:53;:::i;:::-;12453:63;;12409:117;12565:2;12591:50;12633:7;12624:6;12613:9;12609:22;12591:50;:::i;:::-;12581:60;;12536:115;12190:468;;;;;:::o;12664:117::-;12773:1;12770;12763:12;12787:180;12835:77;12832:1;12825:88;12932:4;12929:1;12922:15;12956:4;12953:1;12946:15;12973:281;13056:27;13078:4;13056:27;:::i;:::-;13048:6;13044:40;13186:6;13174:10;13171:22;13150:18;13138:10;13135:34;13132:62;13129:88;;;13197:18;;:::i;:::-;13129:88;13237:10;13233:2;13226:22;13016:238;12973:281;;:::o;13260:129::-;13294:6;13321:20;;:::i;:::-;13311:30;;13350:33;13378:4;13370:6;13350:33;:::i;:::-;13260:129;;;:::o;13395:307::-;13456:4;13546:18;13538:6;13535:30;13532:56;;;13568:18;;:::i;:::-;13532:56;13606:29;13628:6;13606:29;:::i;:::-;13598:37;;13690:4;13684;13680:15;13672:23;;13395:307;;;:::o;13708:146::-;13805:6;13800:3;13795;13782:30;13846:1;13837:6;13832:3;13828:16;13821:27;13708:146;;;:::o;13860:423::-;13937:5;13962:65;13978:48;14019:6;13978:48;:::i;:::-;13962:65;:::i;:::-;13953:74;;14050:6;14043:5;14036:21;14088:4;14081:5;14077:16;14126:3;14117:6;14112:3;14108:16;14105:25;14102:112;;;14133:79;;:::i;:::-;14102:112;14223:54;14270:6;14265:3;14260;14223:54;:::i;:::-;13943:340;13860:423;;;;;:::o;14302:338::-;14357:5;14406:3;14399:4;14391:6;14387:17;14383:27;14373:122;;14414:79;;:::i;:::-;14373:122;14531:6;14518:20;14556:78;14630:3;14622:6;14615:4;14607:6;14603:17;14556:78;:::i;:::-;14547:87;;14363:277;14302:338;;;;:::o;14646:943::-;14741:6;14749;14757;14765;14814:3;14802:9;14793:7;14789:23;14785:33;14782:120;;;14821:79;;:::i;:::-;14782:120;14941:1;14966:53;15011:7;15002:6;14991:9;14987:22;14966:53;:::i;:::-;14956:63;;14912:117;15068:2;15094:53;15139:7;15130:6;15119:9;15115:22;15094:53;:::i;:::-;15084:63;;15039:118;15196:2;15222:53;15267:7;15258:6;15247:9;15243:22;15222:53;:::i;:::-;15212:63;;15167:118;15352:2;15341:9;15337:18;15324:32;15383:18;15375:6;15372:30;15369:117;;;15405:79;;:::i;:::-;15369:117;15510:62;15564:7;15555:6;15544:9;15540:22;15510:62;:::i;:::-;15500:72;;15295:287;14646:943;;;;;;;:::o;15595:109::-;15631:7;15671:26;15664:5;15660:38;15649:49;;15595:109;;;:::o;15710:120::-;15782:23;15799:5;15782:23;:::i;:::-;15775:5;15772:34;15762:62;;15820:1;15817;15810:12;15762:62;15710:120;:::o;15836:137::-;15881:5;15919:6;15906:20;15897:29;;15935:32;15961:5;15935:32;:::i;:::-;15836:137;;;;:::o;15979:472::-;16046:6;16054;16103:2;16091:9;16082:7;16078:23;16074:32;16071:119;;;16109:79;;:::i;:::-;16071:119;16229:1;16254:53;16299:7;16290:6;16279:9;16275:22;16254:53;:::i;:::-;16244:63;;16200:117;16356:2;16382:52;16426:7;16417:6;16406:9;16402:22;16382:52;:::i;:::-;16372:62;;16327:117;15979:472;;;;;:::o;16457:308::-;16519:4;16609:18;16601:6;16598:30;16595:56;;;16631:18;;:::i;:::-;16595:56;16669:29;16691:6;16669:29;:::i;:::-;16661:37;;16753:4;16747;16743:15;16735:23;;16457:308;;;:::o;16771:425::-;16849:5;16874:66;16890:49;16932:6;16890:49;:::i;:::-;16874:66;:::i;:::-;16865:75;;16963:6;16956:5;16949:21;17001:4;16994:5;16990:16;17039:3;17030:6;17025:3;17021:16;17018:25;17015:112;;;17046:79;;:::i;:::-;17015:112;17136:54;17183:6;17178:3;17173;17136:54;:::i;:::-;16855:341;16771:425;;;;;:::o;17216:340::-;17272:5;17321:3;17314:4;17306:6;17302:17;17298:27;17288:122;;17329:79;;:::i;:::-;17288:122;17446:6;17433:20;17471:79;17546:3;17538:6;17531:4;17523:6;17519:17;17471:79;:::i;:::-;17462:88;;17278:278;17216:340;;;;:::o;17562:509::-;17631:6;17680:2;17668:9;17659:7;17655:23;17651:32;17648:119;;;17686:79;;:::i;:::-;17648:119;17834:1;17823:9;17819:17;17806:31;17864:18;17856:6;17853:30;17850:117;;;17886:79;;:::i;:::-;17850:117;17991:63;18046:7;18037:6;18026:9;18022:22;17991:63;:::i;:::-;17981:73;;17777:287;17562:509;;;;:::o;18077:474::-;18145:6;18153;18202:2;18190:9;18181:7;18177:23;18173:32;18170:119;;;18208:79;;:::i;:::-;18170:119;18328:1;18353:53;18398:7;18389:6;18378:9;18374:22;18353:53;:::i;:::-;18343:63;;18299:117;18455:2;18481:53;18526:7;18517:6;18506:9;18502:22;18481:53;:::i;:::-;18471:63;;18426:118;18077:474;;;;;:::o;18557:180::-;18605:77;18602:1;18595:88;18702:4;18699:1;18692:15;18726:4;18723:1;18716:15;18743:320;18787:6;18824:1;18818:4;18814:12;18804:22;;18871:1;18865:4;18861:12;18892:18;18882:81;;18948:4;18940:6;18936:17;18926:27;;18882:81;19010:2;19002:6;18999:14;18979:18;18976:38;18973:84;;19029:18;;:::i;:::-;18973:84;18794:269;18743:320;;;:::o;19069:97::-;19128:6;19156:3;19146:13;;19069:97;;;;:::o;19172:141::-;19221:4;19244:3;19236:11;;19267:3;19264:1;19257:14;19301:4;19298:1;19288:18;19280:26;;19172:141;;;:::o;19319:93::-;19356:6;19403:2;19398;19391:5;19387:14;19383:23;19373:33;;19319:93;;;:::o;19418:107::-;19462:8;19512:5;19506:4;19502:16;19481:37;;19418:107;;;;:::o;19531:393::-;19600:6;19650:1;19638:10;19634:18;19673:97;19703:66;19692:9;19673:97;:::i;:::-;19791:39;19821:8;19810:9;19791:39;:::i;:::-;19779:51;;19863:4;19859:9;19852:5;19848:21;19839:30;;19912:4;19902:8;19898:19;19891:5;19888:30;19878:40;;19607:317;;19531:393;;;;;:::o;19930:60::-;19958:3;19979:5;19972:12;;19930:60;;;:::o;19996:142::-;20046:9;20079:53;20097:34;20106:24;20124:5;20106:24;:::i;:::-;20097:34;:::i;:::-;20079:53;:::i;:::-;20066:66;;19996:142;;;:::o;20144:75::-;20187:3;20208:5;20201:12;;20144:75;;;:::o;20225:269::-;20335:39;20366:7;20335:39;:::i;:::-;20396:91;20445:41;20469:16;20445:41;:::i;:::-;20437:6;20430:4;20424:11;20396:91;:::i;:::-;20390:4;20383:105;20301:193;20225:269;;;:::o;20500:73::-;20545:3;20500:73;:::o;20579:189::-;20656:32;;:::i;:::-;20697:65;20755:6;20747;20741:4;20697:65;:::i;:::-;20632:136;20579:189;;:::o;20774:186::-;20834:120;20851:3;20844:5;20841:14;20834:120;;;20905:39;20942:1;20935:5;20905:39;:::i;:::-;20878:1;20871:5;20867:13;20858:22;;20834:120;;;20774:186;;:::o;20966:543::-;21067:2;21062:3;21059:11;21056:446;;;21101:38;21133:5;21101:38;:::i;:::-;21185:29;21203:10;21185:29;:::i;:::-;21175:8;21171:44;21368:2;21356:10;21353:18;21350:49;;;21389:8;21374:23;;21350:49;21412:80;21468:22;21486:3;21468:22;:::i;:::-;21458:8;21454:37;21441:11;21412:80;:::i;:::-;21071:431;;21056:446;20966:543;;;:::o;21515:117::-;21569:8;21619:5;21613:4;21609:16;21588:37;;21515:117;;;;:::o;21638:169::-;21682:6;21715:51;21763:1;21759:6;21751:5;21748:1;21744:13;21715:51;:::i;:::-;21711:56;21796:4;21790;21786:15;21776:25;;21689:118;21638:169;;;;:::o;21812:295::-;21888:4;22034:29;22059:3;22053:4;22034:29;:::i;:::-;22026:37;;22096:3;22093:1;22089:11;22083:4;22080:21;22072:29;;21812:295;;;;:::o;22112:1403::-;22236:44;22276:3;22271;22236:44;:::i;:::-;22345:18;22337:6;22334:30;22331:56;;;22367:18;;:::i;:::-;22331:56;22411:38;22443:4;22437:11;22411:38;:::i;:::-;22496:67;22556:6;22548;22542:4;22496:67;:::i;:::-;22590:1;22619:2;22611:6;22608:14;22636:1;22631:632;;;;23307:1;23324:6;23321:84;;;23380:9;23375:3;23371:19;23358:33;23349:42;;23321:84;23431:67;23491:6;23484:5;23431:67;:::i;:::-;23425:4;23418:81;23280:229;22601:908;;22631:632;22683:4;22679:9;22671:6;22667:22;22717:37;22749:4;22717:37;:::i;:::-;22776:1;22790:215;22804:7;22801:1;22798:14;22790:215;;;22890:9;22885:3;22881:19;22868:33;22860:6;22853:49;22941:1;22933:6;22929:14;22919:24;;22988:2;22977:9;22973:18;22960:31;;22827:4;22824:1;22820:12;22815:17;;22790:215;;;23033:6;23024:7;23021:19;23018:186;;;23098:9;23093:3;23089:19;23076:33;23141:48;23183:4;23175:6;23171:17;23160:9;23141:48;:::i;:::-;23133:6;23126:64;23041:163;23018:186;23250:1;23246;23238:6;23234:14;23230:22;23224:4;23217:36;22638:625;;;22601:908;;22211:1304;;;22112:1403;;;:::o;23521:180::-;23569:77;23566:1;23559:88;23666:4;23663:1;23656:15;23690:4;23687:1;23680:15;23707:410;23747:7;23770:20;23788:1;23770:20;:::i;:::-;23765:25;;23804:20;23822:1;23804:20;:::i;:::-;23799:25;;23859:1;23856;23852:9;23881:30;23899:11;23881:30;:::i;:::-;23870:41;;24060:1;24051:7;24047:15;24044:1;24041:22;24021:1;24014:9;23994:83;23971:139;;24090:18;;:::i;:::-;23971:139;23755:362;23707:410;;;;:::o;24123:180::-;24171:77;24168:1;24161:88;24268:4;24265:1;24258:15;24292:4;24289:1;24282:15;24309:185;24349:1;24366:20;24384:1;24366:20;:::i;:::-;24361:25;;24400:20;24418:1;24400:20;:::i;:::-;24395:25;;24439:1;24429:35;;24444:18;;:::i;:::-;24429:35;24486:1;24483;24479:9;24474:14;;24309:185;;;;:::o;24500:147::-;24601:11;24638:3;24623:18;;24500:147;;;;:::o;24653:114::-;;:::o;24773:398::-;24932:3;24953:83;25034:1;25029:3;24953:83;:::i;:::-;24946:90;;25045:93;25134:3;25045:93;:::i;:::-;25163:1;25158:3;25154:11;25147:18;;24773:398;;;:::o;25177:379::-;25361:3;25383:147;25526:3;25383:147;:::i;:::-;25376:154;;25547:3;25540:10;;25177:379;;;:::o;25562:174::-;25702:26;25698:1;25690:6;25686:14;25679:50;25562:174;:::o;25742:366::-;25884:3;25905:67;25969:2;25964:3;25905:67;:::i;:::-;25898:74;;25981:93;26070:3;25981:93;:::i;:::-;26099:2;26094:3;26090:12;26083:19;;25742:366;;;:::o;26114:419::-;26280:4;26318:2;26307:9;26303:18;26295:26;;26367:9;26361:4;26357:20;26353:1;26342:9;26338:17;26331:47;26395:131;26521:4;26395:131;:::i;:::-;26387:139;;26114:419;;;:::o;26539:191::-;26579:3;26598:20;26616:1;26598:20;:::i;:::-;26593:25;;26632:20;26650:1;26632:20;:::i;:::-;26627:25;;26675:1;26672;26668:9;26661:16;;26696:3;26693:1;26690:10;26687:36;;;26703:18;;:::i;:::-;26687:36;26539:191;;;;:::o;26736:172::-;26876:24;26872:1;26864:6;26860:14;26853:48;26736:172;:::o;26914:366::-;27056:3;27077:67;27141:2;27136:3;27077:67;:::i;:::-;27070:74;;27153:93;27242:3;27153:93;:::i;:::-;27271:2;27266:3;27262:12;27255:19;;26914:366;;;:::o;27286:419::-;27452:4;27490:2;27479:9;27475:18;27467:26;;27539:9;27533:4;27529:20;27525:1;27514:9;27510:17;27503:47;27567:131;27693:4;27567:131;:::i;:::-;27559:139;;27286:419;;;:::o;27711:143::-;27768:5;27799:6;27793:13;27784:22;;27815:33;27842:5;27815:33;:::i;:::-;27711:143;;;;:::o;27860:351::-;27930:6;27979:2;27967:9;27958:7;27954:23;27950:32;27947:119;;;27985:79;;:::i;:::-;27947:119;28105:1;28130:64;28186:7;28177:6;28166:9;28162:22;28130:64;:::i;:::-;28120:74;;28076:128;27860:351;;;;:::o;28217:229::-;28357:34;28353:1;28345:6;28341:14;28334:58;28426:12;28421:2;28413:6;28409:15;28402:37;28217:229;:::o;28452:366::-;28594:3;28615:67;28679:2;28674:3;28615:67;:::i;:::-;28608:74;;28691:93;28780:3;28691:93;:::i;:::-;28809:2;28804:3;28800:12;28793:19;;28452:366;;;:::o;28824:419::-;28990:4;29028:2;29017:9;29013:18;29005:26;;29077:9;29071:4;29067:20;29063:1;29052:9;29048:17;29041:47;29105:131;29231:4;29105:131;:::i;:::-;29097:139;;28824:419;;;:::o;29249:167::-;29389:19;29385:1;29377:6;29373:14;29366:43;29249:167;:::o;29422:366::-;29564:3;29585:67;29649:2;29644:3;29585:67;:::i;:::-;29578:74;;29661:93;29750:3;29661:93;:::i;:::-;29779:2;29774:3;29770:12;29763:19;;29422:366;;;:::o;29794:419::-;29960:4;29998:2;29987:9;29983:18;29975:26;;30047:9;30041:4;30037:20;30033:1;30022:9;30018:17;30011:47;30075:131;30201:4;30075:131;:::i;:::-;30067:139;;29794:419;;;:::o;30219:94::-;30252:8;30300:5;30296:2;30292:14;30271:35;;30219:94;;;:::o;30319:::-;30358:7;30387:20;30401:5;30387:20;:::i;:::-;30376:31;;30319:94;;;:::o;30419:100::-;30458:7;30487:26;30507:5;30487:26;:::i;:::-;30476:37;;30419:100;;;:::o;30525:157::-;30630:45;30650:24;30668:5;30650:24;:::i;:::-;30630:45;:::i;:::-;30625:3;30618:58;30525:157;;:::o;30688:256::-;30800:3;30815:75;30886:3;30877:6;30815:75;:::i;:::-;30915:2;30910:3;30906:12;30899:19;;30935:3;30928:10;;30688:256;;;;:::o;30950:174::-;31090:26;31086:1;31078:6;31074:14;31067:50;30950:174;:::o;31130:366::-;31272:3;31293:67;31357:2;31352:3;31293:67;:::i;:::-;31286:74;;31369:93;31458:3;31369:93;:::i;:::-;31487:2;31482:3;31478:12;31471:19;;31130:366;;;:::o;31502:419::-;31668:4;31706:2;31695:9;31691:18;31683:26;;31755:9;31749:4;31745:20;31741:1;31730:9;31726:17;31719:47;31783:131;31909:4;31783:131;:::i;:::-;31775:139;;31502:419;;;:::o;31927:176::-;32067:28;32063:1;32055:6;32051:14;32044:52;31927:176;:::o;32109:366::-;32251:3;32272:67;32336:2;32331:3;32272:67;:::i;:::-;32265:74;;32348:93;32437:3;32348:93;:::i;:::-;32466:2;32461:3;32457:12;32450:19;;32109:366;;;:::o;32481:419::-;32647:4;32685:2;32674:9;32670:18;32662:26;;32734:9;32728:4;32724:20;32720:1;32709:9;32705:17;32698:47;32762:131;32888:4;32762:131;:::i;:::-;32754:139;;32481:419;;;:::o;32906:194::-;32946:4;32966:20;32984:1;32966:20;:::i;:::-;32961:25;;33000:20;33018:1;33000:20;:::i;:::-;32995:25;;33044:1;33041;33037:9;33029:17;;33068:1;33062:4;33059:11;33056:37;;;33073:18;;:::i;:::-;33056:37;32906:194;;;;:::o;33106:430::-;33249:4;33287:2;33276:9;33272:18;33264:26;;33300:71;33368:1;33357:9;33353:17;33344:6;33300:71;:::i;:::-;33381:72;33449:2;33438:9;33434:18;33425:6;33381:72;:::i;:::-;33463:66;33525:2;33514:9;33510:18;33501:6;33463:66;:::i;:::-;33106:430;;;;;;:::o;33542:168::-;33682:20;33678:1;33670:6;33666:14;33659:44;33542:168;:::o;33716:366::-;33858:3;33879:67;33943:2;33938:3;33879:67;:::i;:::-;33872:74;;33955:93;34044:3;33955:93;:::i;:::-;34073:2;34068:3;34064:12;34057:19;;33716:366;;;:::o;34088:419::-;34254:4;34292:2;34281:9;34277:18;34269:26;;34341:9;34335:4;34331:20;34327:1;34316:9;34312:17;34305:47;34369:131;34495:4;34369:131;:::i;:::-;34361:139;;34088:419;;;:::o;34513:234::-;34653:34;34649:1;34641:6;34637:14;34630:58;34722:17;34717:2;34709:6;34705:15;34698:42;34513:234;:::o;34753:366::-;34895:3;34916:67;34980:2;34975:3;34916:67;:::i;:::-;34909:74;;34992:93;35081:3;34992:93;:::i;:::-;35110:2;35105:3;35101:12;35094:19;;34753:366;;;:::o;35125:419::-;35291:4;35329:2;35318:9;35314:18;35306:26;;35378:9;35372:4;35368:20;35364:1;35353:9;35349:17;35342:47;35406:131;35532:4;35406:131;:::i;:::-;35398:139;;35125:419;;;:::o;35550:148::-;35652:11;35689:3;35674:18;;35550:148;;;;:::o;35704:390::-;35810:3;35838:39;35871:5;35838:39;:::i;:::-;35893:89;35975:6;35970:3;35893:89;:::i;:::-;35886:96;;35991:65;36049:6;36044:3;36037:4;36030:5;36026:16;35991:65;:::i;:::-;36081:6;36076:3;36072:16;36065:23;;35814:280;35704:390;;;;:::o;36124:874::-;36227:3;36264:5;36258:12;36293:36;36319:9;36293:36;:::i;:::-;36345:89;36427:6;36422:3;36345:89;:::i;:::-;36338:96;;36465:1;36454:9;36450:17;36481:1;36476:166;;;;36656:1;36651:341;;;;36443:549;;36476:166;36560:4;36556:9;36545;36541:25;36536:3;36529:38;36622:6;36615:14;36608:22;36600:6;36596:35;36591:3;36587:45;36580:52;;36476:166;;36651:341;36718:38;36750:5;36718:38;:::i;:::-;36778:1;36792:154;36806:6;36803:1;36800:13;36792:154;;;36880:7;36874:14;36870:1;36865:3;36861:11;36854:35;36930:1;36921:7;36917:15;36906:26;;36828:4;36825:1;36821:12;36816:17;;36792:154;;;36975:6;36970:3;36966:16;36959:23;;36658:334;;36443:549;;36231:767;;36124:874;;;;:::o;37004:589::-;37229:3;37251:95;37342:3;37333:6;37251:95;:::i;:::-;37244:102;;37363:95;37454:3;37445:6;37363:95;:::i;:::-;37356:102;;37475:92;37563:3;37554:6;37475:92;:::i;:::-;37468:99;;37584:3;37577:10;;37004:589;;;;;;:::o;37599:1395::-;37716:37;37749:3;37716:37;:::i;:::-;37818:18;37810:6;37807:30;37804:56;;;37840:18;;:::i;:::-;37804:56;37884:38;37916:4;37910:11;37884:38;:::i;:::-;37969:67;38029:6;38021;38015:4;37969:67;:::i;:::-;38063:1;38087:4;38074:17;;38119:2;38111:6;38108:14;38136:1;38131:618;;;;38793:1;38810:6;38807:77;;;38859:9;38854:3;38850:19;38844:26;38835:35;;38807:77;38910:67;38970:6;38963:5;38910:67;:::i;:::-;38904:4;38897:81;38766:222;38101:887;;38131:618;38183:4;38179:9;38171:6;38167:22;38217:37;38249:4;38217:37;:::i;:::-;38276:1;38290:208;38304:7;38301:1;38298:14;38290:208;;;38383:9;38378:3;38374:19;38368:26;38360:6;38353:42;38434:1;38426:6;38422:14;38412:24;;38481:2;38470:9;38466:18;38453:31;;38327:4;38324:1;38320:12;38315:17;;38290:208;;;38526:6;38517:7;38514:19;38511:179;;;38584:9;38579:3;38575:19;38569:26;38627:48;38669:4;38661:6;38657:17;38646:9;38627:48;:::i;:::-;38619:6;38612:64;38534:156;38511:179;38736:1;38732;38724:6;38720:14;38716:22;38710:4;38703:36;38138:611;;;38101:887;;37691:1303;;;37599:1395;;:::o;39000:180::-;39048:77;39045:1;39038:88;39145:4;39142:1;39135:15;39169:4;39166:1;39159:15;39186:79;39225:7;39254:5;39243:16;;39186:79;;;:::o;39271:157::-;39376:45;39396:24;39414:5;39396:24;:::i;:::-;39376:45;:::i;:::-;39371:3;39364:58;39271:157;;:::o;39434:397::-;39574:3;39589:75;39660:3;39651:6;39589:75;:::i;:::-;39689:2;39684:3;39680:12;39673:19;;39702:75;39773:3;39764:6;39702:75;:::i;:::-;39802:2;39797:3;39793:12;39786:19;;39822:3;39815:10;;39434:397;;;;;:::o;39837:140::-;39886:9;39919:52;39937:33;39946:23;39963:5;39946:23;:::i;:::-;39937:33;:::i;:::-;39919:52;:::i;:::-;39906:65;;39837:140;;;:::o;39983:129::-;40069:36;40099:5;40069:36;:::i;:::-;40064:3;40057:49;39983:129;;:::o;40118:330::-;40238:4;40276:2;40265:9;40261:18;40253:26;;40289:70;40356:1;40345:9;40341:17;40332:6;40289:70;:::i;:::-;40369:72;40437:2;40426:9;40422:18;40413:6;40369:72;:::i;:::-;40118:330;;;;;:::o;40454:98::-;40505:6;40539:5;40533:12;40523:22;;40454:98;;;:::o;40558:168::-;40641:11;40675:6;40670:3;40663:19;40715:4;40710:3;40706:14;40691:29;;40558:168;;;;:::o;40732:373::-;40818:3;40846:38;40878:5;40846:38;:::i;:::-;40900:70;40963:6;40958:3;40900:70;:::i;:::-;40893:77;;40979:65;41037:6;41032:3;41025:4;41018:5;41014:16;40979:65;:::i;:::-;41069:29;41091:6;41069:29;:::i;:::-;41064:3;41060:39;41053:46;;40822:283;40732:373;;;;:::o;41111:640::-;41306:4;41344:3;41333:9;41329:19;41321:27;;41358:71;41426:1;41415:9;41411:17;41402:6;41358:71;:::i;:::-;41439:72;41507:2;41496:9;41492:18;41483:6;41439:72;:::i;:::-;41521;41589:2;41578:9;41574:18;41565:6;41521:72;:::i;:::-;41640:9;41634:4;41630:20;41625:2;41614:9;41610:18;41603:48;41668:76;41739:4;41730:6;41668:76;:::i;:::-;41660:84;;41111:640;;;;;;;:::o;41757:141::-;41813:5;41844:6;41838:13;41829:22;;41860:32;41886:5;41860:32;:::i;:::-;41757:141;;;;:::o;41904:349::-;41973:6;42022:2;42010:9;42001:7;41997:23;41993:32;41990:119;;;42028:79;;:::i;:::-;41990:119;42148:1;42173:63;42228:7;42219:6;42208:9;42204:22;42173:63;:::i;:::-;42163:73;;42119:127;41904:349;;;;:::o

Swarm Source

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