ETH Price: $3,099.53 (-0.38%)
Gas: 2 Gwei

Token

Fetishist Man (FMMAN)
 

Overview

Max Total Supply

3,279 FMMAN

Holders

787

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 FMMAN
0xE6b40C4A8107980Aa1AAFBeFe50770B0CBb258a1
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:
FetishistMan

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-08
*/

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


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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


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

pragma solidity ^0.8.20;

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

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

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

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

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

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

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

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;



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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Fetishist.sol


/**
 * 
 *    +---+
 *    |   |
 *  +-+---+-+
 *  |       |
 *  +-+---+-+
 *    |   |
 *    +---+
 *    
 * Is this your gag?
 * 
 */

pragma solidity >=0.7.0 <0.9.0;





contract FetishistMan is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = "";
  string public notRevealedUri;
  uint256 public cost = 0.00069 ether;
  uint256 public maxSupply = 9999;
  uint256 public FreeSupply = 9999;
  uint256 public MaxperWallet = 200;
  uint256 public MaxperWalletFree = 2;
  bool public paused = false;
  bool public revealed = true;

  constructor(
    address initialOwner,
    string memory _initBaseURI,
    string memory _notRevealedUri
  ) ERC721A("Fetishist Man", "FMMAN")Ownable(initialOwner) ReentrancyGuard() {  
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_notRevealedUri);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
      function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

  // public
  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "oops contract is paused");
    require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "We Soldout");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "insufficient funds");

      _safeMint(_msgSenderERC721A(), tokens);
  }
  
  function isEOA(address account) internal view returns (bool) {
      uint256 size;
      assembly { size := extcodesize(account) }
      return size == 0;
  }


