ETH Price: $2,608.75 (-0.48%)

Token

Eternal Royalty Collection (ERC)
 

Overview

Max Total Supply

243 ERC

Holders

86

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
mjouan.eth
Balance
3 ERC
0xEeCBa4834ca010C0ced9b2ED8B7050f5229667B8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

An Exclusive NFT Membership designed with the Web3 innovator in mind. Stake your NFT to recieve royalties in ETH.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EternalRoyaltyCollection

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-09
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/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/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: EternalRoyaltyCollection.sol







pragma solidity ^0.8.1;

contract EternalRoyaltyCollection is ERC721Enumerable, Ownable, ERC2981 {
    using Strings for uint256;
    string public baseURI;
    string public contractURI;
    string public baseExtension = ".json";
    uint256 public cost = 0 ether;
    uint256 public maxSupply = 999;
    uint256 public maxMintAmount = 3;
    bool public paused = true;
    constructor(uint96 _royaltyFeesInBips) ERC721("Eternal Royalty Collection", "ERC") {
          setRoyaltyInfo(owner(), _royaltyFeesInBips);
    }
        // internal
        function _baseURI() internal view virtual override returns (string memory) {
        return "https://storageapi.fleek.co/abd9068c-35a8-420c-bd64-dcdb2b16f638-bucket/Eternal-Royalty-999/";
    }

        // public
        function setContractURI(string calldata _contractURI) public onlyOwner {
        contractURI = _contractURI;
    }
        function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner {
            _setDefaultRoyalty(_receiver, _royaltyFeesInBips);
        }
        function mint(address _to, uint256 _mintAmount) public payable {
            uint256 supply = totalSupply();
            require(!paused);
            require(_mintAmount > 0);
            require(balanceOf(msg.sender) + _mintAmount <= maxMintAmount);
            require(supply + _mintAmount <= maxSupply);      
            
            for (uint256 i = 1; i <= _mintAmount; i++) {
                _safeMint(_to, supply + i);
            }
        }
        

        function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
        {
            uint256 ownerTokenCount = balanceOf(_owner);
            uint256[] memory tokenIds = new uint256[](ownerTokenCount);
            for (uint256 i; i < ownerTokenCount; i++) {
                tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return tokenIds;
        }
    
        
        function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory) {
            require(
                _exists(tokenId),
                "ERC721Metadata: URI query for nonexistent token"
                );
                
                string memory currentBaseURI = _baseURI();
                return
                bytes(currentBaseURI).length > 0 
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
                : "";
        }
    

        function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721Enumerable, ERC2981)
        returns (bool)
        {
        return super.supportsInterface(interfaceId);
        }
        // only owner
        
        function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
            maxMintAmount = _newmaxMintAmount;
        }
        
        function setBaseURI(string memory _newBaseURI) public onlyOwner() {
            baseURI = _newBaseURI;
        }
        
        function setBaseExtension(string memory _newBaseExtension) public onlyOwner() {
            baseExtension = _newBaseExtension;
        }
        
        function pause(bool _state) public onlyOwner() {
            paused = _state;
        }

        
        function withdraw() public payable onlyOwner() {
            require(payable(msg.sender).send(address(this).balance));
        
        }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f908051906020019062000051929190620004f5565b5060006010556103e760115560036012556001601360006101000a81548160ff0219169083151502179055503480156200008a57600080fd5b5060405162005159380380620051598339818101604052810190620000b09190620005bc565b6040518060400160405280601a81526020017f457465726e616c20526f79616c747920436f6c6c656374696f6e0000000000008152506040518060400160405280600381526020017f4552430000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000134929190620004f5565b5080600190805190602001906200014d929190620004f5565b50505062000170620001646200019860201b60201c565b620001a060201b60201c565b62000191620001846200026660201b60201c565b826200029060201b60201c565b506200080c565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620002a0620002b660201b60201c565b620002b282826200034760201b60201c565b5050565b620002c66200019860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ec6200026660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000345576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033c906200065d565b60405180910390fd5b565b62000357620004eb60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620003b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003af906200067f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200042b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042290620006a1565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b8280546200050390620006ec565b90600052602060002090601f01602090048101928262000527576000855562000573565b82601f106200054257805160ff191683800117855562000573565b8280016001018555821562000573579182015b828111156200057257825182559160200191906001019062000555565b5b50905062000582919062000586565b5090565b5b80821115620005a157600081600090555060010162000587565b5090565b600081519050620005b681620007f2565b92915050565b600060208284031215620005cf57600080fd5b6000620005df84828501620005a5565b91505092915050565b6000620005f7602083620006c3565b9150620006048262000751565b602082019050919050565b60006200061e602a83620006c3565b91506200062b826200077a565b604082019050919050565b600062000645601983620006c3565b91506200065282620007c9565b602082019050919050565b600060208201905081810360008301526200067881620005e8565b9050919050565b600060208201905081810360008301526200069a816200060f565b9050919050565b60006020820190508181036000830152620006bc8162000636565b9050919050565b600082825260208201905092915050565b60006bffffffffffffffffffffffff82169050919050565b600060028204905060018216806200070557607f821691505b602082108114156200071c576200071b62000722565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b620007fd81620006d4565b81146200080957600080fd5b50565b61493d806200081c6000396000f3fe60806040526004361061020f5760003560e01c80635c975abb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610794578063da3ef23f146107bf578063e8a3d485146107e8578063e985e9c514610813578063f2fde38b146108505761020f565b8063a22cb465146106da578063b88d4fde14610703578063c66828621461072c578063c87b56dd146107575761020f565b8063715018a6116100e7578063715018a61461061b5780637f00c7a6146106325780638da5cb5b1461065b578063938e3d7b1461068657806395d89b41146106af5761020f565b80635c975abb1461054b5780636352211e146105765780636c0360eb146105b357806370a08231146105de5761020f565b806323b872dd1161019b57806340c10f191161016a57806340c10f191461046357806342842e0e1461047f578063438b6300146104a85780634f6ccce7146104e557806355f804b3146105225761020f565b806323b872dd146103b55780632a55205a146103de5780632f745c591461041c5780633ccfd60b146104595761020f565b8063081812fc116101e2578063081812fc146102ce578063095ea7b31461030b57806313faede61461033457806318160ddd1461035f578063239c70ae1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806302fa7c471461027a57806306fdde03146102a3575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613586565b610879565b6040516102489190613c13565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061355d565b61088b565b005b34801561028657600080fd5b506102a1600480360381019061029c9190613521565b6108b0565b005b3480156102af57600080fd5b506102b86108c6565b6040516102c59190613c2e565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061365e565b610958565b6040516103029190613b61565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d91906134e5565b61099e565b005b34801561034057600080fd5b50610349610ab6565b6040516103569190613eb0565b60405180910390f35b34801561036b57600080fd5b50610374610abc565b6040516103819190613eb0565b60405180910390f35b34801561039657600080fd5b5061039f610ac9565b6040516103ac9190613eb0565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d791906133df565b610acf565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613687565b610b2f565b604051610413929190613bc8565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e91906134e5565b610d1a565b6040516104509190613eb0565b60405180910390f35b610461610dbf565b005b61047d600480360381019061047891906134e5565b610e07565b005b34801561048b57600080fd5b506104a660048036038101906104a191906133df565b610eb2565b005b3480156104b457600080fd5b506104cf60048036038101906104ca919061337a565b610ed2565b6040516104dc9190613bf1565b60405180910390f35b3480156104f157600080fd5b5061050c6004803603810190610507919061365e565b610fcc565b6040516105199190613eb0565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061361d565b611063565b005b34801561055757600080fd5b50610560611085565b60405161056d9190613c13565b60405180910390f35b34801561058257600080fd5b5061059d6004803603810190610598919061365e565b611098565b6040516105aa9190613b61565b60405180910390f35b3480156105bf57600080fd5b506105c861111f565b6040516105d59190613c2e565b60405180910390f35b3480156105ea57600080fd5b506106056004803603810190610600919061337a565b6111ad565b6040516106129190613eb0565b60405180910390f35b34801561062757600080fd5b50610630611265565b005b34801561063e57600080fd5b506106596004803603810190610654919061365e565b611279565b005b34801561066757600080fd5b5061067061128b565b60405161067d9190613b61565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906135d8565b6112b5565b005b3480156106bb57600080fd5b506106c46112d3565b6040516106d19190613c2e565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc91906134a9565b611365565b005b34801561070f57600080fd5b5061072a6004803603810190610725919061342e565b61137b565b005b34801561073857600080fd5b506107416113dd565b60405161074e9190613c2e565b60405180910390f35b34801561076357600080fd5b5061077e6004803603810190610779919061365e565b61146b565b60405161078b9190613c2e565b60405180910390f35b3480156107a057600080fd5b506107a9611515565b6040516107b69190613eb0565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e1919061361d565b61151b565b005b3480156107f457600080fd5b506107fd61153d565b60405161080a9190613c2e565b60405180910390f35b34801561081f57600080fd5b5061083a600480360381019061083591906133a3565b6115cb565b6040516108479190613c13565b60405180910390f35b34801561085c57600080fd5b506108776004803603810190610872919061337a565b61165f565b005b6000610884826116e3565b9050919050565b61089361175d565b80601360006101000a81548160ff02191690831515021790555050565b6108b861175d565b6108c282826117db565b5050565b6060600080546108d5906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610901906141c6565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611971565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a982611098565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190613df0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a396119bc565b73ffffffffffffffffffffffffffffffffffffffff161480610a685750610a6781610a626119bc565b6115cb565b5b610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90613e10565b60405180910390fd5b610ab183836119c4565b505050565b60105481565b6000600880549050905090565b60125481565b610ae0610ada6119bc565b82611a7d565b610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690613c50565b60405180910390fd5b610b2a838383611b12565b505050565b6000806000600c60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610cc557600b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ccf611e0c565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610cfb919061406a565b610d059190614039565b90508160000151819350935050509250929050565b6000610d25836111ad565b8210610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613c70565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610dc761175d565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e0557600080fd5b565b6000610e11610abc565b9050601360009054906101000a900460ff1615610e2d57600080fd5b60008211610e3a57600080fd5b60125482610e47336111ad565b610e519190613fe3565b1115610e5c57600080fd5b6011548282610e6b9190613fe3565b1115610e7657600080fd5b6000600190505b828111610eac57610e99848284610e949190613fe3565b611e16565b8080610ea490614229565b915050610e7d565b50505050565b610ecd8383836040518060200160405280600081525061137b565b505050565b60606000610edf836111ad565b905060008167ffffffffffffffff811115610f23577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f515781602001602082028036833780820191505090505b50905060005b82811015610fc157610f698582610d1a565b828281518110610fa2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610fb990614229565b915050610f57565b508092505050919050565b6000610fd6610abc565b8210611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613e30565b60405180910390fd5b60088281548110611051577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61106b61175d565b80600d90805190602001906110819291906130b9565b5050565b601360009054906101000a900460ff1681565b6000806110a483611e34565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90613dd0565b60405180910390fd5b80915050919050565b600d805461112c906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611158906141c6565b80156111a55780601f1061117a576101008083540402835291602001916111a5565b820191906000526020600020905b81548152906001019060200180831161118857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613d50565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61126d61175d565b6112776000611e71565b565b61128161175d565b8060128190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112bd61175d565b8181600e91906112ce92919061313f565b505050565b6060600180546112e2906141c6565b80601f016020809104026020016040519081016040528092919081815260200182805461130e906141c6565b801561135b5780601f106113305761010080835404028352916020019161135b565b820191906000526020600020905b81548152906001019060200180831161133e57829003601f168201915b5050505050905090565b6113776113706119bc565b8383611f37565b5050565b61138c6113866119bc565b83611a7d565b6113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290613c50565b60405180910390fd5b6113d7848484846120a4565b50505050565b600f80546113ea906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611416906141c6565b80156114635780601f1061143857610100808354040283529160200191611463565b820191906000526020600020905b81548152906001019060200180831161144657829003601f168201915b505050505081565b606061147682612100565b6114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613db0565b60405180910390fd5b60006114bf612141565b905060008151116114df576040518060200160405280600081525061150d565b806114e984612161565b600f6040516020016114fd93929190613b30565b6040516020818303038152906040525b915050919050565b60115481565b61152361175d565b80600f90805190602001906115399291906130b9565b5050565b600e805461154a906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611576906141c6565b80156115c35780601f10611598576101008083540402835291602001916115c3565b820191906000526020600020905b8154815290600101906020018083116115a657829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61166761175d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613cb0565b60405180910390fd5b6116e081611e71565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611756575061175582612285565b5b9050919050565b6117656119bc565b73ffffffffffffffffffffffffffffffffffffffff1661178361128b565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613d90565b60405180910390fd5b565b6117e3611e0c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890613e70565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a890613e90565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b61197a81612100565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090613dd0565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a3783611098565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a8983611098565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611acb5750611aca81856115cb565b5b80611b0957508373ffffffffffffffffffffffffffffffffffffffff16611af184610958565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b3282611098565b73ffffffffffffffffffffffffffffffffffffffff1614611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90613cd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90613d10565b60405180910390fd5b611c0583838360016122ff565b8273ffffffffffffffffffffffffffffffffffffffff16611c2582611098565b73ffffffffffffffffffffffffffffffffffffffff1614611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7290613cd0565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e07838383600161245f565b505050565b6000612710905090565b611e30828260405180602001604052806000815250612465565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d90613d30565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120979190613c13565b60405180910390a3505050565b6120af848484611b12565b6120bb848484846124c0565b6120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f190613c90565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661212283611e34565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606040518060800160405280605c81526020016148ac605c9139905090565b60606000600161217084612657565b01905060008167ffffffffffffffff8111156121b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121e75781602001600182028036833780820191505090505b509050600082602001820190505b60011561227a578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612264577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b04945060008514156122755761227a565b6121f5565b819350505050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122f857506122f78261288e565b5b9050919050565b61230b84848484612970565b600181111561234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234690613e50565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156123975761239281612a96565b6123d6565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146123d5576123d48582612adf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124195761241481612c4c565b612458565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612457576124568482612d8f565b5b5b5050505050565b50505050565b61246f8383612e0e565b61247c60008484846124c0565b6124bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b290613c90565b60405180910390fd5b505050565b60006124e18473ffffffffffffffffffffffffffffffffffffffff1661302c565b1561264a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250a6119bc565b8786866040518563ffffffff1660e01b815260040161252c9493929190613b7c565b602060405180830381600087803b15801561254657600080fd5b505af192505050801561257757506040513d601f19601f8201168201806040525081019061257491906135af565b60015b6125fa573d80600081146125a7576040519150601f19603f3d011682016040523d82523d6000602084013e6125ac565b606091505b506000815114156125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990613c90565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061264f565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106126db577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816126d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061273e576d04ee2d6d415b85acef81000000008381612734577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc10000831061279357662386f26fc100008381612789577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e10083106127e2576305f5e10083816127d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b612710831061282d576127108381612823577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b60648310612876576064838161286c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a8310612885576001810190505b80915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061295957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061296957506129688261304f565b5b9050919050565b6001811115612a9057600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612a045780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129fc91906140c4565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a8f5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a879190613fe3565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aec846111ad565b612af691906140c4565b9050600060076000848152602001908152602001600020549050818114612bdb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c6091906140c4565b9050600060096000848152602001908152602001600020549050600060088381548110612cb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612cfe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d73577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d9a836111ad565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7590613d70565b60405180910390fd5b612e8781612100565b15612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe90613cf0565b60405180910390fd5b612ed56000838360016122ff565b612ede81612100565b15612f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1590613cf0565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461302860008383600161245f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546130c5906141c6565b90600052602060002090601f0160209004810192826130e7576000855561312e565b82601f1061310057805160ff191683800117855561312e565b8280016001018555821561312e579182015b8281111561312d578251825591602001919060010190613112565b5b50905061313b91906131c5565b5090565b82805461314b906141c6565b90600052602060002090601f01602090048101928261316d57600085556131b4565b82601f1061318657803560ff19168380011785556131b4565b828001600101855582156131b4579182015b828111156131b3578235825591602001919060010190613198565b5b5090506131c191906131c5565b5090565b5b808211156131de5760008160009055506001016131c6565b5090565b60006131f56131f084613ef0565b613ecb565b90508281526020810184848401111561320d57600080fd5b613218848285614184565b509392505050565b600061323361322e84613f21565b613ecb565b90508281526020810184848401111561324b57600080fd5b613256848285614184565b509392505050565b60008135905061326d81614838565b92915050565b6000813590506132828161484f565b92915050565b60008135905061329781614866565b92915050565b6000815190506132ac81614866565b92915050565b600082601f8301126132c357600080fd5b81356132d38482602086016131e2565b91505092915050565b60008083601f8401126132ee57600080fd5b8235905067ffffffffffffffff81111561330757600080fd5b60208301915083600182028301111561331f57600080fd5b9250929050565b600082601f83011261333757600080fd5b8135613347848260208601613220565b91505092915050565b60008135905061335f8161487d565b92915050565b60008135905061337481614894565b92915050565b60006020828403121561338c57600080fd5b600061339a8482850161325e565b91505092915050565b600080604083850312156133b657600080fd5b60006133c48582860161325e565b92505060206133d58582860161325e565b9150509250929050565b6000806000606084860312156133f457600080fd5b60006134028682870161325e565b93505060206134138682870161325e565b925050604061342486828701613350565b9150509250925092565b6000806000806080858703121561344457600080fd5b60006134528782880161325e565b94505060206134638782880161325e565b935050604061347487828801613350565b925050606085013567ffffffffffffffff81111561349157600080fd5b61349d878288016132b2565b91505092959194509250565b600080604083850312156134bc57600080fd5b60006134ca8582860161325e565b92505060206134db85828601613273565b9150509250929050565b600080604083850312156134f857600080fd5b60006135068582860161325e565b925050602061351785828601613350565b9150509250929050565b6000806040838503121561353457600080fd5b60006135428582860161325e565b925050602061355385828601613365565b9150509250929050565b60006020828403121561356f57600080fd5b600061357d84828501613273565b91505092915050565b60006020828403121561359857600080fd5b60006135a684828501613288565b91505092915050565b6000602082840312156135c157600080fd5b60006135cf8482850161329d565b91505092915050565b600080602083850312156135eb57600080fd5b600083013567ffffffffffffffff81111561360557600080fd5b613611858286016132dc565b92509250509250929050565b60006020828403121561362f57600080fd5b600082013567ffffffffffffffff81111561364957600080fd5b61365584828501613326565b91505092915050565b60006020828403121561367057600080fd5b600061367e84828501613350565b91505092915050565b6000806040838503121561369a57600080fd5b60006136a885828601613350565b92505060206136b985828601613350565b9150509250929050565b60006136cf8383613b12565b60208301905092915050565b6136e4816140f8565b82525050565b60006136f582613f77565b6136ff8185613fa5565b935061370a83613f52565b8060005b8381101561373b57815161372288826136c3565b975061372d83613f98565b92505060018101905061370e565b5085935050505092915050565b6137518161410a565b82525050565b600061376282613f82565b61376c8185613fb6565b935061377c818560208601614193565b6137858161432e565b840191505092915050565b600061379b82613f8d565b6137a58185613fc7565b93506137b5818560208601614193565b6137be8161432e565b840191505092915050565b60006137d482613f8d565b6137de8185613fd8565b93506137ee818560208601614193565b80840191505092915050565b60008154613807816141c6565b6138118186613fd8565b9450600182166000811461382c576001811461383d57613870565b60ff19831686528186019350613870565b61384685613f62565b60005b8381101561386857815481890152600182019150602081019050613849565b838801955050505b50505092915050565b6000613886602d83613fc7565b91506138918261433f565b604082019050919050565b60006138a9602b83613fc7565b91506138b48261438e565b604082019050919050565b60006138cc603283613fc7565b91506138d7826143dd565b604082019050919050565b60006138ef602683613fc7565b91506138fa8261442c565b604082019050919050565b6000613912602583613fc7565b915061391d8261447b565b604082019050919050565b6000613935601c83613fc7565b9150613940826144ca565b602082019050919050565b6000613958602483613fc7565b9150613963826144f3565b604082019050919050565b600061397b601983613fc7565b915061398682614542565b602082019050919050565b600061399e602983613fc7565b91506139a98261456b565b604082019050919050565b60006139c1602083613fc7565b91506139cc826145ba565b602082019050919050565b60006139e4602083613fc7565b91506139ef826145e3565b602082019050919050565b6000613a07602f83613fc7565b9150613a128261460c565b604082019050919050565b6000613a2a601883613fc7565b9150613a358261465b565b602082019050919050565b6000613a4d602183613fc7565b9150613a5882614684565b604082019050919050565b6000613a70603d83613fc7565b9150613a7b826146d3565b604082019050919050565b6000613a93602c83613fc7565b9150613a9e82614722565b604082019050919050565b6000613ab6603583613fc7565b9150613ac182614771565b604082019050919050565b6000613ad9602a83613fc7565b9150613ae4826147c0565b604082019050919050565b6000613afc601983613fc7565b9150613b078261480f565b602082019050919050565b613b1b81614162565b82525050565b613b2a81614162565b82525050565b6000613b3c82866137c9565b9150613b4882856137c9565b9150613b5482846137fa565b9150819050949350505050565b6000602082019050613b7660008301846136db565b92915050565b6000608082019050613b9160008301876136db565b613b9e60208301866136db565b613bab6040830185613b21565b8181036060830152613bbd8184613757565b905095945050505050565b6000604082019050613bdd60008301856136db565b613bea6020830184613b21565b9392505050565b60006020820190508181036000830152613c0b81846136ea565b905092915050565b6000602082019050613c286000830184613748565b92915050565b60006020820190508181036000830152613c488184613790565b905092915050565b60006020820190508181036000830152613c6981613879565b9050919050565b60006020820190508181036000830152613c898161389c565b9050919050565b60006020820190508181036000830152613ca9816138bf565b9050919050565b60006020820190508181036000830152613cc9816138e2565b9050919050565b60006020820190508181036000830152613ce981613905565b9050919050565b60006020820190508181036000830152613d0981613928565b9050919050565b60006020820190508181036000830152613d298161394b565b9050919050565b60006020820190508181036000830152613d498161396e565b9050919050565b60006020820190508181036000830152613d6981613991565b9050919050565b60006020820190508181036000830152613d89816139b4565b9050919050565b60006020820190508181036000830152613da9816139d7565b9050919050565b60006020820190508181036000830152613dc9816139fa565b9050919050565b60006020820190508181036000830152613de981613a1d565b9050919050565b60006020820190508181036000830152613e0981613a40565b9050919050565b60006020820190508181036000830152613e2981613a63565b9050919050565b60006020820190508181036000830152613e4981613a86565b9050919050565b60006020820190508181036000830152613e6981613aa9565b9050919050565b60006020820190508181036000830152613e8981613acc565b9050919050565b60006020820190508181036000830152613ea981613aef565b9050919050565b6000602082019050613ec56000830184613b21565b92915050565b6000613ed5613ee6565b9050613ee182826141f8565b919050565b6000604051905090565b600067ffffffffffffffff821115613f0b57613f0a6142ff565b5b613f148261432e565b9050602081019050919050565b600067ffffffffffffffff821115613f3c57613f3b6142ff565b5b613f458261432e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fee82614162565b9150613ff983614162565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402e5761402d614272565b5b828201905092915050565b600061404482614162565b915061404f83614162565b92508261405f5761405e6142a1565b5b828204905092915050565b600061407582614162565b915061408083614162565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140b9576140b8614272565b5b828202905092915050565b60006140cf82614162565b91506140da83614162565b9250828210156140ed576140ec614272565b5b828203905092915050565b600061410382614142565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141b1578082015181840152602081019050614196565b838111156141c0576000848401525b50505050565b600060028204905060018216806141de57607f821691505b602082108114156141f2576141f16142d0565b5b50919050565b6142018261432e565b810181811067ffffffffffffffff821117156142205761421f6142ff565b5b80604052505050565b600061423482614162565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561426757614266614272565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b614841816140f8565b811461484c57600080fd5b50565b6148588161410a565b811461486357600080fd5b50565b61486f81614116565b811461487a57600080fd5b50565b61488681614162565b811461489157600080fd5b50565b61489d8161416c565b81146148a857600080fd5b5056fe68747470733a2f2f73746f726167656170692e666c65656b2e636f2f61626439303638632d333561382d343230632d626436342d6463646232623136663633382d6275636b65742f457465726e616c2d526f79616c74792d3939392fa26469706673582212207fe4788d41bfb4bbb58719468612c6c3e8934b6d83d70466e18cb4b07b4590ac64736f6c6343000801003300000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80635c975abb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610794578063da3ef23f146107bf578063e8a3d485146107e8578063e985e9c514610813578063f2fde38b146108505761020f565b8063a22cb465146106da578063b88d4fde14610703578063c66828621461072c578063c87b56dd146107575761020f565b8063715018a6116100e7578063715018a61461061b5780637f00c7a6146106325780638da5cb5b1461065b578063938e3d7b1461068657806395d89b41146106af5761020f565b80635c975abb1461054b5780636352211e146105765780636c0360eb146105b357806370a08231146105de5761020f565b806323b872dd1161019b57806340c10f191161016a57806340c10f191461046357806342842e0e1461047f578063438b6300146104a85780634f6ccce7146104e557806355f804b3146105225761020f565b806323b872dd146103b55780632a55205a146103de5780632f745c591461041c5780633ccfd60b146104595761020f565b8063081812fc116101e2578063081812fc146102ce578063095ea7b31461030b57806313faede61461033457806318160ddd1461035f578063239c70ae1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806302fa7c471461027a57806306fdde03146102a3575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613586565b610879565b6040516102489190613c13565b60405180910390f35b34801561025d57600080fd5b506102786004803603810190610273919061355d565b61088b565b005b34801561028657600080fd5b506102a1600480360381019061029c9190613521565b6108b0565b005b3480156102af57600080fd5b506102b86108c6565b6040516102c59190613c2e565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061365e565b610958565b6040516103029190613b61565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d91906134e5565b61099e565b005b34801561034057600080fd5b50610349610ab6565b6040516103569190613eb0565b60405180910390f35b34801561036b57600080fd5b50610374610abc565b6040516103819190613eb0565b60405180910390f35b34801561039657600080fd5b5061039f610ac9565b6040516103ac9190613eb0565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d791906133df565b610acf565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613687565b610b2f565b604051610413929190613bc8565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e91906134e5565b610d1a565b6040516104509190613eb0565b60405180910390f35b610461610dbf565b005b61047d600480360381019061047891906134e5565b610e07565b005b34801561048b57600080fd5b506104a660048036038101906104a191906133df565b610eb2565b005b3480156104b457600080fd5b506104cf60048036038101906104ca919061337a565b610ed2565b6040516104dc9190613bf1565b60405180910390f35b3480156104f157600080fd5b5061050c6004803603810190610507919061365e565b610fcc565b6040516105199190613eb0565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061361d565b611063565b005b34801561055757600080fd5b50610560611085565b60405161056d9190613c13565b60405180910390f35b34801561058257600080fd5b5061059d6004803603810190610598919061365e565b611098565b6040516105aa9190613b61565b60405180910390f35b3480156105bf57600080fd5b506105c861111f565b6040516105d59190613c2e565b60405180910390f35b3480156105ea57600080fd5b506106056004803603810190610600919061337a565b6111ad565b6040516106129190613eb0565b60405180910390f35b34801561062757600080fd5b50610630611265565b005b34801561063e57600080fd5b506106596004803603810190610654919061365e565b611279565b005b34801561066757600080fd5b5061067061128b565b60405161067d9190613b61565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906135d8565b6112b5565b005b3480156106bb57600080fd5b506106c46112d3565b6040516106d19190613c2e565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc91906134a9565b611365565b005b34801561070f57600080fd5b5061072a6004803603810190610725919061342e565b61137b565b005b34801561073857600080fd5b506107416113dd565b60405161074e9190613c2e565b60405180910390f35b34801561076357600080fd5b5061077e6004803603810190610779919061365e565b61146b565b60405161078b9190613c2e565b60405180910390f35b3480156107a057600080fd5b506107a9611515565b6040516107b69190613eb0565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e1919061361d565b61151b565b005b3480156107f457600080fd5b506107fd61153d565b60405161080a9190613c2e565b60405180910390f35b34801561081f57600080fd5b5061083a600480360381019061083591906133a3565b6115cb565b6040516108479190613c13565b60405180910390f35b34801561085c57600080fd5b506108776004803603810190610872919061337a565b61165f565b005b6000610884826116e3565b9050919050565b61089361175d565b80601360006101000a81548160ff02191690831515021790555050565b6108b861175d565b6108c282826117db565b5050565b6060600080546108d5906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610901906141c6565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611971565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a982611098565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190613df0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a396119bc565b73ffffffffffffffffffffffffffffffffffffffff161480610a685750610a6781610a626119bc565b6115cb565b5b610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90613e10565b60405180910390fd5b610ab183836119c4565b505050565b60105481565b6000600880549050905090565b60125481565b610ae0610ada6119bc565b82611a7d565b610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690613c50565b60405180910390fd5b610b2a838383611b12565b505050565b6000806000600c60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610cc557600b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ccf611e0c565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610cfb919061406a565b610d059190614039565b90508160000151819350935050509250929050565b6000610d25836111ad565b8210610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d90613c70565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610dc761175d565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e0557600080fd5b565b6000610e11610abc565b9050601360009054906101000a900460ff1615610e2d57600080fd5b60008211610e3a57600080fd5b60125482610e47336111ad565b610e519190613fe3565b1115610e5c57600080fd5b6011548282610e6b9190613fe3565b1115610e7657600080fd5b6000600190505b828111610eac57610e99848284610e949190613fe3565b611e16565b8080610ea490614229565b915050610e7d565b50505050565b610ecd8383836040518060200160405280600081525061137b565b505050565b60606000610edf836111ad565b905060008167ffffffffffffffff811115610f23577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610f515781602001602082028036833780820191505090505b50905060005b82811015610fc157610f698582610d1a565b828281518110610fa2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610fb990614229565b915050610f57565b508092505050919050565b6000610fd6610abc565b8210611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613e30565b60405180910390fd5b60088281548110611051577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61106b61175d565b80600d90805190602001906110819291906130b9565b5050565b601360009054906101000a900460ff1681565b6000806110a483611e34565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d90613dd0565b60405180910390fd5b80915050919050565b600d805461112c906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611158906141c6565b80156111a55780601f1061117a576101008083540402835291602001916111a5565b820191906000526020600020905b81548152906001019060200180831161118857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613d50565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61126d61175d565b6112776000611e71565b565b61128161175d565b8060128190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112bd61175d565b8181600e91906112ce92919061313f565b505050565b6060600180546112e2906141c6565b80601f016020809104026020016040519081016040528092919081815260200182805461130e906141c6565b801561135b5780601f106113305761010080835404028352916020019161135b565b820191906000526020600020905b81548152906001019060200180831161133e57829003601f168201915b5050505050905090565b6113776113706119bc565b8383611f37565b5050565b61138c6113866119bc565b83611a7d565b6113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290613c50565b60405180910390fd5b6113d7848484846120a4565b50505050565b600f80546113ea906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611416906141c6565b80156114635780601f1061143857610100808354040283529160200191611463565b820191906000526020600020905b81548152906001019060200180831161144657829003601f168201915b505050505081565b606061147682612100565b6114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613db0565b60405180910390fd5b60006114bf612141565b905060008151116114df576040518060200160405280600081525061150d565b806114e984612161565b600f6040516020016114fd93929190613b30565b6040516020818303038152906040525b915050919050565b60115481565b61152361175d565b80600f90805190602001906115399291906130b9565b5050565b600e805461154a906141c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611576906141c6565b80156115c35780601f10611598576101008083540402835291602001916115c3565b820191906000526020600020905b8154815290600101906020018083116115a657829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61166761175d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613cb0565b60405180910390fd5b6116e081611e71565b50565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611756575061175582612285565b5b9050919050565b6117656119bc565b73ffffffffffffffffffffffffffffffffffffffff1661178361128b565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613d90565b60405180910390fd5b565b6117e3611e0c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890613e70565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a890613e90565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b61197a81612100565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b090613dd0565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a3783611098565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a8983611098565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611acb5750611aca81856115cb565b5b80611b0957508373ffffffffffffffffffffffffffffffffffffffff16611af184610958565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b3282611098565b73ffffffffffffffffffffffffffffffffffffffff1614611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90613cd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90613d10565b60405180910390fd5b611c0583838360016122ff565b8273ffffffffffffffffffffffffffffffffffffffff16611c2582611098565b73ffffffffffffffffffffffffffffffffffffffff1614611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7290613cd0565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e07838383600161245f565b505050565b6000612710905090565b611e30828260405180602001604052806000815250612465565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d90613d30565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120979190613c13565b60405180910390a3505050565b6120af848484611b12565b6120bb848484846124c0565b6120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f190613c90565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661212283611e34565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606040518060800160405280605c81526020016148ac605c9139905090565b60606000600161217084612657565b01905060008167ffffffffffffffff8111156121b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121e75781602001600182028036833780820191505090505b509050600082602001820190505b60011561227a578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612264577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b04945060008514156122755761227a565b6121f5565b819350505050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122f857506122f78261288e565b5b9050919050565b61230b84848484612970565b600181111561234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234690613e50565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156123975761239281612a96565b6123d6565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146123d5576123d48582612adf565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124195761241481612c4c565b612458565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612457576124568482612d8f565b5b5b5050505050565b50505050565b61246f8383612e0e565b61247c60008484846124c0565b6124bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b290613c90565b60405180910390fd5b505050565b60006124e18473ffffffffffffffffffffffffffffffffffffffff1661302c565b1561264a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250a6119bc565b8786866040518563ffffffff1660e01b815260040161252c9493929190613b7c565b602060405180830381600087803b15801561254657600080fd5b505af192505050801561257757506040513d601f19601f8201168201806040525081019061257491906135af565b60015b6125fa573d80600081146125a7576040519150601f19603f3d011682016040523d82523d6000602084013e6125ac565b606091505b506000815114156125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990613c90565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061264f565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106126db577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816126d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061273e576d04ee2d6d415b85acef81000000008381612734577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc10000831061279357662386f26fc100008381612789577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e10083106127e2576305f5e10083816127d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b612710831061282d576127108381612823577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b60648310612876576064838161286c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a8310612885576001810190505b80915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061295957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061296957506129688261304f565b5b9050919050565b6001811115612a9057600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612a045780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129fc91906140c4565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a8f5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a879190613fe3565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aec846111ad565b612af691906140c4565b9050600060076000848152602001908152602001600020549050818114612bdb576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c6091906140c4565b9050600060096000848152602001908152602001600020549050600060088381548110612cb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612cfe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d73577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d9a836111ad565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7590613d70565b60405180910390fd5b612e8781612100565b15612ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebe90613cf0565b60405180910390fd5b612ed56000838360016122ff565b612ede81612100565b15612f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1590613cf0565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461302860008383600161245f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546130c5906141c6565b90600052602060002090601f0160209004810192826130e7576000855561312e565b82601f1061310057805160ff191683800117855561312e565b8280016001018555821561312e579182015b8281111561312d578251825591602001919060010190613112565b5b50905061313b91906131c5565b5090565b82805461314b906141c6565b90600052602060002090601f01602090048101928261316d57600085556131b4565b82601f1061318657803560ff19168380011785556131b4565b828001600101855582156131b4579182015b828111156131b3578235825591602001919060010190613198565b5b5090506131c191906131c5565b5090565b5b808211156131de5760008160009055506001016131c6565b5090565b60006131f56131f084613ef0565b613ecb565b90508281526020810184848401111561320d57600080fd5b613218848285614184565b509392505050565b600061323361322e84613f21565b613ecb565b90508281526020810184848401111561324b57600080fd5b613256848285614184565b509392505050565b60008135905061326d81614838565b92915050565b6000813590506132828161484f565b92915050565b60008135905061329781614866565b92915050565b6000815190506132ac81614866565b92915050565b600082601f8301126132c357600080fd5b81356132d38482602086016131e2565b91505092915050565b60008083601f8401126132ee57600080fd5b8235905067ffffffffffffffff81111561330757600080fd5b60208301915083600182028301111561331f57600080fd5b9250929050565b600082601f83011261333757600080fd5b8135613347848260208601613220565b91505092915050565b60008135905061335f8161487d565b92915050565b60008135905061337481614894565b92915050565b60006020828403121561338c57600080fd5b600061339a8482850161325e565b91505092915050565b600080604083850312156133b657600080fd5b60006133c48582860161325e565b92505060206133d58582860161325e565b9150509250929050565b6000806000606084860312156133f457600080fd5b60006134028682870161325e565b93505060206134138682870161325e565b925050604061342486828701613350565b9150509250925092565b6000806000806080858703121561344457600080fd5b60006134528782880161325e565b94505060206134638782880161325e565b935050604061347487828801613350565b925050606085013567ffffffffffffffff81111561349157600080fd5b61349d878288016132b2565b91505092959194509250565b600080604083850312156134bc57600080fd5b60006134ca8582860161325e565b92505060206134db85828601613273565b9150509250929050565b600080604083850312156134f857600080fd5b60006135068582860161325e565b925050602061351785828601613350565b9150509250929050565b6000806040838503121561353457600080fd5b60006135428582860161325e565b925050602061355385828601613365565b9150509250929050565b60006020828403121561356f57600080fd5b600061357d84828501613273565b91505092915050565b60006020828403121561359857600080fd5b60006135a684828501613288565b91505092915050565b6000602082840312156135c157600080fd5b60006135cf8482850161329d565b91505092915050565b600080602083850312156135eb57600080fd5b600083013567ffffffffffffffff81111561360557600080fd5b613611858286016132dc565b92509250509250929050565b60006020828403121561362f57600080fd5b600082013567ffffffffffffffff81111561364957600080fd5b61365584828501613326565b91505092915050565b60006020828403121561367057600080fd5b600061367e84828501613350565b91505092915050565b6000806040838503121561369a57600080fd5b60006136a885828601613350565b92505060206136b985828601613350565b9150509250929050565b60006136cf8383613b12565b60208301905092915050565b6136e4816140f8565b82525050565b60006136f582613f77565b6136ff8185613fa5565b935061370a83613f52565b8060005b8381101561373b57815161372288826136c3565b975061372d83613f98565b92505060018101905061370e565b5085935050505092915050565b6137518161410a565b82525050565b600061376282613f82565b61376c8185613fb6565b935061377c818560208601614193565b6137858161432e565b840191505092915050565b600061379b82613f8d565b6137a58185613fc7565b93506137b5818560208601614193565b6137be8161432e565b840191505092915050565b60006137d482613f8d565b6137de8185613fd8565b93506137ee818560208601614193565b80840191505092915050565b60008154613807816141c6565b6138118186613fd8565b9450600182166000811461382c576001811461383d57613870565b60ff19831686528186019350613870565b61384685613f62565b60005b8381101561386857815481890152600182019150602081019050613849565b838801955050505b50505092915050565b6000613886602d83613fc7565b91506138918261433f565b604082019050919050565b60006138a9602b83613fc7565b91506138b48261438e565b604082019050919050565b60006138cc603283613fc7565b91506138d7826143dd565b604082019050919050565b60006138ef602683613fc7565b91506138fa8261442c565b604082019050919050565b6000613912602583613fc7565b915061391d8261447b565b604082019050919050565b6000613935601c83613fc7565b9150613940826144ca565b602082019050919050565b6000613958602483613fc7565b9150613963826144f3565b604082019050919050565b600061397b601983613fc7565b915061398682614542565b602082019050919050565b600061399e602983613fc7565b91506139a98261456b565b604082019050919050565b60006139c1602083613fc7565b91506139cc826145ba565b602082019050919050565b60006139e4602083613fc7565b91506139ef826145e3565b602082019050919050565b6000613a07602f83613fc7565b9150613a128261460c565b604082019050919050565b6000613a2a601883613fc7565b9150613a358261465b565b602082019050919050565b6000613a4d602183613fc7565b9150613a5882614684565b604082019050919050565b6000613a70603d83613fc7565b9150613a7b826146d3565b604082019050919050565b6000613a93602c83613fc7565b9150613a9e82614722565b604082019050919050565b6000613ab6603583613fc7565b9150613ac182614771565b604082019050919050565b6000613ad9602a83613fc7565b9150613ae4826147c0565b604082019050919050565b6000613afc601983613fc7565b9150613b078261480f565b602082019050919050565b613b1b81614162565b82525050565b613b2a81614162565b82525050565b6000613b3c82866137c9565b9150613b4882856137c9565b9150613b5482846137fa565b9150819050949350505050565b6000602082019050613b7660008301846136db565b92915050565b6000608082019050613b9160008301876136db565b613b9e60208301866136db565b613bab6040830185613b21565b8181036060830152613bbd8184613757565b905095945050505050565b6000604082019050613bdd60008301856136db565b613bea6020830184613b21565b9392505050565b60006020820190508181036000830152613c0b81846136ea565b905092915050565b6000602082019050613c286000830184613748565b92915050565b60006020820190508181036000830152613c488184613790565b905092915050565b60006020820190508181036000830152613c6981613879565b9050919050565b60006020820190508181036000830152613c898161389c565b9050919050565b60006020820190508181036000830152613ca9816138bf565b9050919050565b60006020820190508181036000830152613cc9816138e2565b9050919050565b60006020820190508181036000830152613ce981613905565b9050919050565b60006020820190508181036000830152613d0981613928565b9050919050565b60006020820190508181036000830152613d298161394b565b9050919050565b60006020820190508181036000830152613d498161396e565b9050919050565b60006020820190508181036000830152613d6981613991565b9050919050565b60006020820190508181036000830152613d89816139b4565b9050919050565b60006020820190508181036000830152613da9816139d7565b9050919050565b60006020820190508181036000830152613dc9816139fa565b9050919050565b60006020820190508181036000830152613de981613a1d565b9050919050565b60006020820190508181036000830152613e0981613a40565b9050919050565b60006020820190508181036000830152613e2981613a63565b9050919050565b60006020820190508181036000830152613e4981613a86565b9050919050565b60006020820190508181036000830152613e6981613aa9565b9050919050565b60006020820190508181036000830152613e8981613acc565b9050919050565b60006020820190508181036000830152613ea981613aef565b9050919050565b6000602082019050613ec56000830184613b21565b92915050565b6000613ed5613ee6565b9050613ee182826141f8565b919050565b6000604051905090565b600067ffffffffffffffff821115613f0b57613f0a6142ff565b5b613f148261432e565b9050602081019050919050565b600067ffffffffffffffff821115613f3c57613f3b6142ff565b5b613f458261432e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fee82614162565b9150613ff983614162565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561402e5761402d614272565b5b828201905092915050565b600061404482614162565b915061404f83614162565b92508261405f5761405e6142a1565b5b828204905092915050565b600061407582614162565b915061408083614162565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140b9576140b8614272565b5b828202905092915050565b60006140cf82614162565b91506140da83614162565b9250828210156140ed576140ec614272565b5b828203905092915050565b600061410382614142565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156141b1578082015181840152602081019050614196565b838111156141c0576000848401525b50505050565b600060028204905060018216806141de57607f821691505b602082108114156141f2576141f16142d0565b5b50919050565b6142018261432e565b810181811067ffffffffffffffff821117156142205761421f6142ff565b5b80604052505050565b600061423482614162565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561426757614266614272565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b614841816140f8565b811461484c57600080fd5b50565b6148588161410a565b811461486357600080fd5b50565b61486f81614116565b811461487a57600080fd5b50565b61488681614162565b811461489157600080fd5b50565b61489d8161416c565b81146148a857600080fd5b5056fe68747470733a2f2f73746f726167656170692e666c65656b2e636f2f61626439303638632d333561382d343230632d626436342d6463646232623136663633382d6275636b65742f457465726e616c2d526f79616c74792d3939392fa26469706673582212207fe4788d41bfb4bbb58719468612c6c3e8934b6d83d70466e18cb4b07b4590ac64736f6c63430008010033

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

