ETH Price: $2,523.06 (+0.24%)

Token

milAidy (MILAIDY)
 

Overview

Max Total Supply

11 MILAIDY

Holders

7

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MILAIDY
0xa8bc6f2daaf5409951264756b01b244fb01018d6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
milAidy

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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/security/Pausable.sol


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

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: https://github.com/exo-digital-labs/ERC721R/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs
// Forked to make private methods internal instead

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string internal _name;

    // Token symbol
    string internal _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) internal _addressData;

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

// File: contracts/milaidy.sol


pragma solidity ^0.8.9;




contract milAidy is ERC721A, Ownable, Pausable {
    uint256 public mintPrice = .0069 ether;
    uint256 public maxMintPerUser = 25;
    uint256 public maxMintSupply = 1000;

    string private _baseTokenURI;

    constructor() ERC721A("milAidy", "MILAIDY") {
        _baseTokenURI = "ipfs://QmSjp728xsGRtQSVFYcovkuZ1kSx8Wtu4Yh2wePUzbAqWc/";
    }

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

    function safeMint(uint256 quantity) public payable whenNotPaused {
        require(msg.value >= quantity * mintPrice, "Not enough funds");
        require(_numberMinted(msg.sender) + quantity <= maxMintPerUser, "Mint Limit");
        require(_totalMinted() + quantity <= maxMintSupply, "SOLD OUT");

        _safeMint(msg.sender, quantity);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(msg.sender), balance);
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        _baseTokenURI = newBaseURI;
    }

    function setMintPrice(uint256 newMintPrice) external onlyOwner {
        mintPrice = newMintPrice;
    }

    function setMaxMintSupply(uint256 newMaxMintSupply) external onlyOwner {
        maxMintSupply = newMaxMintSupply;
    }

    function setMaxMintPerUser(uint256 newMaxMintPerUser) external onlyOwner {
        maxMintPerUser = newMaxMintPerUser;
    }

    function numberMinted(address user) external view returns (uint256) {
        return _numberMinted(user);
    }

    function totalMinted() external view returns (uint256) {
        return _totalMinted();
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintPerUser","type":"uint256"}],"name":"setMaxMintPerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526618838370f340006009556019600a556103e8600b553480156200002757600080fd5b506040518060400160405280600781526020017f6d696c41696479000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d494c41494459000000000000000000000000000000000000000000000000008152508160029080519060200190620000ac92919062000224565b508060039080519060200190620000c592919062000224565b50620000d66200015160201b60201c565b6000819055505050620000fe620000f26200015660201b60201c565b6200015e60201b60201c565b6000600860146101000a81548160ff021916908315150217905550604051806060016040528060368152602001620038a960369139600c90805190602001906200014a92919062000224565b5062000339565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002329062000303565b90600052602060002090601f016020900481019282620002565760008555620002a2565b82601f106200027157805160ff1916838001178555620002a2565b82800160010185558215620002a2579182015b82811115620002a157825182559160200191906001019062000284565b5b509050620002b19190620002b5565b5090565b5b80821115620002d0576000816000905550600101620002b6565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031c57607f821691505b60208210811415620003335762000332620002d4565b5b50919050565b61356080620003496000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063dc33e68111610064578063dc33e68114610651578063e985e9c51461068e578063f2fde38b146106cb578063f4a0a528146106f4576101d8565b8063b88d4fde14610595578063c285e107146105be578063c87b56dd146105e9578063d304c4bc14610626576101d8565b80638da5cb5b116100d15780638da5cb5b146104eb57806395d89b4114610516578063a22cb46514610541578063a2309ff81461056a576101d8565b8063715018a61461046b5780637389fbb71461048257806383ccaef7146104ab5780638456cb59146104d4576101d8565b80633ccfd60b1161017a5780635c975abb116101495780635c975abb1461039b5780636352211e146103c65780636817c76c1461040357806370a082311461042e576101d8565b80633ccfd60b1461031b5780633f4ba83a1461033257806342842e0e1461034957806355f804b314610372576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d657806331c864e8146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612816565b61071d565b604051610211919061285e565b60405180910390f35b34801561022657600080fd5b5061022f6107ff565b60405161023c9190612912565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061296a565b610891565b60405161027991906129d8565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612a1f565b61090d565b005b3480156102b757600080fd5b506102c0610a18565b6040516102cd9190612a6e565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612a89565b610a2f565b005b6103196004803603810190610314919061296a565b610a3f565b005b34801561032757600080fd5b50610330610b53565b005b34801561033e57600080fd5b50610347610b6d565b005b34801561035557600080fd5b50610370600480360381019061036b9190612a89565b610b7f565b005b34801561037e57600080fd5b5061039960048036038101906103949190612b41565b610b9f565b005b3480156103a757600080fd5b506103b0610bbd565b6040516103bd919061285e565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e8919061296a565b610bd4565b6040516103fa91906129d8565b60405180910390f35b34801561040f57600080fd5b50610418610bea565b6040516104259190612a6e565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612b8e565b610bf0565b6040516104629190612a6e565b60405180910390f35b34801561047757600080fd5b50610480610cc0565b005b34801561048e57600080fd5b506104a960048036038101906104a4919061296a565b610cd4565b005b3480156104b757600080fd5b506104d260048036038101906104cd919061296a565b610ce6565b005b3480156104e057600080fd5b506104e9610cf8565b005b3480156104f757600080fd5b50610500610d0a565b60405161050d91906129d8565b60405180910390f35b34801561052257600080fd5b5061052b610d34565b6040516105389190612912565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612be7565b610dc6565b005b34801561057657600080fd5b5061057f610f3e565b60405161058c9190612a6e565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190612d57565b610f4d565b005b3480156105ca57600080fd5b506105d3610fc9565b6040516105e09190612a6e565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b919061296a565b610fcf565b60405161061d9190612912565b60405180910390f35b34801561063257600080fd5b5061063b61106e565b6040516106489190612a6e565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190612b8e565b611074565b6040516106859190612a6e565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612dda565b611086565b6040516106c2919061285e565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612b8e565b61111a565b005b34801561070057600080fd5b5061071b6004803603810190610716919061296a565b61119e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f857506107f7826111b0565b5b9050919050565b60606002805461080e90612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461083a90612e49565b80156108875780601f1061085c57610100808354040283529160200191610887565b820191906000526020600020905b81548152906001019060200180831161086a57829003601f168201915b5050505050905090565b600061089c8261121a565b6108d2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091882610bd4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610980576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661099f611268565b73ffffffffffffffffffffffffffffffffffffffff16141580156109d157506109cf816109ca611268565b611086565b155b15610a08576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a13838383611270565b505050565b6000610a22611322565b6001546000540303905090565b610a3a838383611327565b505050565b610a476117dd565b60095481610a559190612eaa565b341015610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90612f50565b60405180910390fd5b600a5481610aa433611827565b610aae9190612f70565b1115610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613012565b60405180910390fd5b600b5481610afb611891565b610b059190612f70565b1115610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d9061307e565b60405180910390fd5b610b5033826118a4565b50565b610b5b6118c2565b6000479050610b6a3382611940565b50565b610b756118c2565b610b7d611a34565b565b610b9a83838360405180602001604052806000815250610f4d565b505050565b610ba76118c2565b8181600c9190610bb89291906126c4565b505050565b6000600860149054906101000a900460ff16905090565b6000610bdf82611a97565b600001519050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610cc86118c2565b610cd26000611d26565b565b610cdc6118c2565b80600b8190555050565b610cee6118c2565b80600a8190555050565b610d006118c2565b610d08611dec565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d4390612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6f90612e49565b8015610dbc5780601f10610d9157610100808354040283529160200191610dbc565b820191906000526020600020905b815481529060010190602001808311610d9f57829003601f168201915b5050505050905090565b610dce611268565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e33576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610e40611268565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610eed611268565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f32919061285e565b60405180910390a35050565b6000610f48611891565b905090565b610f58848484611327565b610f778373ffffffffffffffffffffffffffffffffffffffff16611e4f565b8015610f8c5750610f8a84848484611e72565b155b15610fc3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b5481565b6060610fda8261121a565b611010576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061101a611fd2565b905060008151141561103b5760405180602001604052806000815250611066565b8061104584612064565b6040516020016110569291906130da565b6040516020818303038152906040525b915050919050565b600a5481565b600061107f82611827565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111226118c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990613170565b60405180910390fd5b61119b81611d26565b50565b6111a66118c2565b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611225611322565b11158015611234575060005482105b8015611261575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061133282611a97565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461139d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166113be611268565b73ffffffffffffffffffffffffffffffffffffffff1614806113ed57506113ec856113e7611268565b611086565b5b8061143257506113fb611268565b73ffffffffffffffffffffffffffffffffffffffff1661141a84610891565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061146b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114d2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114df858585600161213c565b6114eb60008487611270565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561176b57600054821461176a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117d68585856001612142565b5050505050565b6117e5610bbd565b15611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c906131dc565b60405180910390fd5b565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600061189b611322565b60005403905090565b6118be828260405180602001604052806000815250612148565b5050565b6118ca611268565b73ffffffffffffffffffffffffffffffffffffffff166118e8610d0a565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613248565b60405180910390fd5b565b80471015611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a906132b4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516119a990613305565b60006040518083038185875af1925050503d80600081146119e6576040519150601f19603f3d011682016040523d82523d6000602084013e6119eb565b606091505b5050905080611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a269061338c565b60405180910390fd5b505050565b611a3c61215a565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a80611268565b604051611a8d91906129d8565b60405180910390a1565b611a9f61274a565b600082905080611aad611322565b11158015611abc575060005481105b15611cef576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ced57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bd1578092505050611d21565b5b600115611cec57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ce7578092505050611d21565b611bd2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611df46117dd565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e38611268565b604051611e4591906129d8565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e98611268565b8786866040518563ffffffff1660e01b8152600401611eba9493929190613401565b602060405180830381600087803b158015611ed457600080fd5b505af1925050508015611f0557506040513d601f19601f82011682018060405250810190611f029190613462565b60015b611f7f573d8060008114611f35576040519150601f19603f3d011682016040523d82523d6000602084013e611f3a565b606091505b50600081511415611f77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611fe190612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461200d90612e49565b801561205a5780601f1061202f5761010080835404028352916020019161205a565b820191906000526020600020905b81548152906001019060200180831161203d57829003601f168201915b5050505050905090565b606060006001612073846121a3565b01905060008167ffffffffffffffff81111561209257612091612c2c565b5b6040519080825280601f01601f1916602001820160405280156120c45781602001600182028036833780820191505090505b509050600082602001820190505b600115612131578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161211b5761211a61348f565b5b049450600085141561212c57612131565b6120d2565b819350505050919050565b50505050565b50505050565b61215583838360016122f6565b505050565b612162610bbd565b6121a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121989061350a565b60405180910390fd5b565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612201577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121f7576121f661348f565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061223e576d04ee2d6d415b85acef810000000083816122345761223361348f565b5b0492506020810190505b662386f26fc10000831061226d57662386f26fc1000083816122635761226261348f565b5b0492506010810190505b6305f5e1008310612296576305f5e100838161228c5761228b61348f565b5b0492506008810190505b61271083106122bb5761271083816122b1576122b061348f565b5b0492506004810190505b606483106122de57606483816122d4576122d361348f565b5b0492506002810190505b600a83106122ed576001810190505b80915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612363576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561239e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123ab600086838761213c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561257557506125748773ffffffffffffffffffffffffffffffffffffffff16611e4f565b5b1561263b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ea6000888480600101955088611e72565b612620576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561257b57826000541461263657600080fd5b6126a7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561263c575b8160008190555050506126bd6000868387612142565b5050505050565b8280546126d090612e49565b90600052602060002090601f0160209004810192826126f25760008555612739565b82601f1061270b57803560ff1916838001178555612739565b82800160010185558215612739579182015b8281111561273857823582559160200191906001019061271d565b5b509050612746919061278d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156127a657600081600090555060010161278e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127f3816127be565b81146127fe57600080fd5b50565b600081359050612810816127ea565b92915050565b60006020828403121561282c5761282b6127b4565b5b600061283a84828501612801565b91505092915050565b60008115159050919050565b61285881612843565b82525050565b6000602082019050612873600083018461284f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128b3578082015181840152602081019050612898565b838111156128c2576000848401525b50505050565b6000601f19601f8301169050919050565b60006128e482612879565b6128ee8185612884565b93506128fe818560208601612895565b612907816128c8565b840191505092915050565b6000602082019050818103600083015261292c81846128d9565b905092915050565b6000819050919050565b61294781612934565b811461295257600080fd5b50565b6000813590506129648161293e565b92915050565b6000602082840312156129805761297f6127b4565b5b600061298e84828501612955565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129c282612997565b9050919050565b6129d2816129b7565b82525050565b60006020820190506129ed60008301846129c9565b92915050565b6129fc816129b7565b8114612a0757600080fd5b50565b600081359050612a19816129f3565b92915050565b60008060408385031215612a3657612a356127b4565b5b6000612a4485828601612a0a565b9250506020612a5585828601612955565b9150509250929050565b612a6881612934565b82525050565b6000602082019050612a836000830184612a5f565b92915050565b600080600060608486031215612aa257612aa16127b4565b5b6000612ab086828701612a0a565b9350506020612ac186828701612a0a565b9250506040612ad286828701612955565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612b0157612b00612adc565b5b8235905067ffffffffffffffff811115612b1e57612b1d612ae1565b5b602083019150836001820283011115612b3a57612b39612ae6565b5b9250929050565b60008060208385031215612b5857612b576127b4565b5b600083013567ffffffffffffffff811115612b7657612b756127b9565b5b612b8285828601612aeb565b92509250509250929050565b600060208284031215612ba457612ba36127b4565b5b6000612bb284828501612a0a565b91505092915050565b612bc481612843565b8114612bcf57600080fd5b50565b600081359050612be181612bbb565b92915050565b60008060408385031215612bfe57612bfd6127b4565b5b6000612c0c85828601612a0a565b9250506020612c1d85828601612bd2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c64826128c8565b810181811067ffffffffffffffff82111715612c8357612c82612c2c565b5b80604052505050565b6000612c966127aa565b9050612ca28282612c5b565b919050565b600067ffffffffffffffff821115612cc257612cc1612c2c565b5b612ccb826128c8565b9050602081019050919050565b82818337600083830152505050565b6000612cfa612cf584612ca7565b612c8c565b905082815260208101848484011115612d1657612d15612c27565b5b612d21848285612cd8565b509392505050565b600082601f830112612d3e57612d3d612adc565b5b8135612d4e848260208601612ce7565b91505092915050565b60008060008060808587031215612d7157612d706127b4565b5b6000612d7f87828801612a0a565b9450506020612d9087828801612a0a565b9350506040612da187828801612955565b925050606085013567ffffffffffffffff811115612dc257612dc16127b9565b5b612dce87828801612d29565b91505092959194509250565b60008060408385031215612df157612df06127b4565b5b6000612dff85828601612a0a565b9250506020612e1085828601612a0a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e6157607f821691505b60208210811415612e7557612e74612e1a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612eb582612934565b9150612ec083612934565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ef957612ef8612e7b565b5b828202905092915050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b6000612f3a601083612884565b9150612f4582612f04565b602082019050919050565b60006020820190508181036000830152612f6981612f2d565b9050919050565b6000612f7b82612934565b9150612f8683612934565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fbb57612fba612e7b565b5b828201905092915050565b7f4d696e74204c696d697400000000000000000000000000000000000000000000600082015250565b6000612ffc600a83612884565b915061300782612fc6565b602082019050919050565b6000602082019050818103600083015261302b81612fef565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b6000613068600883612884565b915061307382613032565b602082019050919050565b600060208201905081810360008301526130978161305b565b9050919050565b600081905092915050565b60006130b482612879565b6130be818561309e565b93506130ce818560208601612895565b80840191505092915050565b60006130e682856130a9565b91506130f282846130a9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061315a602683612884565b9150613165826130fe565b604082019050919050565b600060208201905081810360008301526131898161314d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006131c6601083612884565b91506131d182613190565b602082019050919050565b600060208201905081810360008301526131f5816131b9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613232602083612884565b915061323d826131fc565b602082019050919050565b6000602082019050818103600083015261326181613225565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061329e601d83612884565b91506132a982613268565b602082019050919050565b600060208201905081810360008301526132cd81613291565b9050919050565b600081905092915050565b50565b60006132ef6000836132d4565b91506132fa826132df565b600082019050919050565b6000613310826132e2565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613376603a83612884565b91506133818261331a565b604082019050919050565b600060208201905081810360008301526133a581613369565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133d3826133ac565b6133dd81856133b7565b93506133ed818560208601612895565b6133f6816128c8565b840191505092915050565b600060808201905061341660008301876129c9565b61342360208301866129c9565b6134306040830185612a5f565b818103606083015261344281846133c8565b905095945050505050565b60008151905061345c816127ea565b92915050565b600060208284031215613478576134776127b4565b5b60006134868482850161344d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006134f4601483612884565b91506134ff826134be565b602082019050919050565b60006020820190508181036000830152613523816134e7565b905091905056fea2646970667358221220f8a9e9b34937752336cc5d8663fb674e0a31b5bbb329b77a92bc7e6bebc9394664736f6c63430008090033697066733a2f2f516d536a7037323878734752745153564659636f766b755a316b53783857747534596832776550557a62417157632f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063dc33e68111610064578063dc33e68114610651578063e985e9c51461068e578063f2fde38b146106cb578063f4a0a528146106f4576101d8565b8063b88d4fde14610595578063c285e107146105be578063c87b56dd146105e9578063d304c4bc14610626576101d8565b80638da5cb5b116100d15780638da5cb5b146104eb57806395d89b4114610516578063a22cb46514610541578063a2309ff81461056a576101d8565b8063715018a61461046b5780637389fbb71461048257806383ccaef7146104ab5780638456cb59146104d4576101d8565b80633ccfd60b1161017a5780635c975abb116101495780635c975abb1461039b5780636352211e146103c65780636817c76c1461040357806370a082311461042e576101d8565b80633ccfd60b1461031b5780633f4ba83a1461033257806342842e0e1461034957806355f804b314610372576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d657806331c864e8146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612816565b61071d565b604051610211919061285e565b60405180910390f35b34801561022657600080fd5b5061022f6107ff565b60405161023c9190612912565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061296a565b610891565b60405161027991906129d8565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612a1f565b61090d565b005b3480156102b757600080fd5b506102c0610a18565b6040516102cd9190612a6e565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612a89565b610a2f565b005b6103196004803603810190610314919061296a565b610a3f565b005b34801561032757600080fd5b50610330610b53565b005b34801561033e57600080fd5b50610347610b6d565b005b34801561035557600080fd5b50610370600480360381019061036b9190612a89565b610b7f565b005b34801561037e57600080fd5b5061039960048036038101906103949190612b41565b610b9f565b005b3480156103a757600080fd5b506103b0610bbd565b6040516103bd919061285e565b60405180910390f35b3480156103d257600080fd5b506103ed60048036038101906103e8919061296a565b610bd4565b6040516103fa91906129d8565b60405180910390f35b34801561040f57600080fd5b50610418610bea565b6040516104259190612a6e565b60405180910390f35b34801561043a57600080fd5b5061045560048036038101906104509190612b8e565b610bf0565b6040516104629190612a6e565b60405180910390f35b34801561047757600080fd5b50610480610cc0565b005b34801561048e57600080fd5b506104a960048036038101906104a4919061296a565b610cd4565b005b3480156104b757600080fd5b506104d260048036038101906104cd919061296a565b610ce6565b005b3480156104e057600080fd5b506104e9610cf8565b005b3480156104f757600080fd5b50610500610d0a565b60405161050d91906129d8565b60405180910390f35b34801561052257600080fd5b5061052b610d34565b6040516105389190612912565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612be7565b610dc6565b005b34801561057657600080fd5b5061057f610f3e565b60405161058c9190612a6e565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190612d57565b610f4d565b005b3480156105ca57600080fd5b506105d3610fc9565b6040516105e09190612a6e565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b919061296a565b610fcf565b60405161061d9190612912565b60405180910390f35b34801561063257600080fd5b5061063b61106e565b6040516106489190612a6e565b60405180910390f35b34801561065d57600080fd5b5061067860048036038101906106739190612b8e565b611074565b6040516106859190612a6e565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612dda565b611086565b6040516106c2919061285e565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612b8e565b61111a565b005b34801561070057600080fd5b5061071b6004803603810190610716919061296a565b61119e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107f857506107f7826111b0565b5b9050919050565b60606002805461080e90612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461083a90612e49565b80156108875780601f1061085c57610100808354040283529160200191610887565b820191906000526020600020905b81548152906001019060200180831161086a57829003601f168201915b5050505050905090565b600061089c8261121a565b6108d2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091882610bd4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610980576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661099f611268565b73ffffffffffffffffffffffffffffffffffffffff16141580156109d157506109cf816109ca611268565b611086565b155b15610a08576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a13838383611270565b505050565b6000610a22611322565b6001546000540303905090565b610a3a838383611327565b505050565b610a476117dd565b60095481610a559190612eaa565b341015610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90612f50565b60405180910390fd5b600a5481610aa433611827565b610aae9190612f70565b1115610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613012565b60405180910390fd5b600b5481610afb611891565b610b059190612f70565b1115610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d9061307e565b60405180910390fd5b610b5033826118a4565b50565b610b5b6118c2565b6000479050610b6a3382611940565b50565b610b756118c2565b610b7d611a34565b565b610b9a83838360405180602001604052806000815250610f4d565b505050565b610ba76118c2565b8181600c9190610bb89291906126c4565b505050565b6000600860149054906101000a900460ff16905090565b6000610bdf82611a97565b600001519050919050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610cc86118c2565b610cd26000611d26565b565b610cdc6118c2565b80600b8190555050565b610cee6118c2565b80600a8190555050565b610d006118c2565b610d08611dec565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d4390612e49565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6f90612e49565b8015610dbc5780601f10610d9157610100808354040283529160200191610dbc565b820191906000526020600020905b815481529060010190602001808311610d9f57829003601f168201915b5050505050905090565b610dce611268565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e33576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610e40611268565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610eed611268565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f32919061285e565b60405180910390a35050565b6000610f48611891565b905090565b610f58848484611327565b610f778373ffffffffffffffffffffffffffffffffffffffff16611e4f565b8015610f8c5750610f8a84848484611e72565b155b15610fc3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600b5481565b6060610fda8261121a565b611010576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061101a611fd2565b905060008151141561103b5760405180602001604052806000815250611066565b8061104584612064565b6040516020016110569291906130da565b6040516020818303038152906040525b915050919050565b600a5481565b600061107f82611827565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111226118c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990613170565b60405180910390fd5b61119b81611d26565b50565b6111a66118c2565b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611225611322565b11158015611234575060005482105b8015611261575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061133282611a97565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461139d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166113be611268565b73ffffffffffffffffffffffffffffffffffffffff1614806113ed57506113ec856113e7611268565b611086565b5b8061143257506113fb611268565b73ffffffffffffffffffffffffffffffffffffffff1661141a84610891565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061146b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114d2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114df858585600161213c565b6114eb60008487611270565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561176b57600054821461176a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117d68585856001612142565b5050505050565b6117e5610bbd565b15611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c906131dc565b60405180910390fd5b565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600061189b611322565b60005403905090565b6118be828260405180602001604052806000815250612148565b5050565b6118ca611268565b73ffffffffffffffffffffffffffffffffffffffff166118e8610d0a565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613248565b60405180910390fd5b565b80471015611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a906132b4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516119a990613305565b60006040518083038185875af1925050503d80600081146119e6576040519150601f19603f3d011682016040523d82523d6000602084013e6119eb565b606091505b5050905080611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a269061338c565b60405180910390fd5b505050565b611a3c61215a565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611a80611268565b604051611a8d91906129d8565b60405180910390a1565b611a9f61274a565b600082905080611aad611322565b11158015611abc575060005481105b15611cef576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ced57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bd1578092505050611d21565b5b600115611cec57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ce7578092505050611d21565b611bd2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611df46117dd565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e38611268565b604051611e4591906129d8565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e98611268565b8786866040518563ffffffff1660e01b8152600401611eba9493929190613401565b602060405180830381600087803b158015611ed457600080fd5b505af1925050508015611f0557506040513d601f19601f82011682018060405250810190611f029190613462565b60015b611f7f573d8060008114611f35576040519150601f19603f3d011682016040523d82523d6000602084013e611f3a565b606091505b50600081511415611f77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611fe190612e49565b80601f016020809104026020016040519081016040528092919081815260200182805461200d90612e49565b801561205a5780601f1061202f5761010080835404028352916020019161205a565b820191906000526020600020905b81548152906001019060200180831161203d57829003601f168201915b5050505050905090565b606060006001612073846121a3565b01905060008167ffffffffffffffff81111561209257612091612c2c565b5b6040519080825280601f01601f1916602001820160405280156120c45781602001600182028036833780820191505090505b509050600082602001820190505b600115612131578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161211b5761211a61348f565b5b049450600085141561212c57612131565b6120d2565b819350505050919050565b50505050565b50505050565b61215583838360016122f6565b505050565b612162610bbd565b6121a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121989061350a565b60405180910390fd5b565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612201577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121f7576121f661348f565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061223e576d04ee2d6d415b85acef810000000083816122345761223361348f565b5b0492506020810190505b662386f26fc10000831061226d57662386f26fc1000083816122635761226261348f565b5b0492506010810190505b6305f5e1008310612296576305f5e100838161228c5761228b61348f565b5b0492506008810190505b61271083106122bb5761271083816122b1576122b061348f565b5b0492506004810190505b606483106122de57606483816122d4576122d361348f565b5b0492506002810190505b600a83106122ed576001810190505b80915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612363576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561239e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123ab600086838761213c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561257557506125748773ffffffffffffffffffffffffffffffffffffffff16611e4f565b5b1561263b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ea6000888480600101955088611e72565b612620576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561257b57826000541461263657600080fd5b6126a7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561263c575b8160008190555050506126bd6000868387612142565b5050505050565b8280546126d090612e49565b90600052602060002090601f0160209004810192826126f25760008555612739565b82601f1061270b57803560ff1916838001178555612739565b82800160010185558215612739579182015b8281111561273857823582559160200191906001019061271d565b5b509050612746919061278d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156127a657600081600090555060010161278e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127f3816127be565b81146127fe57600080fd5b50565b600081359050612810816127ea565b92915050565b60006020828403121561282c5761282b6127b4565b5b600061283a84828501612801565b91505092915050565b60008115159050919050565b61285881612843565b82525050565b6000602082019050612873600083018461284f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128b3578082015181840152602081019050612898565b838111156128c2576000848401525b50505050565b6000601f19601f8301169050919050565b60006128e482612879565b6128ee8185612884565b93506128fe818560208601612895565b612907816128c8565b840191505092915050565b6000602082019050818103600083015261292c81846128d9565b905092915050565b6000819050919050565b61294781612934565b811461295257600080fd5b50565b6000813590506129648161293e565b92915050565b6000602082840312156129805761297f6127b4565b5b600061298e84828501612955565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129c282612997565b9050919050565b6129d2816129b7565b82525050565b60006020820190506129ed60008301846129c9565b92915050565b6129fc816129b7565b8114612a0757600080fd5b50565b600081359050612a19816129f3565b92915050565b60008060408385031215612a3657612a356127b4565b5b6000612a4485828601612a0a565b9250506020612a5585828601612955565b9150509250929050565b612a6881612934565b82525050565b6000602082019050612a836000830184612a5f565b92915050565b600080600060608486031215612aa257612aa16127b4565b5b6000612ab086828701612a0a565b9350506020612ac186828701612a0a565b9250506040612ad286828701612955565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612b0157612b00612adc565b5b8235905067ffffffffffffffff811115612b1e57612b1d612ae1565b5b602083019150836001820283011115612b3a57612b39612ae6565b5b9250929050565b60008060208385031215612b5857612b576127b4565b5b600083013567ffffffffffffffff811115612b7657612b756127b9565b5b612b8285828601612aeb565b92509250509250929050565b600060208284031215612ba457612ba36127b4565b5b6000612bb284828501612a0a565b91505092915050565b612bc481612843565b8114612bcf57600080fd5b50565b600081359050612be181612bbb565b92915050565b60008060408385031215612bfe57612bfd6127b4565b5b6000612c0c85828601612a0a565b9250506020612c1d85828601612bd2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c64826128c8565b810181811067ffffffffffffffff82111715612c8357612c82612c2c565b5b80604052505050565b6000612c966127aa565b9050612ca28282612c5b565b919050565b600067ffffffffffffffff821115612cc257612cc1612c2c565b5b612ccb826128c8565b9050602081019050919050565b82818337600083830152505050565b6000612cfa612cf584612ca7565b612c8c565b905082815260208101848484011115612d1657612d15612c27565b5b612d21848285612cd8565b509392505050565b600082601f830112612d3e57612d3d612adc565b5b8135612d4e848260208601612ce7565b91505092915050565b60008060008060808587031215612d7157612d706127b4565b5b6000612d7f87828801612a0a565b9450506020612d9087828801612a0a565b9350506040612da187828801612955565b925050606085013567ffffffffffffffff811115612dc257612dc16127b9565b5b612dce87828801612d29565b91505092959194509250565b60008060408385031215612df157612df06127b4565b5b6000612dff85828601612a0a565b9250506020612e1085828601612a0a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e6157607f821691505b60208210811415612e7557612e74612e1a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612eb582612934565b9150612ec083612934565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ef957612ef8612e7b565b5b828202905092915050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b6000612f3a601083612884565b9150612f4582612f04565b602082019050919050565b60006020820190508181036000830152612f6981612f2d565b9050919050565b6000612f7b82612934565b9150612f8683612934565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fbb57612fba612e7b565b5b828201905092915050565b7f4d696e74204c696d697400000000000000000000000000000000000000000000600082015250565b6000612ffc600a83612884565b915061300782612fc6565b602082019050919050565b6000602082019050818103600083015261302b81612fef565b9050919050565b7f534f4c44204f5554000000000000000000000000000000000000000000000000600082015250565b6000613068600883612884565b915061307382613032565b602082019050919050565b600060208201905081810360008301526130978161305b565b9050919050565b600081905092915050565b60006130b482612879565b6130be818561309e565b93506130ce818560208601612895565b80840191505092915050565b60006130e682856130a9565b91506130f282846130a9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061315a602683612884565b9150613165826130fe565b604082019050919050565b600060208201905081810360008301526131898161314d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006131c6601083612884565b91506131d182613190565b602082019050919050565b600060208201905081810360008301526131f5816131b9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613232602083612884565b915061323d826131fc565b602082019050919050565b6000602082019050818103600083015261326181613225565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061329e601d83612884565b91506132a982613268565b602082019050919050565b600060208201905081810360008301526132cd81613291565b9050919050565b600081905092915050565b50565b60006132ef6000836132d4565b91506132fa826132df565b600082019050919050565b6000613310826132e2565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613376603a83612884565b91506133818261331a565b604082019050919050565b600060208201905081810360008301526133a581613369565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133d3826133ac565b6133dd81856133b7565b93506133ed818560208601612895565b6133f6816128c8565b840191505092915050565b600060808201905061341660008301876129c9565b61342360208301866129c9565b6134306040830185612a5f565b818103606083015261344281846133c8565b905095945050505050565b60008151905061345c816127ea565b92915050565b600060208284031215613478576134776127b4565b5b60006134868482850161344d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006134f4601483612884565b91506134ff826134be565b602082019050919050565b60006020820190508181036000830152613523816134e7565b905091905056fea2646970667358221220f8a9e9b34937752336cc5d8663fb674e0a31b5bbb329b77a92bc7e6bebc9394664736f6c63430008090033

Deployed Bytecode Sourcemap

61995:1864:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44165:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47278:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48781:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48344:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43414:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49646:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62473:352;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62833:155;;;;;;;;;;;;;:::i;:::-;;63789:67;;;;;;;;;;;;;:::i;:::-;;49887:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62996:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17765:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47086:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62049:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44534:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20630:103;;;;;;;;;;;;;:::i;:::-;;63230:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63360:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63718:63;;;;;;;;;;;;;:::i;:::-;;19982:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47447:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49057:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63615:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50143:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62135:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47622:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62094:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63494:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49415:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20888:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63116:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44165:305;44267:4;44319:25;44304:40;;;:11;:40;;;;:105;;;;44376:33;44361:48;;;:11;:48;;;;44304:105;:158;;;;44426:36;44450:11;44426:23;:36::i;:::-;44304:158;44284:178;;44165:305;;;:::o;47278:100::-;47332:13;47365:5;47358:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47278:100;:::o;48781:204::-;48849:7;48874:16;48882:7;48874;:16::i;:::-;48869:64;;48899:34;;;;;;;;;;;;;;48869:64;48953:15;:24;48969:7;48953:24;;;;;;;;;;;;;;;;;;;;;48946:31;;48781:204;;;:::o;48344:371::-;48417:13;48433:24;48449:7;48433:15;:24::i;:::-;48417:40;;48478:5;48472:11;;:2;:11;;;48468:48;;;48492:24;;;;;;;;;;;;;;48468:48;48549:5;48533:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;48559:37;48576:5;48583:12;:10;:12::i;:::-;48559:16;:37::i;:::-;48558:38;48533:63;48529:138;;;48620:35;;;;;;;;;;;;;;48529:138;48679:28;48688:2;48692:7;48701:5;48679:8;:28::i;:::-;48406:309;48344:371;;:::o;43414:303::-;43458:7;43683:15;:13;:15::i;:::-;43668:12;;43652:13;;:28;:46;43645:53;;43414:303;:::o;49646:170::-;49780:28;49790:4;49796:2;49800:7;49780:9;:28::i;:::-;49646:170;;;:::o;62473:352::-;17370:19;:17;:19::i;:::-;62581:9:::1;;62570:8;:20;;;;:::i;:::-;62557:9;:33;;62549:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;62670:14;;62658:8;62630:25;62644:10;62630:13;:25::i;:::-;:36;;;;:::i;:::-;:54;;62622:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;62747:13;;62735:8;62718:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:42;;62710:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;62786:31;62796:10;62808:8;62786:9;:31::i;:::-;62473:352:::0;:::o;62833:155::-;19868:13;:11;:13::i;:::-;62883:15:::1;62901:21;62883:39;;62933:47;62959:10;62972:7;62933:17;:47::i;:::-;62872:116;62833:155::o:0;63789:67::-;19868:13;:11;:13::i;:::-;63838:10:::1;:8;:10::i;:::-;63789:67::o:0;49887:185::-;50025:39;50042:4;50048:2;50052:7;50025:39;;;;;;;;;;;;:16;:39::i;:::-;49887:185;;;:::o;62996:112::-;19868:13;:11;:13::i;:::-;63090:10:::1;;63074:13;:26;;;;;;;:::i;:::-;;62996:112:::0;;:::o;17765:86::-;17812:4;17836:7;;;;;;;;;;;17829:14;;17765:86;:::o;47086:125::-;47150:7;47177:21;47190:7;47177:12;:21::i;:::-;:26;;;47170:33;;47086:125;;;:::o;62049:38::-;;;;:::o;44534:206::-;44598:7;44639:1;44622:19;;:5;:19;;;44618:60;;;44650:28;;;;;;;;;;;;;;44618:60;44704:12;:19;44717:5;44704:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;44696:36;;44689:43;;44534:206;;;:::o;20630:103::-;19868:13;:11;:13::i;:::-;20695:30:::1;20722:1;20695:18;:30::i;:::-;20630:103::o:0;63230:122::-;19868:13;:11;:13::i;:::-;63328:16:::1;63312:13;:32;;;;63230:122:::0;:::o;63360:126::-;19868:13;:11;:13::i;:::-;63461:17:::1;63444:14;:34;;;;63360:126:::0;:::o;63718:63::-;19868:13;:11;:13::i;:::-;63765:8:::1;:6;:8::i;:::-;63718:63::o:0;19982:87::-;20028:7;20055:6;;;;;;;;;;;20048:13;;19982:87;:::o;47447:104::-;47503:13;47536:7;47529:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47447:104;:::o;49057:287::-;49168:12;:10;:12::i;:::-;49156:24;;:8;:24;;;49152:54;;;49189:17;;;;;;;;;;;;;;49152:54;49264:8;49219:18;:32;49238:12;:10;:12::i;:::-;49219:32;;;;;;;;;;;;;;;:42;49252:8;49219:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;49317:8;49288:48;;49303:12;:10;:12::i;:::-;49288:48;;;49327:8;49288:48;;;;;;:::i;:::-;;;;;;;;49057:287;;:::o;63615:95::-;63661:7;63688:14;:12;:14::i;:::-;63681:21;;63615:95;:::o;50143:369::-;50310:28;50320:4;50326:2;50330:7;50310:9;:28::i;:::-;50353:15;:2;:13;;;:15::i;:::-;:76;;;;;50373:56;50404:4;50410:2;50414:7;50423:5;50373:30;:56::i;:::-;50372:57;50353:76;50349:156;;;50453:40;;;;;;;;;;;;;;50349:156;50143:369;;;;:::o;62135:35::-;;;;:::o;47622:318::-;47695:13;47726:16;47734:7;47726;:16::i;:::-;47721:59;;47751:29;;;;;;;;;;;;;;47721:59;47793:21;47817:10;:8;:10::i;:::-;47793:34;;47870:1;47851:7;47845:21;:26;;:87;;;;;;;;;;;;;;;;;47898:7;47907:18;:7;:16;:18::i;:::-;47881:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47845:87;47838:94;;;47622:318;;;:::o;62094:34::-;;;;:::o;63494:113::-;63553:7;63580:19;63594:4;63580:13;:19::i;:::-;63573:26;;63494:113;;;:::o;49415:164::-;49512:4;49536:18;:25;49555:5;49536:25;;;;;;;;;;;;;;;:35;49562:8;49536:35;;;;;;;;;;;;;;;;;;;;;;;;;49529:42;;49415:164;;;;:::o;20888:201::-;19868:13;:11;:13::i;:::-;20997:1:::1;20977:22;;:8;:22;;;;20969:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21053:28;21072:8;21053:18;:28::i;:::-;20888:201:::0;:::o;63116:106::-;19868:13;:11;:13::i;:::-;63202:12:::1;63190:9;:24;;;;63116:106:::0;:::o;33711:157::-;33796:4;33835:25;33820:40;;;:11;:40;;;;33813:47;;33711:157;;;:::o;50767:187::-;50824:4;50867:7;50848:15;:13;:15::i;:::-;:26;;:53;;;;;50888:13;;50878:7;:23;50848:53;:98;;;;;50919:11;:20;50931:7;50919:20;;;;;;;;;;;:27;;;;;;;;;;;;50918:28;50848:98;50841:105;;50767:187;;;:::o;15878:98::-;15931:7;15958:10;15951:17;;15878:98;:::o;58938:197::-;59081:2;59054:15;:24;59070:7;59054:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;59119:7;59115:2;59099:28;;59108:5;59099:28;;;;;;;;;;;;58938:197;;;:::o;43188:92::-;43244:7;43188:92;:::o;53880:2131::-;53996:35;54034:21;54047:7;54034:12;:21::i;:::-;53996:59;;54094:4;54072:26;;:13;:18;;;:26;;;54068:67;;54107:28;;;;;;;;;;;;;;54068:67;54148:22;54190:4;54174:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;54211:36;54228:4;54234:12;:10;:12::i;:::-;54211:16;:36::i;:::-;54174:73;:126;;;;54288:12;:10;:12::i;:::-;54264:36;;:20;54276:7;54264:11;:20::i;:::-;:36;;;54174:126;54148:153;;54319:17;54314:66;;54345:35;;;;;;;;;;;;;;54314:66;54409:1;54395:16;;:2;:16;;;54391:52;;;54420:23;;;;;;;;;;;;;;54391:52;54456:43;54478:4;54484:2;54488:7;54497:1;54456:21;:43::i;:::-;54564:35;54581:1;54585:7;54594:4;54564:8;:35::i;:::-;54925:1;54895:12;:18;54908:4;54895:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54969:1;54941:12;:16;54954:2;54941:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54987:31;55021:11;:20;55033:7;55021:20;;;;;;;;;;;54987:54;;55072:2;55056:8;:13;;;:18;;;;;;;;;;;;;;;;;;55122:15;55089:8;:23;;;:49;;;;;;;;;;;;;;;;;;55390:19;55422:1;55412:7;:11;55390:33;;55438:31;55472:11;:24;55484:11;55472:24;;;;;;;;;;;55438:58;;55540:1;55515:27;;:8;:13;;;;;;;;;;;;:27;;;55511:384;;;55725:13;;55710:11;:28;55706:174;;55779:4;55763:8;:13;;;:20;;;;;;;;;;;;;;;;;;55832:13;:28;;;55806:8;:23;;;:54;;;;;;;;;;;;;;;;;;55706:174;55511:384;54870:1036;;;55942:7;55938:2;55923:27;;55932:4;55923:27;;;;;;;;;;;;55961:42;55982:4;55988:2;55992:7;56001:1;55961:20;:42::i;:::-;53985:2026;;53880:2131;;;:::o;17924:108::-;17995:8;:6;:8::i;:::-;17994:9;17986:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;17924:108::o;44822:137::-;44883:7;44918:12;:19;44931:5;44918:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;44910:41;;44903:48;;44822:137;;;:::o;43810:283::-;43857:7;44059:15;:13;:15::i;:::-;44043:13;;:31;44036:38;;43810:283;:::o;50962:104::-;51031:27;51041:2;51045:8;51031:27;;;;;;;;;;;;:9;:27::i;:::-;50962:104;;:::o;20147:132::-;20222:12;:10;:12::i;:::-;20211:23;;:7;:5;:7::i;:::-;:23;;;20203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20147:132::o;23941:317::-;24056:6;24031:21;:31;;24023:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24110:12;24128:9;:14;;24150:6;24128:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24109:52;;;24180:7;24172:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;24012:246;23941:317;;:::o;18620:120::-;17629:16;:14;:16::i;:::-;18689:5:::1;18679:7;;:15;;;;;;;;;;;;;;;;;;18710:22;18719:12;:10;:12::i;:::-;18710:22;;;;;;:::i;:::-;;;;;;;;18620:120::o:0;45915:1109::-;45977:21;;:::i;:::-;46011:12;46026:7;46011:22;;46094:4;46075:15;:13;:15::i;:::-;:23;;:47;;;;;46109:13;;46102:4;:20;46075:47;46071:886;;;46143:31;46177:11;:17;46189:4;46177:17;;;;;;;;;;;46143:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46218:9;:16;;;46213:729;;46289:1;46263:28;;:9;:14;;;:28;;;46259:101;;46327:9;46320:16;;;;;;46259:101;46662:261;46669:4;46662:261;;;46702:6;;;;;;;;46747:11;:17;46759:4;46747:17;;;;;;;;;;;46735:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46821:1;46795:28;;:9;:14;;;:28;;;46791:109;;46863:9;46856:16;;;;;;46791:109;46662:261;;;46213:729;46124:833;46071:886;46985:31;;;;;;;;;;;;;;45915:1109;;;;:::o;21249:191::-;21323:16;21342:6;;;;;;;;;;;21323:25;;21368:8;21359:6;;:17;;;;;;;;;;;;;;;;;;21423:8;21392:40;;21413:8;21392:40;;;;;;;;;;;;21312:128;21249:191;:::o;18361:118::-;17370:19;:17;:19::i;:::-;18431:4:::1;18421:7;;:14;;;;;;;;;;;;;;;;;;18451:20;18458:12;:10;:12::i;:::-;18451:20;;;;;;:::i;:::-;;;;;;;;18361:118::o:0;22680:326::-;22740:4;22997:1;22975:7;:19;;;:23;22968:30;;22680:326;;;:::o;59627:668::-;59791:4;59828:2;59812:36;;;59849:12;:10;:12::i;:::-;59863:4;59869:7;59878:5;59812:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59808:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60063:1;60046:6;:13;:18;60042:235;;;60092:40;;;;;;;;;;;;;;60042:235;60235:6;60229:13;60220:6;60216:2;60212:15;60205:38;59808:480;59941:45;;;59931:55;;;:6;:55;;;;59924:62;;;59627:668;;;;;;:::o;62359:106::-;62411:13;62444;62437:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62359:106;:::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;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;60943:159::-;;;;;:::o;61761:158::-;;;;;:::o;51429:163::-;51552:32;51558:2;51562:8;51572:5;51579:4;51552:5;:32::i;:::-;51429:163;;;:::o;18109:108::-;18176:8;:6;:8::i;:::-;18168:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;18109:108::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;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;51851:1775::-;51990:20;52013:13;;51990:36;;52055:1;52041:16;;:2;:16;;;52037:48;;;52066:19;;;;;;;;;;;;;;52037:48;52112:1;52100:8;:13;52096:44;;;52122:18;;;;;;;;;;;;;;52096:44;52153:61;52183:1;52187:2;52191:12;52205:8;52153:21;:61::i;:::-;52526:8;52491:12;:16;52504:2;52491:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52590:8;52550:12;:16;52563:2;52550:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52649:2;52616:11;:25;52628:12;52616:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52716:15;52666:11;:25;52678:12;52666:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;52749:20;52772:12;52749:35;;52799:11;52828:8;52813:12;:23;52799:37;;52857:4;:23;;;;;52865:15;:2;:13;;;:15::i;:::-;52857:23;52853:641;;;52901:314;52957:12;52953:2;52932:38;;52949:1;52932:38;;;;;;;;;;;;52998:69;53037:1;53041:2;53045:14;;;;;;53061:5;52998:30;:69::i;:::-;52993:174;;53103:40;;;;;;;;;;;;;;52993:174;53210:3;53194:12;:19;;52901:314;;53296:12;53279:13;;:29;53275:43;;53310:8;;;53275:43;52853:641;;;53359:120;53415:14;;;;;;53411:2;53390:40;;53407:1;53390:40;;;;;;;;;;;;53474:3;53458:12;:19;;53359:120;;52853:641;53524:12;53508:13;:28;;;;52466:1082;;53558:60;53587:1;53591:2;53595:12;53609:8;53558:20;:60::i;:::-;51979:1647;51851:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:180::-;12428:77;12425:1;12418:88;12525:4;12522:1;12515:15;12549:4;12546:1;12539:15;12566:348;12606:7;12629:20;12647:1;12629:20;:::i;:::-;12624:25;;12663:20;12681:1;12663:20;:::i;:::-;12658:25;;12851:1;12783:66;12779:74;12776:1;12773:81;12768:1;12761:9;12754:17;12750:105;12747:131;;;12858:18;;:::i;:::-;12747:131;12906:1;12903;12899:9;12888:20;;12566:348;;;;:::o;12920:166::-;13060:18;13056:1;13048:6;13044:14;13037:42;12920:166;:::o;13092:366::-;13234:3;13255:67;13319:2;13314:3;13255:67;:::i;:::-;13248:74;;13331:93;13420:3;13331:93;:::i;:::-;13449:2;13444:3;13440:12;13433:19;;13092:366;;;:::o;13464:419::-;13630:4;13668:2;13657:9;13653:18;13645:26;;13717:9;13711:4;13707:20;13703:1;13692:9;13688:17;13681:47;13745:131;13871:4;13745:131;:::i;:::-;13737:139;;13464:419;;;:::o;13889:305::-;13929:3;13948:20;13966:1;13948:20;:::i;:::-;13943:25;;13982:20;14000:1;13982:20;:::i;:::-;13977:25;;14136:1;14068:66;14064:74;14061:1;14058:81;14055:107;;;14142:18;;:::i;:::-;14055:107;14186:1;14183;14179:9;14172:16;;13889:305;;;;:::o;14200:160::-;14340:12;14336:1;14328:6;14324:14;14317:36;14200:160;:::o;14366:366::-;14508:3;14529:67;14593:2;14588:3;14529:67;:::i;:::-;14522:74;;14605:93;14694:3;14605:93;:::i;:::-;14723:2;14718:3;14714:12;14707:19;;14366:366;;;:::o;14738:419::-;14904:4;14942:2;14931:9;14927:18;14919:26;;14991:9;14985:4;14981:20;14977:1;14966:9;14962:17;14955:47;15019:131;15145:4;15019:131;:::i;:::-;15011:139;;14738:419;;;:::o;15163:158::-;15303:10;15299:1;15291:6;15287:14;15280:34;15163:158;:::o;15327:365::-;15469:3;15490:66;15554:1;15549:3;15490:66;:::i;:::-;15483:73;;15565:93;15654:3;15565:93;:::i;:::-;15683:2;15678:3;15674:12;15667:19;;15327:365;;;:::o;15698:419::-;15864:4;15902:2;15891:9;15887:18;15879:26;;15951:9;15945:4;15941:20;15937:1;15926:9;15922:17;15915:47;15979:131;16105:4;15979:131;:::i;:::-;15971:139;;15698:419;;;:::o;16123:148::-;16225:11;16262:3;16247:18;;16123:148;;;;:::o;16277:377::-;16383:3;16411:39;16444:5;16411:39;:::i;:::-;16466:89;16548:6;16543:3;16466:89;:::i;:::-;16459:96;;16564:52;16609:6;16604:3;16597:4;16590:5;16586:16;16564:52;:::i;:::-;16641:6;16636:3;16632:16;16625:23;;16387:267;16277:377;;;;:::o;16660:435::-;16840:3;16862:95;16953:3;16944:6;16862:95;:::i;:::-;16855:102;;16974:95;17065:3;17056:6;16974:95;:::i;:::-;16967:102;;17086:3;17079:10;;16660:435;;;;;:::o;17101:225::-;17241:34;17237:1;17229:6;17225:14;17218:58;17310:8;17305:2;17297:6;17293:15;17286:33;17101:225;:::o;17332:366::-;17474:3;17495:67;17559:2;17554:3;17495:67;:::i;:::-;17488:74;;17571:93;17660:3;17571:93;:::i;:::-;17689:2;17684:3;17680:12;17673:19;;17332:366;;;:::o;17704:419::-;17870:4;17908:2;17897:9;17893:18;17885:26;;17957:9;17951:4;17947:20;17943:1;17932:9;17928:17;17921:47;17985:131;18111:4;17985:131;:::i;:::-;17977:139;;17704:419;;;:::o;18129:166::-;18269:18;18265:1;18257:6;18253:14;18246:42;18129:166;:::o;18301:366::-;18443:3;18464:67;18528:2;18523:3;18464:67;:::i;:::-;18457:74;;18540:93;18629:3;18540:93;:::i;:::-;18658:2;18653:3;18649:12;18642:19;;18301:366;;;:::o;18673:419::-;18839:4;18877:2;18866:9;18862:18;18854:26;;18926:9;18920:4;18916:20;18912:1;18901:9;18897:17;18890:47;18954:131;19080:4;18954:131;:::i;:::-;18946:139;;18673:419;;;:::o;19098:182::-;19238:34;19234:1;19226:6;19222:14;19215:58;19098:182;:::o;19286:366::-;19428:3;19449:67;19513:2;19508:3;19449:67;:::i;:::-;19442:74;;19525:93;19614:3;19525:93;:::i;:::-;19643:2;19638:3;19634:12;19627:19;;19286:366;;;:::o;19658:419::-;19824:4;19862:2;19851:9;19847:18;19839:26;;19911:9;19905:4;19901:20;19897:1;19886:9;19882:17;19875:47;19939:131;20065:4;19939:131;:::i;:::-;19931:139;;19658:419;;;:::o;20083:179::-;20223:31;20219:1;20211:6;20207:14;20200:55;20083:179;:::o;20268:366::-;20410:3;20431:67;20495:2;20490:3;20431:67;:::i;:::-;20424:74;;20507:93;20596:3;20507:93;:::i;:::-;20625:2;20620:3;20616:12;20609:19;;20268:366;;;:::o;20640:419::-;20806:4;20844:2;20833:9;20829:18;20821:26;;20893:9;20887:4;20883:20;20879:1;20868:9;20864:17;20857:47;20921:131;21047:4;20921:131;:::i;:::-;20913:139;;20640:419;;;:::o;21065:147::-;21166:11;21203:3;21188:18;;21065:147;;;;:::o;21218:114::-;;:::o;21338:398::-;21497:3;21518:83;21599:1;21594:3;21518:83;:::i;:::-;21511:90;;21610:93;21699:3;21610:93;:::i;:::-;21728:1;21723:3;21719:11;21712:18;;21338:398;;;:::o;21742:379::-;21926:3;21948:147;22091:3;21948:147;:::i;:::-;21941:154;;22112:3;22105:10;;21742:379;;;:::o;22127:245::-;22267:34;22263:1;22255:6;22251:14;22244:58;22336:28;22331:2;22323:6;22319:15;22312:53;22127:245;:::o;22378:366::-;22520:3;22541:67;22605:2;22600:3;22541:67;:::i;:::-;22534:74;;22617:93;22706:3;22617:93;:::i;:::-;22735:2;22730:3;22726:12;22719:19;;22378:366;;;:::o;22750:419::-;22916:4;22954:2;22943:9;22939:18;22931:26;;23003:9;22997:4;22993:20;22989:1;22978:9;22974:17;22967:47;23031:131;23157:4;23031:131;:::i;:::-;23023:139;;22750:419;;;:::o;23175:98::-;23226:6;23260:5;23254:12;23244:22;;23175:98;;;:::o;23279:168::-;23362:11;23396:6;23391:3;23384:19;23436:4;23431:3;23427:14;23412:29;;23279:168;;;;:::o;23453:360::-;23539:3;23567:38;23599:5;23567:38;:::i;:::-;23621:70;23684:6;23679:3;23621:70;:::i;:::-;23614:77;;23700:52;23745:6;23740:3;23733:4;23726:5;23722:16;23700:52;:::i;:::-;23777:29;23799:6;23777:29;:::i;:::-;23772:3;23768:39;23761:46;;23543:270;23453:360;;;;:::o;23819:640::-;24014:4;24052:3;24041:9;24037:19;24029:27;;24066:71;24134:1;24123:9;24119:17;24110:6;24066:71;:::i;:::-;24147:72;24215:2;24204:9;24200:18;24191:6;24147:72;:::i;:::-;24229;24297:2;24286:9;24282:18;24273:6;24229:72;:::i;:::-;24348:9;24342:4;24338:20;24333:2;24322:9;24318:18;24311:48;24376:76;24447:4;24438:6;24376:76;:::i;:::-;24368:84;;23819:640;;;;;;;:::o;24465:141::-;24521:5;24552:6;24546:13;24537:22;;24568:32;24594:5;24568:32;:::i;:::-;24465:141;;;;:::o;24612:349::-;24681:6;24730:2;24718:9;24709:7;24705:23;24701:32;24698:119;;;24736:79;;:::i;:::-;24698:119;24856:1;24881:63;24936:7;24927:6;24916:9;24912:22;24881:63;:::i;:::-;24871:73;;24827:127;24612:349;;;;:::o;24967:180::-;25015:77;25012:1;25005:88;25112:4;25109:1;25102:15;25136:4;25133:1;25126:15;25153:170;25293:22;25289:1;25281:6;25277:14;25270:46;25153:170;:::o;25329:366::-;25471:3;25492:67;25556:2;25551:3;25492:67;:::i;:::-;25485:74;;25568:93;25657:3;25568:93;:::i;:::-;25686:2;25681:3;25677:12;25670:19;;25329:366;;;:::o;25701:419::-;25867:4;25905:2;25894:9;25890:18;25882:26;;25954:9;25948:4;25944:20;25940:1;25929:9;25925:17;25918:47;25982:131;26108:4;25982:131;:::i;:::-;25974:139;;25701:419;;;:::o

Swarm Source

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