/// @dev free mint
    function freemint(uint256 tokens) public nonReentrant {
    require(!paused, "oops contract is paused");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWalletFree, "Max NFT Per Wallet exceeded");
    require(tokens <= MaxperWalletFree, "max free mint per Tx exceeded");
    require(totalSupply() + tokens <= FreeSupply, "Whitelist MaxSupply exceeded");
    require(isEOA(_msgSender()), "Sorry,bot");
    
      _safeMint(_msgSenderERC721A(), tokens);
    
  }

  /// @dev use it for giveaway and team mint
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

     /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  /// @dev change the free max per wallet
    function setFreeMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletFree = _limit;
  }

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

 /// @dev cut the free supply
    function setFreesupply(uint256 _newsupply) public onlyOwner {
    FreeSupply = _newsupply;
  }

 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  /// @dev set base extension(default is .json)
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setFreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180602001604052805f815250600b908162000023919062000655565b506602738d24e52000600d5561270f600e5561270f600f5560c860105560026011555f60125f6101000a81548160ff0219169083151502179055506001601260016101000a81548160ff02191690831515021790555034801562000085575f80fd5b50604051620044d0380380620044d08339818101604052810190620000ab9190620008f2565b826040518060400160405280600d81526020017f466574697368697374204d616e000000000000000000000000000000000000008152506040518060400160405280600581526020017f464d4d414e000000000000000000000000000000000000000000000000000000815250816002908162000129919062000655565b5080600390816200013b919062000655565b506200014c6200020b60201b60201c565b5f8190555050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001c6575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001bd91906200099a565b60405180910390fd5b620001d7816200021360201b60201c565b506001600981905550620001f182620002d660201b60201c565b6200020281620002fb60201b60201c565b505050620009b5565b5f6001905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e66200032060201b60201c565b80600a9081620002f7919062000655565b5050565b6200030b6200032060201b60201c565b80600c90816200031c919062000655565b5050565b62000330620003c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000356620003c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003c05762000382620003c260201b60201c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401620003b791906200099a565b60405180910390fd5b565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200046d57607f821691505b60208210810362000483576200048262000428565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004aa565b620004f38683620004aa565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200053d6200053762000531846200050b565b62000514565b6200050b565b9050919050565b5f819050919050565b62000558836200051d565b62000570620005678262000544565b848454620004b6565b825550505050565b5f90565b6200058662000578565b620005938184846200054d565b505050565b5b81811015620005ba57620005ae5f826200057c565b60018101905062000599565b5050565b601f8211156200060957620005d38162000489565b620005de846200049b565b81016020851015620005ee578190505b62000606620005fd856200049b565b83018262000598565b50505b505050565b5f82821c905092915050565b5f6200062b5f19846008026200060e565b1980831691505092915050565b5f6200064583836200061a565b9150826002028217905092915050565b6200066082620003f1565b67ffffffffffffffff8111156200067c576200067b620003fb565b5b62000688825462000455565b62000695828285620005be565b5f60209050601f831160018114620006cb575f8415620006b6578287015190505b620006c2858262000638565b86555062000731565b601f198416620006db8662000489565b5f5b828110156200070457848901518255600182019150602085019450602081019050620006dd565b8683101562000724578489015162000720601f8916826200061a565b8355505b6001600288020188555050505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000775826200074a565b9050919050565b620007878162000769565b811462000792575f80fd5b50565b5f81519050620007a5816200077c565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b620007ce82620007b3565b810181811067ffffffffffffffff82111715620007f057620007ef620003fb565b5b80604052505050565b5f6200080462000739565b9050620008128282620007c3565b919050565b5f67ffffffffffffffff821115620008345762000833620003fb565b5b6200083f82620007b3565b9050602081019050919050565b5f5b838110156200086b5780820151818401526020810190506200084e565b5f8484015250505050565b5f6200088c620008868462000817565b620007f9565b905082815260208101848484011115620008ab57620008aa620007af565b5b620008b88482856200084c565b509392505050565b5f82601f830112620008d757620008d6620007ab565b5b8151620008e984826020860162000876565b91505092915050565b5f805f606084860312156200090c576200090b62000742565b5b5f6200091b8682870162000795565b935050602084015167ffffffffffffffff8111156200093f576200093e62000746565b5b6200094d86828701620008c0565b925050604084015167ffffffffffffffff81111562000971576200097062000746565b5b6200097f86828701620008c0565b9150509250925092565b620009948162000769565b82525050565b5f602082019050620009af5f83018462000989565b92915050565b613b0d80620009c35f395ff3fe60806040526004361061025b575f3560e01c80636c0360eb11610143578063bd7a1998116100b5578063dc33e68111610079578063dc33e6811461084f578063e1cf8baa1461088b578063e268e4d3146108b3578063e985e9c5146108db578063f2c4ce1e14610917578063f2fde38b1461093f5761025b565b8063bd7a19981461076d578063c668286214610797578063c87b56dd146107c1578063d5abeb01146107fd578063da3ef23f146108275761025b565b8063940cd05b11610107578063940cd05b1461069357806395d89b41146106bb578063a0712d68146106e5578063a22cb46514610701578063b88d4fde14610729578063bc63f02e146107455761025b565b80636c0360eb146105b157806370a08231146105db578063715018a6146106175780638462151c1461062d5780638da5cb5b146106695761025b565b806323b872dd116101dc57806350839bef116101a057806350839bef146104a557806351830227146104cf57806355f804b3146104f95780635c975abb14610521578063624208ae1461054b5780636352211e146105755761025b565b806323b872dd14610413578063351de26e1461042f5780633ccfd60b1461045757806342842e0e1461046157806344a0d68a1461047d5761025b565b8063095ea7b311610223578063095ea7b3146103535780630fbe4fe21461036f57806313faede614610397578063149835a0146103c157806318160ddd146103e95761025b565b806301ffc9a71461025f57806302329a291461029b57806306fdde03146102c3578063081812fc146102ed578063081c8c4414610329575b5f80fd5b34801561026a575f80fd5b5061028560048036038101906102809190612970565b610967565b60405161029291906129b5565b60405180910390f35b3480156102a6575f80fd5b506102c160048036038101906102bc91906129f8565b6109f8565b005b3480156102ce575f80fd5b506102d7610a1c565b6040516102e49190612aad565b60405180910390f35b3480156102f8575f80fd5b50610313600480360381019061030e9190612b00565b610aac565b6040516103209190612b6a565b60405180910390f35b348015610334575f80fd5b5061033d610b26565b60405161034a9190612aad565b60405180910390f35b61036d60048036038101906103689190612bad565b610bb2565b005b34801561037a575f80fd5b5061039560048036038101906103909190612b00565b610cf1565b005b3480156103a2575f80fd5b506103ab610eae565b6040516103b89190612bfa565b60405180910390f35b3480156103cc575f80fd5b506103e760048036038101906103e29190612b00565b610eb4565b005b3480156103f4575f80fd5b506103fd610ec6565b60405161040a9190612bfa565b60405180910390f35b61042d60048036038101906104289190612c13565b610edb565b005b34801561043a575f80fd5b5061045560048036038101906104509190612b00565b6111e9565b005b61045f6111fb565b005b61047b60048036038101906104769190612c13565b611265565b005b348015610488575f80fd5b506104a3600480360381019061049e9190612b00565b611284565b005b3480156104b0575f80fd5b506104b9611296565b6040516104c69190612bfa565b60405180910390f35b3480156104da575f80fd5b506104e361129c565b6040516104f091906129b5565b60405180910390f35b348015610504575f80fd5b5061051f600480360381019061051a9190612d8f565b6112af565b005b34801561052c575f80fd5b506105356112ca565b60405161054291906129b5565b60405180910390f35b348015610556575f80fd5b5061055f6112dc565b60405161056c9190612bfa565b60405180910390f35b348015610580575f80fd5b5061059b60048036038101906105969190612b00565b6112e2565b6040516105a89190612b6a565b60405180910390f35b3480156105bc575f80fd5b506105c56112f3565b6040516105d29190612aad565b60405180910390f35b3480156105e6575f80fd5b5061060160048036038101906105fc9190612dd6565b61137f565b60405161060e9190612bfa565b60405180910390f35b348015610622575f80fd5b5061062b611434565b005b348015610638575f80fd5b50610653600480360381019061064e9190612dd6565b611447565b6040516106609190612eb8565b60405180910390f35b348015610674575f80fd5b5061067d611583565b60405161068a9190612b6a565b60405180910390f35b34801561069e575f80fd5b506106b960048036038101906106b491906129f8565b6115ab565b005b3480156106c6575f80fd5b506106cf6115d0565b6040516106dc9190612aad565b60405180910390f35b6106ff60048036038101906106fa9190612b00565b611660565b005b34801561070c575f80fd5b5061072760048036038101906107229190612ed8565b61181e565b005b610743600480360381019061073e9190612fb4565b611924565b005b348015610750575f80fd5b5061076b60048036038101906107669190613034565b611996565b005b348015610778575f80fd5b50610781611a13565b60405161078e9190612bfa565b60405180910390f35b3480156107a2575f80fd5b506107ab611a19565b6040516107b89190612aad565b60405180910390f35b3480156107cc575f80fd5b506107e760048036038101906107e29190612b00565b611aa5565b6040516107f49190612aad565b60405180910390f35b348015610808575f80fd5b50610811611bf7565b60405161081e9190612bfa565b60405180910390f35b348015610832575f80fd5b5061084d60048036038101906108489190612d8f565b611bfd565b005b34801561085a575f80fd5b5061087560048036038101906108709190612dd6565b611c18565b6040516108829190612bfa565b60405180910390f35b348015610896575f80fd5b506108b160048036038101906108ac9190612b00565b611c29565b005b3480156108be575f80fd5b506108d960048036038101906108d49190612b00565b611c3b565b005b3480156108e6575f80fd5b5061090160048036038101906108fc9190613072565b611c4d565b60405161090e91906129b5565b60405180910390f35b348015610922575f80fd5b5061093d60048036038101906109389190612d8f565b611cdb565b005b34801561094a575f80fd5b5061096560048036038101906109609190612dd6565b611cf6565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a00611d7a565b8060125f6101000a81548160ff02191690831515021790555050565b606060028054610a2b906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a57906130dd565b8015610aa25780601f10610a7957610100808354040283529160200191610aa2565b820191905f5260205f20905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b5f610ab682611e01565b610aec576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b33906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5f906130dd565b8015610baa5780601f10610b8157610100808354040283529160200191610baa565b820191905f5260205f20905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b5f610bbc826112e2565b90508073ffffffffffffffffffffffffffffffffffffffff16610bdd611e5b565b73ffffffffffffffffffffffffffffffffffffffff1614610c4057610c0981610c04611e5b565b611c4d565b610c3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610cf9611e62565b60125f9054906101000a900460ff1615610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90613157565b60405180910390fd5b60115481610d5c610d57611e5b565b611eb1565b610d6691906131a2565b1115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e9061321f565b60405180910390fd5b601154811115610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613287565b60405180910390fd5b600f5481610df8610ec6565b610e0291906131a2565b1115610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a906132ef565b60405180910390fd5b610e53610e4e611f05565b611f0c565b610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990613357565b60405180910390fd5b610ea3610e9d611e5b565b82611f1d565b610eab611f3a565b50565b600d5481565b610ebc611d7a565b80600e8190555050565b5f610ecf611f44565b6001545f540303905090565b5f610ee582611f4c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610f578461200f565b91509150610f6d8187610f68611e5b565b612032565b610fb957610f8286610f7d611e5b565b611c4d565b610fb8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361101e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61102b8686866001612075565b8015611035575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506110fd856110d988888761207b565b7c0200000000000000000000000000000000000000000000000000000000176120a2565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611179575f6001850190505f60045f8381526020019081526020015f205403611177575f548114611176578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111e186868660016120cc565b505050505050565b6111f1611d7a565b8060118190555050565b611203611d7a565b61120b611e62565b5f479050611217611e5b565b73ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611259573d5f803e3d5ffd5b5050611263611f3a565b565b61127f83838360405180602001604052805f815250611924565b505050565b61128c611d7a565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b6112b7611d7a565b80600a90816112c69190613512565b5050565b60125f9054906101000a900460ff1681565b60115481565b5f6112ec82611f4c565b9050919050565b600a8054611300906130dd565b80601f016020809104026020016040519081016040528092919081815260200182805461132c906130dd565b80156113775780601f1061134e57610100808354040283529160200191611377565b820191905f5260205f20905b81548152906001019060200180831161135a57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61143c611d7a565b6114455f6120d2565b565b60605f805f6114558561137f565b90505f8167ffffffffffffffff81111561147257611471612c6b565b5b6040519080825280602002602001820160405280156114a05781602001602082028036833780820191505090505b5090506114ab6128bf565b5f6114b4611f44565b90505b838614611575576114c781612195565b9150816040015161156a575f73ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff161461150f57815f015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611569578083878060010198508151811061155c5761155b6135e1565b5b6020026020010181815250505b5b8060010190506114b7565b508195505050505050919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115b3611d7a565b80601260016101000a81548160ff02191690831515021790555050565b6060600380546115df906130dd565b80601f016020809104026020016040519081016040528092919081815260200182805461160b906130dd565b80156116565780601f1061162d57610100808354040283529160200191611656565b820191905f5260205f20905b81548152906001019060200180831161163957829003601f168201915b5050505050905090565b611668611e62565b60125f9054906101000a900460ff16156116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90613157565b60405180910390fd5b6010548111156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613658565b60405180910390fd5b600e5481611708610ec6565b61171291906131a2565b1115611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a906136c0565b60405180910390fd5b60105481611767611762611e5b565b611eb1565b61177191906131a2565b11156117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a99061321f565b60405180910390fd5b80600d546117c091906136de565b341015611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990613769565b60405180910390fd5b61181361180d611e5b565b82611f1d565b61181b611f3a565b50565b8060075f61182a611e5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118d3611e5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161191891906129b5565b60405180910390a35050565b61192f848484610edb565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461199057611959848484846121be565b61198f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61199e611d7a565b6119a6611e62565b600e54826119b2610ec6565b6119bc91906131a2565b11156119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f4906137d1565b60405180910390fd5b611a078183611f1d565b611a0f611f3a565b5050565b60105481565b600b8054611a26906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611a52906130dd565b8015611a9d5780601f10611a7457610100808354040283529160200191611a9d565b820191905f5260205f20905b815481529060010190602001808311611a8057829003601f168201915b505050505081565b6060611ab082611e01565b611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae69061385f565b60405180910390fd5b5f1515601260019054906101000a900460ff16151503611b9957600c8054611b16906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611b42906130dd565b8015611b8d5780601f10611b6457610100808354040283529160200191611b8d565b820191905f5260205f20905b815481529060010190602001808311611b7057829003601f168201915b50505050509050611bf2565b5f611ba2612309565b90505f815111611bc05760405180602001604052805f815250611bee565b80611bca84612399565b600b604051602001611bde93929190613937565b6040516020818303038152906040525b9150505b919050565b600e5481565b611c05611d7a565b80600b9081611c149190613512565b5050565b5f611c2282611eb1565b9050919050565b611c31611d7a565b80600f8190555050565b611c43611d7a565b8060108190555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611ce3611d7a565b80600c9081611cf29190613512565b5050565b611cfe611d7a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d6e575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611d659190612b6a565b60405180910390fd5b611d77816120d2565b50565b611d82611f05565b73ffffffffffffffffffffffffffffffffffffffff16611da0611583565b73ffffffffffffffffffffffffffffffffffffffff1614611dff57611dc3611f05565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611df69190612b6a565b60405180910390fd5b565b5f81611e0b611f44565b11158015611e1957505f5482105b8015611e5457505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b600260095403611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e906139b1565b60405180910390fd5b6002600981905550565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f33905090565b5f80823b90505f8114915050919050565b611f36828260405180602001604052805f815250612463565b5050565b6001600981905550565b5f6001905090565b5f8082905080611f5a611f44565b11611fd8575f54811015611fd7575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611fd5575b5f8103611fcb5760045f836001900393508381526020019081526020015f20549050611fa4565b809250505061200a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86120918686846124fa565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61219d6128bf565b6121b760045f8481526020019081526020015f2054612502565b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121e3611e5b565b8786866040518563ffffffff1660e01b81526004016122059493929190613a21565b6020604051808303815f875af192505050801561224057506040513d601f19601f8201168201806040525081019061223d9190613a7f565b60015b6122b6573d805f811461226e576040519150601f19603f3d011682016040523d82523d5f602084013e612273565b606091505b505f8151036122ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612318906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054612344906130dd565b801561238f5780601f106123665761010080835404028352916020019161238f565b820191905f5260205f20905b81548152906001019060200180831161237257829003601f168201915b5050505050905090565b60605f60016123a7846125b6565b0190505f8167ffffffffffffffff8111156123c5576123c4612c6b565b5b6040519080825280601f01601f1916602001820160405280156123f75781602001600182028036833780820191505090505b5090505f82602001820190505b600115612458578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161244d5761244c613aaa565b5b0494505f8503612404575b819350505050919050565b61246d8383612707565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146124f5575f805490505f83820390505b6124a95f8683806001019450866121be565b6124df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061249757815f54146124f2575f80fd5b50505b505050565b5f9392505050565b61250a6128bf565b81815f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff16815250505f7c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612612577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161260857612607613aaa565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061264f576d04ee2d6d415b85acef8100000000838161264557612644613aaa565b5b0492506020810190505b662386f26fc10000831061267e57662386f26fc10000838161267457612673613aaa565b5b0492506010810190505b6305f5e10083106126a7576305f5e100838161269d5761269c613aaa565b5b0492506008810190505b61271083106126cc5761271083816126c2576126c1613aaa565b5b0492506004810190505b606483106126ef57606483816126e5576126e4613aaa565b5b0492506002810190505b600a83106126fe576001810190505b80915050919050565b5f805490505f8203612745576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127515f848385612075565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506127c3836127b45f865f61207b565b6127bd856128b0565b176120a2565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b81811461285d5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612824565b505f8203612897576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506128ab5f8483856120cc565b505050565b5f6001821460e11b9050919050565b60405180608001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581526020015f62ffffff1681525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61294f8161291b565b8114612959575f80fd5b50565b5f8135905061296a81612946565b92915050565b5f6020828403121561298557612984612913565b5b5f6129928482850161295c565b91505092915050565b5f8115159050919050565b6129af8161299b565b82525050565b5f6020820190506129c85f8301846129a6565b92915050565b6129d78161299b565b81146129e1575f80fd5b50565b5f813590506129f2816129ce565b92915050565b5f60208284031215612a0d57612a0c612913565b5b5f612a1a848285016129e4565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612a5a578082015181840152602081019050612a3f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612a7f82612a23565b612a898185612a2d565b9350612a99818560208601612a3d565b612aa281612a65565b840191505092915050565b5f6020820190508181035f830152612ac58184612a75565b905092915050565b5f819050919050565b612adf81612acd565b8114612ae9575f80fd5b50565b5f81359050612afa81612ad6565b92915050565b5f60208284031215612b1557612b14612913565b5b5f612b2284828501612aec565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612b5482612b2b565b9050919050565b612b6481612b4a565b82525050565b5f602082019050612b7d5f830184612b5b565b92915050565b612b8c81612b4a565b8114612b96575f80fd5b50565b5f81359050612ba781612b83565b92915050565b5f8060408385031215612bc357612bc2612913565b5b5f612bd085828601612b99565b9250506020612be185828601612aec565b9150509250929050565b612bf481612acd565b82525050565b5f602082019050612c0d5f830184612beb565b92915050565b5f805f60608486031215612c2a57612c29612913565b5b5f612c3786828701612b99565b9350506020612c4886828701612b99565b9250506040612c5986828701612aec565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612ca182612a65565b810181811067ffffffffffffffff82111715612cc057612cbf612c6b565b5b80604052505050565b5f612cd261290a565b9050612cde8282612c98565b919050565b5f67ffffffffffffffff821115612cfd57612cfc612c6b565b5b612d0682612a65565b9050602081019050919050565b828183375f83830152505050565b5f612d33612d2e84612ce3565b612cc9565b905082815260208101848484011115612d4f57612d4e612c67565b5b612d5a848285612d13565b509392505050565b5f82601f830112612d7657612d75612c63565b5b8135612d86848260208601612d21565b91505092915050565b5f60208284031215612da457612da3612913565b5b5f82013567ffffffffffffffff811115612dc157612dc0612917565b5b612dcd84828501612d62565b91505092915050565b5f60208284031215612deb57612dea612913565b5b5f612df884828501612b99565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612e3381612acd565b82525050565b5f612e448383612e2a565b60208301905092915050565b5f602082019050919050565b5f612e6682612e01565b612e708185612e0b565b9350612e7b83612e1b565b805f5b83811015612eab578151612e928882612e39565b9750612e9d83612e50565b925050600181019050612e7e565b5085935050505092915050565b5f6020820190508181035f830152612ed08184612e5c565b905092915050565b5f8060408385031215612eee57612eed612913565b5b5f612efb85828601612b99565b9250506020612f0c858286016129e4565b9150509250929050565b5f67ffffffffffffffff821115612f3057612f2f612c6b565b5b612f3982612a65565b9050602081019050919050565b5f612f58612f5384612f16565b612cc9565b905082815260208101848484011115612f7457612f73612c67565b5b612f7f848285612d13565b509392505050565b5f82601f830112612f9b57612f9a612c63565b5b8135612fab848260208601612f46565b91505092915050565b5f805f8060808587031215612fcc57612fcb612913565b5b5f612fd987828801612b99565b9450506020612fea87828801612b99565b9350506040612ffb87828801612aec565b925050606085013567ffffffffffffffff81111561301c5761301b612917565b5b61302887828801612f87565b91505092959194509250565b5f806040838503121561304a57613049612913565b5b5f61305785828601612aec565b925050602061306885828601612b99565b9150509250929050565b5f806040838503121561308857613087612913565b5b5f61309585828601612b99565b92505060206130a685828601612b99565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806130f457607f821691505b602082108103613107576131066130b0565b5b50919050565b7f6f6f707320636f6e7472616374206973207061757365640000000000000000005f82015250565b5f613141601783612a2d565b915061314c8261310d565b602082019050919050565b5f6020820190508181035f83015261316e81613135565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6131ac82612acd565b91506131b783612acd565b92508282019050808211156131cf576131ce613175565b5b92915050565b7f4d6178204e4654205065722057616c6c657420657863656564656400000000005f82015250565b5f613209601b83612a2d565b9150613214826131d5565b602082019050919050565b5f6020820190508181035f830152613236816131fd565b9050919050565b7f6d61782066726565206d696e74207065722054782065786365656465640000005f82015250565b5f613271601d83612a2d565b915061327c8261323d565b602082019050919050565b5f6020820190508181035f83015261329e81613265565b9050919050565b7f57686974656c697374204d6178537570706c79206578636565646564000000005f82015250565b5f6132d9601c83612a2d565b91506132e4826132a5565b602082019050919050565b5f6020820190508181035f830152613306816132cd565b9050919050565b7f536f7272792c626f7400000000000000000000000000000000000000000000005f82015250565b5f613341600983612a2d565b915061334c8261330d565b602082019050919050565b5f6020820190508181035f83015261336e81613335565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026133d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613396565b6133db8683613396565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61341661341161340c84612acd565b6133f3565b612acd565b9050919050565b5f819050919050565b61342f836133fc565b61344361343b8261341d565b8484546133a2565b825550505050565b5f90565b61345761344b565b613462818484613426565b505050565b5b818110156134855761347a5f8261344f565b600181019050613468565b5050565b601f8211156134ca5761349b81613375565b6134a484613387565b810160208510156134b3578190505b6134c76134bf85613387565b830182613467565b50505b505050565b5f82821c905092915050565b5f6134ea5f19846008026134cf565b1980831691505092915050565b5f61350283836134db565b9150826002028217905092915050565b61351b82612a23565b67ffffffffffffffff81111561353457613533612c6b565b5b61353e82546130dd565b613549828285613489565b5f60209050601f83116001811461357a575f8415613568578287015190505b61357285826134f7565b8655506135d9565b601f19841661358886613375565b5f5b828110156135af5784890151825560018201915060208501945060208101905061358a565b868310156135cc57848901516135c8601f8916826134db565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f6d6178206d696e7420616d6f756e7420706572207478206578636565646564005f82015250565b5f613642601f83612a2d565b915061364d8261360e565b602082019050919050565b5f6020820190508181035f83015261366f81613636565b9050919050565b7f576520536f6c646f7574000000000000000000000000000000000000000000005f82015250565b5f6136aa600a83612a2d565b91506136b582613676565b602082019050919050565b5f6020820190508181035f8301526136d78161369e565b9050919050565b5f6136e882612acd565b91506136f383612acd565b925082820261370181612acd565b9150828204841483151761371857613717613175565b5b5092915050565b7f696e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f613753601283612a2d565b915061375e8261371f565b602082019050919050565b5f6020820190508181035f83015261378081613747565b9050919050565b7f6d6178204e4654206c696d6974206578636565646564000000000000000000005f82015250565b5f6137bb601683612a2d565b91506137c682613787565b602082019050919050565b5f6020820190508181035f8301526137e8816137af565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e5f8201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b5f613849603083612a2d565b9150613854826137ef565b604082019050919050565b5f6020820190508181035f8301526138768161383d565b9050919050565b5f81905092915050565b5f61389182612a23565b61389b818561387d565b93506138ab818560208601612a3d565b80840191505092915050565b5f81546138c3816130dd565b6138cd818661387d565b9450600182165f81146138e757600181146138fc5761392e565b60ff198316865281151582028601935061392e565b61390585613375565b5f5b8381101561392657815481890152600182019150602081019050613907565b838801955050505b50505092915050565b5f6139428286613887565b915061394e8285613887565b915061395a82846138b7565b9150819050949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f61399b601f83612a2d565b91506139a682613967565b602082019050919050565b5f6020820190508181035f8301526139c88161398f565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6139f3826139cf565b6139fd81856139d9565b9350613a0d818560208601612a3d565b613a1681612a65565b840191505092915050565b5f608082019050613a345f830187612b5b565b613a416020830186612b5b565b613a4e6040830185612beb565b8181036060830152613a6081846139e9565b905095945050505050565b5f81519050613a7981612946565b92915050565b5f60208284031215613a9457613a93612913565b5b5f613aa184828501613a6b565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122049b32937172c2b36e59bd53b627d4a1dff02024c4c36630d54465081f6f69b8b64736f6c634300081500330000000000000000000000000611def78b2a39584a7b59f382b02d55000305e6000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56583572354d3350467741523767485976536d31444350777071535a4377434679654e4758524e65326b63502f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56583572354d3350467741523767485976536d31444350777071535a4377434679654e4758524e65326b63502f00000000000000000000

