ETH Price: $2,388.44 (-0.42%)

Token

Hocus Pocus Sacrifice Collection (SPELL)
 

Overview

Max Total Supply

215 SPELL

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
anotherblockinthechain.eth
Balance
2 SPELL
0x144c704bf25f1865e4b24fd6596ffed7d92470b0
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:
HocusPocusSacrifice

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-03
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.2) (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: contracts/HocusPocusSacrifice.sol


pragma solidity ^0.8.9;





contract HocusPocusSacrifice is ERC721, ERC721Enumerable, Pausable, Ownable {
    uint256 public constant priceInitial = 0.03 ether;
    uint256 public constant priceIncreaseEvery = 75;
    uint256 public constant priceIncrease = 0.01 ether;

    uint256 public constant maxSupply = 369;
    uint256 public constant maxMintAmount = 10;

    string public baseURI =
        "ipfs://QmNox9ysdjGxrsT3yMpgNw3nW6goydejLHhXUbUTcPRrya/";

    constructor() ERC721("Hocus Pocus Sacrifice Collection", "SPELL") {}

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

    function getPrice(uint256 tokenId) public pure returns (uint256) {
        return priceInitial + (tokenId / priceIncreaseEvery) * priceIncrease;
    }

    function mintCost(uint256 _mintAmount)
        public
        view
        returns (
            uint256 cost,
            uint256 mintableAmount,
            uint256 firstTokenId
        )
    {
        firstTokenId = totalSupply();
        require(_mintAmount > 0, "Must mint at least 1 NFT");
        require(
            _mintAmount <= maxMintAmount,
            "Cannot mint more than 10 NFTs at once"
        );

        uint256 maxMintRemaining = maxSupply - firstTokenId;
        require(maxMintRemaining > 0, "All NFTs were already minted");
        mintableAmount = _mintAmount > maxMintRemaining
            ? maxMintRemaining
            : _mintAmount;

        cost = 0;
        for (uint256 i = 0; i < mintableAmount; i++) {
            cost += getPrice(firstTokenId + i);
        }
    }

    function mint(address _to, uint256 _mintAmount)
        public
        payable
        whenNotPaused
    {
        uint256 cost;
        uint256 mintableAmount;
        uint256 firstTokenId;
        // check basic constraints
        (cost, mintableAmount, firstTokenId) = mintCost(_mintAmount);
        require(msg.value >= cost, "Not enough funds");

        // do minting
        for (uint256 i = 0; i < mintableAmount; i++) {
            _safeMint(_to, firstTokenId + i);
        }

        // return remaining funds
        uint256 remainingBalance = msg.value - cost;
        if (remainingBalance > 0)
            payable(msg.sender).transfer(remainingBalance);
    }

    function getOwners() public view returns (address[] memory owners) {
        uint256 count = totalSupply();
        owners = new address[](count);
        for (uint256 i = 0; i < count; ++i) {
            owners[i] = _ownerOf(i);
        }
        return owners;
    }

    // for Owner only

    function setBaseURI(string calldata uri) public onlyOwner {
        baseURI = uri;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // overrides

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId,
        uint256 batchSize
    ) internal override(ERC721, ERC721Enumerable) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getOwners","outputs":[{"internalType":"address[]","name":"owners","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"mintableAmount","type":"uint256"},{"internalType":"uint256","name":"firstTokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceIncrease","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceIncreaseEvery","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceInitial","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603681526020016200458660369139600b908051906020019062000035929190620001f3565b503480156200004357600080fd5b506040518060400160405280602081526020017f486f63757320506f6375732053616372696669636520436f6c6c656374696f6e8152506040518060400160405280600581526020017f5350454c4c0000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c8929190620001f3565b508060019080519060200190620000e1929190620001f3565b5050506000600a60006101000a81548160ff0219169083151502179055506200011f620001136200012560201b60201c565b6200012d60201b60201c565b62000308565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020190620002d2565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002eb57607f821691505b60208210811415620003025762000301620002a3565b5b50919050565b61426e80620003186000396000f3fe6080604052600436106101f95760003560e01c80636c0360eb1161010d578063b88d4fde116100a0578063de2f8f9b1161006f578063de2f8f9b14610704578063e75722301461072f578063e985e9c51461076c578063f2fde38b146107a9578063f8c34050146107d2576101f9565b8063b88d4fde14610648578063b938b7a414610671578063c87b56dd1461069c578063d5abeb01146106d9576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059e57806395d89b41146105c9578063a0e67e2b146105f4578063a22cb4651461061f576101f9565b80636c0360eb1461050857806370a0823114610533578063715018a6146105705780638456cb5914610587576101f9565b80632f745c591161019057806342842e0e1161015f57806342842e0e146104115780634f6ccce71461043a57806355f804b3146104775780635c975abb146104a05780636352211e146104cb576101f9565b80632f745c591461038a5780633ccfd60b146103c75780633f4ba83a146103de57806340c10f19146103f5576101f9565b806318160ddd116101cc57806318160ddd146102cc578063239c70ae146102f757806323b872dd1461032257806327de8f271461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c4f565b6107fd565b6040516102329190612c97565b60405180910390f35b34801561024757600080fd5b5061025061080f565b60405161025d9190612d4b565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612da3565b6108a1565b60405161029a9190612e11565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612e58565b6108e7565b005b3480156102d857600080fd5b506102e16109ff565b6040516102ee9190612ea7565b60405180910390f35b34801561030357600080fd5b5061030c610a0c565b6040516103199190612ea7565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612ec2565b610a11565b005b34801561035757600080fd5b50610372600480360381019061036d9190612da3565b610a71565b60405161038193929190612f15565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612e58565b610bb9565b6040516103be9190612ea7565b60405180910390f35b3480156103d357600080fd5b506103dc610c5e565b005b3480156103ea57600080fd5b506103f3610cb5565b005b61040f600480360381019061040a9190612e58565b610cc7565b005b34801561041d57600080fd5b5061043860048036038101906104339190612ec2565b610dc9565b005b34801561044657600080fd5b50610461600480360381019061045c9190612da3565b610de9565b60405161046e9190612ea7565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612fb1565b610e5a565b005b3480156104ac57600080fd5b506104b5610e78565b6040516104c29190612c97565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190612da3565b610e8f565b6040516104ff9190612e11565b60405180910390f35b34801561051457600080fd5b5061051d610f16565b60405161052a9190612d4b565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612ffe565b610fa4565b6040516105679190612ea7565b60405180910390f35b34801561057c57600080fd5b5061058561105c565b005b34801561059357600080fd5b5061059c611070565b005b3480156105aa57600080fd5b506105b3611082565b6040516105c09190612e11565b60405180910390f35b3480156105d557600080fd5b506105de6110ac565b6040516105eb9190612d4b565b60405180910390f35b34801561060057600080fd5b5061060961113e565b60405161061691906130e9565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613137565b61120e565b005b34801561065457600080fd5b5061066f600480360381019061066a91906132a7565b611224565b005b34801561067d57600080fd5b50610686611286565b6040516106939190612ea7565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612da3565b61128b565b6040516106d09190612d4b565b60405180910390f35b3480156106e557600080fd5b506106ee6112f3565b6040516106fb9190612ea7565b60405180910390f35b34801561071057600080fd5b506107196112f9565b6040516107269190612ea7565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190612da3565b611304565b6040516107639190612ea7565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e919061332a565b61133e565b6040516107a09190612c97565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190612ffe565b6113d2565b005b3480156107de57600080fd5b506107e7611456565b6040516107f49190612ea7565b60405180910390f35b600061080882611461565b9050919050565b60606000805461081e90613399565b80601f016020809104026020016040519081016040528092919081815260200182805461084a90613399565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b60006108ac826114db565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f282610e8f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a9061343d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610982611526565b73ffffffffffffffffffffffffffffffffffffffff1614806109b157506109b0816109ab611526565b61133e565b5b6109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e7906134cf565b60405180910390fd5b6109fa838361152e565b505050565b6000600880549050905090565b600a81565b610a22610a1c611526565b826115e7565b610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890613561565b60405180910390fd5b610a6c83838361167c565b505050565b6000806000610a7e6109ff565b905060008411610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba906135cd565b60405180910390fd5b600a841115610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe9061365f565b60405180910390fd5b600081610171610b1791906136ae565b905060008111610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b539061372e565b60405180910390fd5b808511610b695784610b6b565b805b92506000935060005b83811015610bb057610b908184610b8b919061374e565b611304565b85610b9b919061374e565b94508080610ba8906137a4565b915050610b74565b50509193909250565b6000610bc483610fa4565b8210610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc9061385f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c66611976565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cb1573d6000803e3d6000fd5b5050565b610cbd611976565b610cc56119f4565b565b610ccf611a57565b6000806000610cdd84610a71565b80935081945082955050505082341015610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d23906138cb565b60405180910390fd5b60005b82811015610d5f57610d4c868284610d47919061374e565b611aa1565b8080610d57906137a4565b915050610d2f565b5060008334610d6e91906136ae565b90506000811115610dc1573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dbf573d6000803e3d6000fd5b505b505050505050565b610de483838360405180602001604052806000815250611224565b505050565b6000610df36109ff565b8210610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b9061395d565b60405180910390fd5b60088281548110610e4857610e4761397d565b5b90600052602060002001549050919050565b610e62611976565b8181600b9190610e73929190612b40565b505050565b6000600a60009054906101000a900460ff16905090565b600080610e9b83611abf565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f04906139f8565b60405180910390fd5b80915050919050565b600b8054610f2390613399565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4f90613399565b8015610f9c5780601f10610f7157610100808354040283529160200191610f9c565b820191906000526020600020905b815481529060010190602001808311610f7f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c90613a8a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611064611976565b61106e6000611afc565b565b611078611976565b611080611bc2565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110bb90613399565b80601f01602080910402602001604051908101604052809291908181526020018280546110e790613399565b80156111345780601f1061110957610100808354040283529160200191611134565b820191906000526020600020905b81548152906001019060200180831161111757829003601f168201915b5050505050905090565b6060600061114a6109ff565b90508067ffffffffffffffff8111156111665761116561317c565b5b6040519080825280602002602001820160405280156111945781602001602082028036833780820191505090505b50915060005b81811015611209576111ab81611abf565b8382815181106111be576111bd61397d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080611202906137a4565b905061119a565b505090565b611220611219611526565b8383611c25565b5050565b61123561122f611526565b836115e7565b611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613561565b60405180910390fd5b61128084848484611d92565b50505050565b604b81565b6060611296826114db565b60006112a0611dee565b905060008151116112c057604051806020016040528060008152506112eb565b806112ca84611e80565b6040516020016112db929190613ae6565b6040516020818303038152906040525b915050919050565b61017181565b666a94d74f43000081565b6000662386f26fc10000604b8361131b9190613b39565b6113259190613b6a565b666a94d74f430000611337919061374e565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113da611976565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190613c36565b60405180910390fd5b61145381611afc565b50565b662386f26fc1000081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806114d457506114d382611f58565b5b9050919050565b6114e48161203a565b611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a906139f8565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115a183610e8f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806115f383610e8f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116355750611634818561133e565b5b8061167357508373ffffffffffffffffffffffffffffffffffffffff1661165b846108a1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661169c82610e8f565b73ffffffffffffffffffffffffffffffffffffffff16146116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990613cc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613d5a565b60405180910390fd5b61176f838383600161207b565b8273ffffffffffffffffffffffffffffffffffffffff1661178f82610e8f565b73ffffffffffffffffffffffffffffffffffffffff16146117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90613cc8565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119718383836001612095565b505050565b61197e611526565b73ffffffffffffffffffffffffffffffffffffffff1661199c611082565b73ffffffffffffffffffffffffffffffffffffffff16146119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613dc6565b60405180910390fd5b565b6119fc61209b565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a40611526565b604051611a4d9190612e11565b60405180910390a1565b611a5f610e78565b15611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9690613e32565b60405180910390fd5b565b611abb8282604051806020016040528060008152506120e4565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bca611a57565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c0e611526565b604051611c1b9190612e11565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b90613e9e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d859190612c97565b60405180910390a3505050565b611d9d84848461167c565b611da98484848461213f565b611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf90613f30565b60405180910390fd5b50505050565b6060600b8054611dfd90613399565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2990613399565b8015611e765780601f10611e4b57610100808354040283529160200191611e76565b820191906000526020600020905b815481529060010190602001808311611e5957829003601f168201915b5050505050905090565b606060006001611e8f846122d6565b01905060008167ffffffffffffffff811115611eae57611ead61317c565b5b6040519080825280601f01601f191660200182016040528015611ee05781602001600182028036833780820191505090505b509050600082602001820190505b600115611f4d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f3757611f36613b0a565b5b0494506000851415611f4857611f4d565b611eee565b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061202357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612033575061203282612429565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661205c83611abf565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612083611a57565b61208f84848484612493565b50505050565b50505050565b6120a3610e78565b6120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990613f9c565b60405180910390fd5b565b6120ee83836125f3565b6120fb600084848461213f565b61213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190613f30565b60405180910390fd5b505050565b60006121608473ffffffffffffffffffffffffffffffffffffffff16612811565b156122c9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612189611526565b8786866040518563ffffffff1660e01b81526004016121ab9493929190614011565b602060405180830381600087803b1580156121c557600080fd5b505af19250505080156121f657506040513d601f19601f820116820180604052508101906121f39190614072565b60015b612279573d8060008114612226576040519150601f19603f3d011682016040523d82523d6000602084013e61222b565b606091505b50600081511415612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890613f30565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ce565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612334577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161232a57612329613b0a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612371576d04ee2d6d415b85acef8100000000838161236757612366613b0a565b5b0492506020810190505b662386f26fc1000083106123a057662386f26fc10000838161239657612395613b0a565b5b0492506010810190505b6305f5e10083106123c9576305f5e10083816123bf576123be613b0a565b5b0492506008810190505b61271083106123ee5761271083816123e4576123e3613b0a565b5b0492506004810190505b60648310612411576064838161240757612406613b0a565b5b0492506002810190505b600a8310612420576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61249f84848484612834565b60018111156124e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124da90614111565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561252b576125268161283a565b61256a565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612569576125688582612883565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125ad576125a8816129f0565b6125ec565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125eb576125ea8482612ac1565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a9061417d565b60405180910390fd5b61266c8161203a565b156126ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a3906141e9565b60405180910390fd5b6126ba60008383600161207b565b6126c38161203a565b15612703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fa906141e9565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461280d600083836001612095565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161289084610fa4565b61289a91906136ae565b905060006007600084815260200190815260200160002054905081811461297f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a0491906136ae565b9050600060096000848152602001908152602001600020549050600060088381548110612a3457612a3361397d565b5b906000526020600020015490508060088381548110612a5657612a5561397d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612aa557612aa4614209565b5b6001900381819060005260206000200160009055905550505050565b6000612acc83610fa4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612b4c90613399565b90600052602060002090601f016020900481019282612b6e5760008555612bb5565b82601f10612b8757803560ff1916838001178555612bb5565b82800160010185558215612bb5579182015b82811115612bb4578235825591602001919060010190612b99565b5b509050612bc29190612bc6565b5090565b5b80821115612bdf576000816000905550600101612bc7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c2c81612bf7565b8114612c3757600080fd5b50565b600081359050612c4981612c23565b92915050565b600060208284031215612c6557612c64612bed565b5b6000612c7384828501612c3a565b91505092915050565b60008115159050919050565b612c9181612c7c565b82525050565b6000602082019050612cac6000830184612c88565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cec578082015181840152602081019050612cd1565b83811115612cfb576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d1d82612cb2565b612d278185612cbd565b9350612d37818560208601612cce565b612d4081612d01565b840191505092915050565b60006020820190508181036000830152612d658184612d12565b905092915050565b6000819050919050565b612d8081612d6d565b8114612d8b57600080fd5b50565b600081359050612d9d81612d77565b92915050565b600060208284031215612db957612db8612bed565b5b6000612dc784828501612d8e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dfb82612dd0565b9050919050565b612e0b81612df0565b82525050565b6000602082019050612e266000830184612e02565b92915050565b612e3581612df0565b8114612e4057600080fd5b50565b600081359050612e5281612e2c565b92915050565b60008060408385031215612e6f57612e6e612bed565b5b6000612e7d85828601612e43565b9250506020612e8e85828601612d8e565b9150509250929050565b612ea181612d6d565b82525050565b6000602082019050612ebc6000830184612e98565b92915050565b600080600060608486031215612edb57612eda612bed565b5b6000612ee986828701612e43565b9350506020612efa86828701612e43565b9250506040612f0b86828701612d8e565b9150509250925092565b6000606082019050612f2a6000830186612e98565b612f376020830185612e98565b612f446040830184612e98565b949350505050565b600080fd5b600080fd5b600080fd5b60008083601f840112612f7157612f70612f4c565b5b8235905067ffffffffffffffff811115612f8e57612f8d612f51565b5b602083019150836001820283011115612faa57612fa9612f56565b5b9250929050565b60008060208385031215612fc857612fc7612bed565b5b600083013567ffffffffffffffff811115612fe657612fe5612bf2565b5b612ff285828601612f5b565b92509250509250929050565b60006020828403121561301457613013612bed565b5b600061302284828501612e43565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61306081612df0565b82525050565b60006130728383613057565b60208301905092915050565b6000602082019050919050565b60006130968261302b565b6130a08185613036565b93506130ab83613047565b8060005b838110156130dc5781516130c38882613066565b97506130ce8361307e565b9250506001810190506130af565b5085935050505092915050565b60006020820190508181036000830152613103818461308b565b905092915050565b61311481612c7c565b811461311f57600080fd5b50565b6000813590506131318161310b565b92915050565b6000806040838503121561314e5761314d612bed565b5b600061315c85828601612e43565b925050602061316d85828601613122565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131b482612d01565b810181811067ffffffffffffffff821117156131d3576131d261317c565b5b80604052505050565b60006131e6612be3565b90506131f282826131ab565b919050565b600067ffffffffffffffff8211156132125761321161317c565b5b61321b82612d01565b9050602081019050919050565b82818337600083830152505050565b600061324a613245846131f7565b6131dc565b90508281526020810184848401111561326657613265613177565b5b613271848285613228565b509392505050565b600082601f83011261328e5761328d612f4c565b5b813561329e848260208601613237565b91505092915050565b600080600080608085870312156132c1576132c0612bed565b5b60006132cf87828801612e43565b94505060206132e087828801612e43565b93505060406132f187828801612d8e565b925050606085013567ffffffffffffffff81111561331257613311612bf2565b5b61331e87828801613279565b91505092959194509250565b6000806040838503121561334157613340612bed565b5b600061334f85828601612e43565b925050602061336085828601612e43565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133b157607f821691505b602082108114156133c5576133c461336a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613427602183612cbd565b9150613432826133cb565b604082019050919050565b600060208201905081810360008301526134568161341a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006134b9603d83612cbd565b91506134c48261345d565b604082019050919050565b600060208201905081810360008301526134e8816134ac565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061354b602d83612cbd565b9150613556826134ef565b604082019050919050565b6000602082019050818103600083015261357a8161353e565b9050919050565b7f4d757374206d696e74206174206c656173742031204e46540000000000000000600082015250565b60006135b7601883612cbd565b91506135c282613581565b602082019050919050565b600060208201905081810360008301526135e6816135aa565b9050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e203130204e46547320617460008201527f206f6e6365000000000000000000000000000000000000000000000000000000602082015250565b6000613649602583612cbd565b9150613654826135ed565b604082019050919050565b600060208201905081810360008301526136788161363c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136b982612d6d565b91506136c483612d6d565b9250828210156136d7576136d661367f565b5b828203905092915050565b7f416c6c204e465473207765726520616c7265616479206d696e74656400000000600082015250565b6000613718601c83612cbd565b9150613723826136e2565b602082019050919050565b600060208201905081810360008301526137478161370b565b9050919050565b600061375982612d6d565b915061376483612d6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137995761379861367f565b5b828201905092915050565b60006137af82612d6d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137e2576137e161367f565b5b600182019050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613849602b83612cbd565b9150613854826137ed565b604082019050919050565b600060208201905081810360008301526138788161383c565b9050919050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b60006138b5601083612cbd565b91506138c08261387f565b602082019050919050565b600060208201905081810360008301526138e4816138a8565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613947602c83612cbd565b9150613952826138eb565b604082019050919050565b600060208201905081810360008301526139768161393a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006139e2601883612cbd565b91506139ed826139ac565b602082019050919050565b60006020820190508181036000830152613a11816139d5565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613a74602983612cbd565b9150613a7f82613a18565b604082019050919050565b60006020820190508181036000830152613aa381613a67565b9050919050565b600081905092915050565b6000613ac082612cb2565b613aca8185613aaa565b9350613ada818560208601612cce565b80840191505092915050565b6000613af28285613ab5565b9150613afe8284613ab5565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b4482612d6d565b9150613b4f83612d6d565b925082613b5f57613b5e613b0a565b5b828204905092915050565b6000613b7582612d6d565b9150613b8083612d6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bb957613bb861367f565b5b828202905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c20602683612cbd565b9150613c2b82613bc4565b604082019050919050565b60006020820190508181036000830152613c4f81613c13565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613cb2602583612cbd565b9150613cbd82613c56565b604082019050919050565b60006020820190508181036000830152613ce181613ca5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d44602483612cbd565b9150613d4f82613ce8565b604082019050919050565b60006020820190508181036000830152613d7381613d37565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613db0602083612cbd565b9150613dbb82613d7a565b602082019050919050565b60006020820190508181036000830152613ddf81613da3565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613e1c601083612cbd565b9150613e2782613de6565b602082019050919050565b60006020820190508181036000830152613e4b81613e0f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e88601983612cbd565b9150613e9382613e52565b602082019050919050565b60006020820190508181036000830152613eb781613e7b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f1a603283612cbd565b9150613f2582613ebe565b604082019050919050565b60006020820190508181036000830152613f4981613f0d565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613f86601483612cbd565b9150613f9182613f50565b602082019050919050565b60006020820190508181036000830152613fb581613f79565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fe382613fbc565b613fed8185613fc7565b9350613ffd818560208601612cce565b61400681612d01565b840191505092915050565b60006080820190506140266000830187612e02565b6140336020830186612e02565b6140406040830185612e98565b81810360608301526140528184613fd8565b905095945050505050565b60008151905061406c81612c23565b92915050565b60006020828403121561408857614087612bed565b5b60006140968482850161405d565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006140fb603583612cbd565b91506141068261409f565b604082019050919050565b6000602082019050818103600083015261412a816140ee565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614167602083612cbd565b915061417282614131565b602082019050919050565b600060208201905081810360008301526141968161415a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006141d3601c83612cbd565b91506141de8261419d565b602082019050919050565b60006020820190508181036000830152614202816141c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122048fac3c0f8c6ba1da4b59a333f75053e705d40c09fef74eba52a4519aff813ca64736f6c63430008090033697066733a2f2f516d4e6f78397973646a477872735433794d70674e77336e5736676f7964656a4c486858556255546350527279612f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636c0360eb1161010d578063b88d4fde116100a0578063de2f8f9b1161006f578063de2f8f9b14610704578063e75722301461072f578063e985e9c51461076c578063f2fde38b146107a9578063f8c34050146107d2576101f9565b8063b88d4fde14610648578063b938b7a414610671578063c87b56dd1461069c578063d5abeb01146106d9576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059e57806395d89b41146105c9578063a0e67e2b146105f4578063a22cb4651461061f576101f9565b80636c0360eb1461050857806370a0823114610533578063715018a6146105705780638456cb5914610587576101f9565b80632f745c591161019057806342842e0e1161015f57806342842e0e146104115780634f6ccce71461043a57806355f804b3146104775780635c975abb146104a05780636352211e146104cb576101f9565b80632f745c591461038a5780633ccfd60b146103c75780633f4ba83a146103de57806340c10f19146103f5576101f9565b806318160ddd116101cc57806318160ddd146102cc578063239c70ae146102f757806323b872dd1461032257806327de8f271461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c4f565b6107fd565b6040516102329190612c97565b60405180910390f35b34801561024757600080fd5b5061025061080f565b60405161025d9190612d4b565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612da3565b6108a1565b60405161029a9190612e11565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612e58565b6108e7565b005b3480156102d857600080fd5b506102e16109ff565b6040516102ee9190612ea7565b60405180910390f35b34801561030357600080fd5b5061030c610a0c565b6040516103199190612ea7565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612ec2565b610a11565b005b34801561035757600080fd5b50610372600480360381019061036d9190612da3565b610a71565b60405161038193929190612f15565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612e58565b610bb9565b6040516103be9190612ea7565b60405180910390f35b3480156103d357600080fd5b506103dc610c5e565b005b3480156103ea57600080fd5b506103f3610cb5565b005b61040f600480360381019061040a9190612e58565b610cc7565b005b34801561041d57600080fd5b5061043860048036038101906104339190612ec2565b610dc9565b005b34801561044657600080fd5b50610461600480360381019061045c9190612da3565b610de9565b60405161046e9190612ea7565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612fb1565b610e5a565b005b3480156104ac57600080fd5b506104b5610e78565b6040516104c29190612c97565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190612da3565b610e8f565b6040516104ff9190612e11565b60405180910390f35b34801561051457600080fd5b5061051d610f16565b60405161052a9190612d4b565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612ffe565b610fa4565b6040516105679190612ea7565b60405180910390f35b34801561057c57600080fd5b5061058561105c565b005b34801561059357600080fd5b5061059c611070565b005b3480156105aa57600080fd5b506105b3611082565b6040516105c09190612e11565b60405180910390f35b3480156105d557600080fd5b506105de6110ac565b6040516105eb9190612d4b565b60405180910390f35b34801561060057600080fd5b5061060961113e565b60405161061691906130e9565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190613137565b61120e565b005b34801561065457600080fd5b5061066f600480360381019061066a91906132a7565b611224565b005b34801561067d57600080fd5b50610686611286565b6040516106939190612ea7565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190612da3565b61128b565b6040516106d09190612d4b565b60405180910390f35b3480156106e557600080fd5b506106ee6112f3565b6040516106fb9190612ea7565b60405180910390f35b34801561071057600080fd5b506107196112f9565b6040516107269190612ea7565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190612da3565b611304565b6040516107639190612ea7565b60405180910390f35b34801561077857600080fd5b50610793600480360381019061078e919061332a565b61133e565b6040516107a09190612c97565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb9190612ffe565b6113d2565b005b3480156107de57600080fd5b506107e7611456565b6040516107f49190612ea7565b60405180910390f35b600061080882611461565b9050919050565b60606000805461081e90613399565b80601f016020809104026020016040519081016040528092919081815260200182805461084a90613399565b80156108975780601f1061086c57610100808354040283529160200191610897565b820191906000526020600020905b81548152906001019060200180831161087a57829003601f168201915b5050505050905090565b60006108ac826114db565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f282610e8f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a9061343d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610982611526565b73ffffffffffffffffffffffffffffffffffffffff1614806109b157506109b0816109ab611526565b61133e565b5b6109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e7906134cf565b60405180910390fd5b6109fa838361152e565b505050565b6000600880549050905090565b600a81565b610a22610a1c611526565b826115e7565b610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890613561565b60405180910390fd5b610a6c83838361167c565b505050565b6000806000610a7e6109ff565b905060008411610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba906135cd565b60405180910390fd5b600a841115610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe9061365f565b60405180910390fd5b600081610171610b1791906136ae565b905060008111610b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b539061372e565b60405180910390fd5b808511610b695784610b6b565b805b92506000935060005b83811015610bb057610b908184610b8b919061374e565b611304565b85610b9b919061374e565b94508080610ba8906137a4565b915050610b74565b50509193909250565b6000610bc483610fa4565b8210610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc9061385f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c66611976565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cb1573d6000803e3d6000fd5b5050565b610cbd611976565b610cc56119f4565b565b610ccf611a57565b6000806000610cdd84610a71565b80935081945082955050505082341015610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d23906138cb565b60405180910390fd5b60005b82811015610d5f57610d4c868284610d47919061374e565b611aa1565b8080610d57906137a4565b915050610d2f565b5060008334610d6e91906136ae565b90506000811115610dc1573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dbf573d6000803e3d6000fd5b505b505050505050565b610de483838360405180602001604052806000815250611224565b505050565b6000610df36109ff565b8210610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b9061395d565b60405180910390fd5b60088281548110610e4857610e4761397d565b5b90600052602060002001549050919050565b610e62611976565b8181600b9190610e73929190612b40565b505050565b6000600a60009054906101000a900460ff16905090565b600080610e9b83611abf565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f04906139f8565b60405180910390fd5b80915050919050565b600b8054610f2390613399565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4f90613399565b8015610f9c5780601f10610f7157610100808354040283529160200191610f9c565b820191906000526020600020905b815481529060010190602001808311610f7f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c90613a8a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611064611976565b61106e6000611afc565b565b611078611976565b611080611bc2565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110bb90613399565b80601f01602080910402602001604051908101604052809291908181526020018280546110e790613399565b80156111345780601f1061110957610100808354040283529160200191611134565b820191906000526020600020905b81548152906001019060200180831161111757829003601f168201915b5050505050905090565b6060600061114a6109ff565b90508067ffffffffffffffff8111156111665761116561317c565b5b6040519080825280602002602001820160405280156111945781602001602082028036833780820191505090505b50915060005b81811015611209576111ab81611abf565b8382815181106111be576111bd61397d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080611202906137a4565b905061119a565b505090565b611220611219611526565b8383611c25565b5050565b61123561122f611526565b836115e7565b611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90613561565b60405180910390fd5b61128084848484611d92565b50505050565b604b81565b6060611296826114db565b60006112a0611dee565b905060008151116112c057604051806020016040528060008152506112eb565b806112ca84611e80565b6040516020016112db929190613ae6565b6040516020818303038152906040525b915050919050565b61017181565b666a94d74f43000081565b6000662386f26fc10000604b8361131b9190613b39565b6113259190613b6a565b666a94d74f430000611337919061374e565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113da611976565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190613c36565b60405180910390fd5b61145381611afc565b50565b662386f26fc1000081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806114d457506114d382611f58565b5b9050919050565b6114e48161203a565b611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a906139f8565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115a183610e8f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806115f383610e8f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116355750611634818561133e565b5b8061167357508373ffffffffffffffffffffffffffffffffffffffff1661165b846108a1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661169c82610e8f565b73ffffffffffffffffffffffffffffffffffffffff16146116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990613cc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613d5a565b60405180910390fd5b61176f838383600161207b565b8273ffffffffffffffffffffffffffffffffffffffff1661178f82610e8f565b73ffffffffffffffffffffffffffffffffffffffff16146117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90613cc8565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119718383836001612095565b505050565b61197e611526565b73ffffffffffffffffffffffffffffffffffffffff1661199c611082565b73ffffffffffffffffffffffffffffffffffffffff16146119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e990613dc6565b60405180910390fd5b565b6119fc61209b565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a40611526565b604051611a4d9190612e11565b60405180910390a1565b611a5f610e78565b15611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9690613e32565b60405180910390fd5b565b611abb8282604051806020016040528060008152506120e4565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bca611a57565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c0e611526565b604051611c1b9190612e11565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b90613e9e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d859190612c97565b60405180910390a3505050565b611d9d84848461167c565b611da98484848461213f565b611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf90613f30565b60405180910390fd5b50505050565b6060600b8054611dfd90613399565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2990613399565b8015611e765780601f10611e4b57610100808354040283529160200191611e76565b820191906000526020600020905b815481529060010190602001808311611e5957829003601f168201915b5050505050905090565b606060006001611e8f846122d6565b01905060008167ffffffffffffffff811115611eae57611ead61317c565b5b6040519080825280601f01601f191660200182016040528015611ee05781602001600182028036833780820191505090505b509050600082602001820190505b600115611f4d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f3757611f36613b0a565b5b0494506000851415611f4857611f4d565b611eee565b819350505050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061202357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612033575061203282612429565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661205c83611abf565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b612083611a57565b61208f84848484612493565b50505050565b50505050565b6120a3610e78565b6120e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d990613f9c565b60405180910390fd5b565b6120ee83836125f3565b6120fb600084848461213f565b61213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190613f30565b60405180910390fd5b505050565b60006121608473ffffffffffffffffffffffffffffffffffffffff16612811565b156122c9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612189611526565b8786866040518563ffffffff1660e01b81526004016121ab9493929190614011565b602060405180830381600087803b1580156121c557600080fd5b505af19250505080156121f657506040513d601f19601f820116820180604052508101906121f39190614072565b60015b612279573d8060008114612226576040519150601f19603f3d011682016040523d82523d6000602084013e61222b565b606091505b50600081511415612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890613f30565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ce565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612334577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161232a57612329613b0a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612371576d04ee2d6d415b85acef8100000000838161236757612366613b0a565b5b0492506020810190505b662386f26fc1000083106123a057662386f26fc10000838161239657612395613b0a565b5b0492506010810190505b6305f5e10083106123c9576305f5e10083816123bf576123be613b0a565b5b0492506008810190505b61271083106123ee5761271083816123e4576123e3613b0a565b5b0492506004810190505b60648310612411576064838161240757612406613b0a565b5b0492506002810190505b600a8310612420576001810190505b80915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61249f84848484612834565b60018111156124e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124da90614111565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561252b576125268161283a565b61256a565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612569576125688582612883565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125ad576125a8816129f0565b6125ec565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125eb576125ea8482612ac1565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265a9061417d565b60405180910390fd5b61266c8161203a565b156126ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a3906141e9565b60405180910390fd5b6126ba60008383600161207b565b6126c38161203a565b15612703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fa906141e9565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461280d600083836001612095565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161289084610fa4565b61289a91906136ae565b905060006007600084815260200190815260200160002054905081811461297f576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a0491906136ae565b9050600060096000848152602001908152602001600020549050600060088381548110612a3457612a3361397d565b5b906000526020600020015490508060088381548110612a5657612a5561397d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612aa557612aa4614209565b5b6001900381819060005260206000200160009055905550505050565b6000612acc83610fa4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612b4c90613399565b90600052602060002090601f016020900481019282612b6e5760008555612bb5565b82601f10612b8757803560ff1916838001178555612bb5565b82800160010185558215612bb5579182015b82811115612bb4578235825591602001919060010190612b99565b5b509050612bc29190612bc6565b5090565b5b80821115612bdf576000816000905550600101612bc7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c2c81612bf7565b8114612c3757600080fd5b50565b600081359050612c4981612c23565b92915050565b600060208284031215612c6557612c64612bed565b5b6000612c7384828501612c3a565b91505092915050565b60008115159050919050565b612c9181612c7c565b82525050565b6000602082019050612cac6000830184612c88565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cec578082015181840152602081019050612cd1565b83811115612cfb576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d1d82612cb2565b612d278185612cbd565b9350612d37818560208601612cce565b612d4081612d01565b840191505092915050565b60006020820190508181036000830152612d658184612d12565b905092915050565b6000819050919050565b612d8081612d6d565b8114612d8b57600080fd5b50565b600081359050612d9d81612d77565b92915050565b600060208284031215612db957612db8612bed565b5b6000612dc784828501612d8e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dfb82612dd0565b9050919050565b612e0b81612df0565b82525050565b6000602082019050612e266000830184612e02565b92915050565b612e3581612df0565b8114612e4057600080fd5b50565b600081359050612e5281612e2c565b92915050565b60008060408385031215612e6f57612e6e612bed565b5b6000612e7d85828601612e43565b9250506020612e8e85828601612d8e565b9150509250929050565b612ea181612d6d565b82525050565b6000602082019050612ebc6000830184612e98565b92915050565b600080600060608486031215612edb57612eda612bed565b5b6000612ee986828701612e43565b9350506020612efa86828701612e43565b9250506040612f0b86828701612d8e565b9150509250925092565b6000606082019050612f2a6000830186612e98565b612f376020830185612e98565b612f446040830184612e98565b949350505050565b600080fd5b600080fd5b600080fd5b60008083601f840112612f7157612f70612f4c565b5b8235905067ffffffffffffffff811115612f8e57612f8d612f51565b5b602083019150836001820283011115612faa57612fa9612f56565b5b9250929050565b60008060208385031215612fc857612fc7612bed565b5b600083013567ffffffffffffffff811115612fe657612fe5612bf2565b5b612ff285828601612f5b565b92509250509250929050565b60006020828403121561301457613013612bed565b5b600061302284828501612e43565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61306081612df0565b82525050565b60006130728383613057565b60208301905092915050565b6000602082019050919050565b60006130968261302b565b6130a08185613036565b93506130ab83613047565b8060005b838110156130dc5781516130c38882613066565b97506130ce8361307e565b9250506001810190506130af565b5085935050505092915050565b60006020820190508181036000830152613103818461308b565b905092915050565b61311481612c7c565b811461311f57600080fd5b50565b6000813590506131318161310b565b92915050565b6000806040838503121561314e5761314d612bed565b5b600061315c85828601612e43565b925050602061316d85828601613122565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131b482612d01565b810181811067ffffffffffffffff821117156131d3576131d261317c565b5b80604052505050565b60006131e6612be3565b90506131f282826131ab565b919050565b600067ffffffffffffffff8211156132125761321161317c565b5b61321b82612d01565b9050602081019050919050565b82818337600083830152505050565b600061324a613245846131f7565b6131dc565b90508281526020810184848401111561326657613265613177565b5b613271848285613228565b509392505050565b600082601f83011261328e5761328d612f4c565b5b813561329e848260208601613237565b91505092915050565b600080600080608085870312156132c1576132c0612bed565b5b60006132cf87828801612e43565b94505060206132e087828801612e43565b93505060406132f187828801612d8e565b925050606085013567ffffffffffffffff81111561331257613311612bf2565b5b61331e87828801613279565b91505092959194509250565b6000806040838503121561334157613340612bed565b5b600061334f85828601612e43565b925050602061336085828601612e43565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133b157607f821691505b602082108114156133c5576133c461336a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613427602183612cbd565b9150613432826133cb565b604082019050919050565b600060208201905081810360008301526134568161341a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006134b9603d83612cbd565b91506134c48261345d565b604082019050919050565b600060208201905081810360008301526134e8816134ac565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061354b602d83612cbd565b9150613556826134ef565b604082019050919050565b6000602082019050818103600083015261357a8161353e565b9050919050565b7f4d757374206d696e74206174206c656173742031204e46540000000000000000600082015250565b60006135b7601883612cbd565b91506135c282613581565b602082019050919050565b600060208201905081810360008301526135e6816135aa565b9050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e203130204e46547320617460008201527f206f6e6365000000000000000000000000000000000000000000000000000000602082015250565b6000613649602583612cbd565b9150613654826135ed565b604082019050919050565b600060208201905081810360008301526136788161363c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136b982612d6d565b91506136c483612d6d565b9250828210156136d7576136d661367f565b5b828203905092915050565b7f416c6c204e465473207765726520616c7265616479206d696e74656400000000600082015250565b6000613718601c83612cbd565b9150613723826136e2565b602082019050919050565b600060208201905081810360008301526137478161370b565b9050919050565b600061375982612d6d565b915061376483612d6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137995761379861367f565b5b828201905092915050565b60006137af82612d6d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137e2576137e161367f565b5b600182019050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613849602b83612cbd565b9150613854826137ed565b604082019050919050565b600060208201905081810360008301526138788161383c565b9050919050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b60006138b5601083612cbd565b91506138c08261387f565b602082019050919050565b600060208201905081810360008301526138e4816138a8565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613947602c83612cbd565b9150613952826138eb565b604082019050919050565b600060208201905081810360008301526139768161393a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006139e2601883612cbd565b91506139ed826139ac565b602082019050919050565b60006020820190508181036000830152613a11816139d5565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613a74602983612cbd565b9150613a7f82613a18565b604082019050919050565b60006020820190508181036000830152613aa381613a67565b9050919050565b600081905092915050565b6000613ac082612cb2565b613aca8185613aaa565b9350613ada818560208601612cce565b80840191505092915050565b6000613af28285613ab5565b9150613afe8284613ab5565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b4482612d6d565b9150613b4f83612d6d565b925082613b5f57613b5e613b0a565b5b828204905092915050565b6000613b7582612d6d565b9150613b8083612d6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bb957613bb861367f565b5b828202905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c20602683612cbd565b9150613c2b82613bc4565b604082019050919050565b60006020820190508181036000830152613c4f81613c13565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613cb2602583612cbd565b9150613cbd82613c56565b604082019050919050565b60006020820190508181036000830152613ce181613ca5565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d44602483612cbd565b9150613d4f82613ce8565b604082019050919050565b60006020820190508181036000830152613d7381613d37565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613db0602083612cbd565b9150613dbb82613d7a565b602082019050919050565b60006020820190508181036000830152613ddf81613da3565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613e1c601083612cbd565b9150613e2782613de6565b602082019050919050565b60006020820190508181036000830152613e4b81613e0f565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e88601983612cbd565b9150613e9382613e52565b602082019050919050565b60006020820190508181036000830152613eb781613e7b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f1a603283612cbd565b9150613f2582613ebe565b604082019050919050565b60006020820190508181036000830152613f4981613f0d565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613f86601483612cbd565b9150613f9182613f50565b602082019050919050565b60006020820190508181036000830152613fb581613f79565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fe382613fbc565b613fed8185613fc7565b9350613ffd818560208601612cce565b61400681612d01565b840191505092915050565b60006080820190506140266000830187612e02565b6140336020830186612e02565b6140406040830185612e98565b81810360608301526140528184613fd8565b905095945050505050565b60008151905061406c81612c23565b92915050565b60006020828403121561408857614087612bed565b5b60006140968482850161405d565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006140fb603583612cbd565b91506141068261409f565b604082019050919050565b6000602082019050818103600083015261412a816140ee565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614167602083612cbd565b915061417282614131565b602082019050919050565b600060208201905081810360008301526141968161415a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006141d3601c83612cbd565b91506141de8261419d565b602082019050919050565b60006020820190508181036000830152614202816141c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122048fac3c0f8c6ba1da4b59a333f75053e705d40c09fef74eba52a4519aff813ca64736f6c63430008090033

Deployed Bytecode Sourcemap

65553:3539:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68877:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43242:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44754:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44272:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60175:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65851:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45454:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66344:828;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;59843:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68430:143;;;;;;;;;;;;;:::i;:::-;;68357:65;;;;;;;;;;;;;:::i;:::-;;67180:694;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45860:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60365:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68190:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20500:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42952:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65902:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42683:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18010:103;;;;;;;;;;;;;:::i;:::-;;68288:61;;;;;;;;;;;;;:::i;:::-;;17362:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43411:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67882:275;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44997:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46116:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65692:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43586:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65805:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65636:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66184:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45223:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18268:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65746:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68877:212;69016:4;69045:36;69069:11;69045:23;:36::i;:::-;69038:43;;68877:212;;;:::o;43242:100::-;43296:13;43329:5;43322:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43242:100;:::o;44754:171::-;44830:7;44850:23;44865:7;44850:14;:23::i;:::-;44893:15;:24;44909:7;44893:24;;;;;;;;;;;;;;;;;;;;;44886:31;;44754:171;;;:::o;44272:416::-;44353:13;44369:23;44384:7;44369:14;:23::i;:::-;44353:39;;44417:5;44411:11;;:2;:11;;;;44403:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44511:5;44495:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44520:37;44537:5;44544:12;:10;:12::i;:::-;44520:16;:37::i;:::-;44495:62;44473:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;44659:21;44668:2;44672:7;44659:8;:21::i;:::-;44342:346;44272:416;;:::o;60175:113::-;60236:7;60263:10;:17;;;;60256:24;;60175:113;:::o;65851:42::-;65891:2;65851:42;:::o;45454:335::-;45649:41;45668:12;:10;:12::i;:::-;45682:7;45649:18;:41::i;:::-;45641:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45753:28;45763:4;45769:2;45773:7;45753:9;:28::i;:::-;45454:335;;;:::o;66344:828::-;66445:12;66472:22;66509:20;66572:13;:11;:13::i;:::-;66557:28;;66618:1;66604:11;:15;66596:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;65891:2;66681:11;:28;;66659:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;66787:24;66826:12;65841:3;66814:24;;;;:::i;:::-;66787:51;;66876:1;66857:16;:20;66849:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;66952:16;66938:11;:30;:89;;67016:11;66938:89;;;66984:16;66938:89;66921:106;;67047:1;67040:8;;67064:9;67059:106;67083:14;67079:1;:18;67059:106;;;67127:26;67151:1;67136:12;:16;;;;:::i;:::-;67127:8;:26::i;:::-;67119:34;;;;;:::i;:::-;;;67099:3;;;;;:::i;:::-;;;;67059:106;;;;66546:626;66344:828;;;;;:::o;59843:256::-;59940:7;59976:23;59993:5;59976:16;:23::i;:::-;59968:5;:31;59960:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;60065:12;:19;60078:5;60065:19;;;;;;;;;;;;;;;:26;60085:5;60065:26;;;;;;;;;;;;60058:33;;59843:256;;;;:::o;68430:143::-;17248:13;:11;:13::i;:::-;68478:15:::1;68496:21;68478:39;;68536:10;68528:28;;:37;68557:7;68528:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68467:106;68430:143::o:0;68357:65::-;17248:13;:11;:13::i;:::-;68404:10:::1;:8;:10::i;:::-;68357:65::o:0;67180:694::-;20105:19;:17;:19::i;:::-;67300:12:::1;67323:22:::0;67356:20:::1;67462:21;67471:11;67462:8;:21::i;:::-;67423:60;;;;;;;;;;;;67515:4;67502:9;:17;;67494:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;67581:9;67576:104;67600:14;67596:1;:18;67576:104;;;67636:32;67646:3;67666:1;67651:12;:16;;;;:::i;:::-;67636:9;:32::i;:::-;67616:3;;;;;:::i;:::-;;;;67576:104;;;;67727:24;67766:4;67754:9;:16;;;;:::i;:::-;67727:43;;67804:1;67785:16;:20;67781:85;;;67828:10;67820:28;;:46;67849:16;67820:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;67781:85;67289:585;;;;67180:694:::0;;:::o;45860:185::-;45998:39;46015:4;46021:2;46025:7;45998:39;;;;;;;;;;;;:16;:39::i;:::-;45860:185;;;:::o;60365:233::-;60440:7;60476:30;:28;:30::i;:::-;60468:5;:38;60460:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;60573:10;60584:5;60573:17;;;;;;;;:::i;:::-;;;;;;;;;;60566:24;;60365:233;;;:::o;68190:90::-;17248:13;:11;:13::i;:::-;68269:3:::1;;68259:7;:13;;;;;;;:::i;:::-;;68190:90:::0;;:::o;20500:86::-;20547:4;20571:7;;;;;;;;;;;20564:14;;20500:86;:::o;42952:223::-;43024:7;43044:13;43060:17;43069:7;43060:8;:17::i;:::-;43044:33;;43113:1;43096:19;;:5;:19;;;;43088:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;43162:5;43155:12;;;42952:223;;;:::o;65902:89::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42683:207::-;42755:7;42800:1;42783:19;;:5;:19;;;;42775:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42866:9;:16;42876:5;42866:16;;;;;;;;;;;;;;;;42859:23;;42683:207;;;:::o;18010:103::-;17248:13;:11;:13::i;:::-;18075:30:::1;18102:1;18075:18;:30::i;:::-;18010:103::o:0;68288:61::-;17248:13;:11;:13::i;:::-;68333:8:::1;:6;:8::i;:::-;68288:61::o:0;17362:87::-;17408:7;17435:6;;;;;;;;;;;17428:13;;17362:87;:::o;43411:104::-;43467:13;43500:7;43493:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43411:104;:::o;67882:275::-;67924:23;67960:13;67976;:11;:13::i;:::-;67960:29;;68023:5;68009:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68000:29;;68045:9;68040:86;68064:5;68060:1;:9;68040:86;;;68103:11;68112:1;68103:8;:11::i;:::-;68091:6;68098:1;68091:9;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;68071:3;;;;:::i;:::-;;;68040:86;;;;68136:13;67882:275;:::o;44997:155::-;45092:52;45111:12;:10;:12::i;:::-;45125:8;45135;45092:18;:52::i;:::-;44997:155;;:::o;46116:322::-;46290:41;46309:12;:10;:12::i;:::-;46323:7;46290:18;:41::i;:::-;46282:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;46392:38;46406:4;46412:2;46416:7;46425:4;46392:13;:38::i;:::-;46116:322;;;;:::o;65692:47::-;65737:2;65692:47;:::o;43586:281::-;43659:13;43685:23;43700:7;43685:14;:23::i;:::-;43721:21;43745:10;:8;:10::i;:::-;43721:34;;43797:1;43779:7;43773:21;:25;:86;;;;;;;;;;;;;;;;;43825:7;43834:18;:7;:16;:18::i;:::-;43808:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43773:86;43766:93;;;43586:281;;;:::o;65805:39::-;65841:3;65805:39;:::o;65636:49::-;65675:10;65636:49;:::o;66184:152::-;66240:7;65786:10;65737:2;66283:7;:28;;;;:::i;:::-;66282:46;;;;:::i;:::-;65675:10;66267:61;;;;:::i;:::-;66260:68;;66184:152;;;:::o;45223:164::-;45320:4;45344:18;:25;45363:5;45344:25;;;;;;;;;;;;;;;:35;45370:8;45344:35;;;;;;;;;;;;;;;;;;;;;;;;;45337:42;;45223:164;;;;:::o;18268:201::-;17248:13;:11;:13::i;:::-;18377:1:::1;18357:22;;:8;:22;;;;18349:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18433:28;18452:8;18433:18;:28::i;:::-;18268:201:::0;:::o;65746:50::-;65786:10;65746:50;:::o;59535:224::-;59637:4;59676:35;59661:50;;;:11;:50;;;;:90;;;;59715:36;59739:11;59715:23;:36::i;:::-;59661:90;59654:97;;59535:224;;;:::o;54573:135::-;54655:16;54663:7;54655;:16::i;:::-;54647:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54573:135;:::o;15913:98::-;15966:7;15993:10;15986:17;;15913:98;:::o;53852:174::-;53954:2;53927:15;:24;53943:7;53927:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;54010:7;54006:2;53972:46;;53981:23;53996:7;53981:14;:23::i;:::-;53972:46;;;;;;;;;;;;53852:174;;:::o;48471:264::-;48564:4;48581:13;48597:23;48612:7;48597:14;:23::i;:::-;48581:39;;48650:5;48639:16;;:7;:16;;;:52;;;;48659:32;48676:5;48683:7;48659:16;:32::i;:::-;48639:52;:87;;;;48719:7;48695:31;;:20;48707:7;48695:11;:20::i;:::-;:31;;;48639:87;48631:96;;;48471:264;;;;:::o;52470:1263::-;52629:4;52602:31;;:23;52617:7;52602:14;:23::i;:::-;:31;;;52594:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;52708:1;52694:16;;:2;:16;;;;52686:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;52764:42;52785:4;52791:2;52795:7;52804:1;52764:20;:42::i;:::-;52936:4;52909:31;;:23;52924:7;52909:14;:23::i;:::-;:31;;;52901:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53054:15;:24;53070:7;53054:24;;;;;;;;;;;;53047:31;;;;;;;;;;;53549:1;53530:9;:15;53540:4;53530:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;53582:1;53565:9;:13;53575:2;53565:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;53624:2;53605:7;:16;53613:7;53605:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;53663:7;53659:2;53644:27;;53653:4;53644:27;;;;;;;;;;;;53684:41;53704:4;53710:2;53714:7;53723:1;53684:19;:41::i;:::-;52470:1263;;;:::o;17527:132::-;17602:12;:10;:12::i;:::-;17591:23;;:7;:5;:7::i;:::-;:23;;;17583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17527:132::o;21355:120::-;20364:16;:14;:16::i;:::-;21424:5:::1;21414:7;;:15;;;;;;;;;;;;;;;;;;21445:22;21454:12;:10;:12::i;:::-;21445:22;;;;;;:::i;:::-;;;;;;;;21355:120::o:0;20659:108::-;20730:8;:6;:8::i;:::-;20729:9;20721:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;20659:108::o;49077:110::-;49153:26;49163:2;49167:7;49153:26;;;;;;;;;;;;:9;:26::i;:::-;49077:110;;:::o;47746:117::-;47812:7;47839;:16;47847:7;47839:16;;;;;;;;;;;;;;;;;;;;;47832:23;;47746:117;;;:::o;18629:191::-;18703:16;18722:6;;;;;;;;;;;18703:25;;18748:8;18739:6;;:17;;;;;;;;;;;;;;;;;;18803:8;18772:40;;18793:8;18772:40;;;;;;;;;;;;18692:128;18629:191;:::o;21096:118::-;20105:19;:17;:19::i;:::-;21166:4:::1;21156:7;;:14;;;;;;;;;;;;;;;;;;21186:20;21193:12;:10;:12::i;:::-;21186:20;;;;;;:::i;:::-;;;;;;;;21096:118::o:0;54169:315::-;54324:8;54315:17;;:5;:17;;;;54307:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;54411:8;54373:18;:25;54392:5;54373:25;;;;;;;;;;;;;;;:35;54399:8;54373:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;54457:8;54435:41;;54450:5;54435:41;;;54467:8;54435:41;;;;;;:::i;:::-;;;;;;;;54169:315;;;:::o;47319:313::-;47475:28;47485:4;47491:2;47495:7;47475:9;:28::i;:::-;47522:47;47545:4;47551:2;47555:7;47564:4;47522:22;:47::i;:::-;47514:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;47319:313;;;;:::o;66076:100::-;66128:13;66161:7;66154:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66076:100;:::o;13340:716::-;13396:13;13447:14;13484:1;13464:17;13475:5;13464:10;:17::i;:::-;:21;13447:38;;13500:20;13534:6;13523:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13500:41;;13556:11;13685:6;13681:2;13677:15;13669:6;13665:28;13658:35;;13722:288;13729:4;13722:288;;;13754:5;;;;;;;;13896:8;13891:2;13884:5;13880:14;13875:30;13870:3;13862:44;13952:2;13943:11;;;;;;:::i;:::-;;;;;13986:1;13977:5;:10;13973:21;;;13989:5;;13973:21;13722:288;;;14031:6;14024:13;;;;;13340:716;;;:::o;42314:305::-;42416:4;42468:25;42453:40;;;:11;:40;;;;:105;;;;42525:33;42510:48;;;:11;:48;;;;42453:105;:158;;;;42575:36;42599:11;42575:23;:36::i;:::-;42453:158;42433:178;;42314:305;;;:::o;48176:128::-;48241:4;48294:1;48265:31;;:17;48274:7;48265:8;:17::i;:::-;:31;;;;48258:38;;48176:128;;;:::o;68601:268::-;20105:19;:17;:19::i;:::-;68805:56:::1;68832:4;68838:2;68842:7;68851:9;68805:26;:56::i;:::-;68601:268:::0;;;;:::o;57738:158::-;;;;;:::o;20844:108::-;20911:8;:6;:8::i;:::-;20903:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;20844:108::o;49414:319::-;49543:18;49549:2;49553:7;49543:5;:18::i;:::-;49594:53;49625:1;49629:2;49633:7;49642:4;49594:22;:53::i;:::-;49572:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;49414:319;;;:::o;55272:853::-;55426:4;55447:15;:2;:13;;;:15::i;:::-;55443:675;;;55499:2;55483:36;;;55520:12;:10;:12::i;:::-;55534:4;55540:7;55549:4;55483:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55479:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55741:1;55724:6;:13;:18;55720:328;;;55767:60;;;;;;;;;;:::i;:::-;;;;;;;;55720:328;55998:6;55992:13;55983:6;55979:2;55975:15;55968:38;55479:584;55615:41;;;55605:51;;;:6;:51;;;;55598:58;;;;;55443:675;56102:4;56095:11;;55272:853;;;;;;;:::o;10206:922::-;10259:7;10279:14;10296:1;10279:18;;10346:6;10337:5;:15;10333:102;;10382:6;10373:15;;;;;;:::i;:::-;;;;;10417:2;10407:12;;;;10333:102;10462:6;10453:5;:15;10449:102;;10498:6;10489:15;;;;;;:::i;:::-;;;;;10533:2;10523:12;;;;10449:102;10578:6;10569:5;:15;10565:102;;10614:6;10605:15;;;;;;:::i;:::-;;;;;10649:2;10639:12;;;;10565:102;10694:5;10685;:14;10681:99;;10729:5;10720:14;;;;;;:::i;:::-;;;;;10763:1;10753:11;;;;10681:99;10807:5;10798;:14;10794:99;;10842:5;10833:14;;;;;;:::i;:::-;;;;;10876:1;10866:11;;;;10794:99;10920:5;10911;:14;10907:99;;10955:5;10946:14;;;;;;:::i;:::-;;;;;10989:1;10979:11;;;;10907:99;11033:5;11024;:14;11020:66;;11069:1;11059:11;;;;11020:66;11114:6;11107:13;;;10206:922;;;:::o;33746:157::-;33831:4;33870:25;33855:40;;;:11;:40;;;;33848:47;;33746:157;;;:::o;60672:915::-;60849:61;60876:4;60882:2;60886:12;60900:9;60849:26;:61::i;:::-;60939:1;60927:9;:13;60923:222;;;61070:63;;;;;;;;;;:::i;:::-;;;;;;;;60923:222;61157:15;61175:12;61157:30;;61220:1;61204:18;;:4;:18;;;61200:187;;;61239:40;61271:7;61239:31;:40::i;:::-;61200:187;;;61309:2;61301:10;;:4;:10;;;61297:90;;61328:47;61361:4;61367:7;61328:32;:47::i;:::-;61297:90;61200:187;61415:1;61401:16;;:2;:16;;;61397:183;;;61434:45;61471:7;61434:36;:45::i;:::-;61397:183;;;61507:4;61501:10;;:2;:10;;;61497:83;;61528:40;61556:2;61560:7;61528:27;:40::i;:::-;61497:83;61397:183;60838:749;60672:915;;;;:::o;50069:942::-;50163:1;50149:16;;:2;:16;;;;50141:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50222:16;50230:7;50222;:16::i;:::-;50221:17;50213:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50284:48;50313:1;50317:2;50321:7;50330:1;50284:20;:48::i;:::-;50431:16;50439:7;50431;:16::i;:::-;50430:17;50422:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50846:1;50829:9;:13;50839:2;50829:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;50890:2;50871:7;:16;50879:7;50871:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50935:7;50931:2;50910:33;;50927:1;50910:33;;;;;;;;;;;;50956:47;50984:1;50988:2;50992:7;51001:1;50956:19;:47::i;:::-;50069:942;;:::o;22715:326::-;22775:4;23032:1;23010:7;:19;;;:23;23003:30;;22715:326;;;:::o;56857:159::-;;;;;:::o;62310:164::-;62414:10;:17;;;;62387:15;:24;62403:7;62387:24;;;;;;;;;;;:44;;;;62442:10;62458:7;62442:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62310:164;:::o;63101:988::-;63367:22;63417:1;63392:22;63409:4;63392:16;:22::i;:::-;:26;;;;:::i;:::-;63367:51;;63429:18;63450:17;:26;63468:7;63450:26;;;;;;;;;;;;63429:47;;63597:14;63583:10;:28;63579:328;;63628:19;63650:12;:18;63663:4;63650:18;;;;;;;;;;;;;;;:34;63669:14;63650:34;;;;;;;;;;;;63628:56;;63734:11;63701:12;:18;63714:4;63701:18;;;;;;;;;;;;;;;:30;63720:10;63701:30;;;;;;;;;;;:44;;;;63851:10;63818:17;:30;63836:11;63818:30;;;;;;;;;;;:43;;;;63613:294;63579:328;64003:17;:26;64021:7;64003:26;;;;;;;;;;;63996:33;;;64047:12;:18;64060:4;64047:18;;;;;;;;;;;;;;;:34;64066:14;64047:34;;;;;;;;;;;64040:41;;;63182:907;;63101:988;;:::o;64384:1079::-;64637:22;64682:1;64662:10;:17;;;;:21;;;;:::i;:::-;64637:46;;64694:18;64715:15;:24;64731:7;64715:24;;;;;;;;;;;;64694:45;;65066:19;65088:10;65099:14;65088:26;;;;;;;;:::i;:::-;;;;;;;;;;65066:48;;65152:11;65127:10;65138;65127:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;65263:10;65232:15;:28;65248:11;65232:28;;;;;;;;;;;:41;;;;65404:15;:24;65420:7;65404:24;;;;;;;;;;;65397:31;;;65439:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;64455:1008;;;64384:1079;:::o;61888:221::-;61973:14;61990:20;62007:2;61990:16;:20::i;:::-;61973:37;;62048:7;62021:12;:16;62034:2;62021:16;;;;;;;;;;;;;;;:24;62038:6;62021:24;;;;;;;;;;;:34;;;;62095:6;62066:17;:26;62084:7;62066:26;;;;;;;;;;;:35;;;;61962:147;61888:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:442::-;6064:4;6102:2;6091:9;6087:18;6079:26;;6115:71;6183:1;6172:9;6168:17;6159:6;6115:71;:::i;:::-;6196:72;6264:2;6253:9;6249:18;6240:6;6196:72;:::i;:::-;6278;6346:2;6335:9;6331:18;6322:6;6278:72;:::i;:::-;5915:442;;;;;;:::o;6363:117::-;6472:1;6469;6462:12;6486:117;6595:1;6592;6585:12;6609:117;6718:1;6715;6708:12;6746:553;6804:8;6814:6;6864:3;6857:4;6849:6;6845:17;6841:27;6831:122;;6872:79;;:::i;:::-;6831:122;6985:6;6972:20;6962:30;;7015:18;7007:6;7004:30;7001:117;;;7037:79;;:::i;:::-;7001:117;7151:4;7143:6;7139:17;7127:29;;7205:3;7197:4;7189:6;7185:17;7175:8;7171:32;7168:41;7165:128;;;7212:79;;:::i;:::-;7165:128;6746:553;;;;;:::o;7305:529::-;7376:6;7384;7433:2;7421:9;7412:7;7408:23;7404:32;7401:119;;;7439:79;;:::i;:::-;7401:119;7587:1;7576:9;7572:17;7559:31;7617:18;7609:6;7606:30;7603:117;;;7639:79;;:::i;:::-;7603:117;7752:65;7809:7;7800:6;7789:9;7785:22;7752:65;:::i;:::-;7734:83;;;;7530:297;7305:529;;;;;:::o;7840:329::-;7899:6;7948:2;7936:9;7927:7;7923:23;7919:32;7916:119;;;7954:79;;:::i;:::-;7916:119;8074:1;8099:53;8144:7;8135:6;8124:9;8120:22;8099:53;:::i;:::-;8089:63;;8045:117;7840:329;;;;:::o;8175:114::-;8242:6;8276:5;8270:12;8260:22;;8175:114;;;:::o;8295:184::-;8394:11;8428:6;8423:3;8416:19;8468:4;8463:3;8459:14;8444:29;;8295:184;;;;:::o;8485:132::-;8552:4;8575:3;8567:11;;8605:4;8600:3;8596:14;8588:22;;8485:132;;;:::o;8623:108::-;8700:24;8718:5;8700:24;:::i;:::-;8695:3;8688:37;8623:108;;:::o;8737:179::-;8806:10;8827:46;8869:3;8861:6;8827:46;:::i;:::-;8905:4;8900:3;8896:14;8882:28;;8737:179;;;;:::o;8922:113::-;8992:4;9024;9019:3;9015:14;9007:22;;8922:113;;;:::o;9071:732::-;9190:3;9219:54;9267:5;9219:54;:::i;:::-;9289:86;9368:6;9363:3;9289:86;:::i;:::-;9282:93;;9399:56;9449:5;9399:56;:::i;:::-;9478:7;9509:1;9494:284;9519:6;9516:1;9513:13;9494:284;;;9595:6;9589:13;9622:63;9681:3;9666:13;9622:63;:::i;:::-;9615:70;;9708:60;9761:6;9708:60;:::i;:::-;9698:70;;9554:224;9541:1;9538;9534:9;9529:14;;9494:284;;;9498:14;9794:3;9787:10;;9195:608;;;9071:732;;;;:::o;9809:373::-;9952:4;9990:2;9979:9;9975:18;9967:26;;10039:9;10033:4;10029:20;10025:1;10014:9;10010:17;10003:47;10067:108;10170:4;10161:6;10067:108;:::i;:::-;10059:116;;9809:373;;;;:::o;10188:116::-;10258:21;10273:5;10258:21;:::i;:::-;10251:5;10248:32;10238:60;;10294:1;10291;10284:12;10238:60;10188:116;:::o;10310:133::-;10353:5;10391:6;10378:20;10369:29;;10407:30;10431:5;10407:30;:::i;:::-;10310:133;;;;:::o;10449:468::-;10514:6;10522;10571:2;10559:9;10550:7;10546:23;10542:32;10539:119;;;10577:79;;:::i;:::-;10539:119;10697:1;10722:53;10767:7;10758:6;10747:9;10743:22;10722:53;:::i;:::-;10712:63;;10668:117;10824:2;10850:50;10892:7;10883:6;10872:9;10868:22;10850:50;:::i;:::-;10840:60;;10795:115;10449:468;;;;;:::o;10923:117::-;11032:1;11029;11022:12;11046:180;11094:77;11091:1;11084:88;11191:4;11188:1;11181:15;11215:4;11212:1;11205:15;11232:281;11315:27;11337:4;11315:27;:::i;:::-;11307:6;11303:40;11445:6;11433:10;11430:22;11409:18;11397:10;11394:34;11391:62;11388:88;;;11456:18;;:::i;:::-;11388:88;11496:10;11492:2;11485:22;11275:238;11232:281;;:::o;11519:129::-;11553:6;11580:20;;:::i;:::-;11570:30;;11609:33;11637:4;11629:6;11609:33;:::i;:::-;11519:129;;;:::o;11654:307::-;11715:4;11805:18;11797:6;11794:30;11791:56;;;11827:18;;:::i;:::-;11791:56;11865:29;11887:6;11865:29;:::i;:::-;11857:37;;11949:4;11943;11939:15;11931:23;;11654:307;;;:::o;11967:154::-;12051:6;12046:3;12041;12028:30;12113:1;12104:6;12099:3;12095:16;12088:27;11967:154;;;:::o;12127:410::-;12204:5;12229:65;12245:48;12286:6;12245:48;:::i;:::-;12229:65;:::i;:::-;12220:74;;12317:6;12310:5;12303:21;12355:4;12348:5;12344:16;12393:3;12384:6;12379:3;12375:16;12372:25;12369:112;;;12400:79;;:::i;:::-;12369:112;12490:41;12524:6;12519:3;12514;12490:41;:::i;:::-;12210:327;12127:410;;;;;:::o;12556:338::-;12611:5;12660:3;12653:4;12645:6;12641:17;12637:27;12627:122;;12668:79;;:::i;:::-;12627:122;12785:6;12772:20;12810:78;12884:3;12876:6;12869:4;12861:6;12857:17;12810:78;:::i;:::-;12801:87;;12617:277;12556:338;;;;:::o;12900:943::-;12995:6;13003;13011;13019;13068:3;13056:9;13047:7;13043:23;13039:33;13036:120;;;13075:79;;:::i;:::-;13036:120;13195:1;13220:53;13265:7;13256:6;13245:9;13241:22;13220:53;:::i;:::-;13210:63;;13166:117;13322:2;13348:53;13393:7;13384:6;13373:9;13369:22;13348:53;:::i;:::-;13338:63;;13293:118;13450:2;13476:53;13521:7;13512:6;13501:9;13497:22;13476:53;:::i;:::-;13466:63;;13421:118;13606:2;13595:9;13591:18;13578:32;13637:18;13629:6;13626:30;13623:117;;;13659:79;;:::i;:::-;13623:117;13764:62;13818:7;13809:6;13798:9;13794:22;13764:62;:::i;:::-;13754:72;;13549:287;12900:943;;;;;;;:::o;13849:474::-;13917:6;13925;13974:2;13962:9;13953:7;13949:23;13945:32;13942:119;;;13980:79;;:::i;:::-;13942:119;14100:1;14125:53;14170:7;14161:6;14150:9;14146:22;14125:53;:::i;:::-;14115:63;;14071:117;14227:2;14253:53;14298:7;14289:6;14278:9;14274:22;14253:53;:::i;:::-;14243:63;;14198:118;13849:474;;;;;:::o;14329:180::-;14377:77;14374:1;14367:88;14474:4;14471:1;14464:15;14498:4;14495:1;14488:15;14515:320;14559:6;14596:1;14590:4;14586:12;14576:22;;14643:1;14637:4;14633:12;14664:18;14654:81;;14720:4;14712:6;14708:17;14698:27;;14654:81;14782:2;14774:6;14771:14;14751:18;14748:38;14745:84;;;14801:18;;:::i;:::-;14745:84;14566:269;14515:320;;;:::o;14841:220::-;14981:34;14977:1;14969:6;14965:14;14958:58;15050:3;15045:2;15037:6;15033:15;15026:28;14841:220;:::o;15067:366::-;15209:3;15230:67;15294:2;15289:3;15230:67;:::i;:::-;15223:74;;15306:93;15395:3;15306:93;:::i;:::-;15424:2;15419:3;15415:12;15408:19;;15067:366;;;:::o;15439:419::-;15605:4;15643:2;15632:9;15628:18;15620:26;;15692:9;15686:4;15682:20;15678:1;15667:9;15663:17;15656:47;15720:131;15846:4;15720:131;:::i;:::-;15712:139;;15439:419;;;:::o;15864:248::-;16004:34;16000:1;15992:6;15988:14;15981:58;16073:31;16068:2;16060:6;16056:15;16049:56;15864:248;:::o;16118:366::-;16260:3;16281:67;16345:2;16340:3;16281:67;:::i;:::-;16274:74;;16357:93;16446:3;16357:93;:::i;:::-;16475:2;16470:3;16466:12;16459:19;;16118:366;;;:::o;16490:419::-;16656:4;16694:2;16683:9;16679:18;16671:26;;16743:9;16737:4;16733:20;16729:1;16718:9;16714:17;16707:47;16771:131;16897:4;16771:131;:::i;:::-;16763:139;;16490:419;;;:::o;16915:232::-;17055:34;17051:1;17043:6;17039:14;17032:58;17124:15;17119:2;17111:6;17107:15;17100:40;16915:232;:::o;17153:366::-;17295:3;17316:67;17380:2;17375:3;17316:67;:::i;:::-;17309:74;;17392:93;17481:3;17392:93;:::i;:::-;17510:2;17505:3;17501:12;17494:19;;17153:366;;;:::o;17525:419::-;17691:4;17729:2;17718:9;17714:18;17706:26;;17778:9;17772:4;17768:20;17764:1;17753:9;17749:17;17742:47;17806:131;17932:4;17806:131;:::i;:::-;17798:139;;17525:419;;;:::o;17950:174::-;18090:26;18086:1;18078:6;18074:14;18067:50;17950:174;:::o;18130:366::-;18272:3;18293:67;18357:2;18352:3;18293:67;:::i;:::-;18286:74;;18369:93;18458:3;18369:93;:::i;:::-;18487:2;18482:3;18478:12;18471:19;;18130:366;;;:::o;18502:419::-;18668:4;18706:2;18695:9;18691:18;18683:26;;18755:9;18749:4;18745:20;18741:1;18730:9;18726:17;18719:47;18783:131;18909:4;18783:131;:::i;:::-;18775:139;;18502:419;;;:::o;18927:224::-;19067:34;19063:1;19055:6;19051:14;19044:58;19136:7;19131:2;19123:6;19119:15;19112:32;18927:224;:::o;19157:366::-;19299:3;19320:67;19384:2;19379:3;19320:67;:::i;:::-;19313:74;;19396:93;19485:3;19396:93;:::i;:::-;19514:2;19509:3;19505:12;19498:19;;19157:366;;;:::o;19529:419::-;19695:4;19733:2;19722:9;19718:18;19710:26;;19782:9;19776:4;19772:20;19768:1;19757:9;19753:17;19746:47;19810:131;19936:4;19810:131;:::i;:::-;19802:139;;19529:419;;;:::o;19954:180::-;20002:77;19999:1;19992:88;20099:4;20096:1;20089:15;20123:4;20120:1;20113:15;20140:191;20180:4;20200:20;20218:1;20200:20;:::i;:::-;20195:25;;20234:20;20252:1;20234:20;:::i;:::-;20229:25;;20273:1;20270;20267:8;20264:34;;;20278:18;;:::i;:::-;20264:34;20323:1;20320;20316:9;20308:17;;20140:191;;;;:::o;20337:178::-;20477:30;20473:1;20465:6;20461:14;20454:54;20337:178;:::o;20521:366::-;20663:3;20684:67;20748:2;20743:3;20684:67;:::i;:::-;20677:74;;20760:93;20849:3;20760:93;:::i;:::-;20878:2;20873:3;20869:12;20862:19;;20521:366;;;:::o;20893:419::-;21059:4;21097:2;21086:9;21082:18;21074:26;;21146:9;21140:4;21136:20;21132:1;21121:9;21117:17;21110:47;21174:131;21300:4;21174:131;:::i;:::-;21166:139;;20893:419;;;:::o;21318:305::-;21358:3;21377:20;21395:1;21377:20;:::i;:::-;21372:25;;21411:20;21429:1;21411:20;:::i;:::-;21406:25;;21565:1;21497:66;21493:74;21490:1;21487:81;21484:107;;;21571:18;;:::i;:::-;21484:107;21615:1;21612;21608:9;21601:16;;21318:305;;;;:::o;21629:233::-;21668:3;21691:24;21709:5;21691:24;:::i;:::-;21682:33;;21737:66;21730:5;21727:77;21724:103;;;21807:18;;:::i;:::-;21724:103;21854:1;21847:5;21843:13;21836:20;;21629:233;;;:::o;21868:230::-;22008:34;22004:1;21996:6;21992:14;21985:58;22077:13;22072:2;22064:6;22060:15;22053:38;21868:230;:::o;22104:366::-;22246:3;22267:67;22331:2;22326:3;22267:67;:::i;:::-;22260:74;;22343:93;22432:3;22343:93;:::i;:::-;22461:2;22456:3;22452:12;22445:19;;22104:366;;;:::o;22476:419::-;22642:4;22680:2;22669:9;22665:18;22657:26;;22729:9;22723:4;22719:20;22715:1;22704:9;22700:17;22693:47;22757:131;22883:4;22757:131;:::i;:::-;22749:139;;22476:419;;;:::o;22901:166::-;23041:18;23037:1;23029:6;23025:14;23018:42;22901:166;:::o;23073:366::-;23215:3;23236:67;23300:2;23295:3;23236:67;:::i;:::-;23229:74;;23312:93;23401:3;23312:93;:::i;:::-;23430:2;23425:3;23421:12;23414:19;;23073:366;;;:::o;23445:419::-;23611:4;23649:2;23638:9;23634:18;23626:26;;23698:9;23692:4;23688:20;23684:1;23673:9;23669:17;23662:47;23726:131;23852:4;23726:131;:::i;:::-;23718:139;;23445:419;;;:::o;23870:231::-;24010:34;24006:1;23998:6;23994:14;23987:58;24079:14;24074:2;24066:6;24062:15;24055:39;23870:231;:::o;24107:366::-;24249:3;24270:67;24334:2;24329:3;24270:67;:::i;:::-;24263:74;;24346:93;24435:3;24346:93;:::i;:::-;24464:2;24459:3;24455:12;24448:19;;24107:366;;;:::o;24479:419::-;24645:4;24683:2;24672:9;24668:18;24660:26;;24732:9;24726:4;24722:20;24718:1;24707:9;24703:17;24696:47;24760:131;24886:4;24760:131;:::i;:::-;24752:139;;24479:419;;;:::o;24904:180::-;24952:77;24949:1;24942:88;25049:4;25046:1;25039:15;25073:4;25070:1;25063:15;25090:174;25230:26;25226:1;25218:6;25214:14;25207:50;25090:174;:::o;25270:366::-;25412:3;25433:67;25497:2;25492:3;25433:67;:::i;:::-;25426:74;;25509:93;25598:3;25509:93;:::i;:::-;25627:2;25622:3;25618:12;25611:19;;25270:366;;;:::o;25642:419::-;25808:4;25846:2;25835:9;25831:18;25823:26;;25895:9;25889:4;25885:20;25881:1;25870:9;25866:17;25859:47;25923:131;26049:4;25923:131;:::i;:::-;25915:139;;25642:419;;;:::o;26067:228::-;26207:34;26203:1;26195:6;26191:14;26184:58;26276:11;26271:2;26263:6;26259:15;26252:36;26067:228;:::o;26301:366::-;26443:3;26464:67;26528:2;26523:3;26464:67;:::i;:::-;26457:74;;26540:93;26629:3;26540:93;:::i;:::-;26658:2;26653:3;26649:12;26642:19;;26301:366;;;:::o;26673:419::-;26839:4;26877:2;26866:9;26862:18;26854:26;;26926:9;26920:4;26916:20;26912:1;26901:9;26897:17;26890:47;26954:131;27080:4;26954:131;:::i;:::-;26946:139;;26673:419;;;:::o;27098:148::-;27200:11;27237:3;27222:18;;27098:148;;;;:::o;27252:377::-;27358:3;27386:39;27419:5;27386:39;:::i;:::-;27441:89;27523:6;27518:3;27441:89;:::i;:::-;27434:96;;27539:52;27584:6;27579:3;27572:4;27565:5;27561:16;27539:52;:::i;:::-;27616:6;27611:3;27607:16;27600:23;;27362:267;27252:377;;;;:::o;27635:435::-;27815:3;27837:95;27928:3;27919:6;27837:95;:::i;:::-;27830:102;;27949:95;28040:3;28031:6;27949:95;:::i;:::-;27942:102;;28061:3;28054:10;;27635:435;;;;;:::o;28076:180::-;28124:77;28121:1;28114:88;28221:4;28218:1;28211:15;28245:4;28242:1;28235:15;28262:185;28302:1;28319:20;28337:1;28319:20;:::i;:::-;28314:25;;28353:20;28371:1;28353:20;:::i;:::-;28348:25;;28392:1;28382:35;;28397:18;;:::i;:::-;28382:35;28439:1;28436;28432:9;28427:14;;28262:185;;;;:::o;28453:348::-;28493:7;28516:20;28534:1;28516:20;:::i;:::-;28511:25;;28550:20;28568:1;28550:20;:::i;:::-;28545:25;;28738:1;28670:66;28666:74;28663:1;28660:81;28655:1;28648:9;28641:17;28637:105;28634:131;;;28745:18;;:::i;:::-;28634:131;28793:1;28790;28786:9;28775:20;;28453:348;;;;:::o;28807:225::-;28947:34;28943:1;28935:6;28931:14;28924:58;29016:8;29011:2;29003:6;28999:15;28992:33;28807:225;:::o;29038:366::-;29180:3;29201:67;29265:2;29260:3;29201:67;:::i;:::-;29194:74;;29277:93;29366:3;29277:93;:::i;:::-;29395:2;29390:3;29386:12;29379:19;;29038:366;;;:::o;29410:419::-;29576:4;29614:2;29603:9;29599:18;29591:26;;29663:9;29657:4;29653:20;29649:1;29638:9;29634:17;29627:47;29691:131;29817:4;29691:131;:::i;:::-;29683:139;;29410:419;;;:::o;29835:224::-;29975:34;29971:1;29963:6;29959:14;29952:58;30044:7;30039:2;30031:6;30027:15;30020:32;29835:224;:::o;30065:366::-;30207:3;30228:67;30292:2;30287:3;30228:67;:::i;:::-;30221:74;;30304:93;30393:3;30304:93;:::i;:::-;30422:2;30417:3;30413:12;30406:19;;30065:366;;;:::o;30437:419::-;30603:4;30641:2;30630:9;30626:18;30618:26;;30690:9;30684:4;30680:20;30676:1;30665:9;30661:17;30654:47;30718:131;30844:4;30718:131;:::i;:::-;30710:139;;30437:419;;;:::o;30862:223::-;31002:34;30998:1;30990:6;30986:14;30979:58;31071:6;31066:2;31058:6;31054:15;31047:31;30862:223;:::o;31091:366::-;31233:3;31254:67;31318:2;31313:3;31254:67;:::i;:::-;31247:74;;31330:93;31419:3;31330:93;:::i;:::-;31448:2;31443:3;31439:12;31432:19;;31091:366;;;:::o;31463:419::-;31629:4;31667:2;31656:9;31652:18;31644:26;;31716:9;31710:4;31706:20;31702:1;31691:9;31687:17;31680:47;31744:131;31870:4;31744:131;:::i;:::-;31736:139;;31463:419;;;:::o;31888:182::-;32028:34;32024:1;32016:6;32012:14;32005:58;31888:182;:::o;32076:366::-;32218:3;32239:67;32303:2;32298:3;32239:67;:::i;:::-;32232:74;;32315:93;32404:3;32315:93;:::i;:::-;32433:2;32428:3;32424:12;32417:19;;32076:366;;;:::o;32448:419::-;32614:4;32652:2;32641:9;32637:18;32629:26;;32701:9;32695:4;32691:20;32687:1;32676:9;32672:17;32665:47;32729:131;32855:4;32729:131;:::i;:::-;32721:139;;32448:419;;;:::o;32873:166::-;33013:18;33009:1;33001:6;32997:14;32990:42;32873:166;:::o;33045:366::-;33187:3;33208:67;33272:2;33267:3;33208:67;:::i;:::-;33201:74;;33284:93;33373:3;33284:93;:::i;:::-;33402:2;33397:3;33393:12;33386:19;;33045:366;;;:::o;33417:419::-;33583:4;33621:2;33610:9;33606:18;33598:26;;33670:9;33664:4;33660:20;33656:1;33645:9;33641:17;33634:47;33698:131;33824:4;33698:131;:::i;:::-;33690:139;;33417:419;;;:::o;33842:175::-;33982:27;33978:1;33970:6;33966:14;33959:51;33842:175;:::o;34023:366::-;34165:3;34186:67;34250:2;34245:3;34186:67;:::i;:::-;34179:74;;34262:93;34351:3;34262:93;:::i;:::-;34380:2;34375:3;34371:12;34364:19;;34023:366;;;:::o;34395:419::-;34561:4;34599:2;34588:9;34584:18;34576:26;;34648:9;34642:4;34638:20;34634:1;34623:9;34619:17;34612:47;34676:131;34802:4;34676:131;:::i;:::-;34668:139;;34395:419;;;:::o;34820:237::-;34960:34;34956:1;34948:6;34944:14;34937:58;35029:20;35024:2;35016:6;35012:15;35005:45;34820:237;:::o;35063:366::-;35205:3;35226:67;35290:2;35285:3;35226:67;:::i;:::-;35219:74;;35302:93;35391:3;35302:93;:::i;:::-;35420:2;35415:3;35411:12;35404:19;;35063:366;;;:::o;35435:419::-;35601:4;35639:2;35628:9;35624:18;35616:26;;35688:9;35682:4;35678:20;35674:1;35663:9;35659:17;35652:47;35716:131;35842:4;35716:131;:::i;:::-;35708:139;;35435:419;;;:::o;35860:170::-;36000:22;35996:1;35988:6;35984:14;35977:46;35860:170;:::o;36036:366::-;36178:3;36199:67;36263:2;36258:3;36199:67;:::i;:::-;36192:74;;36275:93;36364:3;36275:93;:::i;:::-;36393:2;36388:3;36384:12;36377:19;;36036:366;;;:::o;36408:419::-;36574:4;36612:2;36601:9;36597:18;36589:26;;36661:9;36655:4;36651:20;36647:1;36636:9;36632:17;36625:47;36689:131;36815:4;36689:131;:::i;:::-;36681:139;;36408:419;;;:::o;36833:98::-;36884:6;36918:5;36912:12;36902:22;;36833:98;;;:::o;36937:168::-;37020:11;37054:6;37049:3;37042:19;37094:4;37089:3;37085:14;37070:29;;36937:168;;;;:::o;37111:360::-;37197:3;37225:38;37257:5;37225:38;:::i;:::-;37279:70;37342:6;37337:3;37279:70;:::i;:::-;37272:77;;37358:52;37403:6;37398:3;37391:4;37384:5;37380:16;37358:52;:::i;:::-;37435:29;37457:6;37435:29;:::i;:::-;37430:3;37426:39;37419:46;;37201:270;37111:360;;;;:::o;37477:640::-;37672:4;37710:3;37699:9;37695:19;37687:27;;37724:71;37792:1;37781:9;37777:17;37768:6;37724:71;:::i;:::-;37805:72;37873:2;37862:9;37858:18;37849:6;37805:72;:::i;:::-;37887;37955:2;37944:9;37940:18;37931:6;37887:72;:::i;:::-;38006:9;38000:4;37996:20;37991:2;37980:9;37976:18;37969:48;38034:76;38105:4;38096:6;38034:76;:::i;:::-;38026:84;;37477:640;;;;;;;:::o;38123:141::-;38179:5;38210:6;38204:13;38195:22;;38226:32;38252:5;38226:32;:::i;:::-;38123:141;;;;:::o;38270:349::-;38339:6;38388:2;38376:9;38367:7;38363:23;38359:32;38356:119;;;38394:79;;:::i;:::-;38356:119;38514:1;38539:63;38594:7;38585:6;38574:9;38570:22;38539:63;:::i;:::-;38529:73;;38485:127;38270:349;;;;:::o;38625:240::-;38765:34;38761:1;38753:6;38749:14;38742:58;38834:23;38829:2;38821:6;38817:15;38810:48;38625:240;:::o;38871:366::-;39013:3;39034:67;39098:2;39093:3;39034:67;:::i;:::-;39027:74;;39110:93;39199:3;39110:93;:::i;:::-;39228:2;39223:3;39219:12;39212:19;;38871:366;;;:::o;39243:419::-;39409:4;39447:2;39436:9;39432:18;39424:26;;39496:9;39490:4;39486:20;39482:1;39471:9;39467:17;39460:47;39524:131;39650:4;39524:131;:::i;:::-;39516:139;;39243:419;;;:::o;39668:182::-;39808:34;39804:1;39796:6;39792:14;39785:58;39668:182;:::o;39856:366::-;39998:3;40019:67;40083:2;40078:3;40019:67;:::i;:::-;40012:74;;40095:93;40184:3;40095:93;:::i;:::-;40213:2;40208:3;40204:12;40197:19;;39856:366;;;:::o;40228:419::-;40394:4;40432:2;40421:9;40417:18;40409:26;;40481:9;40475:4;40471:20;40467:1;40456:9;40452:17;40445:47;40509:131;40635:4;40509:131;:::i;:::-;40501:139;;40228:419;;;:::o;40653:178::-;40793:30;40789:1;40781:6;40777:14;40770:54;40653:178;:::o;40837:366::-;40979:3;41000:67;41064:2;41059:3;41000:67;:::i;:::-;40993:74;;41076:93;41165:3;41076:93;:::i;:::-;41194:2;41189:3;41185:12;41178:19;;40837:366;;;:::o;41209:419::-;41375:4;41413:2;41402:9;41398:18;41390:26;;41462:9;41456:4;41452:20;41448:1;41437:9;41433:17;41426:47;41490:131;41616:4;41490:131;:::i;:::-;41482:139;;41209:419;;;:::o;41634:180::-;41682:77;41679:1;41672:88;41779:4;41776:1;41769:15;41803:4;41800:1;41793:15

Swarm Source

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