00000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : _royaltyFeesInBips (uint96): 1000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

67556:3537:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70127:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70835:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68445:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45603:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47115:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46633:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67771:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62181:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67844:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47815:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33774:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;61849:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70946:140;;;:::i;:::-;;68618:461;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48221:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69101:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62371:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70543:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67883:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45313:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67667:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45044:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17975:103;;;;;;;;;;;;;:::i;:::-;;70391:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17327:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68319:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45772:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47358:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48477:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67727:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69549:560;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67807:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70677:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67695:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47584:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18233:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70127:221;70267:4;70300:36;70324:11;70300:23;:36::i;:::-;70293:43;;70127:221;;;:::o;70835:89::-;17213:13;:11;:13::i;:::-;70906:6:::1;70897;;:15;;;;;;;;;;;;;;;;;;70835:89:::0;:::o;68445:163::-;17213:13;:11;:13::i;:::-;68547:49:::1;68566:9;68577:18;68547;:49::i;:::-;68445:163:::0;;:::o;45603:100::-;45657:13;45690:5;45683:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45603:100;:::o;47115:171::-;47191:7;47211:23;47226:7;47211:14;:23::i;:::-;47254:15;:24;47270:7;47254:24;;;;;;;;;;;;;;;;;;;;;47247:31;;47115:171;;;:::o;46633:416::-;46714:13;46730:23;46745:7;46730:14;:23::i;:::-;46714:39;;46778:5;46772:11;;:2;:11;;;;46764:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46872:5;46856:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;46881:37;46898:5;46905:12;:10;:12::i;:::-;46881:16;:37::i;:::-;46856:62;46834:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;47020:21;47029:2;47033:7;47020:8;:21::i;:::-;46633:416;;;:::o;67771:29::-;;;;:::o;62181:113::-;62242:7;62269:10;:17;;;;62262:24;;62181:113;:::o;67844:32::-;;;;:::o;47815:335::-;48010:41;48029:12;:10;:12::i;:::-;48043:7;48010:18;:41::i;:::-;48002:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;48114:28;48124:4;48130:2;48134:7;48114:9;:28::i;:::-;47815:335;;;:::o;33774:442::-;33871:7;33880;33900:26;33929:17;:27;33947:8;33929:27;;;;;;;;;;;33900:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34001:1;33973:30;;:7;:16;;;:30;;;33969:92;;;34030:19;34020:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33969:92;34073:21;34138:17;:15;:17::i;:::-;34097:58;;34111:7;:23;;;34098:36;;:10;:36;;;;:::i;:::-;34097:58;;;;:::i;:::-;34073:82;;34176:7;:16;;;34194:13;34168:40;;;;;;33774:442;;;;;:::o;61849:256::-;61946:7;61982:23;61999:5;61982:16;:23::i;:::-;61974:5;:31;61966:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;62071:12;:19;62084:5;62071:19;;;;;;;;;;;;;;;:26;62091:5;62071:26;;;;;;;;;;;;62064:33;;61849:256;;;;:::o;70946:140::-;17213:13;:11;:13::i;:::-;71024:10:::1;71016:24;;:47;71041:21;71016:47;;;;;;;;;;;;;;;;;;;;;;;71008:56;;;::::0;::::1;;70946:140::o:0;68618:461::-;68696:14;68713:13;:11;:13::i;:::-;68696:30;;68750:6;;;;;;;;;;;68749:7;68741:16;;;;;;68794:1;68780:11;:15;68772:24;;;;;;68858:13;;68843:11;68819:21;68829:10;68819:9;:21::i;:::-;:35;;;;:::i;:::-;:52;;68811:61;;;;;;68919:9;;68904:11;68895:6;:20;;;;:::i;:::-;:33;;68887:42;;;;;;68969:9;68981:1;68969:13;;68964:104;68989:11;68984:1;:16;68964:104;;69026:26;69036:3;69050:1;69041:6;:10;;;;:::i;:::-;69026:9;:26::i;:::-;69002:3;;;;;:::i;:::-;;;;68964:104;;;;68618:461;;;:::o;48221:185::-;48359:39;48376:4;48382:2;48386:7;48359:39;;;;;;;;;;;;:16;:39::i;:::-;48221:185;;;:::o;69101:422::-;69188:16;69230:23;69256:17;69266:6;69256:9;:17::i;:::-;69230:43;;69288:25;69330:15;69316:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69288:58;;69366:9;69361:121;69381:15;69377:1;:19;69361:121;;;69436:30;69456:6;69464:1;69436:19;:30::i;:::-;69422:8;69431:1;69422:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;69398:3;;;;;:::i;:::-;;;;69361:121;;;;69503:8;69496:15;;;;69101:422;;;:::o;62371:233::-;62446:7;62482:30;:28;:30::i;:::-;62474:5;:38;62466:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;62579:10;62590:5;62579:17;;;;;;;;;;;;;;;;;;;;;;;;62572:24;;62371:233;;;:::o;70543:114::-;17213:13;:11;:13::i;:::-;70634:11:::1;70624:7;:21;;;;;;;;;;;;:::i;:::-;;70543:114:::0;:::o;67883:25::-;;;;;;;;;;;;;:::o;45313:223::-;45385:7;45405:13;45421:17;45430:7;45421:8;:17::i;:::-;45405:33;;45474:1;45457:19;;:5;:19;;;;45449:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;45523:5;45516:12;;;45313:223;;;:::o;67667:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45044:207::-;45116:7;45161:1;45144:19;;:5;:19;;;;45136:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45227:9;:16;45237:5;45227:16;;;;;;;;;;;;;;;;45220:23;;45044:207;;;:::o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;70391:132::-;17213:13;:11;:13::i;:::-;70494:17:::1;70478:13;:33;;;;70391:132:::0;:::o;17327:87::-;17373:7;17400:6;;;;;;;;;;;17393:13;;17327:87;:::o;68319:116::-;17213:13;:11;:13::i;:::-;68415:12:::1;;68401:11;:26;;;;;;;:::i;:::-;;68319:116:::0;;:::o;45772:104::-;45828:13;45861:7;45854:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45772:104;:::o;47358:155::-;47453:52;47472:12;:10;:12::i;:::-;47486:8;47496;47453:18;:52::i;:::-;47358:155;;:::o;48477:322::-;48651:41;48670:12;:10;:12::i;:::-;48684:7;48651:18;:41::i;:::-;48643:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;48753:38;48767:4;48773:2;48777:7;48786:4;48753:13;:38::i;:::-;48477:322;;;;:::o;67727:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69549:560::-;69667:13;69723:16;69731:7;69723;:16::i;:::-;69697:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;69863:28;69894:10;:8;:10::i;:::-;69863:41;;69978:1;69953:14;69947:28;:32;:150;;;;;;;;;;;;;;;;;70024:14;70040:18;:7;:16;:18::i;:::-;70060:13;70007:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69947:150;69923:174;;;69549:560;;;:::o;67807:30::-;;;;:::o;70677:138::-;17213:13;:11;:13::i;:::-;70786:17:::1;70770:13;:33;;;;;;;;;;;;:::i;:::-;;70677:138:::0;:::o;67695:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47584:164::-;47681:4;47705:18;:25;47724:5;47705:25;;;;;;;;;;;;;;;:35;47731:8;47705:35;;;;;;;;;;;;;;;;;;;;;;;;;47698:42;;47584:164;;;;:::o;18233:201::-;17213:13;:11;:13::i;:::-;18342:1:::1;18322:22;;:8;:22;;;;18314:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18398:28;18417:8;18398:18;:28::i;:::-;18233:201:::0;:::o;33504:215::-;33606:4;33645:26;33630:41;;;:11;:41;;;;:81;;;;33675:36;33699:11;33675:23;:36::i;:::-;33630:81;33623:88;;33504:215;;;:::o;17492:132::-;17567:12;:10;:12::i;:::-;17556:23;;:7;:5;:7::i;:::-;:23;;;17548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17492:132::o;34866:332::-;34985:17;:15;:17::i;:::-;34969:33;;:12;:33;;;;34961:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;35088:1;35068:22;;:8;:22;;;;35060:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35155:35;;;;;;;;35167:8;35155:35;;;;;;35177:12;35155:35;;;;;35133:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34866:332;;:::o;56934:135::-;57016:16;57024:7;57016;:16::i;:::-;57008:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56934:135;:::o;15878:98::-;15931:7;15958:10;15951:17;;15878:98;:::o;56213:174::-;56315:2;56288:15;:24;56304:7;56288:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;56371:7;56367:2;56333:46;;56342:23;56357:7;56342:14;:23::i;:::-;56333:46;;;;;;;;;;;;56213:174;;:::o;50832:264::-;50925:4;50942:13;50958:23;50973:7;50958:14;:23::i;:::-;50942:39;;51011:5;51000:16;;:7;:16;;;:52;;;;51020:32;51037:5;51044:7;51020:16;:32::i;:::-;51000:52;:87;;;;51080:7;51056:31;;:20;51068:7;51056:11;:20::i;:::-;:31;;;51000:87;50992:96;;;50832:264;;;;:::o;54831:1263::-;54990:4;54963:31;;:23;54978:7;54963:14;:23::i;:::-;:31;;;54955:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55069:1;55055:16;;:2;:16;;;;55047:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;55125:42;55146:4;55152:2;55156:7;55165:1;55125:20;:42::i;:::-;55297:4;55270:31;;:23;55285:7;55270:14;:23::i;:::-;:31;;;55262:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55415:15;:24;55431:7;55415:24;;;;;;;;;;;;55408:31;;;;;;;;;;;55910:1;55891:9;:15;55901:4;55891:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;55943:1;55926:9;:13;55936:2;55926:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;55985:2;55966:7;:16;55974:7;55966:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;56024:7;56020:2;56005:27;;56014:4;56005:27;;;;;;;;;;;;56045:41;56065:4;56071:2;56075:7;56084:1;56045:19;:41::i;:::-;54831:1263;;;:::o;34498:97::-;34556:6;34582:5;34575:12;;34498:97;:::o;51438:110::-;51514:26;51524:2;51528:7;51514:26;;;;;;;;;;;;:9;:26::i;:::-;51438:110;;:::o;50107:117::-;50173:7;50200;:16;50208:7;50200:16;;;;;;;;;;;;;;;;;;;;;50193:23;;50107:117;;;:::o;18594:191::-;18668:16;18687:6;;;;;;;;;;;18668:25;;18713:8;18704:6;;:17;;;;;;;;;;;;;;;;;;18768:8;18737:40;;18758:8;18737:40;;;;;;;;;;;;18594:191;;:::o;56530:315::-;56685:8;56676:17;;:5;:17;;;;56668:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56772:8;56734:18;:25;56753:5;56734:25;;;;;;;;;;;;;;;:35;56760:8;56734:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;56818:8;56796:41;;56811:5;56796:41;;;56828:8;56796:41;;;;;;:::i;:::-;;;;;;;;56530:315;;;:::o;49680:313::-;49836:28;49846:4;49852:2;49856:7;49836:9;:28::i;:::-;49883:47;49906:4;49912:2;49916:7;49925:4;49883:22;:47::i;:::-;49875:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;49680:313;;;;:::o;50537:128::-;50602:4;50655:1;50626:31;;:17;50635:7;50626:8;:17::i;:::-;:31;;;;50619:38;;50537:128;;;:::o;68093:195::-;68153:13;68179:101;;;;;;;;;;;;;;;;;;;68093:195;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;;;;;;;;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;61541:224::-;61643:4;61682:35;61667:50;;;:11;:50;;;;:90;;;;61721:36;61745:11;61721:23;:36::i;:::-;61667:90;61660:97;;61541:224;;;:::o;62678:915::-;62855:61;62882:4;62888:2;62892:12;62906:9;62855:26;:61::i;:::-;62945:1;62933:9;:13;62929:222;;;63076:63;;;;;;;;;;:::i;:::-;;;;;;;;62929:222;63163:15;63181:12;63163:30;;63226:1;63210:18;;:4;:18;;;63206:187;;;63245:40;63277:7;63245:31;:40::i;:::-;63206:187;;;63315:2;63307:10;;:4;:10;;;63303:90;;63334:47;63367:4;63373:7;63334:32;:47::i;:::-;63303:90;63206:187;63421:1;63407:16;;:2;:16;;;63403:183;;;63440:45;63477:7;63440:36;:45::i;:::-;63403:183;;;63513:4;63507:10;;:2;:10;;;63503:83;;63534:40;63562:2;63566:7;63534:27;:40::i;:::-;63503:83;63403:183;62678:915;;;;;:::o;60350:158::-;;;;;:::o;51775:319::-;51904:18;51910:2;51914:7;51904:5;:18::i;:::-;51955:53;51986:1;51990:2;51994:7;52003:4;51955:22;:53::i;:::-;51933:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;51775:319;;;:::o;57633:853::-;57787:4;57808:15;:2;:13;;;:15::i;:::-;57804:675;;;57860:2;57844:36;;;57881:12;:10;:12::i;:::-;57895:4;57901:7;57910:4;57844:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57840:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58102:1;58085:6;:13;:18;58081:328;;;58128:60;;;;;;;;;;:::i;:::-;;;;;;;;58081:328;58359:6;58353:13;58344:6;58340:2;58336:15;58329:38;57840:584;57976:41;;;57966:51;;;:6;:51;;;;57959:58;;;;;57804:675;58463:4;58456:11;;57633:853;;;;;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;;;;;;;;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;;;;;;;;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;;;;;;;;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;;;;;;;;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;;;;;;;;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;;;;;;;;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;44675:305::-;44777:4;44829:25;44814:40;;;:11;:40;;;;:105;;;;44886:33;44871:48;;;:11;:48;;;;44814:105;:158;;;;44936:36;44960:11;44936:23;:36::i;:::-;44814:158;44794:178;;44675:305;;;:::o;59218:410::-;59408:1;59396:9;:13;59392:229;;;59446:1;59430:18;;:4;:18;;;59426:87;;59488:9;59469;:15;59479:4;59469:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;59426:87;59545:1;59531:16;;:2;:16;;;59527:83;;59585:9;59568;:13;59578:2;59568:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;59527:83;59392:229;59218:410;;;;:::o;64316:164::-;64420:10;:17;;;;64393:15;:24;64409:7;64393:24;;;;;;;;;;;:44;;;;64448:10;64464:7;64448:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64316:164;:::o;65107:988::-;65373:22;65423:1;65398:22;65415:4;65398:16;:22::i;:::-;:26;;;;:::i;:::-;65373:51;;65435:18;65456:17;:26;65474:7;65456:26;;;;;;;;;;;;65435:47;;65603:14;65589:10;:28;65585:328;;65634:19;65656:12;:18;65669:4;65656:18;;;;;;;;;;;;;;;:34;65675:14;65656:34;;;;;;;;;;;;65634:56;;65740:11;65707:12;:18;65720:4;65707:18;;;;;;;;;;;;;;;:30;65726:10;65707:30;;;;;;;;;;;:44;;;;65857:10;65824:17;:30;65842:11;65824:30;;;;;;;;;;;:43;;;;65585:328;;66009:17;:26;66027:7;66009:26;;;;;;;;;;;66002:33;;;66053:12;:18;66066:4;66053:18;;;;;;;;;;;;;;;:34;66072:14;66053:34;;;;;;;;;;;66046:41;;;65107:988;;;;:::o;66390:1079::-;66643:22;66688:1;66668:10;:17;;;;:21;;;;:::i;:::-;66643:46;;66700:18;66721:15;:24;66737:7;66721:24;;;;;;;;;;;;66700:45;;67072:19;67094:10;67105:14;67094:26;;;;;;;;;;;;;;;;;;;;;;;;67072:48;;67158:11;67133:10;67144;67133:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;67269:10;67238:15;:28;67254:11;67238:28;;;;;;;;;;;:41;;;;67410:15;:24;67426:7;67410:24;;;;;;;;;;;67403:31;;;67445:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66390:1079;;;;:::o;63894:221::-;63979:14;63996:20;64013:2;63996:16;:20::i;:::-;63979:37;;64054:7;64027:12;:16;64040:2;64027:16;;;;;;;;;;;;;;;:24;64044:6;64027:24;;;;;;;;;;;:34;;;;64101:6;64072:17;:26;64090:7;64072:26;;;;;;;;;;;:35;;;;63894:221;;;:::o;52430:942::-;52524:1;52510:16;;:2;:16;;;;52502:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52583:16;52591:7;52583;:16::i;:::-;52582:17;52574:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52645:48;52674:1;52678:2;52682:7;52691:1;52645:20;:48::i;:::-;52792:16;52800:7;52792;:16::i;:::-;52791:17;52783:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;53207:1;53190:9;:13;53200:2;53190:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;53251:2;53232:7;:16;53240:7;53232:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;53296:7;53292:2;53271:33;;53288:1;53271:33;;;;;;;;;;;;53317:47;53345:1;53349:2;53353:7;53362:1;53317:19;:47::i;:::-;52430:942;;:::o;20025:326::-;20085:4;20342:1;20320:7;:19;;;:23;20313:30;;20025:326;;;:::o;31954:157::-;32039:4;32078:25;32063:40;;;:11;:40;;;;32056:47;;31954:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:352::-;;;1703:3;1696:4;1688:6;1684:17;1680:27;1670:2;;1721:1;1718;1711:12;1670:2;1757:6;1744:20;1734:30;;1787:18;1779:6;1776:30;1773:2;;;1819:1;1816;1809:12;1773:2;1856:4;1848:6;1844:17;1832:29;;1910:3;1902:4;1894:6;1890:17;1880:8;1876:32;1873:41;1870:2;;;1927:1;1924;1917:12;1870:2;1660:277;;;;;:::o;1957:273::-;;2062:3;2055:4;2047:6;2043:17;2039:27;2029:2;;2080:1;2077;2070:12;2029:2;2120:6;2107:20;2145:79;2220:3;2212:6;2205:4;2197:6;2193:17;2145:79;:::i;:::-;2136:88;;2019:211;;;;;:::o;2236:139::-;;2320:6;2307:20;2298:29;;2336:33;2363:5;2336:33;:::i;:::-;2288:87;;;;:::o;2381:137::-;;2464:6;2451:20;2442:29;;2480:32;2506:5;2480:32;:::i;:::-;2432:86;;;;:::o;2524:262::-;;2632:2;2620:9;2611:7;2607:23;2603:32;2600:2;;;2648:1;2645;2638:12;2600:2;2691:1;2716:53;2761:7;2752:6;2741:9;2737:22;2716:53;:::i;:::-;2706:63;;2662:117;2590:196;;;;:::o;2792:407::-;;;2917:2;2905:9;2896:7;2892:23;2888:32;2885:2;;;2933:1;2930;2923:12;2885:2;2976:1;3001:53;3046:7;3037:6;3026:9;3022:22;3001:53;:::i;:::-;2991:63;;2947:117;3103:2;3129:53;3174:7;3165:6;3154:9;3150:22;3129:53;:::i;:::-;3119:63;;3074:118;2875:324;;;;;:::o;3205:552::-;;;;3347:2;3335:9;3326:7;3322:23;3318:32;3315:2;;;3363:1;3360;3353:12;3315:2;3406:1;3431:53;3476:7;3467:6;3456:9;3452:22;3431:53;:::i;:::-;3421:63;;3377:117;3533:2;3559:53;3604:7;3595:6;3584:9;3580:22;3559:53;:::i;:::-;3549:63;;3504:118;3661:2;3687:53;3732:7;3723:6;3712:9;3708:22;3687:53;:::i;:::-;3677:63;;3632:118;3305:452;;;;;:::o;3763:809::-;;;;;3931:3;3919:9;3910:7;3906:23;3902:33;3899:2;;;3948:1;3945;3938:12;3899:2;3991:1;4016:53;4061:7;4052:6;4041:9;4037:22;4016:53;:::i;:::-;4006:63;;3962:117;4118:2;4144:53;4189:7;4180:6;4169:9;4165:22;4144:53;:::i;:::-;4134:63;;4089:118;4246:2;4272:53;4317:7;4308:6;4297:9;4293:22;4272:53;:::i;:::-;4262:63;;4217:118;4402:2;4391:9;4387:18;4374:32;4433:18;4425:6;4422:30;4419:2;;;4465:1;4462;4455:12;4419:2;4493:62;4547:7;4538:6;4527:9;4523:22;4493:62;:::i;:::-;4483:72;;4345:220;3889:683;;;;;;;:::o;4578:401::-;;;4700:2;4688:9;4679:7;4675:23;4671:32;4668:2;;;4716:1;4713;4706:12;4668:2;4759:1;4784:53;4829:7;4820:6;4809:9;4805:22;4784:53;:::i;:::-;4774:63;;4730:117;4886:2;4912:50;4954:7;4945:6;4934:9;4930:22;4912:50;:::i;:::-;4902:60;;4857:115;4658:321;;;;;:::o;4985:407::-;;;5110:2;5098:9;5089:7;5085:23;5081:32;5078:2;;;5126:1;5123;5116:12;5078:2;5169:1;5194:53;5239:7;5230:6;5219:9;5215:22;5194:53;:::i;:::-;5184:63;;5140:117;5296:2;5322:53;5367:7;5358:6;5347:9;5343:22;5322:53;:::i;:::-;5312:63;;5267:118;5068:324;;;;;:::o;5398:405::-;;;5522:2;5510:9;5501:7;5497:23;5493:32;5490:2;;;5538:1;5535;5528:12;5490:2;5581:1;5606:53;5651:7;5642:6;5631:9;5627:22;5606:53;:::i;:::-;5596:63;;5552:117;5708:2;5734:52;5778:7;5769:6;5758:9;5754:22;5734:52;:::i;:::-;5724:62;;5679:117;5480:323;;;;;:::o;5809:256::-;;5914:2;5902:9;5893:7;5889:23;5885:32;5882:2;;;5930:1;5927;5920:12;5882:2;5973:1;5998:50;6040:7;6031:6;6020:9;6016:22;5998:50;:::i;:::-;5988:60;;5944:114;5872:193;;;;:::o;6071:260::-;;6178:2;6166:9;6157:7;6153:23;6149:32;6146:2;;;6194:1;6191;6184:12;6146:2;6237:1;6262:52;6306:7;6297:6;6286:9;6282:22;6262:52;:::i;:::-;6252:62;;6208:116;6136:195;;;;:::o;6337:282::-;;6455:2;6443:9;6434:7;6430:23;6426:32;6423:2;;;6471:1;6468;6461:12;6423:2;6514:1;6539:63;6594:7;6585:6;6574:9;6570:22;6539:63;:::i;:::-;6529:73;;6485:127;6413:206;;;;:::o;6625:395::-;;;6753:2;6741:9;6732:7;6728:23;6724:32;6721:2;;;6769:1;6766;6759:12;6721:2;6840:1;6829:9;6825:17;6812:31;6870:18;6862:6;6859:30;6856:2;;;6902:1;6899;6892:12;6856:2;6938:65;6995:7;6986:6;6975:9;6971:22;6938:65;:::i;:::-;6920:83;;;;6783:230;6711:309;;;;;:::o;7026:375::-;;7144:2;7132:9;7123:7;7119:23;7115:32;7112:2;;;7160:1;7157;7150:12;7112:2;7231:1;7220:9;7216:17;7203:31;7261:18;7253:6;7250:30;7247:2;;;7293:1;7290;7283:12;7247:2;7321:63;7376:7;7367:6;7356:9;7352:22;7321:63;:::i;:::-;7311:73;;7174:220;7102:299;;;;:::o;7407:262::-;;7515:2;7503:9;7494:7;7490:23;7486:32;7483:2;;;7531:1;7528;7521:12;7483:2;7574:1;7599:53;7644:7;7635:6;7624:9;7620:22;7599:53;:::i;:::-;7589:63;;7545:117;7473:196;;;;:::o;7675:407::-;;;7800:2;7788:9;7779:7;7775:23;7771:32;7768:2;;;7816:1;7813;7806:12;7768:2;7859:1;7884:53;7929:7;7920:6;7909:9;7905:22;7884:53;:::i;:::-;7874:63;;7830:117;7986:2;8012:53;8057:7;8048:6;8037:9;8033:22;8012:53;:::i;:::-;8002:63;;7957:118;7758:324;;;;;:::o;8088:179::-;;8178:46;8220:3;8212:6;8178:46;:::i;:::-;8256:4;8251:3;8247:14;8233:28;;8168:99;;;;:::o;8273:118::-;8360:24;8378:5;8360:24;:::i;:::-;8355:3;8348:37;8338:53;;:::o;8427:732::-;;8575:54;8623:5;8575:54;:::i;:::-;8645:86;8724:6;8719:3;8645:86;:::i;:::-;8638:93;;8755:56;8805:5;8755:56;:::i;:::-;8834:7;8865:1;8850:284;8875:6;8872:1;8869:13;8850:284;;;8951:6;8945:13;8978:63;9037:3;9022:13;8978:63;:::i;:::-;8971:70;;9064:60;9117:6;9064:60;:::i;:::-;9054:70;;8910:224;8897:1;8894;8890:9;8885:14;;8850:284;;;8854:14;9150:3;9143:10;;8551:608;;;;;;;:::o;9165:109::-;9246:21;9261:5;9246:21;:::i;:::-;9241:3;9234:34;9224:50;;:::o;9280:360::-;;9394:38;9426:5;9394:38;:::i;:::-;9448:70;9511:6;9506:3;9448:70;:::i;:::-;9441:77;;9527:52;9572:6;9567:3;9560:4;9553:5;9549:16;9527:52;:::i;:::-;9604:29;9626:6;9604:29;:::i;:::-;9599:3;9595:39;9588:46;;9370:270;;;;;:::o;9646:364::-;;9762:39;9795:5;9762:39;:::i;:::-;9817:71;9881:6;9876:3;9817:71;:::i;:::-;9810:78;;9897:52;9942:6;9937:3;9930:4;9923:5;9919:16;9897:52;:::i;:::-;9974:29;9996:6;9974:29;:::i;:::-;9969:3;9965:39;9958:46;;9738:272;;;;;:::o;10016:377::-;;10150:39;10183:5;10150:39;:::i;:::-;10205:89;10287:6;10282:3;10205:89;:::i;:::-;10198:96;;10303:52;10348:6;10343:3;10336:4;10329:5;10325:16;10303:52;:::i;:::-;10380:6;10375:3;10371:16;10364:23;;10126:267;;;;;:::o;10423:845::-;;10563:5;10557:12;10592:36;10618:9;10592:36;:::i;:::-;10644:89;10726:6;10721:3;10644:89;:::i;:::-;10637:96;;10764:1;10753:9;10749:17;10780:1;10775:137;;;;10926:1;10921:341;;;;10742:520;;10775:137;10859:4;10855:9;10844;10840:25;10835:3;10828:38;10895:6;10890:3;10886:16;10879:23;;10775:137;;10921:341;10988:38;11020:5;10988:38;:::i;:::-;11048:1;11062:154;11076:6;11073:1;11070:13;11062:154;;;11150:7;11144:14;11140:1;11135:3;11131:11;11124:35;11200:1;11191:7;11187:15;11176:26;;11098:4;11095:1;11091:12;11086:17;;11062:154;;;11245:6;11240:3;11236:16;11229:23;;10928:334;;10742:520;;10530:738;;;;;;:::o;11274:366::-;;11437:67;11501:2;11496:3;11437:67;:::i;:::-;11430:74;;11513:93;11602:3;11513:93;:::i;:::-;11631:2;11626:3;11622:12;11615:19;;11420:220;;;:::o;11646:366::-;;11809:67;11873:2;11868:3;11809:67;:::i;:::-;11802:74;;11885:93;11974:3;11885:93;:::i;:::-;12003:2;11998:3;11994:12;11987:19;;11792:220;;;:::o;12018:366::-;;12181:67;12245:2;12240:3;12181:67;:::i;:::-;12174:74;;12257:93;12346:3;12257:93;:::i;:::-;12375:2;12370:3;12366:12;12359:19;;12164:220;;;:::o;12390:366::-;;12553:67;12617:2;12612:3;12553:67;:::i;:::-;12546:74;;12629:93;12718:3;12629:93;:::i;:::-;12747:2;12742:3;12738:12;12731:19;;12536:220;;;:::o;12762:366::-;;12925:67;12989:2;12984:3;12925:67;:::i;:::-;12918:74;;13001:93;13090:3;13001:93;:::i;:::-;13119:2;13114:3;13110:12;13103:19;;12908:220;;;:::o;13134:366::-;;13297:67;13361:2;13356:3;13297:67;:::i;:::-;13290:74;;13373:93;13462:3;13373:93;:::i;:::-;13491:2;13486:3;13482:12;13475:19;;13280:220;;;:::o;13506:366::-;;13669:67;13733:2;13728:3;13669:67;:::i;:::-;13662:74;;13745:93;13834:3;13745:93;:::i;:::-;13863:2;13858:3;13854:12;13847:19;;13652:220;;;:::o;13878:366::-;;14041:67;14105:2;14100:3;14041:67;:::i;:::-;14034:74;;14117:93;14206:3;14117:93;:::i;:::-;14235:2;14230:3;14226:12;14219:19;;14024:220;;;:::o;14250:366::-;;14413:67;14477:2;14472:3;14413:67;:::i;:::-;14406:74;;14489:93;14578:3;14489:93;:::i;:::-;14607:2;14602:3;14598:12;14591:19;;14396:220;;;:::o;14622:366::-;;14785:67;14849:2;14844:3;14785:67;:::i;:::-;14778:74;;14861:93;14950:3;14861:93;:::i;:::-;14979:2;14974:3;14970:12;14963:19;;14768:220;;;:::o;14994:366::-;;15157:67;15221:2;15216:3;15157:67;:::i;:::-;15150:74;;15233:93;15322:3;15233:93;:::i;:::-;15351:2;15346:3;15342:12;15335:19;;15140:220;;;:::o;15366:366::-;;15529:67;15593:2;15588:3;15529:67;:::i;:::-;15522:74;;15605:93;15694:3;15605:93;:::i;:::-;15723:2;15718:3;15714:12;15707:19;;15512:220;;;:::o;15738:366::-;;15901:67;15965:2;15960:3;15901:67;:::i;:::-;15894:74;;15977:93;16066:3;15977:93;:::i;:::-;16095:2;16090:3;16086:12;16079:19;;15884:220;;;:::o;16110:366::-;;16273:67;16337:2;16332:3;16273:67;:::i;:::-;16266:74;;16349:93;16438:3;16349:93;:::i;:::-;16467:2;16462:3;16458:12;16451:19;;16256:220;;;:::o;16482:366::-;;16645:67;16709:2;16704:3;16645:67;:::i;:::-;16638:74;;16721:93;16810:3;16721:93;:::i;:::-;16839:2;16834:3;16830:12;16823:19;;16628:220;;;:::o;16854:366::-;;17017:67;17081:2;17076:3;17017:67;:::i;:::-;17010:74;;17093:93;17182:3;17093:93;:::i;:::-;17211:2;17206:3;17202:12;17195:19;;17000:220;;;:::o;17226:366::-;;17389:67;17453:2;17448:3;17389:67;:::i;:::-;17382:74;;17465:93;17554:3;17465:93;:::i;:::-;17583:2;17578:3;17574:12;17567:19;;17372:220;;;:::o;17598:366::-;;17761:67;17825:2;17820:3;17761:67;:::i;:::-;17754:74;;17837:93;17926:3;17837:93;:::i;:::-;17955:2;17950:3;17946:12;17939:19;;17744:220;;;:::o;17970:366::-;;18133:67;18197:2;18192:3;18133:67;:::i;:::-;18126:74;;18209:93;18298:3;18209:93;:::i;:::-;18327:2;18322:3;18318:12;18311:19;;18116:220;;;:::o;18342:108::-;18419:24;18437:5;18419:24;:::i;:::-;18414:3;18407:37;18397:53;;:::o;18456:118::-;18543:24;18561:5;18543:24;:::i;:::-;18538:3;18531:37;18521:53;;:::o;18580:589::-;;18827:95;18918:3;18909:6;18827:95;:::i;:::-;18820:102;;18939:95;19030:3;19021:6;18939:95;:::i;:::-;18932:102;;19051:92;19139:3;19130:6;19051:92;:::i;:::-;19044:99;;19160:3;19153:10;;18809:360;;;;;;:::o;19175:222::-;;19306:2;19295:9;19291:18;19283:26;;19319:71;19387:1;19376:9;19372:17;19363:6;19319:71;:::i;:::-;19273:124;;;;:::o;19403:640::-;;19636:3;19625:9;19621:19;19613:27;;19650:71;19718:1;19707:9;19703:17;19694:6;19650:71;:::i;:::-;19731:72;19799:2;19788:9;19784:18;19775:6;19731:72;:::i;:::-;19813;19881:2;19870:9;19866:18;19857:6;19813:72;:::i;:::-;19932:9;19926:4;19922:20;19917:2;19906:9;19902:18;19895:48;19960:76;20031:4;20022:6;19960:76;:::i;:::-;19952:84;;19603:440;;;;;;;:::o;20049:332::-;;20208:2;20197:9;20193:18;20185:26;;20221:71;20289:1;20278:9;20274:17;20265:6;20221:71;:::i;:::-;20302:72;20370:2;20359:9;20355:18;20346:6;20302:72;:::i;:::-;20175:206;;;;;:::o;20387:373::-;;20568:2;20557:9;20553:18;20545:26;;20617:9;20611:4;20607:20;20603:1;20592:9;20588:17;20581:47;20645:108;20748:4;20739:6;20645:108;:::i;:::-;20637:116;;20535:225;;;;:::o;20766:210::-;;20891:2;20880:9;20876:18;20868:26;;20904:65;20966:1;20955:9;20951:17;20942:6;20904:65;:::i;:::-;20858:118;;;;:::o;20982:313::-;;21133:2;21122:9;21118:18;21110:26;;21182:9;21176:4;21172:20;21168:1;21157:9;21153:17;21146:47;21210:78;21283:4;21274:6;21210:78;:::i;:::-;21202:86;;21100:195;;;;:::o;21301:419::-;;21505:2;21494:9;21490:18;21482:26;;21554:9;21548:4;21544:20;21540:1;21529:9;21525:17;21518:47;21582:131;21708:4;21582:131;:::i;:::-;21574:139;;21472:248;;;:::o;21726:419::-;;21930:2;21919:9;21915:18;21907:26;;21979:9;21973:4;21969:20;21965:1;21954:9;21950:17;21943:47;22007:131;22133:4;22007:131;:::i;:::-;21999:139;;21897:248;;;:::o;22151:419::-;;22355:2;22344:9;22340:18;22332:26;;22404:9;22398:4;22394:20;22390:1;22379:9;22375:17;22368:47;22432:131;22558:4;22432:131;:::i;:::-;22424:139;;22322:248;;;:::o;22576:419::-;;22780:2;22769:9;22765:18;22757:26;;22829:9;22823:4;22819:20;22815:1;22804:9;22800:17;22793:47;22857:131;22983:4;22857:131;:::i;:::-;22849:139;;22747:248;;;:::o;23001:419::-;;23205:2;23194:9;23190:18;23182:26;;23254:9;23248:4;23244:20;23240:1;23229:9;23225:17;23218:47;23282:131;23408:4;23282:131;:::i;:::-;23274:139;;23172:248;;;:::o;23426:419::-;;23630:2;23619:9;23615:18;23607:26;;23679:9;23673:4;23669:20;23665:1;23654:9;23650:17;23643:47;23707:131;23833:4;23707:131;:::i;:::-;23699:139;;23597:248;;;:::o;23851:419::-;;24055:2;24044:9;24040:18;24032:26;;24104:9;24098:4;24094:20;24090:1;24079:9;24075:17;24068:47;24132:131;24258:4;24132:131;:::i;:::-;24124:139;;24022:248;;;:::o;24276:419::-;;24480:2;24469:9;24465:18;24457:26;;24529:9;24523:4;24519:20;24515:1;24504:9;24500:17;24493:47;24557:131;24683:4;24557:131;:::i;:::-;24549:139;;24447:248;;;:::o;24701:419::-;;24905:2;24894:9;24890:18;24882:26;;24954:9;24948:4;24944:20;24940:1;24929:9;24925:17;24918:47;24982:131;25108:4;24982:131;:::i;:::-;24974:139;;24872:248;;;:::o;25126:419::-;;25330:2;25319:9;25315:18;25307:26;;25379:9;25373:4;25369:20;25365:1;25354:9;25350:17;25343:47;25407:131;25533:4;25407:131;:::i;:::-;25399:139;;25297:248;;;:::o;25551:419::-;;25755:2;25744:9;25740:18;25732:26;;25804:9;25798:4;25794:20;25790:1;25779:9;25775:17;25768:47;25832:131;25958:4;25832:131;:::i;:::-;25824:139;;25722:248;;;:::o;25976:419::-;;26180:2;26169:9;26165:18;26157:26;;26229:9;26223:4;26219:20;26215:1;26204:9;26200:17;26193:47;26257:131;26383:4;26257:131;:::i;:::-;26249:139;;26147:248;;;:::o;26401:419::-;;26605:2;26594:9;26590:18;26582:26;;26654:9;26648:4;26644:20;26640:1;26629:9;26625:17;26618:47;26682:131;26808:4;26682:131;:::i;:::-;26674:139;;26572:248;;;:::o;26826:419::-;;27030:2;27019:9;27015:18;27007:26;;27079:9;27073:4;27069:20;27065:1;27054:9;27050:17;27043:47;27107:131;27233:4;27107:131;:::i;:::-;27099:139;;26997:248;;;:::o;27251:419::-;;27455:2;27444:9;27440:18;27432:26;;27504:9;27498:4;27494:20;27490:1;27479:9;27475:17;27468:47;27532:131;27658:4;27532:131;:::i;:::-;27524:139;;27422:248;;;:::o;27676:419::-;;27880:2;27869:9;27865:18;27857:26;;27929:9;27923:4;27919:20;27915:1;27904:9;27900:17;27893:47;27957:131;28083:4;27957:131;:::i;:::-;27949:139;;27847:248;;;:::o;28101:419::-;;28305:2;28294:9;28290:18;28282:26;;28354:9;28348:4;28344:20;28340:1;28329:9;28325:17;28318:47;28382:131;28508:4;28382:131;:::i;:::-;28374:139;;28272:248;;;:::o;28526:419::-;;28730:2;28719:9;28715:18;28707:26;;28779:9;28773:4;28769:20;28765:1;28754:9;28750:17;28743:47;28807:131;28933:4;28807:131;:::i;:::-;28799:139;;28697:248;;;:::o;28951:419::-;;29155:2;29144:9;29140:18;29132:26;;29204:9;29198:4;29194:20;29190:1;29179:9;29175:17;29168:47;29232:131;29358:4;29232:131;:::i;:::-;29224:139;;29122:248;;;:::o;29376:222::-;;29507:2;29496:9;29492:18;29484:26;;29520:71;29588:1;29577:9;29573:17;29564:6;29520:71;:::i;:::-;29474:124;;;;:::o;29604:129::-;;29665:20;;:::i;:::-;29655:30;;29694:33;29722:4;29714:6;29694:33;:::i;:::-;29645:88;;;:::o;29739:75::-;;29805:2;29799:9;29789:19;;29779:35;:::o;29820:307::-;;29971:18;29963:6;29960:30;29957:2;;;29993:18;;:::i;:::-;29957:2;30031:29;30053:6;30031:29;:::i;:::-;30023:37;;30115:4;30109;30105:15;30097:23;;29886:241;;;:::o;30133:308::-;;30285:18;30277:6;30274:30;30271:2;;;30307:18;;:::i;:::-;30271:2;30345:29;30367:6;30345:29;:::i;:::-;30337:37;;30429:4;30423;30419:15;30411:23;;30200:241;;;:::o;30447:132::-;;30537:3;30529:11;;30567:4;30562:3;30558:14;30550:22;;30519:60;;;:::o;30585:141::-;;30657:3;30649:11;;30680:3;30677:1;30670:14;30714:4;30711:1;30701:18;30693:26;;30639:87;;;:::o;30732:114::-;;30833:5;30827:12;30817:22;;30806:40;;;:::o;30852:98::-;;30937:5;30931:12;30921:22;;30910:40;;;:::o;30956:99::-;;31042:5;31036:12;31026:22;;31015:40;;;:::o;31061:113::-;;31163:4;31158:3;31154:14;31146:22;;31136:38;;;:::o;31180:184::-;;31313:6;31308:3;31301:19;31353:4;31348:3;31344:14;31329:29;;31291:73;;;;:::o;31370:168::-;;31487:6;31482:3;31475:19;31527:4;31522:3;31518:14;31503:29;;31465:73;;;;:::o;31544:169::-;;31662:6;31657:3;31650:19;31702:4;31697:3;31693:14;31678:29;;31640:73;;;;:::o;31719:148::-;;31858:3;31843:18;;31833:34;;;;:::o;31873:305::-;;31932:20;31950:1;31932:20;:::i;:::-;31927:25;;31966:20;31984:1;31966:20;:::i;:::-;31961:25;;32120:1;32052:66;32048:74;32045:1;32042:81;32039:2;;;32126:18;;:::i;:::-;32039:2;32170:1;32167;32163:9;32156:16;;31917:261;;;;:::o;32184:185::-;;32241:20;32259:1;32241:20;:::i;:::-;32236:25;;32275:20;32293:1;32275:20;:::i;:::-;32270:25;;32314:1;32304:2;;32319:18;;:::i;:::-;32304:2;32361:1;32358;32354:9;32349:14;;32226:143;;;;:::o;32375:348::-;;32438:20;32456:1;32438:20;:::i;:::-;32433:25;;32472:20;32490:1;32472:20;:::i;:::-;32467:25;;32660:1;32592:66;32588:74;32585:1;32582:81;32577:1;32570:9;32563:17;32559:105;32556:2;;;32667:18;;:::i;:::-;32556:2;32715:1;32712;32708:9;32697:20;;32423:300;;;;:::o;32729:191::-;;32789:20;32807:1;32789:20;:::i;:::-;32784:25;;32823:20;32841:1;32823:20;:::i;:::-;32818:25;;32862:1;32859;32856:8;32853:2;;;32867:18;;:::i;:::-;32853:2;32912:1;32909;32905:9;32897:17;;32774:146;;;;:::o;32926:96::-;;32992:24;33010:5;32992:24;:::i;:::-;32981:35;;32971:51;;;:::o;33028:90::-;;33105:5;33098:13;33091:21;33080:32;;33070:48;;;:::o;33124:149::-;;33200:66;33193:5;33189:78;33178:89;;33168:105;;;:::o;33279:126::-;;33356:42;33349:5;33345:54;33334:65;;33324:81;;;:::o;33411:77::-;;33477:5;33466:16;;33456:32;;;:::o;33494:109::-;;33570:26;33563:5;33559:38;33548:49;;33538:65;;;:::o;33609:154::-;33693:6;33688:3;33683;33670:30;33755:1;33746:6;33741:3;33737:16;33730:27;33660:103;;;:::o;33769:307::-;33837:1;33847:113;33861:6;33858:1;33855:13;33847:113;;;33946:1;33941:3;33937:11;33931:18;33927:1;33922:3;33918:11;33911:39;33883:2;33880:1;33876:10;33871:15;;33847:113;;;33978:6;33975:1;33972:13;33969:2;;;34058:1;34049:6;34044:3;34040:16;34033:27;33969:2;33818:258;;;;:::o;34082:320::-;;34163:1;34157:4;34153:12;34143:22;;34210:1;34204:4;34200:12;34231:18;34221:2;;34287:4;34279:6;34275:17;34265:27;;34221:2;34349;34341:6;34338:14;34318:18;34315:38;34312:2;;;34368:18;;:::i;:::-;34312:2;34133:269;;;;:::o;34408:281::-;34491:27;34513:4;34491:27;:::i;:::-;34483:6;34479:40;34621:6;34609:10;34606:22;34585:18;34573:10;34570:34;34567:62;34564:2;;;34632:18;;:::i;:::-;34564:2;34672:10;34668:2;34661:22;34451:238;;;:::o;34695:233::-;;34757:24;34775:5;34757:24;:::i;:::-;34748:33;;34803:66;34796:5;34793:77;34790:2;;;34873:18;;:::i;:::-;34790:2;34920:1;34913:5;34909:13;34902:20;;34738:190;;;:::o;34934:180::-;34982:77;34979:1;34972:88;35079:4;35076:1;35069:15;35103:4;35100:1;35093:15;35120:180;35168:77;35165:1;35158:88;35265:4;35262:1;35255:15;35289:4;35286:1;35279:15;35306:180;35354:77;35351:1;35344:88;35451:4;35448:1;35441:15;35475:4;35472:1;35465:15;35492:180;35540:77;35537:1;35530:88;35637:4;35634:1;35627:15;35661:4;35658:1;35651:15;35678:102;;35770:2;35766:7;35761:2;35754:5;35750:14;35746:28;35736:38;;35726:54;;;:::o;35786:232::-;35926:34;35922:1;35914:6;35910:14;35903:58;35995:15;35990:2;35982:6;35978:15;35971:40;35892:126;:::o;36024:230::-;36164:34;36160:1;36152:6;36148:14;36141:58;36233:13;36228:2;36220:6;36216:15;36209:38;36130:124;:::o;36260:237::-;36400:34;36396:1;36388:6;36384:14;36377:58;36469:20;36464:2;36456:6;36452:15;36445:45;36366:131;:::o;36503:225::-;36643:34;36639:1;36631:6;36627:14;36620:58;36712:8;36707:2;36699:6;36695:15;36688:33;36609:119;:::o;36734:224::-;36874:34;36870:1;36862:6;36858:14;36851:58;36943:7;36938:2;36930:6;36926:15;36919:32;36840:118;:::o;36964:178::-;37104:30;37100:1;37092:6;37088:14;37081:54;37070:72;:::o;37148:223::-;37288:34;37284:1;37276:6;37272:14;37265:58;37357:6;37352:2;37344:6;37340:15;37333:31;37254:117;:::o;37377:175::-;37517:27;37513:1;37505:6;37501:14;37494:51;37483:69;:::o;37558:228::-;37698:34;37694:1;37686:6;37682:14;37675:58;37767:11;37762:2;37754:6;37750:15;37743:36;37664:122;:::o;37792:182::-;37932:34;37928:1;37920:6;37916:14;37909:58;37898:76;:::o;37980:182::-;38120:34;38116:1;38108:6;38104:14;38097:58;38086:76;:::o;38168:234::-;38308:34;38304:1;38296:6;38292:14;38285:58;38377:17;38372:2;38364:6;38360:15;38353:42;38274:128;:::o;38408:174::-;38548:26;38544:1;38536:6;38532:14;38525:50;38514:68;:::o;38588:220::-;38728:34;38724:1;38716:6;38712:14;38705:58;38797:3;38792:2;38784:6;38780:15;38773:28;38694:114;:::o;38814:248::-;38954:34;38950:1;38942:6;38938:14;38931:58;39023:31;39018:2;39010:6;39006:15;38999:56;38920:142;:::o;39068:231::-;39208:34;39204:1;39196:6;39192:14;39185:58;39277:14;39272:2;39264:6;39260:15;39253:39;39174:125;:::o;39305:240::-;39445:34;39441:1;39433:6;39429:14;39422:58;39514:23;39509:2;39501:6;39497:15;39490:48;39411:134;:::o;39551:229::-;39691:34;39687:1;39679:6;39675:14;39668:58;39760:12;39755:2;39747:6;39743:15;39736:37;39657:123;:::o;39786:175::-;39926:27;39922:1;39914:6;39910:14;39903:51;39892:69;:::o;39967:122::-;40040:24;40058:5;40040:24;:::i;:::-;40033:5;40030:35;40020:2;;40079:1;40076;40069:12;40020:2;40010:79;:::o;40095:116::-;40165:21;40180:5;40165:21;:::i;:::-;40158:5;40155:32;40145:2;;40201:1;40198;40191:12;40145:2;40135:76;:::o;40217:120::-;40289:23;40306:5;40289:23;:::i;:::-;40282:5;40279:34;40269:2;;40327:1;40324;40317:12;40269:2;40259:78;:::o;40343:122::-;40416:24;40434:5;40416:24;:::i;:::-;40409:5;40406:35;40396:2;;40455:1;40452;40445:12;40396:2;40386:79;:::o;40471:120::-;40543:23;40560:5;40543:23;:::i;:::-;40536:5;40533:34;40523:2;;40581:1;40578;40571:12;40523:2;40513:78;:::o

Swarm Source

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