Deployed Bytecode

0x60806040526004361061025b575f3560e01c80636c0360eb11610143578063bd7a1998116100b5578063dc33e68111610079578063dc33e6811461084f578063e1cf8baa1461088b578063e268e4d3146108b3578063e985e9c5146108db578063f2c4ce1e14610917578063f2fde38b1461093f5761025b565b8063bd7a19981461076d578063c668286214610797578063c87b56dd146107c1578063d5abeb01146107fd578063da3ef23f146108275761025b565b8063940cd05b11610107578063940cd05b1461069357806395d89b41146106bb578063a0712d68146106e5578063a22cb46514610701578063b88d4fde14610729578063bc63f02e146107455761025b565b80636c0360eb146105b157806370a08231146105db578063715018a6146106175780638462151c1461062d5780638da5cb5b146106695761025b565b806323b872dd116101dc57806350839bef116101a057806350839bef146104a557806351830227146104cf57806355f804b3146104f95780635c975abb14610521578063624208ae1461054b5780636352211e146105755761025b565b806323b872dd14610413578063351de26e1461042f5780633ccfd60b1461045757806342842e0e1461046157806344a0d68a1461047d5761025b565b8063095ea7b311610223578063095ea7b3146103535780630fbe4fe21461036f57806313faede614610397578063149835a0146103c157806318160ddd146103e95761025b565b806301ffc9a71461025f57806302329a291461029b57806306fdde03146102c3578063081812fc146102ed578063081c8c4414610329575b5f80fd5b34801561026a575f80fd5b5061028560048036038101906102809190612970565b610967565b60405161029291906129b5565b60405180910390f35b3480156102a6575f80fd5b506102c160048036038101906102bc91906129f8565b6109f8565b005b3480156102ce575f80fd5b506102d7610a1c565b6040516102e49190612aad565b60405180910390f35b3480156102f8575f80fd5b50610313600480360381019061030e9190612b00565b610aac565b6040516103209190612b6a565b60405180910390f35b348015610334575f80fd5b5061033d610b26565b60405161034a9190612aad565b60405180910390f35b61036d60048036038101906103689190612bad565b610bb2565b005b34801561037a575f80fd5b5061039560048036038101906103909190612b00565b610cf1565b005b3480156103a2575f80fd5b506103ab610eae565b6040516103b89190612bfa565b60405180910390f35b3480156103cc575f80fd5b506103e760048036038101906103e29190612b00565b610eb4565b005b3480156103f4575f80fd5b506103fd610ec6565b60405161040a9190612bfa565b60405180910390f35b61042d60048036038101906104289190612c13565b610edb565b005b34801561043a575f80fd5b5061045560048036038101906104509190612b00565b6111e9565b005b61045f6111fb565b005b61047b60048036038101906104769190612c13565b611265565b005b348015610488575f80fd5b506104a3600480360381019061049e9190612b00565b611284565b005b3480156104b0575f80fd5b506104b9611296565b6040516104c69190612bfa565b60405180910390f35b3480156104da575f80fd5b506104e361129c565b6040516104f091906129b5565b60405180910390f35b348015610504575f80fd5b5061051f600480360381019061051a9190612d8f565b6112af565b005b34801561052c575f80fd5b506105356112ca565b60405161054291906129b5565b60405180910390f35b348015610556575f80fd5b5061055f6112dc565b60405161056c9190612bfa565b60405180910390f35b348015610580575f80fd5b5061059b60048036038101906105969190612b00565b6112e2565b6040516105a89190612b6a565b60405180910390f35b3480156105bc575f80fd5b506105c56112f3565b6040516105d29190612aad565b60405180910390f35b3480156105e6575f80fd5b5061060160048036038101906105fc9190612dd6565b61137f565b60405161060e9190612bfa565b60405180910390f35b348015610622575f80fd5b5061062b611434565b005b348015610638575f80fd5b50610653600480360381019061064e9190612dd6565b611447565b6040516106609190612eb8565b60405180910390f35b348015610674575f80fd5b5061067d611583565b60405161068a9190612b6a565b60405180910390f35b34801561069e575f80fd5b506106b960048036038101906106b491906129f8565b6115ab565b005b3480156106c6575f80fd5b506106cf6115d0565b6040516106dc9190612aad565b60405180910390f35b6106ff60048036038101906106fa9190612b00565b611660565b005b34801561070c575f80fd5b5061072760048036038101906107229190612ed8565b61181e565b005b610743600480360381019061073e9190612fb4565b611924565b005b348015610750575f80fd5b5061076b60048036038101906107669190613034565b611996565b005b348015610778575f80fd5b50610781611a13565b60405161078e9190612bfa565b60405180910390f35b3480156107a2575f80fd5b506107ab611a19565b6040516107b89190612aad565b60405180910390f35b3480156107cc575f80fd5b506107e760048036038101906107e29190612b00565b611aa5565b6040516107f49190612aad565b60405180910390f35b348015610808575f80fd5b50610811611bf7565b60405161081e9190612bfa565b60405180910390f35b348015610832575f80fd5b5061084d60048036038101906108489190612d8f565b611bfd565b005b34801561085a575f80fd5b5061087560048036038101906108709190612dd6565b611c18565b6040516108829190612bfa565b60405180910390f35b348015610896575f80fd5b506108b160048036038101906108ac9190612b00565b611c29565b005b3480156108be575f80fd5b506108d960048036038101906108d49190612b00565b611c3b565b005b3480156108e6575f80fd5b5061090160048036038101906108fc9190613072565b611c4d565b60405161090e91906129b5565b60405180910390f35b348015610922575f80fd5b5061093d60048036038101906109389190612d8f565b611cdb565b005b34801561094a575f80fd5b5061096560048036038101906109609190612dd6565b611cf6565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a00611d7a565b8060125f6101000a81548160ff02191690831515021790555050565b606060028054610a2b906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a57906130dd565b8015610aa25780601f10610a7957610100808354040283529160200191610aa2565b820191905f5260205f20905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b5f610ab682611e01565b610aec576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b33906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5f906130dd565b8015610baa5780601f10610b8157610100808354040283529160200191610baa565b820191905f5260205f20905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b5f610bbc826112e2565b90508073ffffffffffffffffffffffffffffffffffffffff16610bdd611e5b565b73ffffffffffffffffffffffffffffffffffffffff1614610c4057610c0981610c04611e5b565b611c4d565b610c3f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610cf9611e62565b60125f9054906101000a900460ff1615610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90613157565b60405180910390fd5b60115481610d5c610d57611e5b565b611eb1565b610d6691906131a2565b1115610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e9061321f565b60405180910390fd5b601154811115610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390613287565b60405180910390fd5b600f5481610df8610ec6565b610e0291906131a2565b1115610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a906132ef565b60405180910390fd5b610e53610e4e611f05565b611f0c565b610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990613357565b60405180910390fd5b610ea3610e9d611e5b565b82611f1d565b610eab611f3a565b50565b600d5481565b610ebc611d7a565b80600e8190555050565b5f610ecf611f44565b6001545f540303905090565b5f610ee582611f4c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f4c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610f578461200f565b91509150610f6d8187610f68611e5b565b612032565b610fb957610f8286610f7d611e5b565b611c4d565b610fb8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361101e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61102b8686866001612075565b8015611035575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506110fd856110d988888761207b565b7c0200000000000000000000000000000000000000000000000000000000176120a2565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611179575f6001850190505f60045f8381526020019081526020015f205403611177575f548114611176578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111e186868660016120cc565b505050505050565b6111f1611d7a565b8060118190555050565b611203611d7a565b61120b611e62565b5f479050611217611e5b565b73ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611259573d5f803e3d5ffd5b5050611263611f3a565b565b61127f83838360405180602001604052805f815250611924565b505050565b61128c611d7a565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b6112b7611d7a565b80600a90816112c69190613512565b5050565b60125f9054906101000a900460ff1681565b60115481565b5f6112ec82611f4c565b9050919050565b600a8054611300906130dd565b80601f016020809104026020016040519081016040528092919081815260200182805461132c906130dd565b80156113775780601f1061134e57610100808354040283529160200191611377565b820191905f5260205f20905b81548152906001019060200180831161135a57829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113e5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61143c611d7a565b6114455f6120d2565b565b60605f805f6114558561137f565b90505f8167ffffffffffffffff81111561147257611471612c6b565b5b6040519080825280602002602001820160405280156114a05781602001602082028036833780820191505090505b5090506114ab6128bf565b5f6114b4611f44565b90505b838614611575576114c781612195565b9150816040015161156a575f73ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff161461150f57815f015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611569578083878060010198508151811061155c5761155b6135e1565b5b6020026020010181815250505b5b8060010190506114b7565b508195505050505050919050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115b3611d7a565b80601260016101000a81548160ff02191690831515021790555050565b6060600380546115df906130dd565b80601f016020809104026020016040519081016040528092919081815260200182805461160b906130dd565b80156116565780601f1061162d57610100808354040283529160200191611656565b820191905f5260205f20905b81548152906001019060200180831161163957829003601f168201915b5050505050905090565b611668611e62565b60125f9054906101000a900460ff16156116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90613157565b60405180910390fd5b6010548111156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613658565b60405180910390fd5b600e5481611708610ec6565b61171291906131a2565b1115611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a906136c0565b60405180910390fd5b60105481611767611762611e5b565b611eb1565b61177191906131a2565b11156117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a99061321f565b60405180910390fd5b80600d546117c091906136de565b341015611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990613769565b60405180910390fd5b61181361180d611e5b565b82611f1d565b61181b611f3a565b50565b8060075f61182a611e5b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118d3611e5b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161191891906129b5565b60405180910390a35050565b61192f848484610edb565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461199057611959848484846121be565b61198f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61199e611d7a565b6119a6611e62565b600e54826119b2610ec6565b6119bc91906131a2565b11156119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f4906137d1565b60405180910390fd5b611a078183611f1d565b611a0f611f3a565b5050565b60105481565b600b8054611a26906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611a52906130dd565b8015611a9d5780601f10611a7457610100808354040283529160200191611a9d565b820191905f5260205f20905b815481529060010190602001808311611a8057829003601f168201915b505050505081565b6060611ab082611e01565b611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae69061385f565b60405180910390fd5b5f1515601260019054906101000a900460ff16151503611b9957600c8054611b16906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611b42906130dd565b8015611b8d5780601f10611b6457610100808354040283529160200191611b8d565b820191905f5260205f20905b815481529060010190602001808311611b7057829003601f168201915b50505050509050611bf2565b5f611ba2612309565b90505f815111611bc05760405180602001604052805f815250611bee565b80611bca84612399565b600b604051602001611bde93929190613937565b6040516020818303038152906040525b9150505b919050565b600e5481565b611c05611d7a565b80600b9081611c149190613512565b5050565b5f611c2282611eb1565b9050919050565b611c31611d7a565b80600f8190555050565b611c43611d7a565b8060108190555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611ce3611d7a565b80600c9081611cf29190613512565b5050565b611cfe611d7a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d6e575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611d659190612b6a565b60405180910390fd5b611d77816120d2565b50565b611d82611f05565b73ffffffffffffffffffffffffffffffffffffffff16611da0611583565b73ffffffffffffffffffffffffffffffffffffffff1614611dff57611dc3611f05565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611df69190612b6a565b60405180910390fd5b565b5f81611e0b611f44565b11158015611e1957505f5482105b8015611e5457505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b600260095403611ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9e906139b1565b60405180910390fd5b6002600981905550565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f33905090565b5f80823b90505f8114915050919050565b611f36828260405180602001604052805f815250612463565b5050565b6001600981905550565b5f6001905090565b5f8082905080611f5a611f44565b11611fd8575f54811015611fd7575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611fd5575b5f8103611fcb5760045f836001900393508381526020019081526020015f20549050611fa4565b809250505061200a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86120918686846124fa565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61219d6128bf565b6121b760045f8481526020019081526020015f2054612502565b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121e3611e5b565b8786866040518563ffffffff1660e01b81526004016122059493929190613a21565b6020604051808303815f875af192505050801561224057506040513d601f19601f8201168201806040525081019061223d9190613a7f565b60015b6122b6573d805f811461226e576040519150601f19603f3d011682016040523d82523d5f602084013e612273565b606091505b505f8151036122ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612318906130dd565b80601f0160208091040260200160405190810160405280929190818152602001828054612344906130dd565b801561238f5780601f106123665761010080835404028352916020019161238f565b820191905f5260205f20905b81548152906001019060200180831161237257829003601f168201915b5050505050905090565b60605f60016123a7846125b6565b0190505f8167ffffffffffffffff8111156123c5576123c4612c6b565b5b6040519080825280601f01601f1916602001820160405280156123f75781602001600182028036833780820191505090505b5090505f82602001820190505b600115612458578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161244d5761244c613aaa565b5b0494505f8503612404575b819350505050919050565b61246d8383612707565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146124f5575f805490505f83820390505b6124a95f8683806001019450866121be565b6124df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061249757815f54146124f2575f80fd5b50505b505050565b5f9392505050565b61250a6128bf565b81815f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff16815250505f7c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612612577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161260857612607613aaa565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061264f576d04ee2d6d415b85acef8100000000838161264557612644613aaa565b5b0492506020810190505b662386f26fc10000831061267e57662386f26fc10000838161267457612673613aaa565b5b0492506010810190505b6305f5e10083106126a7576305f5e100838161269d5761269c613aaa565b5b0492506008810190505b61271083106126cc5761271083816126c2576126c1613aaa565b5b0492506004810190505b606483106126ef57606483816126e5576126e4613aaa565b5b0492506002810190505b600a83106126fe576001810190505b80915050919050565b5f805490505f8203612745576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127515f848385612075565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506127c3836127b45f865f61207b565b6127bd856128b0565b176120a2565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b81811461285d5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612824565b505f8203612897576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506128ab5f8483856120cc565b505050565b5f6001821460e11b9050919050565b60405180608001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581526020015f62ffffff1681525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61294f8161291b565b8114612959575f80fd5b50565b5f8135905061296a81612946565b92915050565b5f6020828403121561298557612984612913565b5b5f6129928482850161295c565b91505092915050565b5f8115159050919050565b6129af8161299b565b82525050565b5f6020820190506129c85f8301846129a6565b92915050565b6129d78161299b565b81146129e1575f80fd5b50565b5f813590506129f2816129ce565b92915050565b5f60208284031215612a0d57612a0c612913565b5b5f612a1a848285016129e4565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612a5a578082015181840152602081019050612a3f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612a7f82612a23565b612a898185612a2d565b9350612a99818560208601612a3d565b612aa281612a65565b840191505092915050565b5f6020820190508181035f830152612ac58184612a75565b905092915050565b5f819050919050565b612adf81612acd565b8114612ae9575f80fd5b50565b5f81359050612afa81612ad6565b92915050565b5f60208284031215612b1557612b14612913565b5b5f612b2284828501612aec565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612b5482612b2b565b9050919050565b612b6481612b4a565b82525050565b5f602082019050612b7d5f830184612b5b565b92915050565b612b8c81612b4a565b8114612b96575f80fd5b50565b5f81359050612ba781612b83565b92915050565b5f8060408385031215612bc357612bc2612913565b5b5f612bd085828601612b99565b9250506020612be185828601612aec565b9150509250929050565b612bf481612acd565b82525050565b5f602082019050612c0d5f830184612beb565b92915050565b5f805f60608486031215612c2a57612c29612913565b5b5f612c3786828701612b99565b9350506020612c4886828701612b99565b9250506040612c5986828701612aec565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612ca182612a65565b810181811067ffffffffffffffff82111715612cc057612cbf612c6b565b5b80604052505050565b5f612cd261290a565b9050612cde8282612c98565b919050565b5f67ffffffffffffffff821115612cfd57612cfc612c6b565b5b612d0682612a65565b9050602081019050919050565b828183375f83830152505050565b5f612d33612d2e84612ce3565b612cc9565b905082815260208101848484011115612d4f57612d4e612c67565b5b612d5a848285612d13565b509392505050565b5f82601f830112612d7657612d75612c63565b5b8135612d86848260208601612d21565b91505092915050565b5f60208284031215612da457612da3612913565b5b5f82013567ffffffffffffffff811115612dc157612dc0612917565b5b612dcd84828501612d62565b91505092915050565b5f60208284031215612deb57612dea612913565b5b5f612df884828501612b99565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612e3381612acd565b82525050565b5f612e448383612e2a565b60208301905092915050565b5f602082019050919050565b5f612e6682612e01565b612e708185612e0b565b9350612e7b83612e1b565b805f5b83811015612eab578151612e928882612e39565b9750612e9d83612e50565b925050600181019050612e7e565b5085935050505092915050565b5f6020820190508181035f830152612ed08184612e5c565b905092915050565b5f8060408385031215612eee57612eed612913565b5b5f612efb85828601612b99565b9250506020612f0c858286016129e4565b9150509250929050565b5f67ffffffffffffffff821115612f3057612f2f612c6b565b5b612f3982612a65565b9050602081019050919050565b5f612f58612f5384612f16565b612cc9565b905082815260208101848484011115612f7457612f73612c67565b5b612f7f848285612d13565b509392505050565b5f82601f830112612f9b57612f9a612c63565b5b8135612fab848260208601612f46565b91505092915050565b5f805f8060808587031215612fcc57612fcb612913565b5b5f612fd987828801612b99565b9450506020612fea87828801612b99565b9350506040612ffb87828801612aec565b925050606085013567ffffffffffffffff81111561301c5761301b612917565b5b61302887828801612f87565b91505092959194509250565b5f806040838503121561304a57613049612913565b5b5f61305785828601612aec565b925050602061306885828601612b99565b9150509250929050565b5f806040838503121561308857613087612913565b5b5f61309585828601612b99565b92505060206130a685828601612b99565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806130f457607f821691505b602082108103613107576131066130b0565b5b50919050565b7f6f6f707320636f6e7472616374206973207061757365640000000000000000005f82015250565b5f613141601783612a2d565b915061314c8261310d565b602082019050919050565b5f6020820190508181035f83015261316e81613135565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6131ac82612acd565b91506131b783612acd565b92508282019050808211156131cf576131ce613175565b5b92915050565b7f4d6178204e4654205065722057616c6c657420657863656564656400000000005f82015250565b5f613209601b83612a2d565b9150613214826131d5565b602082019050919050565b5f6020820190508181035f830152613236816131fd565b9050919050565b7f6d61782066726565206d696e74207065722054782065786365656465640000005f82015250565b5f613271601d83612a2d565b915061327c8261323d565b602082019050919050565b5f6020820190508181035f83015261329e81613265565b9050919050565b7f57686974656c697374204d6178537570706c79206578636565646564000000005f82015250565b5f6132d9601c83612a2d565b91506132e4826132a5565b602082019050919050565b5f6020820190508181035f830152613306816132cd565b9050919050565b7f536f7272792c626f7400000000000000000000000000000000000000000000005f82015250565b5f613341600983612a2d565b915061334c8261330d565b602082019050919050565b5f6020820190508181035f83015261336e81613335565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026133d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613396565b6133db8683613396565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61341661341161340c84612acd565b6133f3565b612acd565b9050919050565b5f819050919050565b61342f836133fc565b61344361343b8261341d565b8484546133a2565b825550505050565b5f90565b61345761344b565b613462818484613426565b505050565b5b818110156134855761347a5f8261344f565b600181019050613468565b5050565b601f8211156134ca5761349b81613375565b6134a484613387565b810160208510156134b3578190505b6134c76134bf85613387565b830182613467565b50505b505050565b5f82821c905092915050565b5f6134ea5f19846008026134cf565b1980831691505092915050565b5f61350283836134db565b9150826002028217905092915050565b61351b82612a23565b67ffffffffffffffff81111561353457613533612c6b565b5b61353e82546130dd565b613549828285613489565b5f60209050601f83116001811461357a575f8415613568578287015190505b61357285826134f7565b8655506135d9565b601f19841661358886613375565b5f5b828110156135af5784890151825560018201915060208501945060208101905061358a565b868310156135cc57848901516135c8601f8916826134db565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f6d6178206d696e7420616d6f756e7420706572207478206578636565646564005f82015250565b5f613642601f83612a2d565b915061364d8261360e565b602082019050919050565b5f6020820190508181035f83015261366f81613636565b9050919050565b7f576520536f6c646f7574000000000000000000000000000000000000000000005f82015250565b5f6136aa600a83612a2d565b91506136b582613676565b602082019050919050565b5f6020820190508181035f8301526136d78161369e565b9050919050565b5f6136e882612acd565b91506136f383612acd565b925082820261370181612acd565b9150828204841483151761371857613717613175565b5b5092915050565b7f696e73756666696369656e742066756e647300000000000000000000000000005f82015250565b5f613753601283612a2d565b915061375e8261371f565b602082019050919050565b5f6020820190508181035f83015261378081613747565b9050919050565b7f6d6178204e4654206c696d6974206578636565646564000000000000000000005f82015250565b5f6137bb601683612a2d565b91506137c682613787565b602082019050919050565b5f6020820190508181035f8301526137e8816137af565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e5f8201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b5f613849603083612a2d565b9150613854826137ef565b604082019050919050565b5f6020820190508181035f8301526138768161383d565b9050919050565b5f81905092915050565b5f61389182612a23565b61389b818561387d565b93506138ab818560208601612a3d565b80840191505092915050565b5f81546138c3816130dd565b6138cd818661387d565b9450600182165f81146138e757600181146138fc5761392e565b60ff198316865281151582028601935061392e565b61390585613375565b5f5b8381101561392657815481890152600182019150602081019050613907565b838801955050505b50505092915050565b5f6139428286613887565b915061394e8285613887565b915061395a82846138b7565b9150819050949350505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f61399b601f83612a2d565b91506139a682613967565b602082019050919050565b5f6020820190508181035f8301526139c88161398f565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6139f3826139cf565b6139fd81856139d9565b9350613a0d818560208601612a3d565b613a1681612a65565b840191505092915050565b5f608082019050613a345f830187612b5b565b613a416020830186612b5b565b613a4e6040830185612beb565b8181036060830152613a6081846139e9565b905095945050505050565b5f81519050613a7981612946565b92915050565b5f60208284031215613a9457613a93612913565b5b5f613aa184828501613a6b565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122049b32937172c2b36e59bd53b627d4a1dff02024c4c36630d54465081f6f69b8b64736f6c63430008150033

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

