ETH Price: $3,105.82 (+1.15%)
Gas: 7 Gwei

Token

PREME Token Gold NFT Collection (PREMEG)
 

Overview

Max Total Supply

500 PREMEG

Holders

163

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 PREMEG
0xb5155ae02cb00d5548774419ce896374a8c86e85
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:
PREMETokenGoldNFTs

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-30
*/

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


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

pragma solidity ^0.8.0;

/**
 * @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 v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // 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.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Return the log in base 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 + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(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) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: PREMETokenGoldNFT.sol


pragma solidity ^0.8.0;




contract PREMETokenGoldNFTs is ERC721Enumerable, Ownable {

    uint256 public goldCounter = 0;

    uint256 public constant MAX = 500;

    string ipfs = "ipfs://QmZbPrw6Qx5JTPRz5Gy1BpR4mVYRo2icc4xx3f75Te7q8A";

    enum NFTType { GOLD }

    struct NFTMetadata {
        NFTType nftType;
        string uri;
    }

    mapping(uint256 => NFTMetadata) public nftMetadata;

    // Royalty information
    address payable public royaltyRecipient;
    uint96 royaltyPercentage; // Stored as a value between 0 and 100; 1 = 1%

    // EIP-2981 events
    event RoyaltyInfo(address indexed _royaltyRecipient, uint96 _royaltyPercentage);

    constructor(address payable _royaltyRecipient, uint96 _royaltyPercentage) ERC721("PREME Token Gold NFT Collection", "PREMEG") {
        require(_royaltyPercentage <= 100, "Royalty percentage too high");
        royaltyRecipient = _royaltyRecipient;
        royaltyPercentage = _royaltyPercentage;
    }

    function mint(uint256 numOfNFTs) external onlyOwner {
        require(goldCounter + numOfNFTs <= MAX, "Maximum minted");
        for (uint256 i = 0; i < numOfNFTs; i++) {
        goldCounter++;
        uint256 newTokenId = totalSupply() + 1;
        _safeMint(msg.sender, newTokenId);
        nftMetadata[newTokenId] = NFTMetadata(NFTType.GOLD, ipfs);
        }
    }

       function _mint_to(address to, uint256 numOfNFTs) internal {
        require(goldCounter + numOfNFTs <= MAX, "Maximum minted");
        for (uint256 i = 0; i < numOfNFTs; i++) {
        goldCounter++;
        uint256 newTokenId = totalSupply() + 1;
        _safeMint(to, newTokenId);
        nftMetadata[newTokenId] = NFTMetadata(NFTType.GOLD, ipfs);
        }
    }

    function mint_to(address to, uint256 numOfNFTs) external onlyOwner {
        _mint_to(to,numOfNFTs);
    }

    function mintBatch(address[] memory recipients,uint256 [] memory num) external onlyOwner {
        require(goldCounter + recipients.length <= MAX, "Exceeds max limit");
        for (uint256 i = 0; i < recipients.length; i++) {
            _mint_to(recipients[i],num[i]); // [address1,address2,address3],[ammount1,ammount2,ammount3] 
        }
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
  }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return nftMetadata[tokenId].uri;
    }

    // EIP-2981 royalty info query
    function royaltyInfo(uint256 /*_tokenId*/, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) {
        return (royaltyRecipient, (salePrice * royaltyPercentage) / 100);
    }

    // EIP-2981 support check
    function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable) returns (bool) {
        return interfaceId == 0xb7799584 || super.supportsInterface(interfaceId); // EIP-2981 identifier
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_royaltyRecipient","type":"address"},{"internalType":"uint96","name":"_royaltyPercentage","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_royaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint96","name":"_royaltyPercentage","type":"uint96"}],"name":"RoyaltyInfo","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goldCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"numOfNFTs","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"num","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numOfNFTs","type":"uint256"}],"name":"mint_to","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftMetadata","outputs":[{"internalType":"enum PREMETokenGoldNFTs.NFTType","name":"nftType","type":"uint8"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyRecipient","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600b55604051806060016040528060358152602001620047c560359139600c908162000033919062000530565b503480156200004157600080fd5b50604051620047fa380380620047fa8339818101604052810190620000679190620006ca565b6040518060400160405280601f81526020017f5052454d4520546f6b656e20476f6c64204e465420436f6c6c656374696f6e008152506040518060400160405280600681526020017f5052454d454700000000000000000000000000000000000000000000000000008152508160009081620000e4919062000530565b508060019081620000f6919062000530565b505050620001196200010d620001e860201b60201c565b620001f060201b60201c565b6064816bffffffffffffffffffffffff1611156200016e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001659062000772565b60405180910390fd5b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550505062000794565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033857607f821691505b6020821081036200034e576200034d620002f0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000379565b620003c4868362000379565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004116200040b6200040584620003dc565b620003e6565b620003dc565b9050919050565b6000819050919050565b6200042d83620003f0565b620004456200043c8262000418565b84845462000386565b825550505050565b600090565b6200045c6200044d565b6200046981848462000422565b505050565b5b8181101562000491576200048560008262000452565b6001810190506200046f565b5050565b601f821115620004e057620004aa8162000354565b620004b58462000369565b81016020851015620004c5578190505b620004dd620004d48562000369565b8301826200046e565b50505b505050565b600082821c905092915050565b60006200050560001984600802620004e5565b1980831691505092915050565b6000620005208383620004f2565b9150826002028217905092915050565b6200053b82620002b6565b67ffffffffffffffff811115620005575762000556620002c1565b5b6200056382546200031f565b6200057082828562000495565b600060209050601f831160018114620005a8576000841562000593578287015190505b6200059f858262000512565b8655506200060f565b601f198416620005b88662000354565b60005b82811015620005e257848901518255600182019150602085019450602081019050620005bb565b86831015620006025784890151620005fe601f891682620004f2565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000649826200061c565b9050919050565b6200065b816200063c565b81146200066757600080fd5b50565b6000815190506200067b8162000650565b92915050565b60006bffffffffffffffffffffffff82169050919050565b620006a48162000681565b8114620006b057600080fd5b50565b600081519050620006c48162000699565b92915050565b60008060408385031215620006e457620006e362000617565b5b6000620006f4858286016200066a565b92505060206200070785828601620006b3565b9150509250929050565b600082825260208201905092915050565b7f526f79616c74792070657263656e7461676520746f6f20686967680000000000600082015250565b60006200075a601b8362000711565b9150620007678262000722565b602082019050919050565b600060208201905081810360008301526200078d816200074b565b9050919050565b61402180620007a46000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063d49d518111610064578063d49d518114610623578063ddb2139d1461064e578063e985e9c514610679578063f2fde38b146106b6576101b7565b8063a22cb46514610594578063b88d4fde146105bd578063c87b56dd146105e6576101b7565b8063833d6907116100c6578063833d6907146104ec5780638da5cb5b1461051557806395d89b4114610540578063a0712d681461056b576101b7565b806370a082311461046f578063715018a6146104ac5780637c88e3d9146104c3576101b7565b80632f745c59116101595780634954101511610133578063495410151461038c5780634c00de82146103ca5780634f6ccce7146103f55780636352211e14610432576101b7565b80632f745c591461031c5780633ccfd60b1461035957806342842e0e14610363576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632a55205a146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061282e565b6106df565b6040516101f09190612876565b60405180910390f35b34801561020557600080fd5b5061020e610721565b60405161021b9190612921565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612979565b6107b3565b60405161025891906129e7565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a2e565b6107f9565b005b34801561029657600080fd5b5061029f610910565b6040516102ac9190612a7d565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612a98565b61091d565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612aeb565b61097d565b604051610313929190612b2b565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190612a2e565b6109ee565b6040516103509190612a7d565b60405180910390f35b610361610a93565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612a98565b610b14565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612979565b610b34565b6040516103c1929190612bcb565b60405180910390f35b3480156103d657600080fd5b506103df610bed565b6040516103ec9190612c1c565b60405180910390f35b34801561040157600080fd5b5061041c60048036038101906104179190612979565b610c13565b6040516104299190612a7d565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190612979565b610c84565b60405161046691906129e7565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190612c37565b610d0a565b6040516104a39190612a7d565b60405180910390f35b3480156104b857600080fd5b506104c1610dc1565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190612e6f565b610dd5565b005b3480156104f857600080fd5b50610513600480360381019061050e9190612a2e565b610e92565b005b34801561052157600080fd5b5061052a610ea8565b60405161053791906129e7565b60405180910390f35b34801561054c57600080fd5b50610555610ed2565b6040516105629190612921565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190612979565b610f64565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190612f13565b611128565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613008565b61113e565b005b3480156105f257600080fd5b5061060d60048036038101906106089190612979565b6111a0565b60405161061a9190612921565b60405180910390f35b34801561062f57600080fd5b50610638611248565b6040516106459190612a7d565b60405180910390f35b34801561065a57600080fd5b5061066361124e565b6040516106709190612a7d565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061308b565b611254565b6040516106ad9190612876565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190612c37565b6112e8565b005b600063b779958460e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071a57506107198261136b565b5b9050919050565b606060008054610730906130fa565b80601f016020809104026020016040519081016040528092919081815260200182805461075c906130fa565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b60006107be826113e5565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080482610c84565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086b9061319d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610893611430565b73ffffffffffffffffffffffffffffffffffffffff1614806108c257506108c1816108bc611430565b611254565b5b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f89061322f565b60405180910390fd5b61090b8383611438565b505050565b6000600880549050905090565b61092e610928611430565b826114f1565b61096d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610964906132c1565b60405180910390fd5b610978838383611586565b505050565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600e60149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16856109d99190613310565b6109e39190613381565b915091509250929050565b60006109f983610d0a565b8210610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190613424565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9b61187f565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ac190613475565b60006040518083038185875af1925050503d8060008114610afe576040519150601f19603f3d011682016040523d82523d6000602084013e610b03565b606091505b5050905080610b1157600080fd5b50565b610b2f8383836040518060200160405280600081525061113e565b505050565b600d6020528060005260406000206000915090508060000160009054906101000a900460ff1690806001018054610b6a906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b96906130fa565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905082565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c1d610910565b8210610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c55906134fc565b60405180910390fd5b60088281548110610c7257610c7161351c565b5b90600052602060002001549050919050565b600080610c90836118fd565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890613597565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190613629565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc961187f565b610dd3600061193a565b565b610ddd61187f565b6101f48251600b54610def9190613649565b1115610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e27906136c9565b60405180910390fd5b60005b8251811015610e8d57610e7a838281518110610e5257610e5161351c565b5b6020026020010151838381518110610e6d57610e6c61351c565b5b6020026020010151611a00565b8080610e85906136e9565b915050610e33565b505050565b610e9a61187f565b610ea48282611a00565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ee1906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0d906130fa565b8015610f5a5780601f10610f2f57610100808354040283529160200191610f5a565b820191906000526020600020905b815481529060010190602001808311610f3d57829003601f168201915b5050505050905090565b610f6c61187f565b6101f481600b54610f7d9190613649565b1115610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb59061377d565b60405180910390fd5b60005b8181101561112457600b6000815480929190610fdc906136e9565b919050555060006001610fed610910565b610ff79190613649565b90506110033382611bbd565b604051806040016040528060008081111561102157611020612b54565b5b8152602001600c8054611033906130fa565b80601f016020809104026020016040519081016040528092919081815260200182805461105f906130fa565b80156110ac5780601f10611081576101008083540402835291602001916110ac565b820191906000526020600020905b81548152906001019060200180831161108f57829003601f168201915b5050505050815250600d600083815260200190815260200160002060008201518160000160006101000a81548160ff021916908360008111156110f2576110f1612b54565b5b0217905550602082015181600101908161110c9190613949565b5090505050808061111c906136e9565b915050610fc1565b5050565b61113a611133611430565b8383611bdb565b5050565b61114f611149611430565b836114f1565b61118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906132c1565b60405180910390fd5b61119a84848484611d47565b50505050565b6060600d600083815260200190815260200160002060010180546111c3906130fa565b80601f01602080910402602001604051908101604052809291908181526020018280546111ef906130fa565b801561123c5780601f106112115761010080835404028352916020019161123c565b820191906000526020600020905b81548152906001019060200180831161121f57829003601f168201915b50505050509050919050565b6101f481565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112f061187f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613a8d565b60405180910390fd5b6113688161193a565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113de57506113dd82611da3565b5b9050919050565b6113ee81611e85565b61142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490613597565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114ab83610c84565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806114fd83610c84565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061153f575061153e8185611254565b5b8061157d57508373ffffffffffffffffffffffffffffffffffffffff16611565846107b3565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115a682610c84565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f390613b1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290613bb1565b60405180910390fd5b6116788383836001611ec6565b8273ffffffffffffffffffffffffffffffffffffffff1661169882610c84565b73ffffffffffffffffffffffffffffffffffffffff16146116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590613b1f565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461187a8383836001612024565b505050565b611887611430565b73ffffffffffffffffffffffffffffffffffffffff166118a5610ea8565b73ffffffffffffffffffffffffffffffffffffffff16146118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290613c1d565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6101f481600b54611a119190613649565b1115611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a499061377d565b60405180910390fd5b60005b81811015611bb857600b6000815480929190611a70906136e9565b919050555060006001611a81610910565b611a8b9190613649565b9050611a978482611bbd565b6040518060400160405280600080811115611ab557611ab4612b54565b5b8152602001600c8054611ac7906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611af3906130fa565b8015611b405780601f10611b1557610100808354040283529160200191611b40565b820191906000526020600020905b815481529060010190602001808311611b2357829003601f168201915b5050505050815250600d600083815260200190815260200160002060008201518160000160006101000a81548160ff02191690836000811115611b8657611b85612b54565b5b02179055506020820151816001019081611ba09190613949565b50905050508080611bb0906136e9565b915050611a55565b505050565b611bd782826040518060200160405280600081525061202a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613c89565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d3a9190612876565b60405180910390a3505050565b611d52848484611586565b611d5e84848484612085565b611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490613d1b565b60405180910390fd5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e7e5750611e7d8261220c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611ea7836118fd565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611ed284848484612276565b6001811115611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90613dad565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f5d57611f588161227c565b611f9c565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611f9b57611f9a85826122c5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fde57611fd981612432565b61201d565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461201c5761201b8482612503565b5b5b5050505050565b50505050565b6120348383612582565b6120416000848484612085565b612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790613d1b565b60405180910390fd5b505050565b60006120a68473ffffffffffffffffffffffffffffffffffffffff1661279f565b156121ff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120cf611430565b8786866040518563ffffffff1660e01b81526004016120f19493929190613e22565b6020604051808303816000875af192505050801561212d57506040513d601f19601f8201168201806040525081019061212a9190613e83565b60015b6121af573d806000811461215d576040519150601f19603f3d011682016040523d82523d6000602084013e612162565b606091505b5060008151036121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90613d1b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612204565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016122d284610d0a565b6122dc9190613eb0565b90506000600760008481526020019081526020016000205490508181146123c1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506124469190613eb0565b90506000600960008481526020019081526020016000205490506000600883815481106124765761247561351c565b5b9060005260206000200154905080600883815481106124985761249761351c565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806124e7576124e6613ee4565b5b6001900381819060005260206000200160009055905550505050565b600061250e83610d0a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e890613f5f565b60405180910390fd5b6125fa81611e85565b1561263a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263190613fcb565b60405180910390fd5b612648600083836001611ec6565b61265181611e85565b15612691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268890613fcb565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461279b600083836001612024565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61280b816127d6565b811461281657600080fd5b50565b60008135905061282881612802565b92915050565b600060208284031215612844576128436127cc565b5b600061285284828501612819565b91505092915050565b60008115159050919050565b6128708161285b565b82525050565b600060208201905061288b6000830184612867565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128cb5780820151818401526020810190506128b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006128f382612891565b6128fd818561289c565b935061290d8185602086016128ad565b612916816128d7565b840191505092915050565b6000602082019050818103600083015261293b81846128e8565b905092915050565b6000819050919050565b61295681612943565b811461296157600080fd5b50565b6000813590506129738161294d565b92915050565b60006020828403121561298f5761298e6127cc565b5b600061299d84828501612964565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129d1826129a6565b9050919050565b6129e1816129c6565b82525050565b60006020820190506129fc60008301846129d8565b92915050565b612a0b816129c6565b8114612a1657600080fd5b50565b600081359050612a2881612a02565b92915050565b60008060408385031215612a4557612a446127cc565b5b6000612a5385828601612a19565b9250506020612a6485828601612964565b9150509250929050565b612a7781612943565b82525050565b6000602082019050612a926000830184612a6e565b92915050565b600080600060608486031215612ab157612ab06127cc565b5b6000612abf86828701612a19565b9350506020612ad086828701612a19565b9250506040612ae186828701612964565b9150509250925092565b60008060408385031215612b0257612b016127cc565b5b6000612b1085828601612964565b9250506020612b2185828601612964565b9150509250929050565b6000604082019050612b4060008301856129d8565b612b4d6020830184612a6e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60018110612b9457612b93612b54565b5b50565b6000819050612ba582612b83565b919050565b6000612bb582612b97565b9050919050565b612bc581612baa565b82525050565b6000604082019050612be06000830185612bbc565b8181036020830152612bf281846128e8565b90509392505050565b6000612c06826129a6565b9050919050565b612c1681612bfb565b82525050565b6000602082019050612c316000830184612c0d565b92915050565b600060208284031215612c4d57612c4c6127cc565b5b6000612c5b84828501612a19565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ca1826128d7565b810181811067ffffffffffffffff82111715612cc057612cbf612c69565b5b80604052505050565b6000612cd36127c2565b9050612cdf8282612c98565b919050565b600067ffffffffffffffff821115612cff57612cfe612c69565b5b602082029050602081019050919050565b600080fd5b6000612d28612d2384612ce4565b612cc9565b90508083825260208201905060208402830185811115612d4b57612d4a612d10565b5b835b81811015612d745780612d608882612a19565b845260208401935050602081019050612d4d565b5050509392505050565b600082601f830112612d9357612d92612c64565b5b8135612da3848260208601612d15565b91505092915050565b600067ffffffffffffffff821115612dc757612dc6612c69565b5b602082029050602081019050919050565b6000612deb612de684612dac565b612cc9565b90508083825260208201905060208402830185811115612e0e57612e0d612d10565b5b835b81811015612e375780612e238882612964565b845260208401935050602081019050612e10565b5050509392505050565b600082601f830112612e5657612e55612c64565b5b8135612e66848260208601612dd8565b91505092915050565b60008060408385031215612e8657612e856127cc565b5b600083013567ffffffffffffffff811115612ea457612ea36127d1565b5b612eb085828601612d7e565b925050602083013567ffffffffffffffff811115612ed157612ed06127d1565b5b612edd85828601612e41565b9150509250929050565b612ef08161285b565b8114612efb57600080fd5b50565b600081359050612f0d81612ee7565b92915050565b60008060408385031215612f2a57612f296127cc565b5b6000612f3885828601612a19565b9250506020612f4985828601612efe565b9150509250929050565b600080fd5b600067ffffffffffffffff821115612f7357612f72612c69565b5b612f7c826128d7565b9050602081019050919050565b82818337600083830152505050565b6000612fab612fa684612f58565b612cc9565b905082815260208101848484011115612fc757612fc6612f53565b5b612fd2848285612f89565b509392505050565b600082601f830112612fef57612fee612c64565b5b8135612fff848260208601612f98565b91505092915050565b60008060008060808587031215613022576130216127cc565b5b600061303087828801612a19565b945050602061304187828801612a19565b935050604061305287828801612964565b925050606085013567ffffffffffffffff811115613073576130726127d1565b5b61307f87828801612fda565b91505092959194509250565b600080604083850312156130a2576130a16127cc565b5b60006130b085828601612a19565b92505060206130c185828601612a19565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061311257607f821691505b602082108103613125576131246130cb565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061318760218361289c565b91506131928261312b565b604082019050919050565b600060208201905081810360008301526131b68161317a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613219603d8361289c565b9150613224826131bd565b604082019050919050565b600060208201905081810360008301526132488161320c565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006132ab602d8361289c565b91506132b68261324f565b604082019050919050565b600060208201905081810360008301526132da8161329e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061331b82612943565b915061332683612943565b925082820261333481612943565b9150828204841483151761334b5761334a6132e1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061338c82612943565b915061339783612943565b9250826133a7576133a6613352565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061340e602b8361289c565b9150613419826133b2565b604082019050919050565b6000602082019050818103600083015261343d81613401565b9050919050565b600081905092915050565b50565b600061345f600083613444565b915061346a8261344f565b600082019050919050565b600061348082613452565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006134e6602c8361289c565b91506134f18261348a565b604082019050919050565b60006020820190508181036000830152613515816134d9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061358160188361289c565b915061358c8261354b565b602082019050919050565b600060208201905081810360008301526135b081613574565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061361360298361289c565b915061361e826135b7565b604082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b600061365482612943565b915061365f83612943565b9250828201905080821115613677576136766132e1565b5b92915050565b7f45786365656473206d6178206c696d6974000000000000000000000000000000600082015250565b60006136b360118361289c565b91506136be8261367d565b602082019050919050565b600060208201905081810360008301526136e2816136a6565b9050919050565b60006136f482612943565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613726576137256132e1565b5b600182019050919050565b7f4d6178696d756d206d696e746564000000000000000000000000000000000000600082015250565b6000613767600e8361289c565b915061377282613731565b602082019050919050565b600060208201905081810360008301526137968161375a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137c2565b61380986836137c2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061384661384161383c84612943565b613821565b612943565b9050919050565b6000819050919050565b6138608361382b565b61387461386c8261384d565b8484546137cf565b825550505050565b600090565b61388961387c565b613894818484613857565b505050565b5b818110156138b8576138ad600082613881565b60018101905061389a565b5050565b601f8211156138fd576138ce8161379d565b6138d7846137b2565b810160208510156138e6578190505b6138fa6138f2856137b2565b830182613899565b50505b505050565b600082821c905092915050565b600061392060001984600802613902565b1980831691505092915050565b6000613939838361390f565b9150826002028217905092915050565b61395282612891565b67ffffffffffffffff81111561396b5761396a612c69565b5b61397582546130fa565b6139808282856138bc565b600060209050601f8311600181146139b357600084156139a1578287015190505b6139ab858261392d565b865550613a13565b601f1984166139c18661379d565b60005b828110156139e9578489015182556001820191506020850194506020810190506139c4565b86831015613a065784890151613a02601f89168261390f565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a7760268361289c565b9150613a8282613a1b565b604082019050919050565b60006020820190508181036000830152613aa681613a6a565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613b0960258361289c565b9150613b1482613aad565b604082019050919050565b60006020820190508181036000830152613b3881613afc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b9b60248361289c565b9150613ba682613b3f565b604082019050919050565b60006020820190508181036000830152613bca81613b8e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c0760208361289c565b9150613c1282613bd1565b602082019050919050565b60006020820190508181036000830152613c3681613bfa565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613c7360198361289c565b9150613c7e82613c3d565b602082019050919050565b60006020820190508181036000830152613ca281613c66565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613d0560328361289c565b9150613d1082613ca9565b604082019050919050565b60006020820190508181036000830152613d3481613cf8565b9050919050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000613d9760358361289c565b9150613da282613d3b565b604082019050919050565b60006020820190508181036000830152613dc681613d8a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613df482613dcd565b613dfe8185613dd8565b9350613e0e8185602086016128ad565b613e17816128d7565b840191505092915050565b6000608082019050613e3760008301876129d8565b613e4460208301866129d8565b613e516040830185612a6e565b8181036060830152613e638184613de9565b905095945050505050565b600081519050613e7d81612802565b92915050565b600060208284031215613e9957613e986127cc565b5b6000613ea784828501613e6e565b91505092915050565b6000613ebb82612943565b9150613ec683612943565b9250828203905081811115613ede57613edd6132e1565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613f4960208361289c565b9150613f5482613f13565b602082019050919050565b60006020820190508181036000830152613f7881613f3c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613fb5601c8361289c565b9150613fc082613f7f565b602082019050919050565b60006020820190508181036000830152613fe481613fa8565b905091905056fea2646970667358221220f761f2794de85ee6cdb3190cbb929077fdd35b016b62d17d9bc3893b01e4045264736f6c63430008120033697066733a2f2f516d5a62507277365178354a5450527a35477931427052346d5659526f32696363347878336637355465377138410000000000000000000000006c3c3224350ad7d1e2855339c2f509aa91c4dca2000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063d49d518111610064578063d49d518114610623578063ddb2139d1461064e578063e985e9c514610679578063f2fde38b146106b6576101b7565b8063a22cb46514610594578063b88d4fde146105bd578063c87b56dd146105e6576101b7565b8063833d6907116100c6578063833d6907146104ec5780638da5cb5b1461051557806395d89b4114610540578063a0712d681461056b576101b7565b806370a082311461046f578063715018a6146104ac5780637c88e3d9146104c3576101b7565b80632f745c59116101595780634954101511610133578063495410151461038c5780634c00de82146103ca5780634f6ccce7146103f55780636352211e14610432576101b7565b80632f745c591461031c5780633ccfd60b1461035957806342842e0e14610363576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632a55205a146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061282e565b6106df565b6040516101f09190612876565b60405180910390f35b34801561020557600080fd5b5061020e610721565b60405161021b9190612921565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612979565b6107b3565b60405161025891906129e7565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612a2e565b6107f9565b005b34801561029657600080fd5b5061029f610910565b6040516102ac9190612a7d565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612a98565b61091d565b005b3480156102ea57600080fd5b5061030560048036038101906103009190612aeb565b61097d565b604051610313929190612b2b565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190612a2e565b6109ee565b6040516103509190612a7d565b60405180910390f35b610361610a93565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612a98565b610b14565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612979565b610b34565b6040516103c1929190612bcb565b60405180910390f35b3480156103d657600080fd5b506103df610bed565b6040516103ec9190612c1c565b60405180910390f35b34801561040157600080fd5b5061041c60048036038101906104179190612979565b610c13565b6040516104299190612a7d565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190612979565b610c84565b60405161046691906129e7565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190612c37565b610d0a565b6040516104a39190612a7d565b60405180910390f35b3480156104b857600080fd5b506104c1610dc1565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190612e6f565b610dd5565b005b3480156104f857600080fd5b50610513600480360381019061050e9190612a2e565b610e92565b005b34801561052157600080fd5b5061052a610ea8565b60405161053791906129e7565b60405180910390f35b34801561054c57600080fd5b50610555610ed2565b6040516105629190612921565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190612979565b610f64565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190612f13565b611128565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613008565b61113e565b005b3480156105f257600080fd5b5061060d60048036038101906106089190612979565b6111a0565b60405161061a9190612921565b60405180910390f35b34801561062f57600080fd5b50610638611248565b6040516106459190612a7d565b60405180910390f35b34801561065a57600080fd5b5061066361124e565b6040516106709190612a7d565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b919061308b565b611254565b6040516106ad9190612876565b60405180910390f35b3480156106c257600080fd5b506106dd60048036038101906106d89190612c37565b6112e8565b005b600063b779958460e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071a57506107198261136b565b5b9050919050565b606060008054610730906130fa565b80601f016020809104026020016040519081016040528092919081815260200182805461075c906130fa565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b60006107be826113e5565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080482610c84565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086b9061319d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610893611430565b73ffffffffffffffffffffffffffffffffffffffff1614806108c257506108c1816108bc611430565b611254565b5b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f89061322f565b60405180910390fd5b61090b8383611438565b505050565b6000600880549050905090565b61092e610928611430565b826114f1565b61096d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610964906132c1565b60405180910390fd5b610978838383611586565b505050565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600e60149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16856109d99190613310565b6109e39190613381565b915091509250929050565b60006109f983610d0a565b8210610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190613424565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a9b61187f565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610ac190613475565b60006040518083038185875af1925050503d8060008114610afe576040519150601f19603f3d011682016040523d82523d6000602084013e610b03565b606091505b5050905080610b1157600080fd5b50565b610b2f8383836040518060200160405280600081525061113e565b505050565b600d6020528060005260406000206000915090508060000160009054906101000a900460ff1690806001018054610b6a906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b96906130fa565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905082565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c1d610910565b8210610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c55906134fc565b60405180910390fd5b60088281548110610c7257610c7161351c565b5b90600052602060002001549050919050565b600080610c90836118fd565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890613597565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190613629565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc961187f565b610dd3600061193a565b565b610ddd61187f565b6101f48251600b54610def9190613649565b1115610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e27906136c9565b60405180910390fd5b60005b8251811015610e8d57610e7a838281518110610e5257610e5161351c565b5b6020026020010151838381518110610e6d57610e6c61351c565b5b6020026020010151611a00565b8080610e85906136e9565b915050610e33565b505050565b610e9a61187f565b610ea48282611a00565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ee1906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0d906130fa565b8015610f5a5780601f10610f2f57610100808354040283529160200191610f5a565b820191906000526020600020905b815481529060010190602001808311610f3d57829003601f168201915b5050505050905090565b610f6c61187f565b6101f481600b54610f7d9190613649565b1115610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb59061377d565b60405180910390fd5b60005b8181101561112457600b6000815480929190610fdc906136e9565b919050555060006001610fed610910565b610ff79190613649565b90506110033382611bbd565b604051806040016040528060008081111561102157611020612b54565b5b8152602001600c8054611033906130fa565b80601f016020809104026020016040519081016040528092919081815260200182805461105f906130fa565b80156110ac5780601f10611081576101008083540402835291602001916110ac565b820191906000526020600020905b81548152906001019060200180831161108f57829003601f168201915b5050505050815250600d600083815260200190815260200160002060008201518160000160006101000a81548160ff021916908360008111156110f2576110f1612b54565b5b0217905550602082015181600101908161110c9190613949565b5090505050808061111c906136e9565b915050610fc1565b5050565b61113a611133611430565b8383611bdb565b5050565b61114f611149611430565b836114f1565b61118e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611185906132c1565b60405180910390fd5b61119a84848484611d47565b50505050565b6060600d600083815260200190815260200160002060010180546111c3906130fa565b80601f01602080910402602001604051908101604052809291908181526020018280546111ef906130fa565b801561123c5780601f106112115761010080835404028352916020019161123c565b820191906000526020600020905b81548152906001019060200180831161121f57829003601f168201915b50505050509050919050565b6101f481565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112f061187f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613a8d565b60405180910390fd5b6113688161193a565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113de57506113dd82611da3565b5b9050919050565b6113ee81611e85565b61142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490613597565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114ab83610c84565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806114fd83610c84565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061153f575061153e8185611254565b5b8061157d57508373ffffffffffffffffffffffffffffffffffffffff16611565846107b3565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115a682610c84565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f390613b1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361166b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166290613bb1565b60405180910390fd5b6116788383836001611ec6565b8273ffffffffffffffffffffffffffffffffffffffff1661169882610c84565b73ffffffffffffffffffffffffffffffffffffffff16146116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590613b1f565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461187a8383836001612024565b505050565b611887611430565b73ffffffffffffffffffffffffffffffffffffffff166118a5610ea8565b73ffffffffffffffffffffffffffffffffffffffff16146118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290613c1d565b60405180910390fd5b565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6101f481600b54611a119190613649565b1115611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a499061377d565b60405180910390fd5b60005b81811015611bb857600b6000815480929190611a70906136e9565b919050555060006001611a81610910565b611a8b9190613649565b9050611a978482611bbd565b6040518060400160405280600080811115611ab557611ab4612b54565b5b8152602001600c8054611ac7906130fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611af3906130fa565b8015611b405780601f10611b1557610100808354040283529160200191611b40565b820191906000526020600020905b815481529060010190602001808311611b2357829003601f168201915b5050505050815250600d600083815260200190815260200160002060008201518160000160006101000a81548160ff02191690836000811115611b8657611b85612b54565b5b02179055506020820151816001019081611ba09190613949565b50905050508080611bb0906136e9565b915050611a55565b505050565b611bd782826040518060200160405280600081525061202a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613c89565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d3a9190612876565b60405180910390a3505050565b611d52848484611586565b611d5e84848484612085565b611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490613d1b565b60405180910390fd5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e6e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e7e5750611e7d8261220c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611ea7836118fd565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611ed284848484612276565b6001811115611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90613dad565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f5d57611f588161227c565b611f9c565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611f9b57611f9a85826122c5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fde57611fd981612432565b61201d565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461201c5761201b8482612503565b5b5b5050505050565b50505050565b6120348383612582565b6120416000848484612085565b612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790613d1b565b60405180910390fd5b505050565b60006120a68473ffffffffffffffffffffffffffffffffffffffff1661279f565b156121ff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120cf611430565b8786866040518563ffffffff1660e01b81526004016120f19493929190613e22565b6020604051808303816000875af192505050801561212d57506040513d601f19601f8201168201806040525081019061212a9190613e83565b60015b6121af573d806000811461215d576040519150601f19603f3d011682016040523d82523d6000602084013e612162565b606091505b5060008151036121a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219e90613d1b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612204565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016122d284610d0a565b6122dc9190613eb0565b90506000600760008481526020019081526020016000205490508181146123c1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506124469190613eb0565b90506000600960008481526020019081526020016000205490506000600883815481106124765761247561351c565b5b9060005260206000200154905080600883815481106124985761249761351c565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806124e7576124e6613ee4565b5b6001900381819060005260206000200160009055905550505050565b600061250e83610d0a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e890613f5f565b60405180910390fd5b6125fa81611e85565b1561263a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263190613fcb565b60405180910390fd5b612648600083836001611ec6565b61265181611e85565b15612691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268890613fcb565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461279b600083836001612024565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61280b816127d6565b811461281657600080fd5b50565b60008135905061282881612802565b92915050565b600060208284031215612844576128436127cc565b5b600061285284828501612819565b91505092915050565b60008115159050919050565b6128708161285b565b82525050565b600060208201905061288b6000830184612867565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128cb5780820151818401526020810190506128b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006128f382612891565b6128fd818561289c565b935061290d8185602086016128ad565b612916816128d7565b840191505092915050565b6000602082019050818103600083015261293b81846128e8565b905092915050565b6000819050919050565b61295681612943565b811461296157600080fd5b50565b6000813590506129738161294d565b92915050565b60006020828403121561298f5761298e6127cc565b5b600061299d84828501612964565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129d1826129a6565b9050919050565b6129e1816129c6565b82525050565b60006020820190506129fc60008301846129d8565b92915050565b612a0b816129c6565b8114612a1657600080fd5b50565b600081359050612a2881612a02565b92915050565b60008060408385031215612a4557612a446127cc565b5b6000612a5385828601612a19565b9250506020612a6485828601612964565b9150509250929050565b612a7781612943565b82525050565b6000602082019050612a926000830184612a6e565b92915050565b600080600060608486031215612ab157612ab06127cc565b5b6000612abf86828701612a19565b9350506020612ad086828701612a19565b9250506040612ae186828701612964565b9150509250925092565b60008060408385031215612b0257612b016127cc565b5b6000612b1085828601612964565b9250506020612b2185828601612964565b9150509250929050565b6000604082019050612b4060008301856129d8565b612b4d6020830184612a6e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60018110612b9457612b93612b54565b5b50565b6000819050612ba582612b83565b919050565b6000612bb582612b97565b9050919050565b612bc581612baa565b82525050565b6000604082019050612be06000830185612bbc565b8181036020830152612bf281846128e8565b90509392505050565b6000612c06826129a6565b9050919050565b612c1681612bfb565b82525050565b6000602082019050612c316000830184612c0d565b92915050565b600060208284031215612c4d57612c4c6127cc565b5b6000612c5b84828501612a19565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ca1826128d7565b810181811067ffffffffffffffff82111715612cc057612cbf612c69565b5b80604052505050565b6000612cd36127c2565b9050612cdf8282612c98565b919050565b600067ffffffffffffffff821115612cff57612cfe612c69565b5b602082029050602081019050919050565b600080fd5b6000612d28612d2384612ce4565b612cc9565b90508083825260208201905060208402830185811115612d4b57612d4a612d10565b5b835b81811015612d745780612d608882612a19565b845260208401935050602081019050612d4d565b5050509392505050565b600082601f830112612d9357612d92612c64565b5b8135612da3848260208601612d15565b91505092915050565b600067ffffffffffffffff821115612dc757612dc6612c69565b5b602082029050602081019050919050565b6000612deb612de684612dac565b612cc9565b90508083825260208201905060208402830185811115612e0e57612e0d612d10565b5b835b81811015612e375780612e238882612964565b845260208401935050602081019050612e10565b5050509392505050565b600082601f830112612e5657612e55612c64565b5b8135612e66848260208601612dd8565b91505092915050565b60008060408385031215612e8657612e856127cc565b5b600083013567ffffffffffffffff811115612ea457612ea36127d1565b5b612eb085828601612d7e565b925050602083013567ffffffffffffffff811115612ed157612ed06127d1565b5b612edd85828601612e41565b9150509250929050565b612ef08161285b565b8114612efb57600080fd5b50565b600081359050612f0d81612ee7565b92915050565b60008060408385031215612f2a57612f296127cc565b5b6000612f3885828601612a19565b9250506020612f4985828601612efe565b9150509250929050565b600080fd5b600067ffffffffffffffff821115612f7357612f72612c69565b5b612f7c826128d7565b9050602081019050919050565b82818337600083830152505050565b6000612fab612fa684612f58565b612cc9565b905082815260208101848484011115612fc757612fc6612f53565b5b612fd2848285612f89565b509392505050565b600082601f830112612fef57612fee612c64565b5b8135612fff848260208601612f98565b91505092915050565b60008060008060808587031215613022576130216127cc565b5b600061303087828801612a19565b945050602061304187828801612a19565b935050604061305287828801612964565b925050606085013567ffffffffffffffff811115613073576130726127d1565b5b61307f87828801612fda565b91505092959194509250565b600080604083850312156130a2576130a16127cc565b5b60006130b085828601612a19565b92505060206130c185828601612a19565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061311257607f821691505b602082108103613125576131246130cb565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061318760218361289c565b91506131928261312b565b604082019050919050565b600060208201905081810360008301526131b68161317a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000613219603d8361289c565b9150613224826131bd565b604082019050919050565b600060208201905081810360008301526132488161320c565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006132ab602d8361289c565b91506132b68261324f565b604082019050919050565b600060208201905081810360008301526132da8161329e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061331b82612943565b915061332683612943565b925082820261333481612943565b9150828204841483151761334b5761334a6132e1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061338c82612943565b915061339783612943565b9250826133a7576133a6613352565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061340e602b8361289c565b9150613419826133b2565b604082019050919050565b6000602082019050818103600083015261343d81613401565b9050919050565b600081905092915050565b50565b600061345f600083613444565b915061346a8261344f565b600082019050919050565b600061348082613452565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006134e6602c8361289c565b91506134f18261348a565b604082019050919050565b60006020820190508181036000830152613515816134d9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061358160188361289c565b915061358c8261354b565b602082019050919050565b600060208201905081810360008301526135b081613574565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061361360298361289c565b915061361e826135b7565b604082019050919050565b6000602082019050818103600083015261364281613606565b9050919050565b600061365482612943565b915061365f83612943565b9250828201905080821115613677576136766132e1565b5b92915050565b7f45786365656473206d6178206c696d6974000000000000000000000000000000600082015250565b60006136b360118361289c565b91506136be8261367d565b602082019050919050565b600060208201905081810360008301526136e2816136a6565b9050919050565b60006136f482612943565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613726576137256132e1565b5b600182019050919050565b7f4d6178696d756d206d696e746564000000000000000000000000000000000000600082015250565b6000613767600e8361289c565b915061377282613731565b602082019050919050565b600060208201905081810360008301526137968161375a565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137c2565b61380986836137c2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061384661384161383c84612943565b613821565b612943565b9050919050565b6000819050919050565b6138608361382b565b61387461386c8261384d565b8484546137cf565b825550505050565b600090565b61388961387c565b613894818484613857565b505050565b5b818110156138b8576138ad600082613881565b60018101905061389a565b5050565b601f8211156138fd576138ce8161379d565b6138d7846137b2565b810160208510156138e6578190505b6138fa6138f2856137b2565b830182613899565b50505b505050565b600082821c905092915050565b600061392060001984600802613902565b1980831691505092915050565b6000613939838361390f565b9150826002028217905092915050565b61395282612891565b67ffffffffffffffff81111561396b5761396a612c69565b5b61397582546130fa565b6139808282856138bc565b600060209050601f8311600181146139b357600084156139a1578287015190505b6139ab858261392d565b865550613a13565b601f1984166139c18661379d565b60005b828110156139e9578489015182556001820191506020850194506020810190506139c4565b86831015613a065784890151613a02601f89168261390f565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a7760268361289c565b9150613a8282613a1b565b604082019050919050565b60006020820190508181036000830152613aa681613a6a565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613b0960258361289c565b9150613b1482613aad565b604082019050919050565b60006020820190508181036000830152613b3881613afc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b9b60248361289c565b9150613ba682613b3f565b604082019050919050565b60006020820190508181036000830152613bca81613b8e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c0760208361289c565b9150613c1282613bd1565b602082019050919050565b60006020820190508181036000830152613c3681613bfa565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613c7360198361289c565b9150613c7e82613c3d565b602082019050919050565b60006020820190508181036000830152613ca281613c66565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613d0560328361289c565b9150613d1082613ca9565b604082019050919050565b60006020820190508181036000830152613d3481613cf8565b9050919050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000613d9760358361289c565b9150613da282613d3b565b604082019050919050565b60006020820190508181036000830152613dc681613d8a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613df482613dcd565b613dfe8185613dd8565b9350613e0e8185602086016128ad565b613e17816128d7565b840191505092915050565b6000608082019050613e3760008301876129d8565b613e4460208301866129d8565b613e516040830185612a6e565b8181036060830152613e638184613de9565b905095945050505050565b600081519050613e7d81612802565b92915050565b600060208284031215613e9957613e986127cc565b5b6000613ea784828501613e6e565b91505092915050565b6000613ebb82612943565b9150613ec683612943565b9250828203905081811115613ede57613edd6132e1565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613f4960208361289c565b9150613f5482613f13565b602082019050919050565b60006020820190508181036000830152613f7881613f3c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613fb5601c8361289c565b9150613fc082613f7f565b602082019050919050565b60006020820190508181036000830152613fe481613fa8565b905091905056fea2646970667358221220f761f2794de85ee6cdb3190cbb929077fdd35b016b62d17d9bc3893b01e4045264736f6c63430008120033

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

0000000000000000000000006c3c3224350ad7d1e2855339c2f509aa91c4dca2000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : _royaltyRecipient (address): 0x6C3C3224350Ad7d1e2855339C2F509AA91C4dcA2
Arg [1] : _royaltyPercentage (uint96): 10

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000006c3c3224350ad7d1e2855339c2f509aa91c4dca2
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a


Deployed Bytecode Sourcemap

64716:3033:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67531:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42761:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44273:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43791:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59352:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44973:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67283:209;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;59020:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66935:166;;;:::i;:::-;;45345:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65052:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;65139:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59542:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42471:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42202:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20091:103;;;;;;;;;;;;;:::i;:::-;;66574:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66458:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19450:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42930:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65691:375;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44516:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45567:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67109:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64821:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64782:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44742:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20349:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67531:215;67626:4;67665:10;67650:25;;:11;:25;;;;:65;;;;67679:36;67703:11;67679:23;:36::i;:::-;67650:65;67643:72;;67531:215;;;:::o;42761:100::-;42815:13;42848:5;42841:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42761:100;:::o;44273:171::-;44349:7;44369:23;44384:7;44369:14;:23::i;:::-;44412:15;:24;44428:7;44412:24;;;;;;;;;;;;;;;;;;;;;44405:31;;44273:171;;;:::o;43791:416::-;43872:13;43888:23;43903:7;43888:14;:23::i;:::-;43872:39;;43936:5;43930:11;;:2;:11;;;43922:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44030:5;44014:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44039:37;44056:5;44063:12;:10;:12::i;:::-;44039:16;:37::i;:::-;44014:62;43992:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;44178:21;44187:2;44191:7;44178:8;:21::i;:::-;43861:346;43791:416;;:::o;59352:113::-;59413:7;59440:10;:17;;;;59433:24;;59352:113;:::o;44973:301::-;45134:41;45153:12;:10;:12::i;:::-;45167:7;45134:18;:41::i;:::-;45126:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45238:28;45248:4;45254:2;45258:7;45238:9;:28::i;:::-;44973:301;;;:::o;67283:209::-;67368:16;67386:21;67428:16;;;;;;;;;;;67480:3;67459:17;;;;;;;;;;;67447:29;;:9;:29;;;;:::i;:::-;67446:37;;;;:::i;:::-;67420:64;;;;67283:209;;;;;:::o;59020:256::-;59117:7;59153:23;59170:5;59153:16;:23::i;:::-;59145:5;:31;59137:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;59242:12;:19;59255:5;59242:19;;;;;;;;;;;;;;;:26;59262:5;59242:26;;;;;;;;;;;;59235:33;;59020:256;;;;:::o;66935:166::-;19336:13;:11;:13::i;:::-;66992:12:::1;67018:10;67010:24;;67042:21;67010:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66991:77;;;67087:7;67079:16;;;::::0;::::1;;66980:121;66935:166::o:0;45345:151::-;45449:39;45466:4;45472:2;45476:7;45449:39;;;;;;;;;;;;:16;:39::i;:::-;45345:151;;;:::o;65052:50::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65139:39::-;;;;;;;;;;;;;:::o;59542:233::-;59617:7;59653:30;:28;:30::i;:::-;59645:5;:38;59637:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;59750:10;59761:5;59750:17;;;;;;;;:::i;:::-;;;;;;;;;;59743:24;;59542:233;;;:::o;42471:223::-;42543:7;42563:13;42579:17;42588:7;42579:8;:17::i;:::-;42563:33;;42632:1;42615:19;;:5;:19;;;42607:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;42681:5;42674:12;;;42471:223;;;:::o;42202:207::-;42274:7;42319:1;42302:19;;:5;:19;;;42294:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42385:9;:16;42395:5;42385:16;;;;;;;;;;;;;;;;42378:23;;42202:207;;;:::o;20091:103::-;19336:13;:11;:13::i;:::-;20156:30:::1;20183:1;20156:18;:30::i;:::-;20091:103::o:0;66574:353::-;19336:13;:11;:13::i;:::-;64851:3:::1;66696:10;:17;66682:11;;:31;;;;:::i;:::-;:38;;66674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66758:9;66753:167;66777:10;:17;66773:1;:21;66753:167;;;66816:30;66825:10;66836:1;66825:13;;;;;;;;:::i;:::-;;;;;;;;66839:3;66843:1;66839:6;;;;;;;;:::i;:::-;;;;;;;;66816:8;:30::i;:::-;66796:3;;;;;:::i;:::-;;;;66753:167;;;;66574:353:::0;;:::o;66458:108::-;19336:13;:11;:13::i;:::-;66536:22:::1;66545:2;66548:9;66536:8;:22::i;:::-;66458:108:::0;;:::o;19450:87::-;19496:7;19523:6;;;;;;;;;;;19516:13;;19450:87;:::o;42930:104::-;42986:13;43019:7;43012:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42930:104;:::o;65691:375::-;19336:13;:11;:13::i;:::-;64851:3:::1;65776:9;65762:11;;:23;;;;:::i;:::-;:30;;65754:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;65827:9;65822:237;65846:9;65842:1;:13;65822:237;;;65873:11;;:13;;;;;;;;;:::i;:::-;;;;;;65897:18;65934:1;65918:13;:11;:13::i;:::-;:17;;;;:::i;:::-;65897:38;;65946:33;65956:10;65968;65946:9;:33::i;:::-;66016:31;;;;;;;;66028:12;66016:31:::0;::::1;;;;;;;:::i;:::-;;;;;;66042:4;66016:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;65990:11:::1;:23;66002:10;65990:23;;;;;;;;;;;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;65862:197;65857:3;;;;;:::i;:::-;;;;65822:237;;;;65691:375:::0;:::o;44516:155::-;44611:52;44630:12;:10;:12::i;:::-;44644:8;44654;44611:18;:52::i;:::-;44516:155;;:::o;45567:279::-;45698:41;45717:12;:10;:12::i;:::-;45731:7;45698:18;:41::i;:::-;45690:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45800:38;45814:4;45820:2;45824:7;45833:4;45800:13;:38::i;:::-;45567:279;;;;:::o;67109:130::-;67174:13;67207:11;:20;67219:7;67207:20;;;;;;;;;;;:24;;67200:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67109:130;;;:::o;64821:33::-;64851:3;64821:33;:::o;64782:30::-;;;;:::o;44742:164::-;44839:4;44863:18;:25;44882:5;44863:25;;;;;;;;;;;;;;;:35;44889:8;44863:35;;;;;;;;;;;;;;;;;;;;;;;;;44856:42;;44742:164;;;;:::o;20349:201::-;19336:13;:11;:13::i;:::-;20458:1:::1;20438:22;;:8;:22;;::::0;20430:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20514:28;20533:8;20514:18;:28::i;:::-;20349:201:::0;:::o;58712:224::-;58814:4;58853:35;58838:50;;;:11;:50;;;;:90;;;;58892:36;58916:11;58892:23;:36::i;:::-;58838:90;58831:97;;58712:224;;;:::o;53836:135::-;53918:16;53926:7;53918;:16::i;:::-;53910:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53836:135;:::o;18001:98::-;18054:7;18081:10;18074:17;;18001:98;:::o;53149:174::-;53251:2;53224:15;:24;53240:7;53224:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;53307:7;53303:2;53269:46;;53278:23;53293:7;53278:14;:23::i;:::-;53269:46;;;;;;;;;;;;53149:174;;:::o;47836:264::-;47929:4;47946:13;47962:23;47977:7;47962:14;:23::i;:::-;47946:39;;48015:5;48004:16;;:7;:16;;;:52;;;;48024:32;48041:5;48048:7;48024:16;:32::i;:::-;48004:52;:87;;;;48084:7;48060:31;;:20;48072:7;48060:11;:20::i;:::-;:31;;;48004:87;47996:96;;;47836:264;;;;:::o;51801:1229::-;51926:4;51899:31;;:23;51914:7;51899:14;:23::i;:::-;:31;;;51891:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;52005:1;51991:16;;:2;:16;;;51983:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;52061:42;52082:4;52088:2;52092:7;52101:1;52061:20;:42::i;:::-;52233:4;52206:31;;:23;52221:7;52206:14;:23::i;:::-;:31;;;52198:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;52351:15;:24;52367:7;52351:24;;;;;;;;;;;;52344:31;;;;;;;;;;;52846:1;52827:9;:15;52837:4;52827:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;52879:1;52862:9;:13;52872:2;52862:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;52921:2;52902:7;:16;52910:7;52902:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52960:7;52956:2;52941:27;;52950:4;52941:27;;;;;;;;;;;;52981:41;53001:4;53007:2;53011:7;53020:1;52981:19;:41::i;:::-;51801:1229;;;:::o;19615:132::-;19690:12;:10;:12::i;:::-;19679:23;;:7;:5;:7::i;:::-;:23;;;19671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19615:132::o;47111:117::-;47177:7;47204;:16;47212:7;47204:16;;;;;;;;;;;;;;;;;;;;;47197:23;;47111:117;;;:::o;20710:191::-;20784:16;20803:6;;;;;;;;;;;20784:25;;20829:8;20820:6;;:17;;;;;;;;;;;;;;;;;;20884:8;20853:40;;20874:8;20853:40;;;;;;;;;;;;20773:128;20710:191;:::o;66077:373::-;64851:3;66168:9;66154:11;;:23;;;;:::i;:::-;:30;;66146:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;66219:9;66214:229;66238:9;66234:1;:13;66214:229;;;66265:11;;:13;;;;;;;;;:::i;:::-;;;;;;66289:18;66326:1;66310:13;:11;:13::i;:::-;:17;;;;:::i;:::-;66289:38;;66338:25;66348:2;66352:10;66338:9;:25::i;:::-;66400:31;;;;;;;;66412:12;66400:31;;;;;;;;:::i;:::-;;;;;;66426:4;66400:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66374:11;:23;66386:10;66374:23;;;;;;;;;;;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;66254:189;66249:3;;;;;:::i;:::-;;;;66214:229;;;;66077:373;;:::o;48442:110::-;48518:26;48528:2;48532:7;48518:26;;;;;;;;;;;;:9;:26::i;:::-;48442:110;;:::o;53466:281::-;53587:8;53578:17;;:5;:17;;;53570:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53674:8;53636:18;:25;53655:5;53636:25;;;;;;;;;;;;;;;:35;53662:8;53636:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;53720:8;53698:41;;53713:5;53698:41;;;53730:8;53698:41;;;;;;:::i;:::-;;;;;;;;53466:281;;;:::o;46727:270::-;46840:28;46850:4;46856:2;46860:7;46840:9;:28::i;:::-;46887:47;46910:4;46916:2;46920:7;46929:4;46887:22;:47::i;:::-;46879:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46727:270;;;;:::o;41833:305::-;41935:4;41987:25;41972:40;;;:11;:40;;;;:105;;;;42044:33;42029:48;;;:11;:48;;;;41972:105;:158;;;;42094:36;42118:11;42094:23;:36::i;:::-;41972:158;41952:178;;41833:305;;;:::o;47541:128::-;47606:4;47659:1;47630:31;;:17;47639:7;47630:8;:17::i;:::-;:31;;;;47623:38;;47541:128;;;:::o;59849:915::-;60026:61;60053:4;60059:2;60063:12;60077:9;60026:26;:61::i;:::-;60116:1;60104:9;:13;60100:222;;;60247:63;;;;;;;;;;:::i;:::-;;;;;;;;60100:222;60334:15;60352:12;60334:30;;60397:1;60381:18;;:4;:18;;;60377:187;;60416:40;60448:7;60416:31;:40::i;:::-;60377:187;;;60486:2;60478:10;;:4;:10;;;60474:90;;60505:47;60538:4;60544:7;60505:32;:47::i;:::-;60474:90;60377:187;60592:1;60578:16;;:2;:16;;;60574:183;;60611:45;60648:7;60611:36;:45::i;:::-;60574:183;;;60684:4;60678:10;;:2;:10;;;60674:83;;60705:40;60733:2;60737:7;60705:27;:40::i;:::-;60674:83;60574:183;60015:749;59849:915;;;;:::o;56958:115::-;;;;;:::o;48779:285::-;48874:18;48880:2;48884:7;48874:5;:18::i;:::-;48925:53;48956:1;48960:2;48964:7;48973:4;48925:22;:53::i;:::-;48903:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;48779:285;;;:::o;54535:853::-;54689:4;54710:15;:2;:13;;;:15::i;:::-;54706:675;;;54762:2;54746:36;;;54783:12;:10;:12::i;:::-;54797:4;54803:7;54812:4;54746:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54742:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55004:1;54987:6;:13;:18;54983:328;;55030:60;;;;;;;;;;:::i;:::-;;;;;;;;54983:328;55261:6;55255:13;55246:6;55242:2;55238:15;55231:38;54742:584;54878:41;;;54868:51;;;:6;:51;;;;54861:58;;;;;54706:675;55365:4;55358:11;;54535:853;;;;;;;:::o;33377:157::-;33462:4;33501:25;33486:40;;;:11;:40;;;;33479:47;;33377:157;;;:::o;56120:116::-;;;;;:::o;61487:164::-;61591:10;:17;;;;61564:15;:24;61580:7;61564:24;;;;;;;;;;;:44;;;;61619:10;61635:7;61619:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61487:164;:::o;62278:988::-;62544:22;62594:1;62569:22;62586:4;62569:16;:22::i;:::-;:26;;;;:::i;:::-;62544:51;;62606:18;62627:17;:26;62645:7;62627:26;;;;;;;;;;;;62606:47;;62774:14;62760:10;:28;62756:328;;62805:19;62827:12;:18;62840:4;62827:18;;;;;;;;;;;;;;;:34;62846:14;62827:34;;;;;;;;;;;;62805:56;;62911:11;62878:12;:18;62891:4;62878:18;;;;;;;;;;;;;;;:30;62897:10;62878:30;;;;;;;;;;;:44;;;;63028:10;62995:17;:30;63013:11;62995:30;;;;;;;;;;;:43;;;;62790:294;62756:328;63180:17;:26;63198:7;63180:26;;;;;;;;;;;63173:33;;;63224:12;:18;63237:4;63224:18;;;;;;;;;;;;;;;:34;63243:14;63224:34;;;;;;;;;;;63217:41;;;62359:907;;62278:988;;:::o;63561:1079::-;63814:22;63859:1;63839:10;:17;;;;:21;;;;:::i;:::-;63814:46;;63871:18;63892:15;:24;63908:7;63892:24;;;;;;;;;;;;63871:45;;64243:19;64265:10;64276:14;64265:26;;;;;;;;:::i;:::-;;;;;;;;;;64243:48;;64329:11;64304:10;64315;64304:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;64440:10;64409:15;:28;64425:11;64409:28;;;;;;;;;;;:41;;;;64581:15;:24;64597:7;64581:24;;;;;;;;;;;64574:31;;;64616:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;63632:1008;;;63561:1079;:::o;61065:221::-;61150:14;61167:20;61184:2;61167:16;:20::i;:::-;61150:37;;61225:7;61198:12;:16;61211:2;61198:16;;;;;;;;;;;;;;;:24;61215:6;61198:24;;;;;;;;;;;:34;;;;61272:6;61243:17;:26;61261:7;61243:26;;;;;;;;;;;:35;;;;61139:147;61065:221;;:::o;49400:942::-;49494:1;49480:16;;:2;:16;;;49472:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49553:16;49561:7;49553;:16::i;:::-;49552:17;49544:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49615:48;49644:1;49648:2;49652:7;49661:1;49615:20;:48::i;:::-;49762:16;49770:7;49762;:16::i;:::-;49761:17;49753:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50177:1;50160:9;:13;50170:2;50160:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;50221:2;50202:7;:16;50210:7;50202:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50266:7;50262:2;50241:33;;50258:1;50241:33;;;;;;;;;;;;50287:47;50315:1;50319:2;50323:7;50332:1;50287:19;:47::i;:::-;49400:942;;:::o;22382:326::-;22442:4;22699:1;22677:7;:19;;;:23;22670:30;;22382:326;;;:::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:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:474::-;5935:6;5943;5992:2;5980:9;5971:7;5967:23;5963:32;5960:119;;;5998:79;;:::i;:::-;5960:119;6118:1;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6089:117;6245:2;6271:53;6316:7;6307:6;6296:9;6292:22;6271:53;:::i;:::-;6261:63;;6216:118;5867:474;;;;;:::o;6347:332::-;6468:4;6506:2;6495:9;6491:18;6483:26;;6519:71;6587:1;6576:9;6572:17;6563:6;6519:71;:::i;:::-;6600:72;6668:2;6657:9;6653:18;6644:6;6600:72;:::i;:::-;6347:332;;;;;:::o;6685:180::-;6733:77;6730:1;6723:88;6830:4;6827:1;6820:15;6854:4;6851:1;6844:15;6871:117;6956:1;6949:5;6946:12;6936:46;;6962:18;;:::i;:::-;6936:46;6871:117;:::o;6994:135::-;7043:7;7072:5;7061:16;;7078:45;7117:5;7078:45;:::i;:::-;6994:135;;;:::o;7135:::-;7195:9;7228:36;7258:5;7228:36;:::i;:::-;7215:49;;7135:135;;;:::o;7276:151::-;7373:47;7414:5;7373:47;:::i;:::-;7368:3;7361:60;7276:151;;:::o;7433:443::-;7584:4;7622:2;7611:9;7607:18;7599:26;;7635:81;7713:1;7702:9;7698:17;7689:6;7635:81;:::i;:::-;7763:9;7757:4;7753:20;7748:2;7737:9;7733:18;7726:48;7791:78;7864:4;7855:6;7791:78;:::i;:::-;7783:86;;7433:443;;;;;:::o;7882:104::-;7927:7;7956:24;7974:5;7956:24;:::i;:::-;7945:35;;7882:104;;;:::o;7992:142::-;8095:32;8121:5;8095:32;:::i;:::-;8090:3;8083:45;7992:142;;:::o;8140:254::-;8249:4;8287:2;8276:9;8272:18;8264:26;;8300:87;8384:1;8373:9;8369:17;8360:6;8300:87;:::i;:::-;8140:254;;;;:::o;8400:329::-;8459:6;8508:2;8496:9;8487:7;8483:23;8479:32;8476:119;;;8514:79;;:::i;:::-;8476:119;8634:1;8659:53;8704:7;8695:6;8684:9;8680:22;8659:53;:::i;:::-;8649:63;;8605:117;8400:329;;;;:::o;8735:117::-;8844:1;8841;8834:12;8858:180;8906:77;8903:1;8896:88;9003:4;9000:1;8993:15;9027:4;9024:1;9017:15;9044:281;9127:27;9149:4;9127:27;:::i;:::-;9119:6;9115:40;9257:6;9245:10;9242:22;9221:18;9209:10;9206:34;9203:62;9200:88;;;9268:18;;:::i;:::-;9200:88;9308:10;9304:2;9297:22;9087:238;9044:281;;:::o;9331:129::-;9365:6;9392:20;;:::i;:::-;9382:30;;9421:33;9449:4;9441:6;9421:33;:::i;:::-;9331:129;;;:::o;9466:311::-;9543:4;9633:18;9625:6;9622:30;9619:56;;;9655:18;;:::i;:::-;9619:56;9705:4;9697:6;9693:17;9685:25;;9765:4;9759;9755:15;9747:23;;9466:311;;;:::o;9783:117::-;9892:1;9889;9882:12;9923:710;10019:5;10044:81;10060:64;10117:6;10060:64;:::i;:::-;10044:81;:::i;:::-;10035:90;;10145:5;10174:6;10167:5;10160:21;10208:4;10201:5;10197:16;10190:23;;10261:4;10253:6;10249:17;10241:6;10237:30;10290:3;10282:6;10279:15;10276:122;;;10309:79;;:::i;:::-;10276:122;10424:6;10407:220;10441:6;10436:3;10433:15;10407:220;;;10516:3;10545:37;10578:3;10566:10;10545:37;:::i;:::-;10540:3;10533:50;10612:4;10607:3;10603:14;10596:21;;10483:144;10467:4;10462:3;10458:14;10451:21;;10407:220;;;10411:21;10025:608;;9923:710;;;;;:::o;10656:370::-;10727:5;10776:3;10769:4;10761:6;10757:17;10753:27;10743:122;;10784:79;;:::i;:::-;10743:122;10901:6;10888:20;10926:94;11016:3;11008:6;11001:4;10993:6;10989:17;10926:94;:::i;:::-;10917:103;;10733:293;10656:370;;;;:::o;11032:311::-;11109:4;11199:18;11191:6;11188:30;11185:56;;;11221:18;;:::i;:::-;11185:56;11271:4;11263:6;11259:17;11251:25;;11331:4;11325;11321:15;11313:23;;11032:311;;;:::o;11366:710::-;11462:5;11487:81;11503:64;11560:6;11503:64;:::i;:::-;11487:81;:::i;:::-;11478:90;;11588:5;11617:6;11610:5;11603:21;11651:4;11644:5;11640:16;11633:23;;11704:4;11696:6;11692:17;11684:6;11680:30;11733:3;11725:6;11722:15;11719:122;;;11752:79;;:::i;:::-;11719:122;11867:6;11850:220;11884:6;11879:3;11876:15;11850:220;;;11959:3;11988:37;12021:3;12009:10;11988:37;:::i;:::-;11983:3;11976:50;12055:4;12050:3;12046:14;12039:21;;11926:144;11910:4;11905:3;11901:14;11894:21;;11850:220;;;11854:21;11468:608;;11366:710;;;;;:::o;12099:370::-;12170:5;12219:3;12212:4;12204:6;12200:17;12196:27;12186:122;;12227:79;;:::i;:::-;12186:122;12344:6;12331:20;12369:94;12459:3;12451:6;12444:4;12436:6;12432:17;12369:94;:::i;:::-;12360:103;;12176:293;12099:370;;;;:::o;12475:894::-;12593:6;12601;12650:2;12638:9;12629:7;12625:23;12621:32;12618:119;;;12656:79;;:::i;:::-;12618:119;12804:1;12793:9;12789:17;12776:31;12834:18;12826:6;12823:30;12820:117;;;12856:79;;:::i;:::-;12820:117;12961:78;13031:7;13022:6;13011:9;13007:22;12961:78;:::i;:::-;12951:88;;12747:302;13116:2;13105:9;13101:18;13088:32;13147:18;13139:6;13136:30;13133:117;;;13169:79;;:::i;:::-;13133:117;13274:78;13344:7;13335:6;13324:9;13320:22;13274:78;:::i;:::-;13264:88;;13059:303;12475:894;;;;;:::o;13375:116::-;13445:21;13460:5;13445:21;:::i;:::-;13438:5;13435:32;13425:60;;13481:1;13478;13471:12;13425:60;13375:116;:::o;13497:133::-;13540:5;13578:6;13565:20;13556:29;;13594:30;13618:5;13594:30;:::i;:::-;13497:133;;;;:::o;13636:468::-;13701:6;13709;13758:2;13746:9;13737:7;13733:23;13729:32;13726:119;;;13764:79;;:::i;:::-;13726:119;13884:1;13909:53;13954:7;13945:6;13934:9;13930:22;13909:53;:::i;:::-;13899:63;;13855:117;14011:2;14037:50;14079:7;14070:6;14059:9;14055:22;14037:50;:::i;:::-;14027:60;;13982:115;13636:468;;;;;:::o;14110:117::-;14219:1;14216;14209:12;14233:307;14294:4;14384:18;14376:6;14373:30;14370:56;;;14406:18;;:::i;:::-;14370:56;14444:29;14466:6;14444:29;:::i;:::-;14436:37;;14528:4;14522;14518:15;14510:23;;14233:307;;;:::o;14546:146::-;14643:6;14638:3;14633;14620:30;14684:1;14675:6;14670:3;14666:16;14659:27;14546:146;;;:::o;14698:423::-;14775:5;14800:65;14816:48;14857:6;14816:48;:::i;:::-;14800:65;:::i;:::-;14791:74;;14888:6;14881:5;14874:21;14926:4;14919:5;14915:16;14964:3;14955:6;14950:3;14946:16;14943:25;14940:112;;;14971:79;;:::i;:::-;14940:112;15061:54;15108:6;15103:3;15098;15061:54;:::i;:::-;14781:340;14698:423;;;;;:::o;15140:338::-;15195:5;15244:3;15237:4;15229:6;15225:17;15221:27;15211:122;;15252:79;;:::i;:::-;15211:122;15369:6;15356:20;15394:78;15468:3;15460:6;15453:4;15445:6;15441:17;15394:78;:::i;:::-;15385:87;;15201:277;15140:338;;;;:::o;15484:943::-;15579:6;15587;15595;15603;15652:3;15640:9;15631:7;15627:23;15623:33;15620:120;;;15659:79;;:::i;:::-;15620:120;15779:1;15804:53;15849:7;15840:6;15829:9;15825:22;15804:53;:::i;:::-;15794:63;;15750:117;15906:2;15932:53;15977:7;15968:6;15957:9;15953:22;15932:53;:::i;:::-;15922:63;;15877:118;16034:2;16060:53;16105:7;16096:6;16085:9;16081:22;16060:53;:::i;:::-;16050:63;;16005:118;16190:2;16179:9;16175:18;16162:32;16221:18;16213:6;16210:30;16207:117;;;16243:79;;:::i;:::-;16207:117;16348:62;16402:7;16393:6;16382:9;16378:22;16348:62;:::i;:::-;16338:72;;16133:287;15484:943;;;;;;;:::o;16433:474::-;16501:6;16509;16558:2;16546:9;16537:7;16533:23;16529:32;16526:119;;;16564:79;;:::i;:::-;16526:119;16684:1;16709:53;16754:7;16745:6;16734:9;16730:22;16709:53;:::i;:::-;16699:63;;16655:117;16811:2;16837:53;16882:7;16873:6;16862:9;16858:22;16837:53;:::i;:::-;16827:63;;16782:118;16433:474;;;;;:::o;16913:180::-;16961:77;16958:1;16951:88;17058:4;17055:1;17048:15;17082:4;17079:1;17072:15;17099:320;17143:6;17180:1;17174:4;17170:12;17160:22;;17227:1;17221:4;17217:12;17248:18;17238:81;;17304:4;17296:6;17292:17;17282:27;;17238:81;17366:2;17358:6;17355:14;17335:18;17332:38;17329:84;;17385:18;;:::i;:::-;17329:84;17150:269;17099:320;;;:::o;17425:220::-;17565:34;17561:1;17553:6;17549:14;17542:58;17634:3;17629:2;17621:6;17617:15;17610:28;17425:220;:::o;17651:366::-;17793:3;17814:67;17878:2;17873:3;17814:67;:::i;:::-;17807:74;;17890:93;17979:3;17890:93;:::i;:::-;18008:2;18003:3;17999:12;17992:19;;17651:366;;;:::o;18023:419::-;18189:4;18227:2;18216:9;18212:18;18204:26;;18276:9;18270:4;18266:20;18262:1;18251:9;18247:17;18240:47;18304:131;18430:4;18304:131;:::i;:::-;18296:139;;18023:419;;;:::o;18448:248::-;18588:34;18584:1;18576:6;18572:14;18565:58;18657:31;18652:2;18644:6;18640:15;18633:56;18448:248;:::o;18702:366::-;18844:3;18865:67;18929:2;18924:3;18865:67;:::i;:::-;18858:74;;18941:93;19030:3;18941:93;:::i;:::-;19059:2;19054:3;19050:12;19043:19;;18702:366;;;:::o;19074:419::-;19240:4;19278:2;19267:9;19263:18;19255:26;;19327:9;19321:4;19317:20;19313:1;19302:9;19298:17;19291:47;19355:131;19481:4;19355:131;:::i;:::-;19347:139;;19074:419;;;:::o;19499:232::-;19639:34;19635:1;19627:6;19623:14;19616:58;19708:15;19703:2;19695:6;19691:15;19684:40;19499:232;:::o;19737:366::-;19879:3;19900:67;19964:2;19959:3;19900:67;:::i;:::-;19893:74;;19976:93;20065:3;19976:93;:::i;:::-;20094:2;20089:3;20085:12;20078:19;;19737:366;;;:::o;20109:419::-;20275:4;20313:2;20302:9;20298:18;20290:26;;20362:9;20356:4;20352:20;20348:1;20337:9;20333:17;20326:47;20390:131;20516:4;20390:131;:::i;:::-;20382:139;;20109:419;;;:::o;20534:180::-;20582:77;20579:1;20572:88;20679:4;20676:1;20669:15;20703:4;20700:1;20693:15;20720:410;20760:7;20783:20;20801:1;20783:20;:::i;:::-;20778:25;;20817:20;20835:1;20817:20;:::i;:::-;20812:25;;20872:1;20869;20865:9;20894:30;20912:11;20894:30;:::i;:::-;20883:41;;21073:1;21064:7;21060:15;21057:1;21054:22;21034:1;21027:9;21007:83;20984:139;;21103:18;;:::i;:::-;20984:139;20768:362;20720:410;;;;:::o;21136:180::-;21184:77;21181:1;21174:88;21281:4;21278:1;21271:15;21305:4;21302:1;21295:15;21322:185;21362:1;21379:20;21397:1;21379:20;:::i;:::-;21374:25;;21413:20;21431:1;21413:20;:::i;:::-;21408:25;;21452:1;21442:35;;21457:18;;:::i;:::-;21442:35;21499:1;21496;21492:9;21487:14;;21322:185;;;;:::o;21513:230::-;21653:34;21649:1;21641:6;21637:14;21630:58;21722:13;21717:2;21709:6;21705:15;21698:38;21513:230;:::o;21749:366::-;21891:3;21912:67;21976:2;21971:3;21912:67;:::i;:::-;21905:74;;21988:93;22077:3;21988:93;:::i;:::-;22106:2;22101:3;22097:12;22090:19;;21749:366;;;:::o;22121:419::-;22287:4;22325:2;22314:9;22310:18;22302:26;;22374:9;22368:4;22364:20;22360:1;22349:9;22345:17;22338:47;22402:131;22528:4;22402:131;:::i;:::-;22394:139;;22121:419;;;:::o;22546:147::-;22647:11;22684:3;22669:18;;22546:147;;;;:::o;22699:114::-;;:::o;22819:398::-;22978:3;22999:83;23080:1;23075:3;22999:83;:::i;:::-;22992:90;;23091:93;23180:3;23091:93;:::i;:::-;23209:1;23204:3;23200:11;23193:18;;22819:398;;;:::o;23223:379::-;23407:3;23429:147;23572:3;23429:147;:::i;:::-;23422:154;;23593:3;23586:10;;23223:379;;;:::o;23608:231::-;23748:34;23744:1;23736:6;23732:14;23725:58;23817:14;23812:2;23804:6;23800:15;23793:39;23608:231;:::o;23845:366::-;23987:3;24008:67;24072:2;24067:3;24008:67;:::i;:::-;24001:74;;24084:93;24173:3;24084:93;:::i;:::-;24202:2;24197:3;24193:12;24186:19;;23845:366;;;:::o;24217:419::-;24383:4;24421:2;24410:9;24406:18;24398:26;;24470:9;24464:4;24460:20;24456:1;24445:9;24441:17;24434:47;24498:131;24624:4;24498:131;:::i;:::-;24490:139;;24217:419;;;:::o;24642:180::-;24690:77;24687:1;24680:88;24787:4;24784:1;24777:15;24811:4;24808:1;24801:15;24828:174;24968:26;24964:1;24956:6;24952:14;24945:50;24828:174;:::o;25008:366::-;25150:3;25171:67;25235:2;25230:3;25171:67;:::i;:::-;25164:74;;25247:93;25336:3;25247:93;:::i;:::-;25365:2;25360:3;25356:12;25349:19;;25008:366;;;:::o;25380:419::-;25546:4;25584:2;25573:9;25569:18;25561:26;;25633:9;25627:4;25623:20;25619:1;25608:9;25604:17;25597:47;25661:131;25787:4;25661:131;:::i;:::-;25653:139;;25380:419;;;:::o;25805:228::-;25945:34;25941:1;25933:6;25929:14;25922:58;26014:11;26009:2;26001:6;25997:15;25990:36;25805:228;:::o;26039:366::-;26181:3;26202:67;26266:2;26261:3;26202:67;:::i;:::-;26195:74;;26278:93;26367:3;26278:93;:::i;:::-;26396:2;26391:3;26387:12;26380:19;;26039:366;;;:::o;26411:419::-;26577:4;26615:2;26604:9;26600:18;26592:26;;26664:9;26658:4;26654:20;26650:1;26639:9;26635:17;26628:47;26692:131;26818:4;26692:131;:::i;:::-;26684:139;;26411:419;;;:::o;26836:191::-;26876:3;26895:20;26913:1;26895:20;:::i;:::-;26890:25;;26929:20;26947:1;26929:20;:::i;:::-;26924:25;;26972:1;26969;26965:9;26958:16;;26993:3;26990:1;26987:10;26984:36;;;27000:18;;:::i;:::-;26984:36;26836:191;;;;:::o;27033:167::-;27173:19;27169:1;27161:6;27157:14;27150:43;27033:167;:::o;27206:366::-;27348:3;27369:67;27433:2;27428:3;27369:67;:::i;:::-;27362:74;;27445:93;27534:3;27445:93;:::i;:::-;27563:2;27558:3;27554:12;27547:19;;27206:366;;;:::o;27578:419::-;27744:4;27782:2;27771:9;27767:18;27759:26;;27831:9;27825:4;27821:20;27817:1;27806:9;27802:17;27795:47;27859:131;27985:4;27859:131;:::i;:::-;27851:139;;27578:419;;;:::o;28003:233::-;28042:3;28065:24;28083:5;28065:24;:::i;:::-;28056:33;;28111:66;28104:5;28101:77;28098:103;;28181:18;;:::i;:::-;28098:103;28228:1;28221:5;28217:13;28210:20;;28003:233;;;:::o;28242:164::-;28382:16;28378:1;28370:6;28366:14;28359:40;28242:164;:::o;28412:366::-;28554:3;28575:67;28639:2;28634:3;28575:67;:::i;:::-;28568:74;;28651:93;28740:3;28651:93;:::i;:::-;28769:2;28764:3;28760:12;28753:19;;28412:366;;;:::o;28784:419::-;28950:4;28988:2;28977:9;28973:18;28965:26;;29037:9;29031:4;29027:20;29023:1;29012:9;29008:17;29001:47;29065:131;29191:4;29065:131;:::i;:::-;29057:139;;28784:419;;;:::o;29209:141::-;29258:4;29281:3;29273:11;;29304:3;29301:1;29294:14;29338:4;29335:1;29325:18;29317:26;;29209:141;;;:::o;29356:93::-;29393:6;29440:2;29435;29428:5;29424:14;29420:23;29410:33;;29356:93;;;:::o;29455:107::-;29499:8;29549:5;29543:4;29539:16;29518:37;;29455:107;;;;:::o;29568:393::-;29637:6;29687:1;29675:10;29671:18;29710:97;29740:66;29729:9;29710:97;:::i;:::-;29828:39;29858:8;29847:9;29828:39;:::i;:::-;29816:51;;29900:4;29896:9;29889:5;29885:21;29876:30;;29949:4;29939:8;29935:19;29928:5;29925:30;29915:40;;29644:317;;29568:393;;;;;:::o;29967:60::-;29995:3;30016:5;30009:12;;29967:60;;;:::o;30033:142::-;30083:9;30116:53;30134:34;30143:24;30161:5;30143:24;:::i;:::-;30134:34;:::i;:::-;30116:53;:::i;:::-;30103:66;;30033:142;;;:::o;30181:75::-;30224:3;30245:5;30238:12;;30181:75;;;:::o;30262:269::-;30372:39;30403:7;30372:39;:::i;:::-;30433:91;30482:41;30506:16;30482:41;:::i;:::-;30474:6;30467:4;30461:11;30433:91;:::i;:::-;30427:4;30420:105;30338:193;30262:269;;;:::o;30537:73::-;30582:3;30537:73;:::o;30616:189::-;30693:32;;:::i;:::-;30734:65;30792:6;30784;30778:4;30734:65;:::i;:::-;30669:136;30616:189;;:::o;30811:186::-;30871:120;30888:3;30881:5;30878:14;30871:120;;;30942:39;30979:1;30972:5;30942:39;:::i;:::-;30915:1;30908:5;30904:13;30895:22;;30871:120;;;30811:186;;:::o;31003:543::-;31104:2;31099:3;31096:11;31093:446;;;31138:38;31170:5;31138:38;:::i;:::-;31222:29;31240:10;31222:29;:::i;:::-;31212:8;31208:44;31405:2;31393:10;31390:18;31387:49;;;31426:8;31411:23;;31387:49;31449:80;31505:22;31523:3;31505:22;:::i;:::-;31495:8;31491:37;31478:11;31449:80;:::i;:::-;31108:431;;31093:446;31003:543;;;:::o;31552:117::-;31606:8;31656:5;31650:4;31646:16;31625:37;;31552:117;;;;:::o;31675:169::-;31719:6;31752:51;31800:1;31796:6;31788:5;31785:1;31781:13;31752:51;:::i;:::-;31748:56;31833:4;31827;31823:15;31813:25;;31726:118;31675:169;;;;:::o;31849:295::-;31925:4;32071:29;32096:3;32090:4;32071:29;:::i;:::-;32063:37;;32133:3;32130:1;32126:11;32120:4;32117:21;32109:29;;31849:295;;;;:::o;32149:1395::-;32266:37;32299:3;32266:37;:::i;:::-;32368:18;32360:6;32357:30;32354:56;;;32390:18;;:::i;:::-;32354:56;32434:38;32466:4;32460:11;32434:38;:::i;:::-;32519:67;32579:6;32571;32565:4;32519:67;:::i;:::-;32613:1;32637:4;32624:17;;32669:2;32661:6;32658:14;32686:1;32681:618;;;;33343:1;33360:6;33357:77;;;33409:9;33404:3;33400:19;33394:26;33385:35;;33357:77;33460:67;33520:6;33513:5;33460:67;:::i;:::-;33454:4;33447:81;33316:222;32651:887;;32681:618;32733:4;32729:9;32721:6;32717:22;32767:37;32799:4;32767:37;:::i;:::-;32826:1;32840:208;32854:7;32851:1;32848:14;32840:208;;;32933:9;32928:3;32924:19;32918:26;32910:6;32903:42;32984:1;32976:6;32972:14;32962:24;;33031:2;33020:9;33016:18;33003:31;;32877:4;32874:1;32870:12;32865:17;;32840:208;;;33076:6;33067:7;33064:19;33061:179;;;33134:9;33129:3;33125:19;33119:26;33177:48;33219:4;33211:6;33207:17;33196:9;33177:48;:::i;:::-;33169:6;33162:64;33084:156;33061:179;33286:1;33282;33274:6;33270:14;33266:22;33260:4;33253:36;32688:611;;;32651:887;;32241:1303;;;32149:1395;;:::o;33550:225::-;33690:34;33686:1;33678:6;33674:14;33667:58;33759:8;33754:2;33746:6;33742:15;33735:33;33550:225;:::o;33781:366::-;33923:3;33944:67;34008:2;34003:3;33944:67;:::i;:::-;33937:74;;34020:93;34109:3;34020:93;:::i;:::-;34138:2;34133:3;34129:12;34122:19;;33781:366;;;:::o;34153:419::-;34319:4;34357:2;34346:9;34342:18;34334:26;;34406:9;34400:4;34396:20;34392:1;34381:9;34377:17;34370:47;34434:131;34560:4;34434:131;:::i;:::-;34426:139;;34153:419;;;:::o;34578:224::-;34718:34;34714:1;34706:6;34702:14;34695:58;34787:7;34782:2;34774:6;34770:15;34763:32;34578:224;:::o;34808:366::-;34950:3;34971:67;35035:2;35030:3;34971:67;:::i;:::-;34964:74;;35047:93;35136:3;35047:93;:::i;:::-;35165:2;35160:3;35156:12;35149:19;;34808:366;;;:::o;35180:419::-;35346:4;35384:2;35373:9;35369:18;35361:26;;35433:9;35427:4;35423:20;35419:1;35408:9;35404:17;35397:47;35461:131;35587:4;35461:131;:::i;:::-;35453:139;;35180:419;;;:::o;35605:223::-;35745:34;35741:1;35733:6;35729:14;35722:58;35814:6;35809:2;35801:6;35797:15;35790:31;35605:223;:::o;35834:366::-;35976:3;35997:67;36061:2;36056:3;35997:67;:::i;:::-;35990:74;;36073:93;36162:3;36073:93;:::i;:::-;36191:2;36186:3;36182:12;36175:19;;35834:366;;;:::o;36206:419::-;36372:4;36410:2;36399:9;36395:18;36387:26;;36459:9;36453:4;36449:20;36445:1;36434:9;36430:17;36423:47;36487:131;36613:4;36487:131;:::i;:::-;36479:139;;36206:419;;;:::o;36631:182::-;36771:34;36767:1;36759:6;36755:14;36748:58;36631:182;:::o;36819:366::-;36961:3;36982:67;37046:2;37041:3;36982:67;:::i;:::-;36975:74;;37058:93;37147:3;37058:93;:::i;:::-;37176:2;37171:3;37167:12;37160:19;;36819:366;;;:::o;37191:419::-;37357:4;37395:2;37384:9;37380:18;37372:26;;37444:9;37438:4;37434:20;37430:1;37419:9;37415:17;37408:47;37472:131;37598:4;37472:131;:::i;:::-;37464:139;;37191:419;;;:::o;37616:175::-;37756:27;37752:1;37744:6;37740:14;37733:51;37616:175;:::o;37797:366::-;37939:3;37960:67;38024:2;38019:3;37960:67;:::i;:::-;37953:74;;38036:93;38125:3;38036:93;:::i;:::-;38154:2;38149:3;38145:12;38138:19;;37797:366;;;:::o;38169:419::-;38335:4;38373:2;38362:9;38358:18;38350:26;;38422:9;38416:4;38412:20;38408:1;38397:9;38393:17;38386:47;38450:131;38576:4;38450:131;:::i;:::-;38442:139;;38169:419;;;:::o;38594:237::-;38734:34;38730:1;38722:6;38718:14;38711:58;38803:20;38798:2;38790:6;38786:15;38779:45;38594:237;:::o;38837:366::-;38979:3;39000:67;39064:2;39059:3;39000:67;:::i;:::-;38993:74;;39076:93;39165:3;39076:93;:::i;:::-;39194:2;39189:3;39185:12;39178:19;;38837:366;;;:::o;39209:419::-;39375:4;39413:2;39402:9;39398:18;39390:26;;39462:9;39456:4;39452:20;39448:1;39437:9;39433:17;39426:47;39490:131;39616:4;39490:131;:::i;:::-;39482:139;;39209:419;;;:::o;39634:240::-;39774:34;39770:1;39762:6;39758:14;39751:58;39843:23;39838:2;39830:6;39826:15;39819:48;39634:240;:::o;39880:366::-;40022:3;40043:67;40107:2;40102:3;40043:67;:::i;:::-;40036:74;;40119:93;40208:3;40119:93;:::i;:::-;40237:2;40232:3;40228:12;40221:19;;39880:366;;;:::o;40252:419::-;40418:4;40456:2;40445:9;40441:18;40433:26;;40505:9;40499:4;40495:20;40491:1;40480:9;40476:17;40469:47;40533:131;40659:4;40533:131;:::i;:::-;40525:139;;40252:419;;;:::o;40677:98::-;40728:6;40762:5;40756:12;40746:22;;40677:98;;;:::o;40781:168::-;40864:11;40898:6;40893:3;40886:19;40938:4;40933:3;40929:14;40914:29;;40781:168;;;;:::o;40955:373::-;41041:3;41069:38;41101:5;41069:38;:::i;:::-;41123:70;41186:6;41181:3;41123:70;:::i;:::-;41116:77;;41202:65;41260:6;41255:3;41248:4;41241:5;41237:16;41202:65;:::i;:::-;41292:29;41314:6;41292:29;:::i;:::-;41287:3;41283:39;41276:46;;41045:283;40955:373;;;;:::o;41334:640::-;41529:4;41567:3;41556:9;41552:19;41544:27;;41581:71;41649:1;41638:9;41634:17;41625:6;41581:71;:::i;:::-;41662:72;41730:2;41719:9;41715:18;41706:6;41662:72;:::i;:::-;41744;41812:2;41801:9;41797:18;41788:6;41744:72;:::i;:::-;41863:9;41857:4;41853:20;41848:2;41837:9;41833:18;41826:48;41891:76;41962:4;41953:6;41891:76;:::i;:::-;41883:84;;41334:640;;;;;;;:::o;41980:141::-;42036:5;42067:6;42061:13;42052:22;;42083:32;42109:5;42083:32;:::i;:::-;41980:141;;;;:::o;42127:349::-;42196:6;42245:2;42233:9;42224:7;42220:23;42216:32;42213:119;;;42251:79;;:::i;:::-;42213:119;42371:1;42396:63;42451:7;42442:6;42431:9;42427:22;42396:63;:::i;:::-;42386:73;;42342:127;42127:349;;;;:::o;42482:194::-;42522:4;42542:20;42560:1;42542:20;:::i;:::-;42537:25;;42576:20;42594:1;42576:20;:::i;:::-;42571:25;;42620:1;42617;42613:9;42605:17;;42644:1;42638:4;42635:11;42632:37;;;42649:18;;:::i;:::-;42632:37;42482:194;;;;:::o;42682:180::-;42730:77;42727:1;42720:88;42827:4;42824:1;42817:15;42851:4;42848:1;42841:15;42868:182;43008:34;43004:1;42996:6;42992:14;42985:58;42868:182;:::o;43056:366::-;43198:3;43219:67;43283:2;43278:3;43219:67;:::i;:::-;43212:74;;43295:93;43384:3;43295:93;:::i;:::-;43413:2;43408:3;43404:12;43397:19;;43056:366;;;:::o;43428:419::-;43594:4;43632:2;43621:9;43617:18;43609:26;;43681:9;43675:4;43671:20;43667:1;43656:9;43652:17;43645:47;43709:131;43835:4;43709:131;:::i;:::-;43701:139;;43428:419;;;:::o;43853:178::-;43993:30;43989:1;43981:6;43977:14;43970:54;43853:178;:::o;44037:366::-;44179:3;44200:67;44264:2;44259:3;44200:67;:::i;:::-;44193:74;;44276:93;44365:3;44276:93;:::i;:::-;44394:2;44389:3;44385:12;44378:19;;44037:366;;;:::o;44409:419::-;44575:4;44613:2;44602:9;44598:18;44590:26;;44662:9;44656:4;44652:20;44648:1;44637:9;44633:17;44626:47;44690:131;44816:4;44690:131;:::i;:::-;44682:139;;44409:419;;;:::o

Swarm Source

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