ETH Price: $3,417.00 (-2.38%)
Gas: 8 Gwei

Token

Geometrica (GART)
 

Overview

Max Total Supply

961 GART

Holders

312

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GART
0x2ff1fc52072EfC0568E29C45908A01BB49D7e98C
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:
Geometrica

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: 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: Geometrica.sol


pragma solidity ^0.8.17;








contract Geometrica is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public maxSupply = 1907;
    uint256 public mintPrice = 0.005 ether;
    uint256 public maxPerWallet = 2;
    bool public paused = true;
    string public baseURI = "ipfs://bafybeiamldmnefektqm7mdh7tpekhwucd5cc4iaveou3trkm3yl7u7mdra/";

    constructor() ERC721A("Geometrica", "GART") {}
    
    function _startTokenId() internal view virtual override returns (uint256) { return 1; }

    function mint(uint256 amount) external payable {
        uint256 tokenCount = numberMinted(msg.sender);

        require(!paused, "Mint paused");
        require((totalSupply() + amount) <= maxSupply, "Max supply reached");
        require(tokenCount + amount <= maxPerWallet,  string(abi.encodePacked('You can only mint ', maxPerWallet.toString())));
        require(
            amount <= maxPerWallet,
            "Max per transaction reached"
        );
        require(
            msg.value >= (mintPrice * amount),
            "Wrong mint price"
        );

        _safeMint(msg.sender, amount);
    }

    function reserveMint(address receiver, uint256 mintAmount) external onlyOwner {
        _safeMint(receiver, mintAmount);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); }

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

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

    function toggleSale() external onlyOwner {
        paused = !paused;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        mintPrice = _newPrice;
    }

    function setValues(uint256 _newAmount) external onlyOwner {
        maxSupply = _newAmount;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"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":[{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setValues","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526107736009556611c37937e08000600a556002600b556001600c60006101000a81548160ff021916908315150217905550604051806080016040528060438152602001620035c160439139600d90816200005f91906200048d565b503480156200006d57600080fd5b506040518060400160405280600a81526020017f47656f6d657472696361000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f47415254000000000000000000000000000000000000000000000000000000008152508160029081620000eb91906200048d565b508060039081620000fd91906200048d565b506200010e6200013c60201b60201c565b6000819055505050620001366200012a6200014560201b60201c565b6200014d60201b60201c565b62000574565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029557607f821691505b602082108103620002ab57620002aa6200024d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002d6565b620003218683620002d6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200036e62000368620003628462000339565b62000343565b62000339565b9050919050565b6000819050919050565b6200038a836200034d565b620003a2620003998262000375565b848454620002e3565b825550505050565b600090565b620003b9620003aa565b620003c68184846200037f565b505050565b5b81811015620003ee57620003e2600082620003af565b600181019050620003cc565b5050565b601f8211156200043d576200040781620002b1565b6200041284620002c6565b8101602085101562000422578190505b6200043a6200043185620002c6565b830182620003cb565b50505b505050565b600082821c905092915050565b6000620004626000198460080262000442565b1980831691505092915050565b60006200047d83836200044f565b9150826002028217905092915050565b620004988262000213565b67ffffffffffffffff811115620004b457620004b36200021e565b5b620004c082546200027c565b620004cd828285620003f2565b600060209050601f831160018114620005055760008415620004f0578287015190505b620004fc85826200046f565b8655506200056c565b601f1984166200051586620002b1565b60005b828110156200053f5784890151825560018201915060208501945060208101905062000518565b868310156200055f57848901516200055b601f8916826200044f565b8355505b6001600288020188555050505b505050505050565b61303d80620005846000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b0ea180211610095578063dc33e68111610064578063dc33e681146105fb578063e26d147414610638578063e985e9c514610661578063f2fde38b1461069e576101cd565b8063b0ea18021461054e578063b88d4fde14610577578063c87b56dd14610593578063d5abeb01146105d0576101cd565b806391b7f5ed116100d157806391b7f5ed146104b557806395d89b41146104de578063a0712d6814610509578063a22cb46514610525576101cd565b8063715018a61461045c5780637d8966e4146104735780638da5cb5b1461048a576101cd565b806342842e0e1161016f5780636352211e1161013e5780636352211e1461038c5780636817c76c146103c95780636c0360eb146103f457806370a082311461041f576101cd565b806342842e0e146102f1578063453c23101461030d57806355f804b3146103385780635c975abb14610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be5780633ccfd60b146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190611fa0565b6106c7565b6040516102069190611fe8565b60405180910390f35b34801561021b57600080fd5b50610224610759565b6040516102319190612093565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906120eb565b6107eb565b60405161026e9190612159565b60405180910390f35b610291600480360381019061028c91906121a0565b61086a565b005b34801561029f57600080fd5b506102a86109ae565b6040516102b591906121ef565b60405180910390f35b6102d860048036038101906102d3919061220a565b6109c5565b005b3480156102e657600080fd5b506102ef610ce7565b005b61030b6004803603810190610306919061220a565b610d9e565b005b34801561031957600080fd5b50610322610dbe565b60405161032f91906121ef565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612392565b610dc4565b005b34801561036d57600080fd5b50610376610ddf565b6040516103839190611fe8565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae91906120eb565b610df2565b6040516103c09190612159565b60405180910390f35b3480156103d557600080fd5b506103de610e04565b6040516103eb91906121ef565b60405180910390f35b34801561040057600080fd5b50610409610e0a565b6040516104169190612093565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906123db565b610e98565b60405161045391906121ef565b60405180910390f35b34801561046857600080fd5b50610471610f50565b005b34801561047f57600080fd5b50610488610f64565b005b34801561049657600080fd5b5061049f610f98565b6040516104ac9190612159565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d791906120eb565b610fc2565b005b3480156104ea57600080fd5b506104f3610fd4565b6040516105009190612093565b60405180910390f35b610523600480360381019061051e91906120eb565b611066565b005b34801561053157600080fd5b5061054c60048036038101906105479190612434565b61123a565b005b34801561055a57600080fd5b50610575600480360381019061057091906121a0565b611345565b005b610591600480360381019061058c9190612515565b61135b565b005b34801561059f57600080fd5b506105ba60048036038101906105b591906120eb565b6113ce565b6040516105c79190612093565b60405180910390f35b3480156105dc57600080fd5b506105e561144a565b6040516105f291906121ef565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d91906123db565b611450565b60405161062f91906121ef565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a91906120eb565b611462565b005b34801561066d57600080fd5b5061068860048036038101906106839190612598565b611474565b6040516106959190611fe8565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c091906123db565b611508565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107525750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076890612607565b80601f016020809104026020016040519081016040528092919081815260200182805461079490612607565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b5050505050905090565b60006107f68261158b565b61082c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087582610df2565b90508073ffffffffffffffffffffffffffffffffffffffff166108966115ea565b73ffffffffffffffffffffffffffffffffffffffff16146108f9576108c2816108bd6115ea565b611474565b6108f8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109b86115f2565b6001546000540303905090565b60006109d0826115fb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a37576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a43846116c7565b91509150610a598187610a546115ea565b6116ee565b610aa557610a6e86610a696115ea565b611474565b610aa4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b0b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b188686866001611732565b8015610b2357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bf185610bcd888887611738565b7c020000000000000000000000000000000000000000000000000000000017611760565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c775760006001850190506000600460008381526020019081526020016000205403610c75576000548114610c74578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cdf868686600161178b565b505050505050565b610cef611791565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d1590612669565b60006040518083038185875af1925050503d8060008114610d52576040519150601f19603f3d011682016040523d82523d6000602084013e610d57565b606091505b5050905080610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d92906126ca565b60405180910390fd5b50565b610db98383836040518060200160405280600081525061135b565b505050565b600b5481565b610dcc611791565b80600d9081610ddb9190612896565b5050565b600c60009054906101000a900460ff1681565b6000610dfd826115fb565b9050919050565b600a5481565b600d8054610e1790612607565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612607565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eff576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f58611791565b610f62600061180f565b565b610f6c611791565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fca611791565b80600a8190555050565b606060038054610fe390612607565b80601f016020809104026020016040519081016040528092919081815260200182805461100f90612607565b801561105c5780601f106110315761010080835404028352916020019161105c565b820191906000526020600020905b81548152906001019060200180831161103f57829003601f168201915b5050505050905090565b600061107133611450565b9050600c60009054906101000a900460ff16156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba906129b4565b60405180910390fd5b600954826110cf6109ae565b6110d99190612a03565b111561111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190612a83565b60405180910390fd5b600b5482826111299190612a03565b1115611136600b546118d5565b6040516020016111469190612b2b565b60405160208183030381529060405290611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d9190612093565b60405180910390fd5b50600b548211156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390612b99565b60405180910390fd5b81600a546111ea9190612bb9565b34101561122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390612c47565b60405180910390fd5b61123633836119a3565b5050565b80600760006112476115ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112f46115ea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113399190611fe8565b60405180910390a35050565b61134d611791565b61135782826119a3565b5050565b6113668484846109c5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113c857611391848484846119c1565b6113c7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113d98261158b565b611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90612cd9565b60405180910390fd5b600d611423836118d5565b604051602001611434929190612dc8565b6040516020818303038152906040529050919050565b60095481565b600061145b82611b11565b9050919050565b61146a611791565b8060098190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611510611791565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690612e69565b60405180910390fd5b6115888161180f565b50565b6000816115966115f2565b111580156115a5575060005482105b80156115e3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061160a6115f2565b116116905760005481101561168f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361168d575b60008103611683576004600083600190039350838152602001908152602001600020549050611659565b80925050506116c2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861174f868684611b68565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611799611b71565b73ffffffffffffffffffffffffffffffffffffffff166117b7610f98565b73ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490612ed5565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6060600060016118e484611b79565b01905060008167ffffffffffffffff81111561190357611902612267565b5b6040519080825280601f01601f1916602001820160405280156119355781602001600182028036833780820191505090505b509050600082602001820190505b600115611998578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161198c5761198b612ef5565b5b04945060008503611943575b819350505050919050565b6119bd828260405180602001604052806000815250611ccc565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119e76115ea565b8786866040518563ffffffff1660e01b8152600401611a099493929190612f79565b6020604051808303816000875af1925050508015611a4557506040513d601f19601f82011682018060405250810190611a429190612fda565b60015b611abe573d8060008114611a75576040519150601f19603f3d011682016040523d82523d6000602084013e611a7a565b606091505b506000815103611ab6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611bd7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611bcd57611bcc612ef5565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611c14576d04ee2d6d415b85acef81000000008381611c0a57611c09612ef5565b5b0492506020810190505b662386f26fc100008310611c4357662386f26fc100008381611c3957611c38612ef5565b5b0492506010810190505b6305f5e1008310611c6c576305f5e1008381611c6257611c61612ef5565b5b0492506008810190505b6127108310611c91576127108381611c8757611c86612ef5565b5b0492506004810190505b60648310611cb45760648381611caa57611ca9612ef5565b5b0492506002810190505b600a8310611cc3576001810190505b80915050919050565b611cd68383611d69565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6457600080549050600083820390505b611d1660008683806001019450866119c1565b611d4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d03578160005414611d6157600080fd5b50505b505050565b60008054905060008203611da9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611db66000848385611732565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e2d83611e1e6000866000611738565b611e2785611f24565b17611760565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ece57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e93565b5060008203611f09576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f1f600084838561178b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f7d81611f48565b8114611f8857600080fd5b50565b600081359050611f9a81611f74565b92915050565b600060208284031215611fb657611fb5611f3e565b5b6000611fc484828501611f8b565b91505092915050565b60008115159050919050565b611fe281611fcd565b82525050565b6000602082019050611ffd6000830184611fd9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561203d578082015181840152602081019050612022565b60008484015250505050565b6000601f19601f8301169050919050565b600061206582612003565b61206f818561200e565b935061207f81856020860161201f565b61208881612049565b840191505092915050565b600060208201905081810360008301526120ad818461205a565b905092915050565b6000819050919050565b6120c8816120b5565b81146120d357600080fd5b50565b6000813590506120e5816120bf565b92915050565b60006020828403121561210157612100611f3e565b5b600061210f848285016120d6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061214382612118565b9050919050565b61215381612138565b82525050565b600060208201905061216e600083018461214a565b92915050565b61217d81612138565b811461218857600080fd5b50565b60008135905061219a81612174565b92915050565b600080604083850312156121b7576121b6611f3e565b5b60006121c58582860161218b565b92505060206121d6858286016120d6565b9150509250929050565b6121e9816120b5565b82525050565b600060208201905061220460008301846121e0565b92915050565b60008060006060848603121561222357612222611f3e565b5b60006122318682870161218b565b93505060206122428682870161218b565b9250506040612253868287016120d6565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61229f82612049565b810181811067ffffffffffffffff821117156122be576122bd612267565b5b80604052505050565b60006122d1611f34565b90506122dd8282612296565b919050565b600067ffffffffffffffff8211156122fd576122fc612267565b5b61230682612049565b9050602081019050919050565b82818337600083830152505050565b6000612335612330846122e2565b6122c7565b90508281526020810184848401111561235157612350612262565b5b61235c848285612313565b509392505050565b600082601f8301126123795761237861225d565b5b8135612389848260208601612322565b91505092915050565b6000602082840312156123a8576123a7611f3e565b5b600082013567ffffffffffffffff8111156123c6576123c5611f43565b5b6123d284828501612364565b91505092915050565b6000602082840312156123f1576123f0611f3e565b5b60006123ff8482850161218b565b91505092915050565b61241181611fcd565b811461241c57600080fd5b50565b60008135905061242e81612408565b92915050565b6000806040838503121561244b5761244a611f3e565b5b60006124598582860161218b565b925050602061246a8582860161241f565b9150509250929050565b600067ffffffffffffffff82111561248f5761248e612267565b5b61249882612049565b9050602081019050919050565b60006124b86124b384612474565b6122c7565b9050828152602081018484840111156124d4576124d3612262565b5b6124df848285612313565b509392505050565b600082601f8301126124fc576124fb61225d565b5b813561250c8482602086016124a5565b91505092915050565b6000806000806080858703121561252f5761252e611f3e565b5b600061253d8782880161218b565b945050602061254e8782880161218b565b935050604061255f878288016120d6565b925050606085013567ffffffffffffffff8111156125805761257f611f43565b5b61258c878288016124e7565b91505092959194509250565b600080604083850312156125af576125ae611f3e565b5b60006125bd8582860161218b565b92505060206125ce8582860161218b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061261f57607f821691505b602082108103612632576126316125d8565b5b50919050565b600081905092915050565b50565b6000612653600083612638565b915061265e82612643565b600082019050919050565b600061267482612646565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006126b460108361200e565b91506126bf8261267e565b602082019050919050565b600060208201905081810360008301526126e3816126a7565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261274c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261270f565b612756868361270f565b95508019841693508086168417925050509392505050565b6000819050919050565b600061279361278e612789846120b5565b61276e565b6120b5565b9050919050565b6000819050919050565b6127ad83612778565b6127c16127b98261279a565b84845461271c565b825550505050565b600090565b6127d66127c9565b6127e18184846127a4565b505050565b5b81811015612805576127fa6000826127ce565b6001810190506127e7565b5050565b601f82111561284a5761281b816126ea565b612824846126ff565b81016020851015612833578190505b61284761283f856126ff565b8301826127e6565b50505b505050565b600082821c905092915050565b600061286d6000198460080261284f565b1980831691505092915050565b6000612886838361285c565b9150826002028217905092915050565b61289f82612003565b67ffffffffffffffff8111156128b8576128b7612267565b5b6128c28254612607565b6128cd828285612809565b600060209050601f83116001811461290057600084156128ee578287015190505b6128f8858261287a565b865550612960565b601f19841661290e866126ea565b60005b8281101561293657848901518255600182019150602085019450602081019050612911565b86831015612953578489015161294f601f89168261285c565b8355505b6001600288020188555050505b505050505050565b7f4d696e7420706175736564000000000000000000000000000000000000000000600082015250565b600061299e600b8361200e565b91506129a982612968565b602082019050919050565b600060208201905081810360008301526129cd81612991565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a0e826120b5565b9150612a19836120b5565b9250828201905080821115612a3157612a306129d4565b5b92915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000612a6d60128361200e565b9150612a7882612a37565b602082019050919050565b60006020820190508181036000830152612a9c81612a60565b9050919050565b600081905092915050565b7f596f752063616e206f6e6c79206d696e74200000000000000000000000000000600082015250565b6000612ae4601283612aa3565b9150612aef82612aae565b601282019050919050565b6000612b0582612003565b612b0f8185612aa3565b9350612b1f81856020860161201f565b80840191505092915050565b6000612b3682612ad7565b9150612b428284612afa565b915081905092915050565b7f4d617820706572207472616e73616374696f6e20726561636865640000000000600082015250565b6000612b83601b8361200e565b9150612b8e82612b4d565b602082019050919050565b60006020820190508181036000830152612bb281612b76565b9050919050565b6000612bc4826120b5565b9150612bcf836120b5565b9250828202612bdd816120b5565b91508282048414831517612bf457612bf36129d4565b5b5092915050565b7f57726f6e67206d696e7420707269636500000000000000000000000000000000600082015250565b6000612c3160108361200e565b9150612c3c82612bfb565b602082019050919050565b60006020820190508181036000830152612c6081612c24565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612cc3602f8361200e565b9150612cce82612c67565b604082019050919050565b60006020820190508181036000830152612cf281612cb6565b9050919050565b60008154612d0681612607565b612d108186612aa3565b94506001821660008114612d2b5760018114612d4057612d73565b60ff1983168652811515820286019350612d73565b612d49856126ea565b60005b83811015612d6b57815481890152600182019150602081019050612d4c565b838801955050505b50505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612db2600583612aa3565b9150612dbd82612d7c565b600582019050919050565b6000612dd48285612cf9565b9150612de08284612afa565b9150612deb82612da5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e5360268361200e565b9150612e5e82612df7565b604082019050919050565b60006020820190508181036000830152612e8281612e46565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ebf60208361200e565b9150612eca82612e89565b602082019050919050565b60006020820190508181036000830152612eee81612eb2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612f4b82612f24565b612f558185612f2f565b9350612f6581856020860161201f565b612f6e81612049565b840191505092915050565b6000608082019050612f8e600083018761214a565b612f9b602083018661214a565b612fa860408301856121e0565b8181036060830152612fba8184612f40565b905095945050505050565b600081519050612fd481611f74565b92915050565b600060208284031215612ff057612fef611f3e565b5b6000612ffe84828501612fc5565b9150509291505056fea2646970667358221220cac431042a2528211964d52841712860c5730f5b2053896300b3b493f94fc1b364736f6c63430008110033697066733a2f2f62616679626569616d6c646d6e6566656b74716d376d6468377470656b687775636435636334696176656f753374726b6d33796c3775376d6472612f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b0ea180211610095578063dc33e68111610064578063dc33e681146105fb578063e26d147414610638578063e985e9c514610661578063f2fde38b1461069e576101cd565b8063b0ea18021461054e578063b88d4fde14610577578063c87b56dd14610593578063d5abeb01146105d0576101cd565b806391b7f5ed116100d157806391b7f5ed146104b557806395d89b41146104de578063a0712d6814610509578063a22cb46514610525576101cd565b8063715018a61461045c5780637d8966e4146104735780638da5cb5b1461048a576101cd565b806342842e0e1161016f5780636352211e1161013e5780636352211e1461038c5780636817c76c146103c95780636c0360eb146103f457806370a082311461041f576101cd565b806342842e0e146102f1578063453c23101461030d57806355f804b3146103385780635c975abb14610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be5780633ccfd60b146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190611fa0565b6106c7565b6040516102069190611fe8565b60405180910390f35b34801561021b57600080fd5b50610224610759565b6040516102319190612093565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906120eb565b6107eb565b60405161026e9190612159565b60405180910390f35b610291600480360381019061028c91906121a0565b61086a565b005b34801561029f57600080fd5b506102a86109ae565b6040516102b591906121ef565b60405180910390f35b6102d860048036038101906102d3919061220a565b6109c5565b005b3480156102e657600080fd5b506102ef610ce7565b005b61030b6004803603810190610306919061220a565b610d9e565b005b34801561031957600080fd5b50610322610dbe565b60405161032f91906121ef565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612392565b610dc4565b005b34801561036d57600080fd5b50610376610ddf565b6040516103839190611fe8565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae91906120eb565b610df2565b6040516103c09190612159565b60405180910390f35b3480156103d557600080fd5b506103de610e04565b6040516103eb91906121ef565b60405180910390f35b34801561040057600080fd5b50610409610e0a565b6040516104169190612093565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906123db565b610e98565b60405161045391906121ef565b60405180910390f35b34801561046857600080fd5b50610471610f50565b005b34801561047f57600080fd5b50610488610f64565b005b34801561049657600080fd5b5061049f610f98565b6040516104ac9190612159565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d791906120eb565b610fc2565b005b3480156104ea57600080fd5b506104f3610fd4565b6040516105009190612093565b60405180910390f35b610523600480360381019061051e91906120eb565b611066565b005b34801561053157600080fd5b5061054c60048036038101906105479190612434565b61123a565b005b34801561055a57600080fd5b50610575600480360381019061057091906121a0565b611345565b005b610591600480360381019061058c9190612515565b61135b565b005b34801561059f57600080fd5b506105ba60048036038101906105b591906120eb565b6113ce565b6040516105c79190612093565b60405180910390f35b3480156105dc57600080fd5b506105e561144a565b6040516105f291906121ef565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d91906123db565b611450565b60405161062f91906121ef565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a91906120eb565b611462565b005b34801561066d57600080fd5b5061068860048036038101906106839190612598565b611474565b6040516106959190611fe8565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c091906123db565b611508565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107525750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076890612607565b80601f016020809104026020016040519081016040528092919081815260200182805461079490612607565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b5050505050905090565b60006107f68261158b565b61082c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087582610df2565b90508073ffffffffffffffffffffffffffffffffffffffff166108966115ea565b73ffffffffffffffffffffffffffffffffffffffff16146108f9576108c2816108bd6115ea565b611474565b6108f8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109b86115f2565b6001546000540303905090565b60006109d0826115fb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a37576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a43846116c7565b91509150610a598187610a546115ea565b6116ee565b610aa557610a6e86610a696115ea565b611474565b610aa4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b0b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b188686866001611732565b8015610b2357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bf185610bcd888887611738565b7c020000000000000000000000000000000000000000000000000000000017611760565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c775760006001850190506000600460008381526020019081526020016000205403610c75576000548114610c74578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cdf868686600161178b565b505050505050565b610cef611791565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d1590612669565b60006040518083038185875af1925050503d8060008114610d52576040519150601f19603f3d011682016040523d82523d6000602084013e610d57565b606091505b5050905080610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d92906126ca565b60405180910390fd5b50565b610db98383836040518060200160405280600081525061135b565b505050565b600b5481565b610dcc611791565b80600d9081610ddb9190612896565b5050565b600c60009054906101000a900460ff1681565b6000610dfd826115fb565b9050919050565b600a5481565b600d8054610e1790612607565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612607565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eff576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f58611791565b610f62600061180f565b565b610f6c611791565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fca611791565b80600a8190555050565b606060038054610fe390612607565b80601f016020809104026020016040519081016040528092919081815260200182805461100f90612607565b801561105c5780601f106110315761010080835404028352916020019161105c565b820191906000526020600020905b81548152906001019060200180831161103f57829003601f168201915b5050505050905090565b600061107133611450565b9050600c60009054906101000a900460ff16156110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba906129b4565b60405180910390fd5b600954826110cf6109ae565b6110d99190612a03565b111561111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190612a83565b60405180910390fd5b600b5482826111299190612a03565b1115611136600b546118d5565b6040516020016111469190612b2b565b60405160208183030381529060405290611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d9190612093565b60405180910390fd5b50600b548211156111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390612b99565b60405180910390fd5b81600a546111ea9190612bb9565b34101561122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390612c47565b60405180910390fd5b61123633836119a3565b5050565b80600760006112476115ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112f46115ea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113399190611fe8565b60405180910390a35050565b61134d611791565b61135782826119a3565b5050565b6113668484846109c5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113c857611391848484846119c1565b6113c7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113d98261158b565b611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90612cd9565b60405180910390fd5b600d611423836118d5565b604051602001611434929190612dc8565b6040516020818303038152906040529050919050565b60095481565b600061145b82611b11565b9050919050565b61146a611791565b8060098190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611510611791565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690612e69565b60405180910390fd5b6115888161180f565b50565b6000816115966115f2565b111580156115a5575060005482105b80156115e3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061160a6115f2565b116116905760005481101561168f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361168d575b60008103611683576004600083600190039350838152602001908152602001600020549050611659565b80925050506116c2565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861174f868684611b68565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611799611b71565b73ffffffffffffffffffffffffffffffffffffffff166117b7610f98565b73ffffffffffffffffffffffffffffffffffffffff161461180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490612ed5565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6060600060016118e484611b79565b01905060008167ffffffffffffffff81111561190357611902612267565b5b6040519080825280601f01601f1916602001820160405280156119355781602001600182028036833780820191505090505b509050600082602001820190505b600115611998578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161198c5761198b612ef5565b5b04945060008503611943575b819350505050919050565b6119bd828260405180602001604052806000815250611ccc565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119e76115ea565b8786866040518563ffffffff1660e01b8152600401611a099493929190612f79565b6020604051808303816000875af1925050508015611a4557506040513d601f19601f82011682018060405250810190611a429190612fda565b60015b611abe573d8060008114611a75576040519150601f19603f3d011682016040523d82523d6000602084013e611a7a565b606091505b506000815103611ab6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611bd7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611bcd57611bcc612ef5565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611c14576d04ee2d6d415b85acef81000000008381611c0a57611c09612ef5565b5b0492506020810190505b662386f26fc100008310611c4357662386f26fc100008381611c3957611c38612ef5565b5b0492506010810190505b6305f5e1008310611c6c576305f5e1008381611c6257611c61612ef5565b5b0492506008810190505b6127108310611c91576127108381611c8757611c86612ef5565b5b0492506004810190505b60648310611cb45760648381611caa57611ca9612ef5565b5b0492506002810190505b600a8310611cc3576001810190505b80915050919050565b611cd68383611d69565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6457600080549050600083820390505b611d1660008683806001019450866119c1565b611d4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d03578160005414611d6157600080fd5b50505b505050565b60008054905060008203611da9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611db66000848385611732565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e2d83611e1e6000866000611738565b611e2785611f24565b17611760565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ece57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e93565b5060008203611f09576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f1f600084838561178b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f7d81611f48565b8114611f8857600080fd5b50565b600081359050611f9a81611f74565b92915050565b600060208284031215611fb657611fb5611f3e565b5b6000611fc484828501611f8b565b91505092915050565b60008115159050919050565b611fe281611fcd565b82525050565b6000602082019050611ffd6000830184611fd9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561203d578082015181840152602081019050612022565b60008484015250505050565b6000601f19601f8301169050919050565b600061206582612003565b61206f818561200e565b935061207f81856020860161201f565b61208881612049565b840191505092915050565b600060208201905081810360008301526120ad818461205a565b905092915050565b6000819050919050565b6120c8816120b5565b81146120d357600080fd5b50565b6000813590506120e5816120bf565b92915050565b60006020828403121561210157612100611f3e565b5b600061210f848285016120d6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061214382612118565b9050919050565b61215381612138565b82525050565b600060208201905061216e600083018461214a565b92915050565b61217d81612138565b811461218857600080fd5b50565b60008135905061219a81612174565b92915050565b600080604083850312156121b7576121b6611f3e565b5b60006121c58582860161218b565b92505060206121d6858286016120d6565b9150509250929050565b6121e9816120b5565b82525050565b600060208201905061220460008301846121e0565b92915050565b60008060006060848603121561222357612222611f3e565b5b60006122318682870161218b565b93505060206122428682870161218b565b9250506040612253868287016120d6565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61229f82612049565b810181811067ffffffffffffffff821117156122be576122bd612267565b5b80604052505050565b60006122d1611f34565b90506122dd8282612296565b919050565b600067ffffffffffffffff8211156122fd576122fc612267565b5b61230682612049565b9050602081019050919050565b82818337600083830152505050565b6000612335612330846122e2565b6122c7565b90508281526020810184848401111561235157612350612262565b5b61235c848285612313565b509392505050565b600082601f8301126123795761237861225d565b5b8135612389848260208601612322565b91505092915050565b6000602082840312156123a8576123a7611f3e565b5b600082013567ffffffffffffffff8111156123c6576123c5611f43565b5b6123d284828501612364565b91505092915050565b6000602082840312156123f1576123f0611f3e565b5b60006123ff8482850161218b565b91505092915050565b61241181611fcd565b811461241c57600080fd5b50565b60008135905061242e81612408565b92915050565b6000806040838503121561244b5761244a611f3e565b5b60006124598582860161218b565b925050602061246a8582860161241f565b9150509250929050565b600067ffffffffffffffff82111561248f5761248e612267565b5b61249882612049565b9050602081019050919050565b60006124b86124b384612474565b6122c7565b9050828152602081018484840111156124d4576124d3612262565b5b6124df848285612313565b509392505050565b600082601f8301126124fc576124fb61225d565b5b813561250c8482602086016124a5565b91505092915050565b6000806000806080858703121561252f5761252e611f3e565b5b600061253d8782880161218b565b945050602061254e8782880161218b565b935050604061255f878288016120d6565b925050606085013567ffffffffffffffff8111156125805761257f611f43565b5b61258c878288016124e7565b91505092959194509250565b600080604083850312156125af576125ae611f3e565b5b60006125bd8582860161218b565b92505060206125ce8582860161218b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061261f57607f821691505b602082108103612632576126316125d8565b5b50919050565b600081905092915050565b50565b6000612653600083612638565b915061265e82612643565b600082019050919050565b600061267482612646565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006126b460108361200e565b91506126bf8261267e565b602082019050919050565b600060208201905081810360008301526126e3816126a7565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261274c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261270f565b612756868361270f565b95508019841693508086168417925050509392505050565b6000819050919050565b600061279361278e612789846120b5565b61276e565b6120b5565b9050919050565b6000819050919050565b6127ad83612778565b6127c16127b98261279a565b84845461271c565b825550505050565b600090565b6127d66127c9565b6127e18184846127a4565b505050565b5b81811015612805576127fa6000826127ce565b6001810190506127e7565b5050565b601f82111561284a5761281b816126ea565b612824846126ff565b81016020851015612833578190505b61284761283f856126ff565b8301826127e6565b50505b505050565b600082821c905092915050565b600061286d6000198460080261284f565b1980831691505092915050565b6000612886838361285c565b9150826002028217905092915050565b61289f82612003565b67ffffffffffffffff8111156128b8576128b7612267565b5b6128c28254612607565b6128cd828285612809565b600060209050601f83116001811461290057600084156128ee578287015190505b6128f8858261287a565b865550612960565b601f19841661290e866126ea565b60005b8281101561293657848901518255600182019150602085019450602081019050612911565b86831015612953578489015161294f601f89168261285c565b8355505b6001600288020188555050505b505050505050565b7f4d696e7420706175736564000000000000000000000000000000000000000000600082015250565b600061299e600b8361200e565b91506129a982612968565b602082019050919050565b600060208201905081810360008301526129cd81612991565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a0e826120b5565b9150612a19836120b5565b9250828201905080821115612a3157612a306129d4565b5b92915050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b6000612a6d60128361200e565b9150612a7882612a37565b602082019050919050565b60006020820190508181036000830152612a9c81612a60565b9050919050565b600081905092915050565b7f596f752063616e206f6e6c79206d696e74200000000000000000000000000000600082015250565b6000612ae4601283612aa3565b9150612aef82612aae565b601282019050919050565b6000612b0582612003565b612b0f8185612aa3565b9350612b1f81856020860161201f565b80840191505092915050565b6000612b3682612ad7565b9150612b428284612afa565b915081905092915050565b7f4d617820706572207472616e73616374696f6e20726561636865640000000000600082015250565b6000612b83601b8361200e565b9150612b8e82612b4d565b602082019050919050565b60006020820190508181036000830152612bb281612b76565b9050919050565b6000612bc4826120b5565b9150612bcf836120b5565b9250828202612bdd816120b5565b91508282048414831517612bf457612bf36129d4565b5b5092915050565b7f57726f6e67206d696e7420707269636500000000000000000000000000000000600082015250565b6000612c3160108361200e565b9150612c3c82612bfb565b602082019050919050565b60006020820190508181036000830152612c6081612c24565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612cc3602f8361200e565b9150612cce82612c67565b604082019050919050565b60006020820190508181036000830152612cf281612cb6565b9050919050565b60008154612d0681612607565b612d108186612aa3565b94506001821660008114612d2b5760018114612d4057612d73565b60ff1983168652811515820286019350612d73565b612d49856126ea565b60005b83811015612d6b57815481890152600182019150602081019050612d4c565b838801955050505b50505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612db2600583612aa3565b9150612dbd82612d7c565b600582019050919050565b6000612dd48285612cf9565b9150612de08284612afa565b9150612deb82612da5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e5360268361200e565b9150612e5e82612df7565b604082019050919050565b60006020820190508181036000830152612e8281612e46565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ebf60208361200e565b9150612eca82612e89565b602082019050919050565b60006020820190508181036000830152612eee81612eb2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612f4b82612f24565b612f558185612f2f565b9350612f6581856020860161201f565b612f6e81612049565b840191505092915050565b6000608082019050612f8e600083018761214a565b612f9b602083018661214a565b612fa860408301856121e0565b8181036060830152612fba8184612f40565b905095945050505050565b600081519050612fd481611f74565b92915050565b600060208284031215612ff057612fef611f3e565b5b6000612ffe84828501612fc5565b9150509291505056fea2646970667358221220cac431042a2528211964d52841712860c5730f5b2053896300b3b493f94fc1b364736f6c63430008110033

Deployed Bytecode Sourcemap

76352:2439:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43250:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50643:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50076:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39903:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54282:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78582:206;;;;;;;;;;;;;:::i;:::-;;57203:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76516:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78191:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76554:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45545:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76471:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76586:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41087:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24029:103;;;;;;;;;;;;;:::i;:::-;;78287:76;;;;;;;;;;;;;:::i;:::-;;23381:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78371:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44328:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76841:625;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51201:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77474:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57994:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77610:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76433:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77968:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51592:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24287:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43250:639;43335:4;43674:10;43659:25;;:11;:25;;;;:102;;;;43751:10;43736:25;;:11;:25;;;;43659:102;:179;;;;43828:10;43813:25;;:11;:25;;;;43659:179;43639:199;;43250:639;;;:::o;44152:100::-;44206:13;44239:5;44232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44152:100;:::o;50643:218::-;50719:7;50744:16;50752:7;50744;:16::i;:::-;50739:64;;50769:34;;;;;;;;;;;;;;50739:64;50823:15;:24;50839:7;50823:24;;;;;;;;;;;:30;;;;;;;;;;;;50816:37;;50643:218;;;:::o;50076:408::-;50165:13;50181:16;50189:7;50181;:16::i;:::-;50165:32;;50237:5;50214:28;;:19;:17;:19::i;:::-;:28;;;50210:175;;50262:44;50279:5;50286:19;:17;:19::i;:::-;50262:16;:44::i;:::-;50257:128;;50334:35;;;;;;;;;;;;;;50257:128;50210:175;50430:2;50397:15;:24;50413:7;50397:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50468:7;50464:2;50448:28;;50457:5;50448:28;;;;;;;;;;;;50154:330;50076:408;;:::o;39903:323::-;39964:7;40192:15;:13;:15::i;:::-;40177:12;;40161:13;;:28;:46;40154:53;;39903:323;:::o;54282:2825::-;54424:27;54454;54473:7;54454:18;:27::i;:::-;54424:57;;54539:4;54498:45;;54514:19;54498:45;;;54494:86;;54552:28;;;;;;;;;;;;;;54494:86;54594:27;54623:23;54650:35;54677:7;54650:26;:35::i;:::-;54593:92;;;;54785:68;54810:15;54827:4;54833:19;:17;:19::i;:::-;54785:24;:68::i;:::-;54780:180;;54873:43;54890:4;54896:19;:17;:19::i;:::-;54873:16;:43::i;:::-;54868:92;;54925:35;;;;;;;;;;;;;;54868:92;54780:180;54991:1;54977:16;;:2;:16;;;54973:52;;55002:23;;;;;;;;;;;;;;54973:52;55038:43;55060:4;55066:2;55070:7;55079:1;55038:21;:43::i;:::-;55174:15;55171:160;;;55314:1;55293:19;55286:30;55171:160;55711:18;:24;55730:4;55711:24;;;;;;;;;;;;;;;;55709:26;;;;;;;;;;;;55780:18;:22;55799:2;55780:22;;;;;;;;;;;;;;;;55778:24;;;;;;;;;;;56102:146;56139:2;56188:45;56203:4;56209:2;56213:19;56188:14;:45::i;:::-;36302:8;56160:73;56102:18;:146::i;:::-;56073:17;:26;56091:7;56073:26;;;;;;;;;;;:175;;;;56419:1;36302:8;56368:19;:47;:52;56364:627;;56441:19;56473:1;56463:7;:11;56441:33;;56630:1;56596:17;:30;56614:11;56596:30;;;;;;;;;;;;:35;56592:384;;56734:13;;56719:11;:28;56715:242;;56914:19;56881:17;:30;56899:11;56881:30;;;;;;;;;;;:52;;;;56715:242;56592:384;56422:569;56364:627;57038:7;57034:2;57019:27;;57028:4;57019:27;;;;;;;;;;;;57057:42;57078:4;57084:2;57088:7;57097:1;57057:20;:42::i;:::-;54413:2694;;;54282:2825;;;:::o;78582:206::-;23267:13;:11;:13::i;:::-;78633:12:::1;78659:10;78651:24;;78697:21;78651:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78632:101;;;78752:7;78744:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;78621:167;78582:206::o:0;57203:193::-;57349:39;57366:4;57372:2;57376:7;57349:39;;;;;;;;;;;;:16;:39::i;:::-;57203:193;;;:::o;76516:31::-;;;;:::o;78191:88::-;23267:13;:11;:13::i;:::-;78268:3:::1;78258:7;:13;;;;;;:::i;:::-;;78191:88:::0;:::o;76554:25::-;;;;;;;;;;;;;:::o;45545:152::-;45617:7;45660:27;45679:7;45660:18;:27::i;:::-;45637:52;;45545:152;;;:::o;76471:38::-;;;;:::o;76586:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41087:233::-;41159:7;41200:1;41183:19;;:5;:19;;;41179:60;;41211:28;;;;;;;;;;;;;;41179:60;35246:13;41257:18;:25;41276:5;41257:25;;;;;;;;;;;;;;;;:55;41250:62;;41087:233;;;:::o;24029:103::-;23267:13;:11;:13::i;:::-;24094:30:::1;24121:1;24094:18;:30::i;:::-;24029:103::o:0;78287:76::-;23267:13;:11;:13::i;:::-;78349:6:::1;;;;;;;;;;;78348:7;78339:6;;:16;;;;;;;;;;;;;;;;;;78287:76::o:0;23381:87::-;23427:7;23454:6;;;;;;;;;;;23447:13;;23381:87;:::o;78371:96::-;23267:13;:11;:13::i;:::-;78450:9:::1;78438;:21;;;;78371:96:::0;:::o;44328:104::-;44384:13;44417:7;44410:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44328:104;:::o;76841:625::-;76899:18;76920:24;76933:10;76920:12;:24::i;:::-;76899:45;;76966:6;;;;;;;;;;;76965:7;76957:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;77035:9;;77024:6;77008:13;:11;:13::i;:::-;:22;;;;:::i;:::-;77007:37;;76999:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77109:12;;77099:6;77086:10;:19;;;;:::i;:::-;:35;;77170:23;:12;;:21;:23::i;:::-;77131:63;;;;;;;;:::i;:::-;;;;;;;;;;;;;77078:118;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;77239:12;;77229:6;:22;;77207:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;77365:6;77353:9;;:18;;;;:::i;:::-;77339:9;:33;;77317:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;77429:29;77439:10;77451:6;77429:9;:29::i;:::-;76888:578;76841:625;:::o;51201:234::-;51348:8;51296:18;:39;51315:19;:17;:19::i;:::-;51296:39;;;;;;;;;;;;;;;:49;51336:8;51296:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;51408:8;51372:55;;51387:19;:17;:19::i;:::-;51372:55;;;51418:8;51372:55;;;;;;:::i;:::-;;;;;;;;51201:234;;:::o;77474:128::-;23267:13;:11;:13::i;:::-;77563:31:::1;77573:8;77583:10;77563:9;:31::i;:::-;77474:128:::0;;:::o;57994:407::-;58169:31;58182:4;58188:2;58192:7;58169:12;:31::i;:::-;58233:1;58215:2;:14;;;:19;58211:183;;58254:56;58285:4;58291:2;58295:7;58304:5;58254:30;:56::i;:::-;58249:145;;58338:40;;;;;;;;;;;;;;58249:145;58211:183;57994:407;;;;:::o;77610:350::-;77728:13;77781:16;77789:7;77781;:16::i;:::-;77759:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;77914:7;77923:18;:7;:16;:18::i;:::-;77897:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77883:69;;77610:350;;;:::o;76433:31::-;;;;:::o;77968:99::-;78026:7;78044:20;78058:5;78044:13;:20::i;:::-;78037:27;;77968:99;;;:::o;78475:::-;23267:13;:11;:13::i;:::-;78556:10:::1;78544:9;:22;;;;78475:99:::0;:::o;51592:164::-;51689:4;51713:18;:25;51732:5;51713:25;;;;;;;;;;;;;;;:35;51739:8;51713:35;;;;;;;;;;;;;;;;;;;;;;;;;51706:42;;51592:164;;;;:::o;24287:201::-;23267:13;:11;:13::i;:::-;24396:1:::1;24376:22;;:8;:22;;::::0;24368:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;24452:28;24471:8;24452:18;:28::i;:::-;24287:201:::0;:::o;52014:282::-;52079:4;52135:7;52116:15;:13;:15::i;:::-;:26;;:66;;;;;52169:13;;52159:7;:23;52116:66;:153;;;;;52268:1;36022:8;52220:17;:26;52238:7;52220:26;;;;;;;;;;;;:44;:49;52116:153;52096:173;;52014:282;;;:::o;74322:105::-;74382:7;74409:10;74402:17;;74322:105;:::o;76746:87::-;76811:7;76829:1;76822:8;;76746:87;:::o;46700:1275::-;46767:7;46787:12;46802:7;46787:22;;46870:4;46851:15;:13;:15::i;:::-;:23;46847:1061;;46904:13;;46897:4;:20;46893:1015;;;46942:14;46959:17;:23;46977:4;46959:23;;;;;;;;;;;;46942:40;;47076:1;36022:8;47048:6;:24;:29;47044:845;;47713:113;47730:1;47720:6;:11;47713:113;;47773:17;:25;47791:6;;;;;;;47773:25;;;;;;;;;;;;47764:34;;47713:113;;;47859:6;47852:13;;;;;;47044:845;46919:989;46893:1015;46847:1061;47936:31;;;;;;;;;;;;;;46700:1275;;;;:::o;53177:485::-;53279:27;53308:23;53349:38;53390:15;:24;53406:7;53390:24;;;;;;;;;;;53349:65;;53567:18;53544:41;;53624:19;53618:26;53599:45;;53529:126;53177:485;;;:::o;52405:659::-;52554:11;52719:16;52712:5;52708:28;52699:37;;52879:16;52868:9;52864:32;52851:45;;53029:15;53018:9;53015:30;53007:5;52996:9;52993:20;52990:56;52980:66;;52405:659;;;;;:::o;59063:159::-;;;;;:::o;73631:311::-;73766:7;73786:16;36426:3;73812:19;:41;;73786:68;;36426:3;73880:31;73891:4;73897:2;73901:9;73880:10;:31::i;:::-;73872:40;;:62;;73865:69;;;73631:311;;;;;:::o;48523:450::-;48603:14;48771:16;48764:5;48760:28;48751:37;;48948:5;48934:11;48909:23;48905:41;48902:52;48895:5;48892:63;48882:73;;48523:450;;;;:::o;59887:158::-;;;;;:::o;23546:132::-;23621:12;:10;:12::i;:::-;23610:23;;:7;:5;:7::i;:::-;:23;;;23602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23546:132::o;24648:191::-;24722:16;24741:6;;;;;;;;;;;24722:25;;24767:8;24758:6;;:17;;;;;;;;;;;;;;;;;;24822:8;24791:40;;24812:8;24791:40;;;;;;;;;;;;24711:128;24648:191;:::o;19359:716::-;19415:13;19466:14;19503:1;19483:17;19494:5;19483:10;:17::i;:::-;:21;19466:38;;19519:20;19553:6;19542:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19519:41;;19575:11;19704:6;19700:2;19696:15;19688:6;19684:28;19677:35;;19741:288;19748:4;19741:288;;;19773:5;;;;;;;;19915:8;19910:2;19903:5;19899:14;19894:30;19889:3;19881:44;19971:2;19962:11;;;;;;:::i;:::-;;;;;20005:1;19996:5;:10;19741:288;19992:21;19741:288;20050:6;20043:13;;;;;19359:716;;;:::o;68154:112::-;68231:27;68241:2;68245:8;68231:27;;;;;;;;;;;;:9;:27::i;:::-;68154:112;;:::o;60485:716::-;60648:4;60694:2;60669:45;;;60715:19;:17;:19::i;:::-;60736:4;60742:7;60751:5;60669:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60665:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60969:1;60952:6;:13;:18;60948:235;;60998:40;;;;;;;;;;;;;;60948:235;61141:6;61135:13;61126:6;61122:2;61118:15;61111:38;60665:529;60838:54;;;60828:64;;;:6;:64;;;;60821:71;;;60485:716;;;;;;:::o;41402:178::-;41463:7;35246:13;35384:2;41491:18;:25;41510:5;41491:25;;;;;;;;;;;;;;;;:50;;41490:82;41483:89;;41402:178;;;:::o;73332:147::-;73469:6;73332:147;;;;;:::o;21932:98::-;21985:7;22012:10;22005:17;;21932:98;:::o;16225:922::-;16278:7;16298:14;16315:1;16298:18;;16365:6;16356:5;:15;16352:102;;16401:6;16392:15;;;;;;:::i;:::-;;;;;16436:2;16426:12;;;;16352:102;16481:6;16472:5;:15;16468:102;;16517:6;16508:15;;;;;;:::i;:::-;;;;;16552:2;16542:12;;;;16468:102;16597:6;16588:5;:15;16584:102;;16633:6;16624:15;;;;;;:::i;:::-;;;;;16668:2;16658:12;;;;16584:102;16713:5;16704;:14;16700:99;;16748:5;16739:14;;;;;;:::i;:::-;;;;;16782:1;16772:11;;;;16700:99;16826:5;16817;:14;16813:99;;16861:5;16852:14;;;;;;:::i;:::-;;;;;16895:1;16885:11;;;;16813:99;16939:5;16930;:14;16926:99;;16974:5;16965:14;;;;;;:::i;:::-;;;;;17008:1;16998:11;;;;16926:99;17052:5;17043;:14;17039:66;;17088:1;17078:11;;;;17039:66;17133:6;17126:13;;;16225:922;;;:::o;67381:689::-;67512:19;67518:2;67522:8;67512:5;:19::i;:::-;67591:1;67573:2;:14;;;:19;67569:483;;67613:11;67627:13;;67613:27;;67659:13;67681:8;67675:3;:14;67659:30;;67708:233;67739:62;67778:1;67782:2;67786:7;;;;;;67795:5;67739:30;:62::i;:::-;67734:167;;67837:40;;;;;;;;;;;;;;67734:167;67936:3;67928:5;:11;67708:233;;68023:3;68006:13;;:20;68002:34;;68028:8;;;68002:34;67594:458;;67569:483;67381:689;;;:::o;61663:2966::-;61736:20;61759:13;;61736:36;;61799:1;61787:8;:13;61783:44;;61809:18;;;;;;;;;;;;;;61783:44;61840:61;61870:1;61874:2;61878:12;61892:8;61840:21;:61::i;:::-;62384:1;35384:2;62354:1;:26;;62353:32;62341:8;:45;62315:18;:22;62334:2;62315:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;62663:139;62700:2;62754:33;62777:1;62781:2;62785:1;62754:14;:33::i;:::-;62721:30;62742:8;62721:20;:30::i;:::-;:66;62663:18;:139::i;:::-;62629:17;:31;62647:12;62629:31;;;;;;;;;;;:173;;;;62819:16;62850:11;62879:8;62864:12;:23;62850:37;;63400:16;63396:2;63392:25;63380:37;;63772:12;63732:8;63691:1;63629:25;63570:1;63509;63482:335;64143:1;64129:12;64125:20;64083:346;64184:3;64175:7;64172:16;64083:346;;64402:7;64392:8;64389:1;64362:25;64359:1;64356;64351:59;64237:1;64228:7;64224:15;64213:26;;64083:346;;;64087:77;64474:1;64462:8;:13;64458:45;;64484:19;;;;;;;;;;;;;;64458:45;64536:3;64520:13;:19;;;;62089:2462;;64561:60;64590:1;64594:2;64598:12;64612:8;64561:20;:60::i;:::-;61725:2904;61663:2966;;:::o;49075:324::-;49145:14;49378:1;49368:8;49365:15;49339:24;49335:46;49325:56;;49075:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:147::-;12704:11;12741:3;12726:18;;12603:147;;;;:::o;12756:114::-;;:::o;12876:398::-;13035:3;13056:83;13137:1;13132:3;13056:83;:::i;:::-;13049:90;;13148:93;13237:3;13148:93;:::i;:::-;13266:1;13261:3;13257:11;13250:18;;12876:398;;;:::o;13280:379::-;13464:3;13486:147;13629:3;13486:147;:::i;:::-;13479:154;;13650:3;13643:10;;13280:379;;;:::o;13665:166::-;13805:18;13801:1;13793:6;13789:14;13782:42;13665:166;:::o;13837:366::-;13979:3;14000:67;14064:2;14059:3;14000:67;:::i;:::-;13993:74;;14076:93;14165:3;14076:93;:::i;:::-;14194:2;14189:3;14185:12;14178:19;;13837:366;;;:::o;14209:419::-;14375:4;14413:2;14402:9;14398:18;14390:26;;14462:9;14456:4;14452:20;14448:1;14437:9;14433:17;14426:47;14490:131;14616:4;14490:131;:::i;:::-;14482:139;;14209:419;;;:::o;14634:141::-;14683:4;14706:3;14698:11;;14729:3;14726:1;14719:14;14763:4;14760:1;14750:18;14742:26;;14634:141;;;:::o;14781:93::-;14818:6;14865:2;14860;14853:5;14849:14;14845:23;14835:33;;14781:93;;;:::o;14880:107::-;14924:8;14974:5;14968:4;14964:16;14943:37;;14880:107;;;;:::o;14993:393::-;15062:6;15112:1;15100:10;15096:18;15135:97;15165:66;15154:9;15135:97;:::i;:::-;15253:39;15283:8;15272:9;15253:39;:::i;:::-;15241:51;;15325:4;15321:9;15314:5;15310:21;15301:30;;15374:4;15364:8;15360:19;15353:5;15350:30;15340:40;;15069:317;;14993:393;;;;;:::o;15392:60::-;15420:3;15441:5;15434:12;;15392:60;;;:::o;15458:142::-;15508:9;15541:53;15559:34;15568:24;15586:5;15568:24;:::i;:::-;15559:34;:::i;:::-;15541:53;:::i;:::-;15528:66;;15458:142;;;:::o;15606:75::-;15649:3;15670:5;15663:12;;15606:75;;;:::o;15687:269::-;15797:39;15828:7;15797:39;:::i;:::-;15858:91;15907:41;15931:16;15907:41;:::i;:::-;15899:6;15892:4;15886:11;15858:91;:::i;:::-;15852:4;15845:105;15763:193;15687:269;;;:::o;15962:73::-;16007:3;15962:73;:::o;16041:189::-;16118:32;;:::i;:::-;16159:65;16217:6;16209;16203:4;16159:65;:::i;:::-;16094:136;16041:189;;:::o;16236:186::-;16296:120;16313:3;16306:5;16303:14;16296:120;;;16367:39;16404:1;16397:5;16367:39;:::i;:::-;16340:1;16333:5;16329:13;16320:22;;16296:120;;;16236:186;;:::o;16428:543::-;16529:2;16524:3;16521:11;16518:446;;;16563:38;16595:5;16563:38;:::i;:::-;16647:29;16665:10;16647:29;:::i;:::-;16637:8;16633:44;16830:2;16818:10;16815:18;16812:49;;;16851:8;16836:23;;16812:49;16874:80;16930:22;16948:3;16930:22;:::i;:::-;16920:8;16916:37;16903:11;16874:80;:::i;:::-;16533:431;;16518:446;16428:543;;;:::o;16977:117::-;17031:8;17081:5;17075:4;17071:16;17050:37;;16977:117;;;;:::o;17100:169::-;17144:6;17177:51;17225:1;17221:6;17213:5;17210:1;17206:13;17177:51;:::i;:::-;17173:56;17258:4;17252;17248:15;17238:25;;17151:118;17100:169;;;;:::o;17274:295::-;17350:4;17496:29;17521:3;17515:4;17496:29;:::i;:::-;17488:37;;17558:3;17555:1;17551:11;17545:4;17542:21;17534:29;;17274:295;;;;:::o;17574:1395::-;17691:37;17724:3;17691:37;:::i;:::-;17793:18;17785:6;17782:30;17779:56;;;17815:18;;:::i;:::-;17779:56;17859:38;17891:4;17885:11;17859:38;:::i;:::-;17944:67;18004:6;17996;17990:4;17944:67;:::i;:::-;18038:1;18062:4;18049:17;;18094:2;18086:6;18083:14;18111:1;18106:618;;;;18768:1;18785:6;18782:77;;;18834:9;18829:3;18825:19;18819:26;18810:35;;18782:77;18885:67;18945:6;18938:5;18885:67;:::i;:::-;18879:4;18872:81;18741:222;18076:887;;18106:618;18158:4;18154:9;18146:6;18142:22;18192:37;18224:4;18192:37;:::i;:::-;18251:1;18265:208;18279:7;18276:1;18273:14;18265:208;;;18358:9;18353:3;18349:19;18343:26;18335:6;18328:42;18409:1;18401:6;18397:14;18387:24;;18456:2;18445:9;18441:18;18428:31;;18302:4;18299:1;18295:12;18290:17;;18265:208;;;18501:6;18492:7;18489:19;18486:179;;;18559:9;18554:3;18550:19;18544:26;18602:48;18644:4;18636:6;18632:17;18621:9;18602:48;:::i;:::-;18594:6;18587:64;18509:156;18486:179;18711:1;18707;18699:6;18695:14;18691:22;18685:4;18678:36;18113:611;;;18076:887;;17666:1303;;;17574:1395;;:::o;18975:161::-;19115:13;19111:1;19103:6;19099:14;19092:37;18975:161;:::o;19142:366::-;19284:3;19305:67;19369:2;19364:3;19305:67;:::i;:::-;19298:74;;19381:93;19470:3;19381:93;:::i;:::-;19499:2;19494:3;19490:12;19483:19;;19142:366;;;:::o;19514:419::-;19680:4;19718:2;19707:9;19703:18;19695:26;;19767:9;19761:4;19757:20;19753:1;19742:9;19738:17;19731:47;19795:131;19921:4;19795:131;:::i;:::-;19787:139;;19514:419;;;:::o;19939:180::-;19987:77;19984:1;19977:88;20084:4;20081:1;20074:15;20108:4;20105:1;20098:15;20125:191;20165:3;20184:20;20202:1;20184:20;:::i;:::-;20179:25;;20218:20;20236:1;20218:20;:::i;:::-;20213:25;;20261:1;20258;20254:9;20247:16;;20282:3;20279:1;20276:10;20273:36;;;20289:18;;:::i;:::-;20273:36;20125:191;;;;:::o;20322:168::-;20462:20;20458:1;20450:6;20446:14;20439:44;20322:168;:::o;20496:366::-;20638:3;20659:67;20723:2;20718:3;20659:67;:::i;:::-;20652:74;;20735:93;20824:3;20735:93;:::i;:::-;20853:2;20848:3;20844:12;20837:19;;20496:366;;;:::o;20868:419::-;21034:4;21072:2;21061:9;21057:18;21049:26;;21121:9;21115:4;21111:20;21107:1;21096:9;21092:17;21085:47;21149:131;21275:4;21149:131;:::i;:::-;21141:139;;20868:419;;;:::o;21293:148::-;21395:11;21432:3;21417:18;;21293:148;;;;:::o;21447:168::-;21587:20;21583:1;21575:6;21571:14;21564:44;21447:168;:::o;21621:402::-;21781:3;21802:85;21884:2;21879:3;21802:85;:::i;:::-;21795:92;;21896:93;21985:3;21896:93;:::i;:::-;22014:2;22009:3;22005:12;21998:19;;21621:402;;;:::o;22029:390::-;22135:3;22163:39;22196:5;22163:39;:::i;:::-;22218:89;22300:6;22295:3;22218:89;:::i;:::-;22211:96;;22316:65;22374:6;22369:3;22362:4;22355:5;22351:16;22316:65;:::i;:::-;22406:6;22401:3;22397:16;22390:23;;22139:280;22029:390;;;;:::o;22425:541::-;22658:3;22680:148;22824:3;22680:148;:::i;:::-;22673:155;;22845:95;22936:3;22927:6;22845:95;:::i;:::-;22838:102;;22957:3;22950:10;;22425:541;;;;:::o;22972:177::-;23112:29;23108:1;23100:6;23096:14;23089:53;22972:177;:::o;23155:366::-;23297:3;23318:67;23382:2;23377:3;23318:67;:::i;:::-;23311:74;;23394:93;23483:3;23394:93;:::i;:::-;23512:2;23507:3;23503:12;23496:19;;23155:366;;;:::o;23527:419::-;23693:4;23731:2;23720:9;23716:18;23708:26;;23780:9;23774:4;23770:20;23766:1;23755:9;23751:17;23744:47;23808:131;23934:4;23808:131;:::i;:::-;23800:139;;23527:419;;;:::o;23952:410::-;23992:7;24015:20;24033:1;24015:20;:::i;:::-;24010:25;;24049:20;24067:1;24049:20;:::i;:::-;24044:25;;24104:1;24101;24097:9;24126:30;24144:11;24126:30;:::i;:::-;24115:41;;24305:1;24296:7;24292:15;24289:1;24286:22;24266:1;24259:9;24239:83;24216:139;;24335:18;;:::i;:::-;24216:139;24000:362;23952:410;;;;:::o;24368:166::-;24508:18;24504:1;24496:6;24492:14;24485:42;24368:166;:::o;24540:366::-;24682:3;24703:67;24767:2;24762:3;24703:67;:::i;:::-;24696:74;;24779:93;24868:3;24779:93;:::i;:::-;24897:2;24892:3;24888:12;24881:19;;24540:366;;;:::o;24912:419::-;25078:4;25116:2;25105:9;25101:18;25093:26;;25165:9;25159:4;25155:20;25151:1;25140:9;25136:17;25129:47;25193:131;25319:4;25193:131;:::i;:::-;25185:139;;24912:419;;;:::o;25337:234::-;25477:34;25473:1;25465:6;25461:14;25454:58;25546:17;25541:2;25533:6;25529:15;25522:42;25337:234;:::o;25577:366::-;25719:3;25740:67;25804:2;25799:3;25740:67;:::i;:::-;25733:74;;25816:93;25905:3;25816:93;:::i;:::-;25934:2;25929:3;25925:12;25918:19;;25577:366;;;:::o;25949:419::-;26115:4;26153:2;26142:9;26138:18;26130:26;;26202:9;26196:4;26192:20;26188:1;26177:9;26173:17;26166:47;26230:131;26356:4;26230:131;:::i;:::-;26222:139;;25949:419;;;:::o;26398:874::-;26501:3;26538:5;26532:12;26567:36;26593:9;26567:36;:::i;:::-;26619:89;26701:6;26696:3;26619:89;:::i;:::-;26612:96;;26739:1;26728:9;26724:17;26755:1;26750:166;;;;26930:1;26925:341;;;;26717:549;;26750:166;26834:4;26830:9;26819;26815:25;26810:3;26803:38;26896:6;26889:14;26882:22;26874:6;26870:35;26865:3;26861:45;26854:52;;26750:166;;26925:341;26992:38;27024:5;26992:38;:::i;:::-;27052:1;27066:154;27080:6;27077:1;27074:13;27066:154;;;27154:7;27148:14;27144:1;27139:3;27135:11;27128:35;27204:1;27195:7;27191:15;27180:26;;27102:4;27099:1;27095:12;27090:17;;27066:154;;;27249:6;27244:3;27240:16;27233:23;;26932:334;;26717:549;;26505:767;;26398:874;;;;:::o;27278:155::-;27418:7;27414:1;27406:6;27402:14;27395:31;27278:155;:::o;27439:400::-;27599:3;27620:84;27702:1;27697:3;27620:84;:::i;:::-;27613:91;;27713:93;27802:3;27713:93;:::i;:::-;27831:1;27826:3;27822:11;27815:18;;27439:400;;;:::o;27845:695::-;28123:3;28145:92;28233:3;28224:6;28145:92;:::i;:::-;28138:99;;28254:95;28345:3;28336:6;28254:95;:::i;:::-;28247:102;;28366:148;28510:3;28366:148;:::i;:::-;28359:155;;28531:3;28524:10;;27845:695;;;;;:::o;28546:225::-;28686:34;28682:1;28674:6;28670:14;28663:58;28755:8;28750:2;28742:6;28738:15;28731:33;28546:225;:::o;28777:366::-;28919:3;28940:67;29004:2;28999:3;28940:67;:::i;:::-;28933:74;;29016:93;29105:3;29016:93;:::i;:::-;29134:2;29129:3;29125:12;29118:19;;28777:366;;;:::o;29149:419::-;29315:4;29353:2;29342:9;29338:18;29330:26;;29402:9;29396:4;29392:20;29388:1;29377:9;29373:17;29366:47;29430:131;29556:4;29430:131;:::i;:::-;29422:139;;29149:419;;;:::o;29574:182::-;29714:34;29710:1;29702:6;29698:14;29691:58;29574:182;:::o;29762:366::-;29904:3;29925:67;29989:2;29984:3;29925:67;:::i;:::-;29918:74;;30001:93;30090:3;30001:93;:::i;:::-;30119:2;30114:3;30110:12;30103:19;;29762:366;;;:::o;30134:419::-;30300:4;30338:2;30327:9;30323:18;30315:26;;30387:9;30381:4;30377:20;30373:1;30362:9;30358:17;30351:47;30415:131;30541:4;30415:131;:::i;:::-;30407:139;;30134:419;;;:::o;30559:180::-;30607:77;30604:1;30597:88;30704:4;30701:1;30694:15;30728:4;30725:1;30718:15;30745:98;30796:6;30830:5;30824:12;30814:22;;30745:98;;;:::o;30849:168::-;30932:11;30966:6;30961:3;30954:19;31006:4;31001:3;30997:14;30982:29;;30849:168;;;;:::o;31023:373::-;31109:3;31137:38;31169:5;31137:38;:::i;:::-;31191:70;31254:6;31249:3;31191:70;:::i;:::-;31184:77;;31270:65;31328:6;31323:3;31316:4;31309:5;31305:16;31270:65;:::i;:::-;31360:29;31382:6;31360:29;:::i;:::-;31355:3;31351:39;31344:46;;31113:283;31023:373;;;;:::o;31402:640::-;31597:4;31635:3;31624:9;31620:19;31612:27;;31649:71;31717:1;31706:9;31702:17;31693:6;31649:71;:::i;:::-;31730:72;31798:2;31787:9;31783:18;31774:6;31730:72;:::i;:::-;31812;31880:2;31869:9;31865:18;31856:6;31812:72;:::i;:::-;31931:9;31925:4;31921:20;31916:2;31905:9;31901:18;31894:48;31959:76;32030:4;32021:6;31959:76;:::i;:::-;31951:84;;31402:640;;;;;;;:::o;32048:141::-;32104:5;32135:6;32129:13;32120:22;;32151:32;32177:5;32151:32;:::i;:::-;32048:141;;;;:::o;32195:349::-;32264:6;32313:2;32301:9;32292:7;32288:23;32284:32;32281:119;;;32319:79;;:::i;:::-;32281:119;32439:1;32464:63;32519:7;32510:6;32499:9;32495:22;32464:63;:::i;:::-;32454:73;;32410:127;32195:349;;;;:::o

Swarm Source

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