0000000000000000000000000611def78b2a39584a7b59f382b02d55000305e6000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56583572354d3350467741523767485976536d31444350777071535a4377434679654e4758524e65326b63502f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56583572354d3350467741523767485976536d31444350777071535a4377434679654e4758524e65326b63502f00000000000000000000

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x0611def78B2A39584a7b59f382b02d55000305E6
Arg [1] : _initBaseURI (string): ipfs://QmVX5r5M3PFwAR7gHYvSm1DCPwpqSZCwCFyeNGXRNe2kcP/
Arg [2] : _notRevealedUri (string): ipfs://QmVX5r5M3PFwAR7gHYvSm1DCPwpqSZCwCFyeNGXRNe2kcP/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000611def78b2a39584a7b59f382b02d55000305e6
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d56583572354d3350467741523767485976536d31444350
Arg [5] : 777071535a4377434679654e4758524e65326b63502f00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [7] : 697066733a2f2f516d56583572354d3350467741523767485976536d31444350
Arg [8] : 777071535a4377434679654e4758524e65326b63502f00000000000000000000


Deployed Bytecode Sourcemap

79015:5755:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45764:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84478:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46666:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53157:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79174:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52590:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80676:486;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79207:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83706:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42417:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56796:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83402:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84600:167;;;:::i;:::-;;59717:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83571:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79283:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79429:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83969:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79398:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79358:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48059:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79111:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43601:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26524:103;;;;;;;;;;;;;:::i;:::-;;82227:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25849:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83130:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46842:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80005:471;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53715:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60508:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81217:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79320:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79137:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81492:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79247:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84122:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82055:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83839:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83259:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54106:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84278:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26782:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45764:639;45849:4;46188:10;46173:25;;:11;:25;;;;:102;;;;46265:10;46250:25;;:11;:25;;;;46173:102;:179;;;;46342:10;46327:25;;:11;:25;;;;46173:179;46153:199;;45764:639;;;:::o;84478:73::-;25735:13;:11;:13::i;:::-;84539:6:::1;84530;;:15;;;;;;;;;;;;;;;;;;84478:73:::0;:::o;46666:100::-;46720:13;46753:5;46746:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46666:100;:::o;53157:218::-;53233:7;53258:16;53266:7;53258;:16::i;:::-;53253:64;;53283:34;;;;;;;;;;;;;;53253:64;53337:15;:24;53353:7;53337:24;;;;;;;;;;;:30;;;;;;;;;;;;53330:37;;53157:218;;;:::o;79174:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52590:408::-;52679:13;52695:16;52703:7;52695;:16::i;:::-;52679:32;;52751:5;52728:28;;:19;:17;:19::i;:::-;:28;;;52724:175;;52776:44;52793:5;52800:19;:17;:19::i;:::-;52776:16;:44::i;:::-;52771:128;;52848:35;;;;;;;;;;;;;;52771:128;52724:175;52944:2;52911:15;:24;52927:7;52911:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52982:7;52978:2;52962:28;;52971:5;52962:28;;;;;;;;;;;;52668:330;52590:408;;:::o;80676:486::-;2345:21;:19;:21::i;:::-;80746:6:::1;;;;;;;;;;;80745:7;80737:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;80842:16;;80832:6;80795:34;80809:19;:17;:19::i;:::-;80795:13;:34::i;:::-;:43;;;;:::i;:::-;:63;;80787:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;80915:16;;80905:6;:26;;80897:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;81006:10;;80996:6;80980:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;80972:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;81064:19;81070:12;:10;:12::i;:::-;81064:5;:19::i;:::-;81056:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;81112:38;81122:19;:17;:19::i;:::-;81143:6;81112:9;:38::i;:::-;2389:20:::0;:18;:20::i;:::-;80676:486;:::o;79207:35::-;;;;:::o;83706:94::-;25735:13;:11;:13::i;:::-;83784:10:::1;83772:9;:22;;;;83706:94:::0;:::o;42417:323::-;42478:7;42706:15;:13;:15::i;:::-;42691:12;;42675:13;;:28;:46;42668:53;;42417:323;:::o;56796:2825::-;56938:27;56968;56987:7;56968:18;:27::i;:::-;56938:57;;57053:4;57012:45;;57028:19;57012:45;;;57008:86;;57066:28;;;;;;;;;;;;;;57008:86;57108:27;57137:23;57164:35;57191:7;57164:26;:35::i;:::-;57107:92;;;;57299:68;57324:15;57341:4;57347:19;:17;:19::i;:::-;57299:24;:68::i;:::-;57294:180;;57387:43;57404:4;57410:19;:17;:19::i;:::-;57387:16;:43::i;:::-;57382:92;;57439:35;;;;;;;;;;;;;;57382:92;57294:180;57505:1;57491:16;;:2;:16;;;57487:52;;57516:23;;;;;;;;;;;;;;57487:52;57552:43;57574:4;57580:2;57584:7;57593:1;57552:21;:43::i;:::-;57688:15;57685:160;;;57828:1;57807:19;57800:30;57685:160;58225:18;:24;58244:4;58225:24;;;;;;;;;;;;;;;;58223:26;;;;;;;;;;;;58294:18;:22;58313:2;58294:22;;;;;;;;;;;;;;;;58292:24;;;;;;;;;;;58616:146;58653:2;58702:45;58717:4;58723:2;58727:19;58702:14;:45::i;:::-;38816:8;58674:73;58616:18;:146::i;:::-;58587:17;:26;58605:7;58587:26;;;;;;;;;;;:175;;;;58933:1;38816:8;58882:19;:47;:52;58878:627;;58955:19;58987:1;58977:7;:11;58955:33;;59144:1;59110:17;:30;59128:11;59110:30;;;;;;;;;;;;:35;59106:384;;59248:13;;59233:11;:28;59229:242;;59428:19;59395:17;:30;59413:11;59395:30;;;;;;;;;;;:52;;;;59229:242;59106:384;58936:569;58878:627;59552:7;59548:2;59533:27;;59542:4;59533:27;;;;;;;;;;;;59571:42;59592:4;59598:2;59602:7;59611:1;59571:20;:42::i;:::-;56927:2694;;;56796:2825;;;:::o;83402:100::-;25735:13;:11;:13::i;:::-;83490:6:::1;83471:16;:25;;;;83402:100:::0;:::o;84600:167::-;25735:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;84667:15:::2;84685:21;84667:39;;84723:19;:17;:19::i;:::-;84715:37;;:46;84753:7;84715:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;84658:109;2389:20:::1;:18;:20::i;:::-;84600:167::o:0;59717:193::-;59863:39;59880:4;59886:2;59890:7;59863:39;;;;;;;;;;;;:16;:39::i;:::-;59717:193;;;:::o;83571:80::-;25735:13;:11;:13::i;:::-;83637:8:::1;83630:4;:15;;;;83571:80:::0;:::o;79283:32::-;;;;:::o;79429:27::-;;;;;;;;;;;;;:::o;83969:98::-;25735:13;:11;:13::i;:::-;84050:11:::1;84040:7;:21;;;;;;:::i;:::-;;83969:98:::0;:::o;79398:26::-;;;;;;;;;;;;;:::o;79358:35::-;;;;:::o;48059:152::-;48131:7;48174:27;48193:7;48174:18;:27::i;:::-;48151:52;;48059:152;;;:::o;79111:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43601:233::-;43673:7;43714:1;43697:19;;:5;:19;;;43693:60;;43725:28;;;;;;;;;;;;;;43693:60;37760:13;43771:18;:25;43790:5;43771:25;;;;;;;;;;;;;;;;:55;43764:62;;43601:233;;;:::o;26524:103::-;25735:13;:11;:13::i;:::-;26589:30:::1;26616:1;26589:18;:30::i;:::-;26524:103::o:0;82227:881::-;82286:16;82340:19;82374:25;82414:22;82439:16;82449:5;82439:9;:16::i;:::-;82414:41;;82470:25;82512:14;82498:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82470:57;;82542:31;;:::i;:::-;82593:9;82605:15;:13;:15::i;:::-;82593:27;;82588:472;82637:14;82622:11;:29;82588:472;;82689:15;82702:1;82689:12;:15::i;:::-;82677:27;;82727:9;:16;;;82768:8;82723:73;82844:1;82818:28;;:9;:14;;;:28;;;82814:111;;82891:9;:14;;;82871:34;;82814:111;82968:5;82947:26;;:17;:26;;;82943:102;;83024:1;82998:8;83007:13;;;;;;82998:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;82943:102;82588:472;82653:3;;;;;82588:472;;;;83081:8;83074:15;;;;;;;82227:881;;;:::o;25849:87::-;25895:7;25922:6;;;;;;;;;;;25915:13;;25849:87;:::o;83130:78::-;25735:13;:11;:13::i;:::-;83196:6:::1;83185:8;;:17;;;;;;;;;;;;;;;;;;83130:78:::0;:::o;46842:104::-;46898:13;46931:7;46924:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46842:104;:::o;80005:471::-;2345:21;:19;:21::i;:::-;80079:6:::1;;;;;;;;;;;80078:7;80070:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;80138:12;;80128:6;:22;;80120:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;80227:9;;80217:6;80201:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;80193:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;80313:12;;80303:6;80266:34;80280:19;:17;:19::i;:::-;80266:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;80258:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;80392:6;80385:4;;:13;;;;:::i;:::-;80372:9;:26;;80364:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;80432:38;80442:19;:17;:19::i;:::-;80463:6;80432:9;:38::i;:::-;2389:20:::0;:18;:20::i;:::-;80005:471;:::o;53715:234::-;53862:8;53810:18;:39;53829:19;:17;:19::i;:::-;53810:39;;;;;;;;;;;;;;;:49;53850:8;53810:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;53922:8;53886:55;;53901:19;:17;:19::i;:::-;53886:55;;;53932:8;53886:55;;;;;;:::i;:::-;;;;;;;;53715:234;;:::o;60508:407::-;60683:31;60696:4;60702:2;60706:7;60683:12;:31::i;:::-;60747:1;60729:2;:14;;;:19;60725:183;;60768:56;60799:4;60805:2;60809:7;60818:5;60768:30;:56::i;:::-;60763:145;;60852:40;;;;;;;;;;;;;;60763:145;60725:183;60508:407;;;;:::o;81217:223::-;25735:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;81352:9:::2;;81337:11;81321:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;81313:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;81399:35;81409:11;81422;81399:9;:35::i;:::-;2389:20:::1;:18;:20::i;:::-;81217:223:::0;;:::o;79320:33::-;;;;:::o;79137:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;81492:498::-;81590:13;81631:16;81639:7;81631;:16::i;:::-;81615:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;81741:5;81729:17;;:8;;;;;;;;;;;:17;;;81726:62;;81766:14;81759:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81726:62;81796:28;81827:10;:8;:10::i;:::-;81796:41;;81882:1;81857:14;81851:28;:32;:133;;;;;;;;;;;;;;;;;81919:14;81935:18;:7;:16;:18::i;:::-;81955:13;81902:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81851:133;81844:140;;;81492:498;;;;:::o;79247:31::-;;;;:::o;84122:122::-;25735:13;:11;:13::i;:::-;84221:17:::1;84205:13;:33;;;;;;:::i;:::-;;84122:122:::0;:::o;82055:107::-;82113:7;82136:20;82150:5;82136:13;:20::i;:::-;82129:27;;82055:107;;;:::o;83839:96::-;25735:13;:11;:13::i;:::-;83919:10:::1;83906;:23;;;;83839:96:::0;:::o;83259:92::-;25735:13;:11;:13::i;:::-;83339:6:::1;83324:12;:21;;;;83259:92:::0;:::o;54106:164::-;54203:4;54227:18;:25;54246:5;54227:25;;;;;;;;;;;;;;;:35;54253:8;54227:35;;;;;;;;;;;;;;;;;;;;;;;;;54220:42;;54106:164;;;;:::o;84278:120::-;25735:13;:11;:13::i;:::-;84377:15:::1;84360:14;:32;;;;;;:::i;:::-;;84278:120:::0;:::o;26782:220::-;25735:13;:11;:13::i;:::-;26887:1:::1;26867:22;;:8;:22;;::::0;26863:93:::1;;26941:1;26913:31;;;;;;;;;;;:::i;:::-;;;;;;;;26863:93;26966:28;26985:8;26966:18;:28::i;:::-;26782:220:::0;:::o;26014:166::-;26085:12;:10;:12::i;:::-;26074:23;;:7;:5;:7::i;:::-;:23;;;26070:103;;26148:12;:10;:12::i;:::-;26121:40;;;;;;;;;;;:::i;:::-;;;;;;;;26070:103;26014:166::o;54528:282::-;54593:4;54649:7;54630:15;:13;:15::i;:::-;:26;;:66;;;;;54683:13;;54673:7;:23;54630:66;:153;;;;;54782:1;38536:8;54734:17;:26;54752:7;54734:26;;;;;;;;;;;;:44;:49;54630:153;54610:173;;54528:282;;;:::o;76836:105::-;76896:7;76923:10;76916:17;;76836:105;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;43916:178::-;43977:7;37760:13;37898:2;44005:18;:25;44024:5;44005:25;;;;;;;;;;;;;;;;:50;;44004:82;43997:89;;43916:178;;;:::o;23965:98::-;24018:7;24045:10;24038:17;;23965:98;:::o;80484:162::-;80539:4;80554:12;80606:7;80594:20;80586:28;;80639:1;80631:4;:9;80624:16;;;80484:162;;;:::o;70668:112::-;70745:27;70755:2;70759:8;70745:27;;;;;;;;;;;;:9;:27::i;:::-;70668:112;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;79860:101::-;79925:7;79952:1;79945:8;;79860:101;:::o;49214:1275::-;49281:7;49301:12;49316:7;49301:22;;49384:4;49365:15;:13;:15::i;:::-;:23;49361:1061;;49418:13;;49411:4;:20;49407:1015;;;49456:14;49473:17;:23;49491:4;49473:23;;;;;;;;;;;;49456:40;;49590:1;38536:8;49562:6;:24;:29;49558:845;;50227:113;50244:1;50234:6;:11;50227:113;;50287:17;:25;50305:6;;;;;;;50287:25;;;;;;;;;;;;50278:34;;50227:113;;;50373:6;50366:13;;;;;;49558:845;49433:989;49407:1015;49361:1061;50450:31;;;;;;;;;;;;;;49214:1275;;;;:::o;55691:485::-;55793:27;55822:23;55863:38;55904:15;:24;55920:7;55904:24;;;;;;;;;;;55863:65;;56081:18;56058:41;;56138:19;56132:26;56113:45;;56043:126;55691:485;;;:::o;54919:659::-;55068:11;55233:16;55226:5;55222:28;55213:37;;55393:16;55382:9;55378:32;55365:45;;55543:15;55532:9;55529:30;55521:5;55510:9;55507:20;55504:56;55494:66;;54919:659;;;;;:::o;61577:159::-;;;;;:::o;76145:311::-;76280:7;76300:16;38940:3;76326:19;:41;;76300:68;;38940:3;76394:31;76405:4;76411:2;76415:9;76394:10;:31::i;:::-;76386:40;;:62;;76379:69;;;76145:311;;;;;:::o;51037:450::-;51117:14;51285:16;51278:5;51274:28;51265:37;;51462:5;51448:11;51423:23;51419:41;51416:52;51409:5;51406:63;51396:73;;51037:450;;;;:::o;62401:158::-;;;;;:::o;27162:191::-;27236:16;27255:6;;;;;;;;;;;27236:25;;27281:8;27272:6;;:17;;;;;;;;;;;;;;;;;;27336:8;27305:40;;27326:8;27305:40;;;;;;;;;;;;27225:128;27162:191;:::o;48662:161::-;48730:21;;:::i;:::-;48771:44;48790:17;:24;48808:5;48790:24;;;;;;;;;;;;48771:18;:44::i;:::-;48764:51;;48662:161;;;:::o;62999:716::-;63162:4;63208:2;63183:45;;;63229:19;:17;:19::i;:::-;63250:4;63256:7;63265:5;63183:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63179:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63483:1;63466:6;:13;:18;63462:235;;63512:40;;;;;;;;;;;;;;63462:235;63655:6;63649:13;63640:6;63636:2;63632:15;63625:38;63179:529;63352:54;;;63342:64;;;:6;:64;;;;63335:71;;;62999:716;;;;;;:::o;79750:102::-;79810:13;79839:7;79832:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79750:102;:::o;20735:718::-;20791:13;20842:14;20879:1;20859:17;20870:5;20859:10;:17::i;:::-;:21;20842:38;;20895:20;20929:6;20918:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20895:41;;20951:11;21080:6;21076:2;21072:15;21064:6;21060:28;21053:35;;21117:290;21124:4;21117:290;;;21149:5;;;;;;;;21291:10;21286:2;21279:5;21275:14;21270:32;21265:3;21257:46;21349:2;21340:11;;;;;;:::i;:::-;;;;;21383:1;21374:5;:10;21117:290;21370:21;21117:290;21428:6;21421:13;;;;;20735:718;;;:::o;69895:689::-;70026:19;70032:2;70036:8;70026:5;:19::i;:::-;70105:1;70087:2;:14;;;:19;70083:483;;70127:11;70141:13;;70127:27;;70173:13;70195:8;70189:3;:14;70173:30;;70222:233;70253:62;70292:1;70296:2;70300:7;;;;;;70309:5;70253:30;:62::i;:::-;70248:167;;70351:40;;;;;;;;;;;;;;70248:167;70450:3;70442:5;:11;70222:233;;70537:3;70520:13;;:20;70516:34;;70542:8;;;70516:34;70108:458;;70083:483;69895:689;;;:::o;75846:147::-;75983:6;75846:147;;;;;:::o;50588:366::-;50654:31;;:::i;:::-;50731:6;50698:9;:14;;:41;;;;;;;;;;;38419:3;50784:6;:33;;50750:9;:24;;:68;;;;;;;;;;;50876:1;38536:8;50848:6;:24;:29;;50829:9;:16;;:48;;;;;;;;;;;38940:3;50917:6;:28;;50888:9;:19;;:58;;;;;;;;;;;50588:366;;;:::o;17139:948::-;17192:7;17212:14;17229:1;17212:18;;17279:8;17270:5;:17;17266:106;;17317:8;17308:17;;;;;;:::i;:::-;;;;;17354:2;17344:12;;;;17266:106;17399:8;17390:5;:17;17386:106;;17437:8;17428:17;;;;;;:::i;:::-;;;;;17474:2;17464:12;;;;17386:106;17519:8;17510:5;:17;17506:106;;17557:8;17548:17;;;;;;:::i;:::-;;;;;17594:2;17584:12;;;;17506:106;17639:7;17630:5;:16;17626:103;;17676:7;17667:16;;;;;;:::i;:::-;;;;;17712:1;17702:11;;;;17626:103;17756:7;17747:5;:16;17743:103;;17793:7;17784:16;;;;;;:::i;:::-;;;;;17829:1;17819:11;;;;17743:103;17873:7;17864:5;:16;17860:103;;17910:7;17901:16;;;;;;:::i;:::-;;;;;17946:1;17936:11;;;;17860:103;17990:7;17981:5;:16;17977:68;;18028:1;18018:11;;;;17977:68;18073:6;18066:13;;;17139:948;;;:::o;64177:2966::-;64250:20;64273:13;;64250:36;;64313:1;64301:8;:13;64297:44;;64323:18;;;;;;;;;;;;;;64297:44;64354:61;64384:1;64388:2;64392:12;64406:8;64354:21;:61::i;:::-;64898:1;37898:2;64868:1;:26;;64867:32;64855:8;:45;64829:18;:22;64848:2;64829:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;65177:139;65214:2;65268:33;65291:1;65295:2;65299:1;65268:14;:33::i;:::-;65235:30;65256:8;65235:20;:30::i;:::-;:66;65177:18;:139::i;:::-;65143:17;:31;65161:12;65143:31;;;;;;;;;;;:173;;;;65333:16;65364:11;65393:8;65378:12;:23;65364:37;;65914:16;65910:2;65906:25;65894:37;;66286:12;66246:8;66205:1;66143:25;66084:1;66023;65996:335;66657:1;66643:12;66639:20;66597:346;66698:3;66689:7;66686:16;66597:346;;66916:7;66906:8;66903:1;66876:25;66873:1;66870;66865:59;66751:1;66742:7;66738:15;66727:26;;66597:346;;;66601:77;66988:1;66976:8;:13;66972:45;;66998:19;;;;;;;;;;;;;;66972:45;67050:3;67034:13;:19;;;;64603:2462;;67075:60;67104:1;67108:2;67112:12;67126:8;67075:20;:60::i;:::-;64239:2904;64177:2966;;:::o;51589:324::-;51659:14;51892:1;51882:8;51879:15;51853:24;51849:46;51839:56;;51589:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:246::-;2469:1;2479:113;2493:6;2490:1;2487:13;2479:113;;;2578:1;2573:3;2569:11;2563:18;2559:1;2554:3;2550:11;2543:39;2515:2;2512:1;2508:10;2503:15;;2479:113;;;2626:1;2617:6;2612:3;2608:16;2601:27;2450:184;2388:246;;;:::o;2640:102::-;2681:6;2732:2;2728:7;2723:2;2716:5;2712:14;2708:28;2698:38;;2640:102;;;:::o;2748:377::-;2836:3;2864:39;2897:5;2864:39;:::i;:::-;2919:71;2983:6;2978:3;2919:71;:::i;:::-;2912:78;;2999:65;3057:6;3052:3;3045:4;3038:5;3034:16;2999:65;:::i;:::-;3089:29;3111:6;3089:29;:::i;:::-;3084:3;3080:39;3073:46;;2840:285;2748:377;;;;:::o;3131:313::-;3244:4;3282:2;3271:9;3267:18;3259:26;;3331:9;3325:4;3321:20;3317:1;3306:9;3302:17;3295:47;3359:78;3432:4;3423:6;3359:78;:::i;:::-;3351:86;;3131:313;;;;:::o;3450:77::-;3487:7;3516:5;3505:16;;3450:77;;;:::o;3533:122::-;3606:24;3624:5;3606:24;:::i;:::-;3599:5;3596:35;3586:63;;3645:1;3642;3635:12;3586:63;3533:122;:::o;3661:139::-;3707:5;3745:6;3732:20;3723:29;;3761:33;3788:5;3761:33;:::i;:::-;3661:139;;;;:::o;3806:329::-;3865:6;3914:2;3902:9;3893:7;3889:23;3885:32;3882:119;;;3920:79;;:::i;:::-;3882:119;4040:1;4065:53;4110:7;4101:6;4090:9;4086:22;4065:53;:::i;:::-;4055:63;;4011:117;3806:329;;;;:::o;4141:126::-;4178:7;4218:42;4211:5;4207:54;4196:65;;4141:126;;;:::o;4273:96::-;4310:7;4339:24;4357:5;4339:24;:::i;:::-;4328:35;;4273:96;;;:::o;4375:118::-;4462:24;4480:5;4462:24;:::i;:::-;4457:3;4450:37;4375:118;;:::o;4499:222::-;4592:4;4630:2;4619:9;4615:18;4607:26;;4643:71;4711:1;4700:9;4696:17;4687:6;4643:71;:::i;:::-;4499:222;;;;:::o;4727:122::-;4800:24;4818:5;4800:24;:::i;:::-;4793:5;4790:35;4780:63;;4839:1;4836;4829:12;4780:63;4727:122;:::o;4855:139::-;4901:5;4939:6;4926:20;4917:29;;4955:33;4982:5;4955:33;:::i;:::-;4855:139;;;;:::o;5000:474::-;5068:6;5076;5125:2;5113:9;5104:7;5100:23;5096:32;5093:119;;;5131:79;;:::i;:::-;5093:119;5251:1;5276:53;5321:7;5312:6;5301:9;5297:22;5276:53;:::i;:::-;5266:63;;5222:117;5378:2;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5349:118;5000:474;;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:114::-;9485:6;9519:5;9513:12;9503:22;;9418:114;;;:::o;9538:184::-;9637:11;9671:6;9666:3;9659:19;9711:4;9706:3;9702:14;9687:29;;9538:184;;;;:::o;9728:132::-;9795:4;9818:3;9810:11;;9848:4;9843:3;9839:14;9831:22;;9728:132;;;:::o;9866:108::-;9943:24;9961:5;9943:24;:::i;:::-;9938:3;9931:37;9866:108;;:::o;9980:179::-;10049:10;10070:46;10112:3;10104:6;10070:46;:::i;:::-;10148:4;10143:3;10139:14;10125:28;;9980:179;;;;:::o;10165:113::-;10235:4;10267;10262:3;10258:14;10250:22;;10165:113;;;:::o;10314:732::-;10433:3;10462:54;10510:5;10462:54;:::i;:::-;10532:86;10611:6;10606:3;10532:86;:::i;:::-;10525:93;;10642:56;10692:5;10642:56;:::i;:::-;10721:7;10752:1;10737:284;10762:6;10759:1;10756:13;10737:284;;;10838:6;10832:13;10865:63;10924:3;10909:13;10865:63;:::i;:::-;10858:70;;10951:60;11004:6;10951:60;:::i;:::-;10941:70;;10797:224;10784:1;10781;10777:9;10772:14;;10737:284;;;10741:14;11037:3;11030:10;;10438:608;;;10314:732;;;;:::o;11052:373::-;11195:4;11233:2;11222:9;11218:18;11210:26;;11282:9;11276:4;11272:20;11268:1;11257:9;11253:17;11246:47;11310:108;11413:4;11404:6;11310:108;:::i;:::-;11302:116;;11052:373;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:::-;14501:6;14509;14558:2;14546:9;14537:7;14533:23;14529:32;14526:119;;;14564:79;;:::i;:::-;14526:119;14684:1;14709:53;14754:7;14745:6;14734:9;14730:22;14709:53;:::i;:::-;14699:63;;14655:117;14811:2;14837:53;14882:7;14873:6;14862:9;14858:22;14837:53;:::i;:::-;14827:63;;14782:118;14433:474;;;;;:::o;14913:180::-;14961:77;14958:1;14951:88;15058:4;15055:1;15048:15;15082:4;15079:1;15072:15;15099:320;15143:6;15180:1;15174:4;15170:12;15160:22;;15227:1;15221:4;15217:12;15248:18;15238:81;;15304:4;15296:6;15292:17;15282:27;;15238:81;15366:2;15358:6;15355:14;15335:18;15332:38;15329:84;;15385:18;;:::i;:::-;15329:84;15150:269;15099:320;;;:::o;15425:173::-;15565:25;15561:1;15553:6;15549:14;15542:49;15425:173;:::o;15604:366::-;15746:3;15767:67;15831:2;15826:3;15767:67;:::i;:::-;15760:74;;15843:93;15932:3;15843:93;:::i;:::-;15961:2;15956:3;15952:12;15945:19;;15604:366;;;:::o;15976:419::-;16142:4;16180:2;16169:9;16165:18;16157:26;;16229:9;16223:4;16219:20;16215:1;16204:9;16200:17;16193:47;16257:131;16383:4;16257:131;:::i;:::-;16249:139;;15976:419;;;:::o;16401:180::-;16449:77;16446:1;16439:88;16546:4;16543:1;16536:15;16570:4;16567:1;16560:15;16587:191;16627:3;16646:20;16664:1;16646:20;:::i;:::-;16641:25;;16680:20;16698:1;16680:20;:::i;:::-;16675:25;;16723:1;16720;16716:9;16709:16;;16744:3;16741:1;16738:10;16735:36;;;16751:18;;:::i;:::-;16735:36;16587:191;;;;:::o;16784:177::-;16924:29;16920:1;16912:6;16908:14;16901:53;16784:177;:::o;16967:366::-;17109:3;17130:67;17194:2;17189:3;17130:67;:::i;:::-;17123:74;;17206:93;17295:3;17206:93;:::i;:::-;17324:2;17319:3;17315:12;17308:19;;16967:366;;;:::o;17339:419::-;17505:4;17543:2;17532:9;17528:18;17520:26;;17592:9;17586:4;17582:20;17578:1;17567:9;17563:17;17556:47;17620:131;17746:4;17620:131;:::i;:::-;17612:139;;17339:419;;;:::o;17764:179::-;17904:31;17900:1;17892:6;17888:14;17881:55;17764:179;:::o;17949:366::-;18091:3;18112:67;18176:2;18171:3;18112:67;:::i;:::-;18105:74;;18188:93;18277:3;18188:93;:::i;:::-;18306:2;18301:3;18297:12;18290:19;;17949:366;;;:::o;18321:419::-;18487:4;18525:2;18514:9;18510:18;18502:26;;18574:9;18568:4;18564:20;18560:1;18549:9;18545:17;18538:47;18602:131;18728:4;18602:131;:::i;:::-;18594:139;;18321:419;;;:::o;18746:178::-;18886:30;18882:1;18874:6;18870:14;18863:54;18746:178;:::o;18930:366::-;19072:3;19093:67;19157:2;19152:3;19093:67;:::i;:::-;19086:74;;19169:93;19258:3;19169:93;:::i;:::-;19287:2;19282:3;19278:12;19271:19;;18930:366;;;:::o;19302:419::-;19468:4;19506:2;19495:9;19491:18;19483:26;;19555:9;19549:4;19545:20;19541:1;19530:9;19526:17;19519:47;19583:131;19709:4;19583:131;:::i;:::-;19575:139;;19302:419;;;:::o;19727:159::-;19867:11;19863:1;19855:6;19851:14;19844:35;19727:159;:::o;19892:365::-;20034:3;20055:66;20119:1;20114:3;20055:66;:::i;:::-;20048:73;;20130:93;20219:3;20130:93;:::i;:::-;20248:2;20243:3;20239:12;20232:19;;19892:365;;;:::o;20263:419::-;20429:4;20467:2;20456:9;20452:18;20444:26;;20516:9;20510:4;20506:20;20502:1;20491:9;20487:17;20480:47;20544:131;20670:4;20544:131;:::i;:::-;20536:139;;20263:419;;;:::o;20688:141::-;20737:4;20760:3;20752:11;;20783:3;20780:1;20773:14;20817:4;20814:1;20804:18;20796:26;;20688:141;;;:::o;20835:93::-;20872:6;20919:2;20914;20907:5;20903:14;20899:23;20889:33;;20835:93;;;:::o;20934:107::-;20978:8;21028:5;21022:4;21018:16;20997:37;;20934:107;;;;:::o;21047:393::-;21116:6;21166:1;21154:10;21150:18;21189:97;21219:66;21208:9;21189:97;:::i;:::-;21307:39;21337:8;21326:9;21307:39;:::i;:::-;21295:51;;21379:4;21375:9;21368:5;21364:21;21355:30;;21428:4;21418:8;21414:19;21407:5;21404:30;21394:40;;21123:317;;21047:393;;;;;:::o;21446:60::-;21474:3;21495:5;21488:12;;21446:60;;;:::o;21512:142::-;21562:9;21595:53;21613:34;21622:24;21640:5;21622:24;:::i;:::-;21613:34;:::i;:::-;21595:53;:::i;:::-;21582:66;;21512:142;;;:::o;21660:75::-;21703:3;21724:5;21717:12;;21660:75;;;:::o;21741:269::-;21851:39;21882:7;21851:39;:::i;:::-;21912:91;21961:41;21985:16;21961:41;:::i;:::-;21953:6;21946:4;21940:11;21912:91;:::i;:::-;21906:4;21899:105;21817:193;21741:269;;;:::o;22016:73::-;22061:3;22016:73;:::o;22095:189::-;22172:32;;:::i;:::-;22213:65;22271:6;22263;22257:4;22213:65;:::i;:::-;22148:136;22095:189;;:::o;22290:186::-;22350:120;22367:3;22360:5;22357:14;22350:120;;;22421:39;22458:1;22451:5;22421:39;:::i;:::-;22394:1;22387:5;22383:13;22374:22;;22350:120;;;22290:186;;:::o;22482:543::-;22583:2;22578:3;22575:11;22572:446;;;22617:38;22649:5;22617:38;:::i;:::-;22701:29;22719:10;22701:29;:::i;:::-;22691:8;22687:44;22884:2;22872:10;22869:18;22866:49;;;22905:8;22890:23;;22866:49;22928:80;22984:22;23002:3;22984:22;:::i;:::-;22974:8;22970:37;22957:11;22928:80;:::i;:::-;22587:431;;22572:446;22482:543;;;:::o;23031:117::-;23085:8;23135:5;23129:4;23125:16;23104:37;;23031:117;;;;:::o;23154:169::-;23198:6;23231:51;23279:1;23275:6;23267:5;23264:1;23260:13;23231:51;:::i;:::-;23227:56;23312:4;23306;23302:15;23292:25;;23205:118;23154:169;;;;:::o;23328:295::-;23404:4;23550:29;23575:3;23569:4;23550:29;:::i;:::-;23542:37;;23612:3;23609:1;23605:11;23599:4;23596:21;23588:29;;23328:295;;;;:::o;23628:1395::-;23745:37;23778:3;23745:37;:::i;:::-;23847:18;23839:6;23836:30;23833:56;;;23869:18;;:::i;:::-;23833:56;23913:38;23945:4;23939:11;23913:38;:::i;:::-;23998:67;24058:6;24050;24044:4;23998:67;:::i;:::-;24092:1;24116:4;24103:17;;24148:2;24140:6;24137:14;24165:1;24160:618;;;;24822:1;24839:6;24836:77;;;24888:9;24883:3;24879:19;24873:26;24864:35;;24836:77;24939:67;24999:6;24992:5;24939:67;:::i;:::-;24933:4;24926:81;24795:222;24130:887;;24160:618;24212:4;24208:9;24200:6;24196:22;24246:37;24278:4;24246:37;:::i;:::-;24305:1;24319:208;24333:7;24330:1;24327:14;24319:208;;;24412:9;24407:3;24403:19;24397:26;24389:6;24382:42;24463:1;24455:6;24451:14;24441:24;;24510:2;24499:9;24495:18;24482:31;;24356:4;24353:1;24349:12;24344:17;;24319:208;;;24555:6;24546:7;24543:19;24540:179;;;24613:9;24608:3;24604:19;24598:26;24656:48;24698:4;24690:6;24686:17;24675:9;24656:48;:::i;:::-;24648:6;24641:64;24563:156;24540:179;24765:1;24761;24753:6;24749:14;24745:22;24739:4;24732:36;24167:611;;;24130:887;;23720:1303;;;23628:1395;;:::o;25029:180::-;25077:77;25074:1;25067:88;25174:4;25171:1;25164:15;25198:4;25195:1;25188:15;25215:181;25355:33;25351:1;25343:6;25339:14;25332:57;25215:181;:::o;25402:366::-;25544:3;25565:67;25629:2;25624:3;25565:67;:::i;:::-;25558:74;;25641:93;25730:3;25641:93;:::i;:::-;25759:2;25754:3;25750:12;25743:19;;25402:366;;;:::o;25774:419::-;25940:4;25978:2;25967:9;25963:18;25955:26;;26027:9;26021:4;26017:20;26013:1;26002:9;25998:17;25991:47;26055:131;26181:4;26055:131;:::i;:::-;26047:139;;25774:419;;;:::o;26199:160::-;26339:12;26335:1;26327:6;26323:14;26316:36;26199:160;:::o;26365:366::-;26507:3;26528:67;26592:2;26587:3;26528:67;:::i;:::-;26521:74;;26604:93;26693:3;26604:93;:::i;:::-;26722:2;26717:3;26713:12;26706:19;;26365:366;;;:::o;26737:419::-;26903:4;26941:2;26930:9;26926:18;26918:26;;26990:9;26984:4;26980:20;26976:1;26965:9;26961:17;26954:47;27018:131;27144:4;27018:131;:::i;:::-;27010:139;;26737:419;;;:::o;27162:410::-;27202:7;27225:20;27243:1;27225:20;:::i;:::-;27220:25;;27259:20;27277:1;27259:20;:::i;:::-;27254:25;;27314:1;27311;27307:9;27336:30;27354:11;27336:30;:::i;:::-;27325:41;;27515:1;27506:7;27502:15;27499:1;27496:22;27476:1;27469:9;27449:83;27426:139;;27545:18;;:::i;:::-;27426:139;27210:362;27162:410;;;;:::o;27578:168::-;27718:20;27714:1;27706:6;27702:14;27695:44;27578:168;:::o;27752:366::-;27894:3;27915:67;27979:2;27974:3;27915:67;:::i;:::-;27908:74;;27991:93;28080:3;27991:93;:::i;:::-;28109:2;28104:3;28100:12;28093:19;;27752:366;;;:::o;28124:419::-;28290:4;28328:2;28317:9;28313:18;28305:26;;28377:9;28371:4;28367:20;28363:1;28352:9;28348:17;28341:47;28405:131;28531:4;28405:131;:::i;:::-;28397:139;;28124:419;;;:::o;28549:172::-;28689:24;28685:1;28677:6;28673:14;28666:48;28549:172;:::o;28727:366::-;28869:3;28890:67;28954:2;28949:3;28890:67;:::i;:::-;28883:74;;28966:93;29055:3;28966:93;:::i;:::-;29084:2;29079:3;29075:12;29068:19;;28727:366;;;:::o;29099:419::-;29265:4;29303:2;29292:9;29288:18;29280:26;;29352:9;29346:4;29342:20;29338:1;29327:9;29323:17;29316:47;29380:131;29506:4;29380:131;:::i;:::-;29372:139;;29099:419;;;:::o;29524:235::-;29664:34;29660:1;29652:6;29648:14;29641:58;29733:18;29728:2;29720:6;29716:15;29709:43;29524:235;:::o;29765:366::-;29907:3;29928:67;29992:2;29987:3;29928:67;:::i;:::-;29921:74;;30004:93;30093:3;30004:93;:::i;:::-;30122:2;30117:3;30113:12;30106:19;;29765:366;;;:::o;30137:419::-;30303:4;30341:2;30330:9;30326:18;30318:26;;30390:9;30384:4;30380:20;30376:1;30365:9;30361:17;30354:47;30418:131;30544:4;30418:131;:::i;:::-;30410:139;;30137:419;;;:::o;30562:148::-;30664:11;30701:3;30686:18;;30562:148;;;;:::o;30716:390::-;30822:3;30850:39;30883:5;30850:39;:::i;:::-;30905:89;30987:6;30982:3;30905:89;:::i;:::-;30898:96;;31003:65;31061:6;31056:3;31049:4;31042:5;31038:16;31003:65;:::i;:::-;31093:6;31088:3;31084:16;31077:23;;30826:280;30716:390;;;;:::o;31136:874::-;31239:3;31276:5;31270:12;31305:36;31331:9;31305:36;:::i;:::-;31357:89;31439:6;31434:3;31357:89;:::i;:::-;31350:96;;31477:1;31466:9;31462:17;31493:1;31488:166;;;;31668:1;31663:341;;;;31455:549;;31488:166;31572:4;31568:9;31557;31553:25;31548:3;31541:38;31634:6;31627:14;31620:22;31612:6;31608:35;31603:3;31599:45;31592:52;;31488:166;;31663:341;31730:38;31762:5;31730:38;:::i;:::-;31790:1;31804:154;31818:6;31815:1;31812:13;31804:154;;;31892:7;31886:14;31882:1;31877:3;31873:11;31866:35;31942:1;31933:7;31929:15;31918:26;;31840:4;31837:1;31833:12;31828:17;;31804:154;;;31987:6;31982:3;31978:16;31971:23;;31670:334;;31455:549;;31243:767;;31136:874;;;;:::o;32016:589::-;32241:3;32263:95;32354:3;32345:6;32263:95;:::i;:::-;32256:102;;32375:95;32466:3;32457:6;32375:95;:::i;:::-;32368:102;;32487:92;32575:3;32566:6;32487:92;:::i;:::-;32480:99;;32596:3;32589:10;;32016:589;;;;;;:::o;32611:181::-;32751:33;32747:1;32739:6;32735:14;32728:57;32611:181;:::o;32798:366::-;32940:3;32961:67;33025:2;33020:3;32961:67;:::i;:::-;32954:74;;33037:93;33126:3;33037:93;:::i;:::-;33155:2;33150:3;33146:12;33139:19;;32798:366;;;:::o;33170:419::-;33336:4;33374:2;33363:9;33359:18;33351:26;;33423:9;33417:4;33413:20;33409:1;33398:9;33394:17;33387:47;33451:131;33577:4;33451:131;:::i;:::-;33443:139;;33170:419;;;:::o;33595:98::-;33646:6;33680:5;33674:12;33664:22;;33595:98;;;:::o;33699:168::-;33782:11;33816:6;33811:3;33804:19;33856:4;33851:3;33847:14;33832:29;;33699:168;;;;:::o;33873:373::-;33959:3;33987:38;34019:5;33987:38;:::i;:::-;34041:70;34104:6;34099:3;34041:70;:::i;:::-;34034:77;;34120:65;34178:6;34173:3;34166:4;34159:5;34155:16;34120:65;:::i;:::-;34210:29;34232:6;34210:29;:::i;:::-;34205:3;34201:39;34194:46;;33963:283;33873:373;;;;:::o;34252:640::-;34447:4;34485:3;34474:9;34470:19;34462:27;;34499:71;34567:1;34556:9;34552:17;34543:6;34499:71;:::i;:::-;34580:72;34648:2;34637:9;34633:18;34624:6;34580:72;:::i;:::-;34662;34730:2;34719:9;34715:18;34706:6;34662:72;:::i;:::-;34781:9;34775:4;34771:20;34766:2;34755:9;34751:18;34744:48;34809:76;34880:4;34871:6;34809:76;:::i;:::-;34801:84;;34252:640;;;;;;;:::o;34898:141::-;34954:5;34985:6;34979:13;34970:22;;35001:32;35027:5;35001:32;:::i;:::-;34898:141;;;;:::o;35045:349::-;35114:6;35163:2;35151:9;35142:7;35138:23;35134:32;35131:119;;;35169:79;;:::i;:::-;35131:119;35289:1;35314:63;35369:7;35360:6;35349:9;35345:22;35314:63;:::i;:::-;35304:73;;35260:127;35045:349;;;;:::o;35400:180::-;35448:77;35445:1;35438:88;35545:4;35542:1;35535:15;35569:4;35566:1;35559:15

Swarm Source

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