ETH Price: $2,884.18 (-10.48%)
Gas: 14 Gwei

Token

CRYPTOAPES (U+03FE)
 

Overview

Max Total Supply

5,000 U+03FE

Holders

1,016

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 U+03FE
0xe0FdA175597541f52C47F7F178181B8Fd24E4aCb
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:
CryptoApesMarket

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: operator-filter-registry/src/IOperatorFilterRegistry.sol
                                                                                                                                     
                                                                                                                                                                                                                                                                    
                                                                                                                                     

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

// 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: 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: @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);
    }
}


        pragma solidity ^0.8.13;






        contract CryptoApesMarket is ERC721A, Ownable, ReentrancyGuard  , DefaultOperatorFilterer{
            using Strings for uint256;
            uint256 public _maxSupply = 5000;
            uint256 public maxMintAmountPerWallet = 5;
            uint256 public maxMintAmountPerTx = 5;
            string baseURL = "";
            string ExtensionURL = ".json";
            uint256 _initalPrice = 0 ether;
            uint256 public costOfNFT = 0 ether;
            uint256 public numberOfFreeNFTs = 5000;
            
            string HiddenURL;
            bool revealed = true;
            bool paused = false;
            
            error ContractPaused();
            error MaxMintWalletExceeded();
            error MaxSupply();
            error InvalidMintAmount();
            error InsufficientFund();
            error NoSmartContract();
            error TokenNotExisting();

        constructor(string memory _initBaseURI) ERC721A("CRYPTOAPES", "U+03FE") {
            baseURL = _initBaseURI;
        }

        // ================== Mint Function =======================

        modifier mintCompliance(uint256 _mintAmount) {
            if (totalSupply()  + _mintAmount > _maxSupply) revert MaxSupply();
            if (_mintAmount > maxMintAmountPerTx) revert InvalidMintAmount();
            if(paused) revert ContractPaused();
            _;
        }

        modifier mintPriceCompliance(uint256 _mintAmount) {
            if(balanceOf(msg.sender) + _mintAmount > maxMintAmountPerWallet) revert MaxMintWalletExceeded();
            if (_mintAmount < 0 || _mintAmount > maxMintAmountPerWallet) revert InvalidMintAmount();
              if (msg.value < checkCost(_mintAmount)) revert InsufficientFund();
            _;
        }
        
        /// @notice compliance of minting
        /// @dev user (msg.sender) mint
        /// @param _mintAmount the amount of tokens to mint
        function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount){
         
          
          _safeMint(msg.sender, _mintAmount);
          }

        /// @dev user (msg.sender) mint
        /// @param _mintAmount the amount of tokens to mint 
        /// @return value from number to mint
        function checkCost(uint256 _mintAmount) public view returns (uint256) {
          uint256 totalMints = _mintAmount + balanceOf(msg.sender);
          if ((totalMints <= numberOfFreeNFTs) ) {
          return _initalPrice;
          } else if ((balanceOf(msg.sender) == 0) && (totalMints > numberOfFreeNFTs) ) { 
          uint256 total = costOfNFT * _mintAmount;
          return total;
          } 
          else {
          uint256 total2 = costOfNFT * _mintAmount;
          return total2;
            }
        }
        


        /// @notice airdrop function to airdrop same amount of tokens to addresses
        /// @dev only owner function
        /// @param accounts  array of addresses
        /// @param amount the amount of tokens to airdrop users
        function airdrop(address[] memory accounts, uint256 amount)public onlyOwner mintCompliance(amount) {
          for(uint256 i = 0; i < accounts.length; i++){
          _safeMint(accounts[i], amount);
          }
        }

        // =================== Orange Functions (Owner Only) ===============

        /// @dev pause/unpause minting
        function pause() public onlyOwner {
          paused = !paused;
        }

        

        /// @dev set URI
        /// @param uri  new URI
        function setbaseURL(string memory uri) public onlyOwner{
          baseURL = uri;
        }

        /// @dev extension URI like 'json'
        function setExtensionURL(string memory uri) public onlyOwner{
          ExtensionURL = uri;
        }
        
        /// @dev set new cost of tokenId in WEI
        /// @param _cost  new price in wei
        function setCostPrice(uint256 _cost) public onlyOwner{
          costOfNFT = _cost;
        } 

        /// @dev only owner
        /// @param perTx  new max mint per transaction
        function setMaxMintAmountPerTx(uint256 perTx) public onlyOwner{
          maxMintAmountPerTx = perTx;
        }

        /// @dev only owner
        /// @param perWallet  new max mint per wallet
        function setMaxMintAmountPerWallet(uint256 perWallet) public onlyOwner{
          maxMintAmountPerWallet = perWallet;
        }  
        
        /// @dev only owner
        /// @param perWallet set free number of nft per wallet
        function setnumberOfFreeNFTs(uint256 perWallet) public onlyOwner{
          numberOfFreeNFTs = perWallet;
        }            

        // ================================ Withdraw Function ====================

        /// @notice withdraw ether from contract.
        /// @dev only owner function
        function withdraw() public onlyOwner nonReentrant{
          

          

        (bool owner, ) = payable(owner()).call{value: address(this).balance}('');
        require(owner);
        }
        // =================== Blue Functions (View Only) ====================

        /// @dev return uri of token ID
        /// @param tokenId  token ID to find uri for
        ///@return value for 'tokenId uri'
        function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) {
          if (!_exists(tokenId)) revert TokenNotExisting();   

        

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
        : '';
        }
        
        /// @dev tokenId to start (1)
        function _startTokenId() internal view virtual override returns (uint256) {
          return 1;
        }

        ///@dev maxSupply of token
        /// @return max supply
        function _baseURI() internal view virtual override returns (string memory) {
          return baseURL;
        }

    
        /// @dev internal function to 
        /// @param from  user address where token belongs
        /// @param to  user address
        /// @param tokenId  number of tokenId
          function transferFrom(address from, address to, uint256 tokenId) public payable  override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
        }
        
        /// @dev internal function to 
        /// @param from  user address where token belongs
        /// @param to  user address
        /// @param tokenId  number of tokenId
        function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
        }

        /// @dev internal function to 
        /// @param from  user address where token belongs
        /// @param to  user address
        /// @param tokenId  number of tokenId
        function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public payable
        override
        onlyAllowedOperator(from)
        {
        super.safeTransferFrom(from, to, tokenId, data);
        }
        

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"InsufficientFund","type":"error"},{"inputs":[],"name":"InvalidMintAmount","type":"error"},{"inputs":[],"name":"MaxMintWalletExceeded","type":"error"},{"inputs":[],"name":"MaxSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoSmartContract","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TokenNotExisting","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"checkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costOfNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfFreeNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setExtensionURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setbaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setnumberOfFreeNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

6080604052611388600a556005600b556005600c5560405180602001604052806000815250600d90816200003491906200073d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e90816200007b91906200073d565b506000600f5560006010556113886011556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff021916908315150217905550348015620000cf57600080fd5b5060405162003e1738038062003e178339818101604052810190620000f5919062000988565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a81526020017f43525950544f41504553000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f552b30334645000000000000000000000000000000000000000000000000000081525081600290816200018991906200073d565b5080600390816200019b91906200073d565b50620001ac620003ec60201b60201c565b6000819055505050620001d4620001c8620003f560201b60201c565b620003fd60201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003d157801562000297576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200025d92919062000a1e565b600060405180830381600087803b1580156200027857600080fd5b505af11580156200028d573d6000803e3d6000fd5b50505050620003d0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000351576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200031792919062000a1e565b600060405180830381600087803b1580156200033257600080fd5b505af115801562000347573d6000803e3d6000fd5b50505050620003cf565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200039a919062000a4b565b600060405180830381600087803b158015620003b557600080fd5b505af1158015620003ca573d6000803e3d6000fd5b505050505b5b5b505080600d9081620003e491906200073d565b505062000a68565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200054557607f821691505b6020821081036200055b576200055a620004fd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005c57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000586565b620005d1868362000586565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200061e620006186200061284620005e9565b620005f3565b620005e9565b9050919050565b6000819050919050565b6200063a83620005fd565b62000652620006498262000625565b84845462000593565b825550505050565b600090565b620006696200065a565b620006768184846200062f565b505050565b5b818110156200069e57620006926000826200065f565b6001810190506200067c565b5050565b601f821115620006ed57620006b78162000561565b620006c28462000576565b81016020851015620006d2578190505b620006ea620006e18562000576565b8301826200067b565b50505b505050565b600082821c905092915050565b60006200071260001984600802620006f2565b1980831691505092915050565b60006200072d8383620006ff565b9150826002028217905092915050565b6200074882620004c3565b67ffffffffffffffff811115620007645762000763620004ce565b5b6200077082546200052c565b6200077d828285620006a2565b600060209050601f831160018114620007b55760008415620007a0578287015190505b620007ac85826200071f565b8655506200081c565b601f198416620007c58662000561565b60005b82811015620007ef57848901518255600182019150602085019450602081019050620007c8565b868310156200080f57848901516200080b601f891682620006ff565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200085e8262000842565b810181811067ffffffffffffffff8211171562000880576200087f620004ce565b5b80604052505050565b60006200089562000824565b9050620008a3828262000853565b919050565b600067ffffffffffffffff821115620008c657620008c5620004ce565b5b620008d18262000842565b9050602081019050919050565b60005b83811015620008fe578082015181840152602081019050620008e1565b60008484015250505050565b6000620009216200091b84620008a8565b62000889565b90508281526020810184848401111562000940576200093f6200083d565b5b6200094d848285620008de565b509392505050565b600082601f8301126200096d576200096c62000838565b5b81516200097f8482602086016200090a565b91505092915050565b600060208284031215620009a157620009a06200082e565b5b600082015167ffffffffffffffff811115620009c257620009c162000833565b5b620009d08482850162000955565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a0682620009d9565b9050919050565b62000a1881620009f9565b82525050565b600060408201905062000a35600083018562000a0d565b62000a44602083018462000a0d565b9392505050565b600060208201905062000a62600083018462000a0d565b92915050565b61339f8062000a786000396000f3fe6080604052600436106101f95760003560e01c8063766b7d091161010d578063b071401b116100a0578063c204642c1161006f578063c204642c146106a2578063c87b56dd146106cb578063e098ff7314610708578063e985e9c514610733578063f2fde38b14610770576101f9565b8063b071401b14610607578063b0fe641414610630578063b88d4fde1461065b578063bc951b9114610677576101f9565b806394354fd0116100dc57806394354fd01461056c57806395d89b4114610597578063a0712d68146105c2578063a22cb465146105de576101f9565b8063766b7d09146104d85780638456cb59146105015780638da5cb5b1461051857806393e90b2314610543576101f9565b80633ccfd60b11610190578063626ab3b81161015f578063626ab3b8146103f55780636352211e1461041e578063676f26021461045b57806370a0823114610484578063715018a6146104c1576101f9565b80633ccfd60b1461036e57806341f434341461038557806342842e0e146103b05780634d534a7d146103cc576101f9565b806311b4a832116101cc57806311b4a832146102bf57806318160ddd146102fc57806322f4596f1461032757806323b872dd14610352576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612416565b610799565b604051610232919061245e565b60405180910390f35b34801561024757600080fd5b5061025061082b565b60405161025d9190612509565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612561565b6108bd565b60405161029a91906125cf565b60405180910390f35b6102bd60048036038101906102b89190612616565b61093c565b005b3480156102cb57600080fd5b506102e660048036038101906102e19190612561565b610a80565b6040516102f39190612665565b60405180910390f35b34801561030857600080fd5b50610311610b04565b60405161031e9190612665565b60405180910390f35b34801561033357600080fd5b5061033c610b1b565b6040516103499190612665565b60405180910390f35b61036c60048036038101906103679190612680565b610b21565b005b34801561037a57600080fd5b50610383610b70565b005b34801561039157600080fd5b5061039a610c08565b6040516103a79190612732565b60405180910390f35b6103ca60048036038101906103c59190612680565b610c1a565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612882565b610c69565b005b34801561040157600080fd5b5061041c60048036038101906104179190612882565b610c84565b005b34801561042a57600080fd5b5061044560048036038101906104409190612561565b610c9f565b60405161045291906125cf565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612561565b610cb1565b005b34801561049057600080fd5b506104ab60048036038101906104a691906128cb565b610cc3565b6040516104b89190612665565b60405180910390f35b3480156104cd57600080fd5b506104d6610d7b565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190612561565b610d8f565b005b34801561050d57600080fd5b50610516610da1565b005b34801561052457600080fd5b5061052d610dd5565b60405161053a91906125cf565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612561565b610dff565b005b34801561057857600080fd5b50610581610e11565b60405161058e9190612665565b60405180910390f35b3480156105a357600080fd5b506105ac610e17565b6040516105b99190612509565b60405180910390f35b6105dc60048036038101906105d79190612561565b610ea9565b005b3480156105ea57600080fd5b5061060560048036038101906106009190612924565b611063565b005b34801561061357600080fd5b5061062e60048036038101906106299190612561565b61116e565b005b34801561063c57600080fd5b50610645611180565b6040516106529190612665565b60405180910390f35b61067560048036038101906106709190612a05565b611186565b005b34801561068357600080fd5b5061068c6111d7565b6040516106999190612665565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190612b50565b6111dd565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190612561565b611300565b6040516106ff9190612509565b60405180910390f35b34801561071457600080fd5b5061071d61139e565b60405161072a9190612665565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190612bac565b6113a4565b604051610767919061245e565b60405180910390f35b34801561077c57600080fd5b50610797600480360381019061079291906128cb565b611438565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083a90612c1b565b80601f016020809104026020016040519081016040528092919081815260200182805461086690612c1b565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c8826114bb565b6108fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782610c9f565b90508073ffffffffffffffffffffffffffffffffffffffff1661096861151a565b73ffffffffffffffffffffffffffffffffffffffff16146109cb576109948161098f61151a565b6113a4565b6109ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610a8c33610cc3565b83610a979190612c7b565b90506011548111610aad57600f54915050610aff565b6000610ab833610cc3565b148015610ac6575060115481115b15610ae757600083601054610adb9190612caf565b90508092505050610aff565b600083601054610af79190612caf565b905080925050505b919050565b6000610b0e611522565b6001546000540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5f57610b5e3361152b565b5b610b6a848484611628565b50505050565b610b7861194a565b610b806119c8565b6000610b8a610dd5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bad90612d22565b60006040518083038185875af1925050503d8060008114610bea576040519150601f19603f3d011682016040523d82523d6000602084013e610bef565b606091505b5050905080610bfd57600080fd5b50610c06611a17565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5857610c573361152b565b5b610c63848484611a21565b50505050565b610c7161194a565b80600e9081610c809190612ed9565b5050565b610c8c61194a565b80600d9081610c9b9190612ed9565b5050565b6000610caa82611a41565b9050919050565b610cb961194a565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d8361194a565b610d8d6000611b0d565b565b610d9761194a565b80600b8190555050565b610da961194a565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e0761194a565b8060118190555050565b600c5481565b606060038054610e2690612c1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5290612c1b565b8015610e9f5780601f10610e7457610100808354040283529160200191610e9f565b820191906000526020600020905b815481529060010190602001808311610e8257829003601f168201915b5050505050905090565b80600a5481610eb6610b04565b610ec09190612c7b565b1115610ef8576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115610f34576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615610f7b576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b5481610f8933610cc3565b610f939190612c7b565b1115610fcb576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811080610fdb5750600b5481115b15611012576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61101b81610a80565b341015611054576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61105e3384611bd3565b505050565b806007600061107061151a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661111d61151a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611162919061245e565b60405180910390a35050565b61117661194a565b80600c8190555050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111c4576111c33361152b565b5b6111d085858585611bf1565b5050505050565b600b5481565b6111e561194a565b80600a54816111f2610b04565b6111fc9190612c7b565b1115611234576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611270576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff16156112b7576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83518110156112fa576112e78482815181106112d9576112d8612fab565b5b602002602001015184611bd3565b80806112f290612fda565b9150506112ba565b50505050565b606061130b826114bb565b611341576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061134b611c64565b9050600081511161136b5760405180602001604052806000815250611396565b8061137584611cf6565b60405160200161138692919061305e565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61144061194a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a6906130f4565b60405180910390fd5b6114b881611b0d565b50565b6000816114c6611522565b111580156114d5575060005482105b8015611513575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611625576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016115a2929190613114565b602060405180830381865afa1580156115bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e39190613152565b61162457806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161161b91906125cf565b60405180910390fd5b5b50565b600061163382611a41565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461169a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116a684611dc4565b915091506116bc81876116b761151a565b611deb565b611708576116d1866116cc61151a565b6113a4565b611707576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361176e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61177b8686866001611e2f565b801561178657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061185485611830888887611e35565b7c020000000000000000000000000000000000000000000000000000000017611e5d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118da57600060018501905060006004600083815260200190815260200160002054036118d85760005481146118d7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119428686866001611e88565b505050505050565b611952611e8e565b73ffffffffffffffffffffffffffffffffffffffff16611970610dd5565b73ffffffffffffffffffffffffffffffffffffffff16146119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd906131cb565b60405180910390fd5b565b600260095403611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613237565b60405180910390fd5b6002600981905550565b6001600981905550565b611a3c83838360405180602001604052806000815250611186565b505050565b60008082905080611a50611522565b11611ad657600054811015611ad55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ad3575b60008103611ac9576004600083600190039350838152602001908152602001600020549050611a9f565b8092505050611b08565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bed828260405180602001604052806000815250611e96565b5050565b611bfc848484610b21565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c5e57611c2784848484611f33565b611c5d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611c7390612c1b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9f90612c1b565b8015611cec5780601f10611cc157610100808354040283529160200191611cec565b820191906000526020600020905b815481529060010190602001808311611ccf57829003601f168201915b5050505050905090565b606060006001611d0584612083565b01905060008167ffffffffffffffff811115611d2457611d23612757565b5b6040519080825280601f01601f191660200182016040528015611d565781602001600182028036833780820191505090505b509050600082602001820190505b600115611db9578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611dad57611dac613257565b5b04945060008503611d64575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e4c8686846121d6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611ea083836121df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f2e57600080549050600083820390505b611ee06000868380600101945086611f33565b611f16576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ecd578160005414611f2b57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f5961151a565b8786866040518563ffffffff1660e01b8152600401611f7b94939291906132db565b6020604051808303816000875af1925050508015611fb757506040513d601f19601f82011682018060405250810190611fb4919061333c565b60015b612030573d8060008114611fe7576040519150601f19603f3d011682016040523d82523d6000602084013e611fec565b606091505b506000815103612028576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120e1577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120d7576120d6613257565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061211e576d04ee2d6d415b85acef8100000000838161211457612113613257565b5b0492506020810190505b662386f26fc10000831061214d57662386f26fc10000838161214357612142613257565b5b0492506010810190505b6305f5e1008310612176576305f5e100838161216c5761216b613257565b5b0492506008810190505b612710831061219b57612710838161219157612190613257565b5b0492506004810190505b606483106121be57606483816121b4576121b3613257565b5b0492506002810190505b600a83106121cd576001810190505b80915050919050565b60009392505050565b6000805490506000820361221f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61222c6000848385611e2f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122a3836122946000866000611e35565b61229d8561239a565b17611e5d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461234457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612309565b506000820361237f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123956000848385611e88565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123f3816123be565b81146123fe57600080fd5b50565b600081359050612410816123ea565b92915050565b60006020828403121561242c5761242b6123b4565b5b600061243a84828501612401565b91505092915050565b60008115159050919050565b61245881612443565b82525050565b6000602082019050612473600083018461244f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124b3578082015181840152602081019050612498565b60008484015250505050565b6000601f19601f8301169050919050565b60006124db82612479565b6124e58185612484565b93506124f5818560208601612495565b6124fe816124bf565b840191505092915050565b6000602082019050818103600083015261252381846124d0565b905092915050565b6000819050919050565b61253e8161252b565b811461254957600080fd5b50565b60008135905061255b81612535565b92915050565b600060208284031215612577576125766123b4565b5b60006125858482850161254c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125b98261258e565b9050919050565b6125c9816125ae565b82525050565b60006020820190506125e460008301846125c0565b92915050565b6125f3816125ae565b81146125fe57600080fd5b50565b600081359050612610816125ea565b92915050565b6000806040838503121561262d5761262c6123b4565b5b600061263b85828601612601565b925050602061264c8582860161254c565b9150509250929050565b61265f8161252b565b82525050565b600060208201905061267a6000830184612656565b92915050565b600080600060608486031215612699576126986123b4565b5b60006126a786828701612601565b93505060206126b886828701612601565b92505060406126c98682870161254c565b9150509250925092565b6000819050919050565b60006126f86126f36126ee8461258e565b6126d3565b61258e565b9050919050565b600061270a826126dd565b9050919050565b600061271c826126ff565b9050919050565b61272c81612711565b82525050565b60006020820190506127476000830184612723565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61278f826124bf565b810181811067ffffffffffffffff821117156127ae576127ad612757565b5b80604052505050565b60006127c16123aa565b90506127cd8282612786565b919050565b600067ffffffffffffffff8211156127ed576127ec612757565b5b6127f6826124bf565b9050602081019050919050565b82818337600083830152505050565b6000612825612820846127d2565b6127b7565b90508281526020810184848401111561284157612840612752565b5b61284c848285612803565b509392505050565b600082601f8301126128695761286861274d565b5b8135612879848260208601612812565b91505092915050565b600060208284031215612898576128976123b4565b5b600082013567ffffffffffffffff8111156128b6576128b56123b9565b5b6128c284828501612854565b91505092915050565b6000602082840312156128e1576128e06123b4565b5b60006128ef84828501612601565b91505092915050565b61290181612443565b811461290c57600080fd5b50565b60008135905061291e816128f8565b92915050565b6000806040838503121561293b5761293a6123b4565b5b600061294985828601612601565b925050602061295a8582860161290f565b9150509250929050565b600067ffffffffffffffff82111561297f5761297e612757565b5b612988826124bf565b9050602081019050919050565b60006129a86129a384612964565b6127b7565b9050828152602081018484840111156129c4576129c3612752565b5b6129cf848285612803565b509392505050565b600082601f8301126129ec576129eb61274d565b5b81356129fc848260208601612995565b91505092915050565b60008060008060808587031215612a1f57612a1e6123b4565b5b6000612a2d87828801612601565b9450506020612a3e87828801612601565b9350506040612a4f8782880161254c565b925050606085013567ffffffffffffffff811115612a7057612a6f6123b9565b5b612a7c878288016129d7565b91505092959194509250565b600067ffffffffffffffff821115612aa357612aa2612757565b5b602082029050602081019050919050565b600080fd5b6000612acc612ac784612a88565b6127b7565b90508083825260208201905060208402830185811115612aef57612aee612ab4565b5b835b81811015612b185780612b048882612601565b845260208401935050602081019050612af1565b5050509392505050565b600082601f830112612b3757612b3661274d565b5b8135612b47848260208601612ab9565b91505092915050565b60008060408385031215612b6757612b666123b4565b5b600083013567ffffffffffffffff811115612b8557612b846123b9565b5b612b9185828601612b22565b9250506020612ba28582860161254c565b9150509250929050565b60008060408385031215612bc357612bc26123b4565b5b6000612bd185828601612601565b9250506020612be285828601612601565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c3357607f821691505b602082108103612c4657612c45612bec565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c868261252b565b9150612c918361252b565b9250828201905080821115612ca957612ca8612c4c565b5b92915050565b6000612cba8261252b565b9150612cc58361252b565b9250828202612cd38161252b565b91508282048414831517612cea57612ce9612c4c565b5b5092915050565b600081905092915050565b50565b6000612d0c600083612cf1565b9150612d1782612cfc565b600082019050919050565b6000612d2d82612cff565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d5c565b612da38683612d5c565b95508019841693508086168417925050509392505050565b6000612dd6612dd1612dcc8461252b565b6126d3565b61252b565b9050919050565b6000819050919050565b612df083612dbb565b612e04612dfc82612ddd565b848454612d69565b825550505050565b600090565b612e19612e0c565b612e24818484612de7565b505050565b5b81811015612e4857612e3d600082612e11565b600181019050612e2a565b5050565b601f821115612e8d57612e5e81612d37565b612e6784612d4c565b81016020851015612e76578190505b612e8a612e8285612d4c565b830182612e29565b50505b505050565b600082821c905092915050565b6000612eb060001984600802612e92565b1980831691505092915050565b6000612ec98383612e9f565b9150826002028217905092915050565b612ee282612479565b67ffffffffffffffff811115612efb57612efa612757565b5b612f058254612c1b565b612f10828285612e4c565b600060209050601f831160018114612f435760008415612f31578287015190505b612f3b8582612ebd565b865550612fa3565b601f198416612f5186612d37565b60005b82811015612f7957848901518255600182019150602085019450602081019050612f54565b86831015612f965784890151612f92601f891682612e9f565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612fe58261252b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361301757613016612c4c565b5b600182019050919050565b600081905092915050565b600061303882612479565b6130428185613022565b9350613052818560208601612495565b80840191505092915050565b600061306a828561302d565b9150613076828461302d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130de602683612484565b91506130e982613082565b604082019050919050565b6000602082019050818103600083015261310d816130d1565b9050919050565b600060408201905061312960008301856125c0565b61313660208301846125c0565b9392505050565b60008151905061314c816128f8565b92915050565b600060208284031215613168576131676123b4565b5b60006131768482850161313d565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131b5602083612484565b91506131c08261317f565b602082019050919050565b600060208201905081810360008301526131e4816131a8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613221601f83612484565b915061322c826131eb565b602082019050919050565b6000602082019050818103600083015261325081613214565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006132ad82613286565b6132b78185613291565b93506132c7818560208601612495565b6132d0816124bf565b840191505092915050565b60006080820190506132f060008301876125c0565b6132fd60208301866125c0565b61330a6040830185612656565b818103606083015261331c81846132a2565b905095945050505050565b600081519050613336816123ea565b92915050565b600060208284031215613352576133516123b4565b5b600061336084828501613327565b9150509291505056fea264697066735822122073a057cfecec89ce9ba9c8bfe1e819bea1c58a3515c78aa313217d221705d16964736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a63596d6659427071556935366431396e696f47326b67446d33725970696179796a347774414546566251432f00000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063766b7d091161010d578063b071401b116100a0578063c204642c1161006f578063c204642c146106a2578063c87b56dd146106cb578063e098ff7314610708578063e985e9c514610733578063f2fde38b14610770576101f9565b8063b071401b14610607578063b0fe641414610630578063b88d4fde1461065b578063bc951b9114610677576101f9565b806394354fd0116100dc57806394354fd01461056c57806395d89b4114610597578063a0712d68146105c2578063a22cb465146105de576101f9565b8063766b7d09146104d85780638456cb59146105015780638da5cb5b1461051857806393e90b2314610543576101f9565b80633ccfd60b11610190578063626ab3b81161015f578063626ab3b8146103f55780636352211e1461041e578063676f26021461045b57806370a0823114610484578063715018a6146104c1576101f9565b80633ccfd60b1461036e57806341f434341461038557806342842e0e146103b05780634d534a7d146103cc576101f9565b806311b4a832116101cc57806311b4a832146102bf57806318160ddd146102fc57806322f4596f1461032757806323b872dd14610352576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612416565b610799565b604051610232919061245e565b60405180910390f35b34801561024757600080fd5b5061025061082b565b60405161025d9190612509565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612561565b6108bd565b60405161029a91906125cf565b60405180910390f35b6102bd60048036038101906102b89190612616565b61093c565b005b3480156102cb57600080fd5b506102e660048036038101906102e19190612561565b610a80565b6040516102f39190612665565b60405180910390f35b34801561030857600080fd5b50610311610b04565b60405161031e9190612665565b60405180910390f35b34801561033357600080fd5b5061033c610b1b565b6040516103499190612665565b60405180910390f35b61036c60048036038101906103679190612680565b610b21565b005b34801561037a57600080fd5b50610383610b70565b005b34801561039157600080fd5b5061039a610c08565b6040516103a79190612732565b60405180910390f35b6103ca60048036038101906103c59190612680565b610c1a565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612882565b610c69565b005b34801561040157600080fd5b5061041c60048036038101906104179190612882565b610c84565b005b34801561042a57600080fd5b5061044560048036038101906104409190612561565b610c9f565b60405161045291906125cf565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190612561565b610cb1565b005b34801561049057600080fd5b506104ab60048036038101906104a691906128cb565b610cc3565b6040516104b89190612665565b60405180910390f35b3480156104cd57600080fd5b506104d6610d7b565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190612561565b610d8f565b005b34801561050d57600080fd5b50610516610da1565b005b34801561052457600080fd5b5061052d610dd5565b60405161053a91906125cf565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612561565b610dff565b005b34801561057857600080fd5b50610581610e11565b60405161058e9190612665565b60405180910390f35b3480156105a357600080fd5b506105ac610e17565b6040516105b99190612509565b60405180910390f35b6105dc60048036038101906105d79190612561565b610ea9565b005b3480156105ea57600080fd5b5061060560048036038101906106009190612924565b611063565b005b34801561061357600080fd5b5061062e60048036038101906106299190612561565b61116e565b005b34801561063c57600080fd5b50610645611180565b6040516106529190612665565b60405180910390f35b61067560048036038101906106709190612a05565b611186565b005b34801561068357600080fd5b5061068c6111d7565b6040516106999190612665565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190612b50565b6111dd565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190612561565b611300565b6040516106ff9190612509565b60405180910390f35b34801561071457600080fd5b5061071d61139e565b60405161072a9190612665565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190612bac565b6113a4565b604051610767919061245e565b60405180910390f35b34801561077c57600080fd5b50610797600480360381019061079291906128cb565b611438565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108245750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083a90612c1b565b80601f016020809104026020016040519081016040528092919081815260200182805461086690612c1b565b80156108b35780601f10610888576101008083540402835291602001916108b3565b820191906000526020600020905b81548152906001019060200180831161089657829003601f168201915b5050505050905090565b60006108c8826114bb565b6108fe576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094782610c9f565b90508073ffffffffffffffffffffffffffffffffffffffff1661096861151a565b73ffffffffffffffffffffffffffffffffffffffff16146109cb576109948161098f61151a565b6113a4565b6109ca576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610a8c33610cc3565b83610a979190612c7b565b90506011548111610aad57600f54915050610aff565b6000610ab833610cc3565b148015610ac6575060115481115b15610ae757600083601054610adb9190612caf565b90508092505050610aff565b600083601054610af79190612caf565b905080925050505b919050565b6000610b0e611522565b6001546000540303905090565b600a5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5f57610b5e3361152b565b5b610b6a848484611628565b50505050565b610b7861194a565b610b806119c8565b6000610b8a610dd5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bad90612d22565b60006040518083038185875af1925050503d8060008114610bea576040519150601f19603f3d011682016040523d82523d6000602084013e610bef565b606091505b5050905080610bfd57600080fd5b50610c06611a17565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5857610c573361152b565b5b610c63848484611a21565b50505050565b610c7161194a565b80600e9081610c809190612ed9565b5050565b610c8c61194a565b80600d9081610c9b9190612ed9565b5050565b6000610caa82611a41565b9050919050565b610cb961194a565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d8361194a565b610d8d6000611b0d565b565b610d9761194a565b80600b8190555050565b610da961194a565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e0761194a565b8060118190555050565b600c5481565b606060038054610e2690612c1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5290612c1b565b8015610e9f5780601f10610e7457610100808354040283529160200191610e9f565b820191906000526020600020905b815481529060010190602001808311610e8257829003601f168201915b5050505050905090565b80600a5481610eb6610b04565b610ec09190612c7b565b1115610ef8576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115610f34576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615610f7b576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b5481610f8933610cc3565b610f939190612c7b565b1115610fcb576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000811080610fdb5750600b5481115b15611012576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61101b81610a80565b341015611054576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61105e3384611bd3565b505050565b806007600061107061151a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661111d61151a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611162919061245e565b60405180910390a35050565b61117661194a565b80600c8190555050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111c4576111c33361152b565b5b6111d085858585611bf1565b5050505050565b600b5481565b6111e561194a565b80600a54816111f2610b04565b6111fc9190612c7b565b1115611234576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611270576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff16156112b7576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b83518110156112fa576112e78482815181106112d9576112d8612fab565b5b602002602001015184611bd3565b80806112f290612fda565b9150506112ba565b50505050565b606061130b826114bb565b611341576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061134b611c64565b9050600081511161136b5760405180602001604052806000815250611396565b8061137584611cf6565b60405160200161138692919061305e565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61144061194a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a6906130f4565b60405180910390fd5b6114b881611b0d565b50565b6000816114c6611522565b111580156114d5575060005482105b8015611513575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611625576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016115a2929190613114565b602060405180830381865afa1580156115bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e39190613152565b61162457806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161161b91906125cf565b60405180910390fd5b5b50565b600061163382611a41565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461169a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116a684611dc4565b915091506116bc81876116b761151a565b611deb565b611708576116d1866116cc61151a565b6113a4565b611707576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361176e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61177b8686866001611e2f565b801561178657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061185485611830888887611e35565b7c020000000000000000000000000000000000000000000000000000000017611e5d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118da57600060018501905060006004600083815260200190815260200160002054036118d85760005481146118d7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119428686866001611e88565b505050505050565b611952611e8e565b73ffffffffffffffffffffffffffffffffffffffff16611970610dd5565b73ffffffffffffffffffffffffffffffffffffffff16146119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd906131cb565b60405180910390fd5b565b600260095403611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613237565b60405180910390fd5b6002600981905550565b6001600981905550565b611a3c83838360405180602001604052806000815250611186565b505050565b60008082905080611a50611522565b11611ad657600054811015611ad55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ad3575b60008103611ac9576004600083600190039350838152602001908152602001600020549050611a9f565b8092505050611b08565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bed828260405180602001604052806000815250611e96565b5050565b611bfc848484610b21565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c5e57611c2784848484611f33565b611c5d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600d8054611c7390612c1b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9f90612c1b565b8015611cec5780601f10611cc157610100808354040283529160200191611cec565b820191906000526020600020905b815481529060010190602001808311611ccf57829003601f168201915b5050505050905090565b606060006001611d0584612083565b01905060008167ffffffffffffffff811115611d2457611d23612757565b5b6040519080825280601f01601f191660200182016040528015611d565781602001600182028036833780820191505090505b509050600082602001820190505b600115611db9578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611dad57611dac613257565b5b04945060008503611d64575b819350505050919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e4c8686846121d6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611ea083836121df565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f2e57600080549050600083820390505b611ee06000868380600101945086611f33565b611f16576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ecd578160005414611f2b57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f5961151a565b8786866040518563ffffffff1660e01b8152600401611f7b94939291906132db565b6020604051808303816000875af1925050508015611fb757506040513d601f19601f82011682018060405250810190611fb4919061333c565b60015b612030573d8060008114611fe7576040519150601f19603f3d011682016040523d82523d6000602084013e611fec565b606091505b506000815103612028576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120e1577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120d7576120d6613257565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061211e576d04ee2d6d415b85acef8100000000838161211457612113613257565b5b0492506020810190505b662386f26fc10000831061214d57662386f26fc10000838161214357612142613257565b5b0492506010810190505b6305f5e1008310612176576305f5e100838161216c5761216b613257565b5b0492506008810190505b612710831061219b57612710838161219157612190613257565b5b0492506004810190505b606483106121be57606483816121b4576121b3613257565b5b0492506002810190505b600a83106121cd576001810190505b80915050919050565b60009392505050565b6000805490506000820361221f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61222c6000848385611e2f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122a3836122946000866000611e35565b61229d8561239a565b17611e5d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461234457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612309565b506000820361237f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123956000848385611e88565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123f3816123be565b81146123fe57600080fd5b50565b600081359050612410816123ea565b92915050565b60006020828403121561242c5761242b6123b4565b5b600061243a84828501612401565b91505092915050565b60008115159050919050565b61245881612443565b82525050565b6000602082019050612473600083018461244f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124b3578082015181840152602081019050612498565b60008484015250505050565b6000601f19601f8301169050919050565b60006124db82612479565b6124e58185612484565b93506124f5818560208601612495565b6124fe816124bf565b840191505092915050565b6000602082019050818103600083015261252381846124d0565b905092915050565b6000819050919050565b61253e8161252b565b811461254957600080fd5b50565b60008135905061255b81612535565b92915050565b600060208284031215612577576125766123b4565b5b60006125858482850161254c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125b98261258e565b9050919050565b6125c9816125ae565b82525050565b60006020820190506125e460008301846125c0565b92915050565b6125f3816125ae565b81146125fe57600080fd5b50565b600081359050612610816125ea565b92915050565b6000806040838503121561262d5761262c6123b4565b5b600061263b85828601612601565b925050602061264c8582860161254c565b9150509250929050565b61265f8161252b565b82525050565b600060208201905061267a6000830184612656565b92915050565b600080600060608486031215612699576126986123b4565b5b60006126a786828701612601565b93505060206126b886828701612601565b92505060406126c98682870161254c565b9150509250925092565b6000819050919050565b60006126f86126f36126ee8461258e565b6126d3565b61258e565b9050919050565b600061270a826126dd565b9050919050565b600061271c826126ff565b9050919050565b61272c81612711565b82525050565b60006020820190506127476000830184612723565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61278f826124bf565b810181811067ffffffffffffffff821117156127ae576127ad612757565b5b80604052505050565b60006127c16123aa565b90506127cd8282612786565b919050565b600067ffffffffffffffff8211156127ed576127ec612757565b5b6127f6826124bf565b9050602081019050919050565b82818337600083830152505050565b6000612825612820846127d2565b6127b7565b90508281526020810184848401111561284157612840612752565b5b61284c848285612803565b509392505050565b600082601f8301126128695761286861274d565b5b8135612879848260208601612812565b91505092915050565b600060208284031215612898576128976123b4565b5b600082013567ffffffffffffffff8111156128b6576128b56123b9565b5b6128c284828501612854565b91505092915050565b6000602082840312156128e1576128e06123b4565b5b60006128ef84828501612601565b91505092915050565b61290181612443565b811461290c57600080fd5b50565b60008135905061291e816128f8565b92915050565b6000806040838503121561293b5761293a6123b4565b5b600061294985828601612601565b925050602061295a8582860161290f565b9150509250929050565b600067ffffffffffffffff82111561297f5761297e612757565b5b612988826124bf565b9050602081019050919050565b60006129a86129a384612964565b6127b7565b9050828152602081018484840111156129c4576129c3612752565b5b6129cf848285612803565b509392505050565b600082601f8301126129ec576129eb61274d565b5b81356129fc848260208601612995565b91505092915050565b60008060008060808587031215612a1f57612a1e6123b4565b5b6000612a2d87828801612601565b9450506020612a3e87828801612601565b9350506040612a4f8782880161254c565b925050606085013567ffffffffffffffff811115612a7057612a6f6123b9565b5b612a7c878288016129d7565b91505092959194509250565b600067ffffffffffffffff821115612aa357612aa2612757565b5b602082029050602081019050919050565b600080fd5b6000612acc612ac784612a88565b6127b7565b90508083825260208201905060208402830185811115612aef57612aee612ab4565b5b835b81811015612b185780612b048882612601565b845260208401935050602081019050612af1565b5050509392505050565b600082601f830112612b3757612b3661274d565b5b8135612b47848260208601612ab9565b91505092915050565b60008060408385031215612b6757612b666123b4565b5b600083013567ffffffffffffffff811115612b8557612b846123b9565b5b612b9185828601612b22565b9250506020612ba28582860161254c565b9150509250929050565b60008060408385031215612bc357612bc26123b4565b5b6000612bd185828601612601565b9250506020612be285828601612601565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c3357607f821691505b602082108103612c4657612c45612bec565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c868261252b565b9150612c918361252b565b9250828201905080821115612ca957612ca8612c4c565b5b92915050565b6000612cba8261252b565b9150612cc58361252b565b9250828202612cd38161252b565b91508282048414831517612cea57612ce9612c4c565b5b5092915050565b600081905092915050565b50565b6000612d0c600083612cf1565b9150612d1782612cfc565b600082019050919050565b6000612d2d82612cff565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d5c565b612da38683612d5c565b95508019841693508086168417925050509392505050565b6000612dd6612dd1612dcc8461252b565b6126d3565b61252b565b9050919050565b6000819050919050565b612df083612dbb565b612e04612dfc82612ddd565b848454612d69565b825550505050565b600090565b612e19612e0c565b612e24818484612de7565b505050565b5b81811015612e4857612e3d600082612e11565b600181019050612e2a565b5050565b601f821115612e8d57612e5e81612d37565b612e6784612d4c565b81016020851015612e76578190505b612e8a612e8285612d4c565b830182612e29565b50505b505050565b600082821c905092915050565b6000612eb060001984600802612e92565b1980831691505092915050565b6000612ec98383612e9f565b9150826002028217905092915050565b612ee282612479565b67ffffffffffffffff811115612efb57612efa612757565b5b612f058254612c1b565b612f10828285612e4c565b600060209050601f831160018114612f435760008415612f31578287015190505b612f3b8582612ebd565b865550612fa3565b601f198416612f5186612d37565b60005b82811015612f7957848901518255600182019150602085019450602081019050612f54565b86831015612f965784890151612f92601f891682612e9f565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612fe58261252b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361301757613016612c4c565b5b600182019050919050565b600081905092915050565b600061303882612479565b6130428185613022565b9350613052818560208601612495565b80840191505092915050565b600061306a828561302d565b9150613076828461302d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130de602683612484565b91506130e982613082565b604082019050919050565b6000602082019050818103600083015261310d816130d1565b9050919050565b600060408201905061312960008301856125c0565b61313660208301846125c0565b9392505050565b60008151905061314c816128f8565b92915050565b600060208284031215613168576131676123b4565b5b60006131768482850161313d565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131b5602083612484565b91506131c08261317f565b602082019050919050565b600060208201905081810360008301526131e4816131a8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613221601f83612484565b915061322c826131eb565b602082019050919050565b6000602082019050818103600083015261325081613214565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006132ad82613286565b6132b78185613291565b93506132c7818560208601612495565b6132d0816124bf565b840191505092915050565b60006080820190506132f060008301876125c0565b6132fd60208301866125c0565b61330a6040830185612656565b818103606083015261331c81846132a2565b905095945050505050565b600081519050613336816123ea565b92915050565b600060208284031215613352576133516123b4565b5b600061336084828501613327565b9150509291505056fea264697066735822122073a057cfecec89ce9ba9c8bfe1e819bea1c58a3515c78aa313217d221705d16964736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a63596d6659427071556935366431396e696f47326b67446d33725970696179796a347774414546566251432f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmZcYmfYBpqUi56d19nioG2kgDm3rYpiayyj4wtAEFVbQC/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5a63596d6659427071556935366431396e696f47326b67
Arg [3] : 446d33725970696179796a347774414546566251432f00000000000000000000


Deployed Bytecode Sourcemap

79217:7313:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42537:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43439:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49930:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49363:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81526:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39190:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79361:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85514:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84156:197;;;;;;;;;;;;;:::i;:::-;;3490:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85893:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82978:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82829:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44832:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83194:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40374:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78344:103;;;;;;;;;;;;;:::i;:::-;;83596:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82671:75;;;;;;;;;;;;;:::i;:::-;;77696:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83840:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79464:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43615:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81170:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50488:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83387:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79688:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86271:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79408:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82315:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84584:367;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79639:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50879:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78602:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42537:639;42622:4;42961:10;42946:25;;:11;:25;;;;:102;;;;43038:10;43023:25;;:11;:25;;;;42946:102;:179;;;;43115:10;43100:25;;:11;:25;;;;42946:179;42926:199;;42537:639;;;:::o;43439:100::-;43493:13;43526:5;43519:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43439:100;:::o;49930:218::-;50006:7;50031:16;50039:7;50031;:16::i;:::-;50026:64;;50056:34;;;;;;;;;;;;;;50026:64;50110:15;:24;50126:7;50110:24;;;;;;;;;;;:30;;;;;;;;;;;;50103:37;;49930:218;;;:::o;49363:408::-;49452:13;49468:16;49476:7;49468;:16::i;:::-;49452:32;;49524:5;49501:28;;:19;:17;:19::i;:::-;:28;;;49497:175;;49549:44;49566:5;49573:19;:17;:19::i;:::-;49549:16;:44::i;:::-;49544:128;;49621:35;;;;;;;;;;;;;;49544:128;49497:175;49717:2;49684:15;:24;49700:7;49684:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49755:7;49751:2;49735:28;;49744:5;49735:28;;;;;;;;;;;;49441:330;49363:408;;:::o;81526:529::-;81587:7;81609:18;81644:21;81654:10;81644:9;:21::i;:::-;81630:11;:35;;;;:::i;:::-;81609:56;;81697:16;;81683:10;:30;81678:366;;81737:12;;81730:19;;;;;81678:366;81799:1;81774:21;81784:10;81774:9;:21::i;:::-;:26;81773:63;;;;;81819:16;;81806:10;:29;81773:63;81769:275;;;81853:13;81881:11;81869:9;;:23;;;;:::i;:::-;81853:39;;81912:5;81905:12;;;;;;81769:275;81962:14;81991:11;81979:9;;:23;;;;:::i;:::-;81962:40;;82022:6;82015:13;;;;81526:529;;;;:::o;39190:323::-;39251:7;39479:15;:13;:15::i;:::-;39464:12;;39448:13;;:28;:46;39441:53;;39190:323;:::o;79361:32::-;;;;:::o;85514:176::-;85624:4;4839:10;4831:18;;:4;:18;;;4827:83;;4866:32;4887:10;4866:20;:32::i;:::-;4827:83;85641:37:::1;85660:4;85666:2;85670:7;85641:18;:37::i;:::-;85514:176:::0;;;;:::o;84156:197::-;77582:13;:11;:13::i;:::-;8333:21:::1;:19;:21::i;:::-;84245:10:::2;84269:7;:5;:7::i;:::-;84261:21;;84290;84261:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84244:72;;;84335:5;84327:14;;;::::0;::::2;;84205:148;8377:20:::1;:18;:20::i;:::-;84156:197::o:0;3490:143::-;3590:42;3490:143;:::o;85893:183::-;86006:4;4839:10;4831:18;;:4;:18;;;4827:83;;4866:32;4887:10;4866:20;:32::i;:::-;4827:83;86023:41:::1;86046:4;86052:2;86056:7;86023:22;:41::i;:::-;85893:183:::0;;;;:::o;82978:103::-;77582:13;:11;:13::i;:::-;83066:3:::1;83051:12;:18;;;;;;:::i;:::-;;82978:103:::0;:::o;82829:93::-;77582:13;:11;:13::i;:::-;82907:3:::1;82897:7;:13;;;;;;:::i;:::-;;82829:93:::0;:::o;44832:152::-;44904:7;44947:27;44966:7;44947:18;:27::i;:::-;44924:52;;44832:152;;;:::o;83194:95::-;77582:13;:11;:13::i;:::-;83272:5:::1;83260:9;:17;;;;83194:95:::0;:::o;40374:233::-;40446:7;40487:1;40470:19;;:5;:19;;;40466:60;;40498:28;;;;;;;;;;;;;;40466:60;34533:13;40544:18;:25;40563:5;40544:25;;;;;;;;;;;;;;;;:55;40537:62;;40374:233;;;:::o;78344:103::-;77582:13;:11;:13::i;:::-;78409:30:::1;78436:1;78409:18;:30::i;:::-;78344:103::o:0;83596:129::-;77582:13;:11;:13::i;:::-;83704:9:::1;83679:22;:34;;;;83596:129:::0;:::o;82671:75::-;77582:13;:11;:13::i;:::-;82728:6:::1;;;;;;;;;;;82727:7;82718:6;;:16;;;;;;;;;;;;;;;;;;82671:75::o:0;77696:87::-;77742:7;77769:6;;;;;;;;;;;77762:13;;77696:87;:::o;83840:117::-;77582:13;:11;:13::i;:::-;83936:9:::1;83917:16;:28;;;;83840:117:::0;:::o;79464:37::-;;;;:::o;43615:104::-;43671:13;43704:7;43697:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43615:104;:::o;81170:194::-;81235:11;80435:10;;80421:11;80404:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;80400:65;;;80454:11;;;;;;;;;;;;;;80400:65;80498:18;;80484:11;:32;80480:64;;;80525:19;;;;;;;;;;;;;;80480:64;80562:6;;;;;;;;;;;80559:34;;;80577:16;;;;;;;;;;;;;;80559:34;81268:11:::1;80739:22;;80725:11;80701:21;80711:10;80701:9;:21::i;:::-;:35;;;;:::i;:::-;:60;80698:95;;;80770:23;;;;;;;;;;;;;;80698:95;80826:1;80812:11;:15;:55;;;;80845:22;;80831:11;:36;80812:55;80808:87;;;80876:19;;;;;;;;;;;;;;80808:87;80928:22;80938:11;80928:9;:22::i;:::-;80916:9;:34;80912:65;;;80959:18;;;;;;;;;;;;;;80912:65;81316:34:::2;81326:10;81338:11;81316:9;:34::i;:::-;80608:1:::1;81170:194:::0;;:::o;50488:234::-;50635:8;50583:18;:39;50602:19;:17;:19::i;:::-;50583:39;;;;;;;;;;;;;;;:49;50623:8;50583:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;50695:8;50659:55;;50674:19;:17;:19::i;:::-;50659:55;;;50705:8;50659:55;;;;;;:::i;:::-;;;;;;;;50488:234;;:::o;83387:113::-;77582:13;:11;:13::i;:::-;83483:5:::1;83462:18;:26;;;;83387:113:::0;:::o;79688:38::-;;;;:::o;86271:244::-;86430:4;4839:10;4831:18;;:4;:18;;;4827:83;;4866:32;4887:10;4866:20;:32::i;:::-;4827:83;86456:47:::1;86479:4;86485:2;86489:7;86498:4;86456:22;:47::i;:::-;86271:244:::0;;;;;:::o;79408:41::-;;;;:::o;82315:224::-;77582:13;:11;:13::i;:::-;82406:6:::1;80435:10;;80421:11;80404:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;80400:65;;;80454:11;;;;;;;;;;;;;;80400:65;80498:18;;80484:11;:32;80480:64;;;80525:19;;;;;;;;;;;;;;80480:64;80562:6;;;;;;;;;;;80559:34;;;80577:16;;;;;;;;;;;;;;80559:34;82431:9:::2;82427:101;82450:8;:15;82446:1;:19;82427:101;;;82484:30;82494:8;82503:1;82494:11;;;;;;;;:::i;:::-;;;;;;;;82507:6;82484:9;:30::i;:::-;82467:3;;;;;:::i;:::-;;;;82427:101;;;;77606:1:::1;82315:224:::0;;:::o;84584:367::-;84658:13;84691:16;84699:7;84691;:16::i;:::-;84686:48;;84716:18;;;;;;;;;;;;;;84686:48;84762:28;84793:10;:8;:10::i;:::-;84762:41;;84852:1;84827:14;84821:28;:32;:118;;;;;;;;;;;;;;;;;84889:14;84905:18;:7;:16;:18::i;:::-;84872:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84821:118;84814:125;;;84584:367;;;:::o;79639:34::-;;;;:::o;50879:164::-;50976:4;51000:18;:25;51019:5;51000:25;;;;;;;;;;;;;;;:35;51026:8;51000:35;;;;;;;;;;;;;;;;;;;;;;;;;50993:42;;50879:164;;;;:::o;78602:201::-;77582:13;:11;:13::i;:::-;78711:1:::1;78691:22;;:8;:22;;::::0;78683:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;78767:28;78786:8;78767:18;:28::i;:::-;78602:201:::0;:::o;51301:282::-;51366:4;51422:7;51403:15;:13;:15::i;:::-;:26;;:66;;;;;51456:13;;51446:7;:23;51403:66;:153;;;;;51555:1;35309:8;51507:17;:26;51525:7;51507:26;;;;;;;;;;;;:44;:49;51403:153;51383:173;;51301:282;;;:::o;73609:105::-;73669:7;73696:10;73689:17;;73609:105;:::o;85010:107::-;85075:7;85104:1;85097:8;;85010:107;:::o;5069:419::-;5308:1;3590:42;5260:45;;;:49;5256:225;;;3590:42;5331;;;5382:4;5389:8;5331:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5326:144;;5445:8;5426:28;;;;;;;;;;;:::i;:::-;;;;;;;;5326:144;5256:225;5069:419;:::o;53569:2825::-;53711:27;53741;53760:7;53741:18;:27::i;:::-;53711:57;;53826:4;53785:45;;53801:19;53785:45;;;53781:86;;53839:28;;;;;;;;;;;;;;53781:86;53881:27;53910:23;53937:35;53964:7;53937:26;:35::i;:::-;53880:92;;;;54072:68;54097:15;54114:4;54120:19;:17;:19::i;:::-;54072:24;:68::i;:::-;54067:180;;54160:43;54177:4;54183:19;:17;:19::i;:::-;54160:16;:43::i;:::-;54155:92;;54212:35;;;;;;;;;;;;;;54155:92;54067:180;54278:1;54264:16;;:2;:16;;;54260:52;;54289:23;;;;;;;;;;;;;;54260:52;54325:43;54347:4;54353:2;54357:7;54366:1;54325:21;:43::i;:::-;54461:15;54458:160;;;54601:1;54580:19;54573:30;54458:160;54998:18;:24;55017:4;54998:24;;;;;;;;;;;;;;;;54996:26;;;;;;;;;;;;55067:18;:22;55086:2;55067:22;;;;;;;;;;;;;;;;55065:24;;;;;;;;;;;55389:146;55426:2;55475:45;55490:4;55496:2;55500:19;55475:14;:45::i;:::-;35589:8;55447:73;55389:18;:146::i;:::-;55360:17;:26;55378:7;55360:26;;;;;;;;;;;:175;;;;55706:1;35589:8;55655:19;:47;:52;55651:627;;55728:19;55760:1;55750:7;:11;55728:33;;55917:1;55883:17;:30;55901:11;55883:30;;;;;;;;;;;;:35;55879:384;;56021:13;;56006:11;:28;56002:242;;56201:19;56168:17;:30;56186:11;56168:30;;;;;;;;;;;:52;;;;56002:242;55879:384;55709:569;55651:627;56325:7;56321:2;56306:27;;56315:4;56306:27;;;;;;;;;;;;56344:42;56365:4;56371:2;56375:7;56384:1;56344:20;:42::i;:::-;53700:2694;;;53569:2825;;;:::o;77861:132::-;77936:12;:10;:12::i;:::-;77925:23;;:7;:5;:7::i;:::-;:23;;;77917:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77861:132::o;8413:293::-;7815:1;8547:7;;:19;8539:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7815:1;8680:7;:18;;;;8413:293::o;8714:213::-;7771:1;8897:7;:22;;;;8714:213::o;56490:193::-;56636:39;56653:4;56659:2;56663:7;56636:39;;;;;;;;;;;;:16;:39::i;:::-;56490:193;;;:::o;45987:1275::-;46054:7;46074:12;46089:7;46074:22;;46157:4;46138:15;:13;:15::i;:::-;:23;46134:1061;;46191:13;;46184:4;:20;46180:1015;;;46229:14;46246:17;:23;46264:4;46246:23;;;;;;;;;;;;46229:40;;46363:1;35309:8;46335:6;:24;:29;46331:845;;47000:113;47017:1;47007:6;:11;47000:113;;47060:17;:25;47078:6;;;;;;;47060:25;;;;;;;;;;;;47051:34;;47000:113;;;47146:6;47139:13;;;;;;46331:845;46206:989;46180:1015;46134:1061;47223:31;;;;;;;;;;;;;;45987:1275;;;;:::o;78963:191::-;79037:16;79056:6;;;;;;;;;;;79037:25;;79082:8;79073:6;;:17;;;;;;;;;;;;;;;;;;79137:8;79106:40;;79127:8;79106:40;;;;;;;;;;;;79026:128;78963:191;:::o;67441:112::-;67518:27;67528:2;67532:8;67518:27;;;;;;;;;;;;:9;:27::i;:::-;67441:112;;:::o;57281:407::-;57456:31;57469:4;57475:2;57479:7;57456:12;:31::i;:::-;57520:1;57502:2;:14;;;:19;57498:183;;57541:56;57572:4;57578:2;57582:7;57591:5;57541:30;:56::i;:::-;57536:145;;57625:40;;;;;;;;;;;;;;57536:145;57498:183;57281:407;;;;:::o;85197:114::-;85257:13;85292:7;85285:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85197:114;:::o;22239:716::-;22295:13;22346:14;22383:1;22363:17;22374:5;22363:10;:17::i;:::-;:21;22346:38;;22399:20;22433:6;22422:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22399:41;;22455:11;22584:6;22580:2;22576:15;22568:6;22564:28;22557:35;;22621:288;22628:4;22621:288;;;22653:5;;;;;;;;22795:8;22790:2;22783:5;22779:14;22774:30;22769:3;22761:44;22851:2;22842:11;;;;;;:::i;:::-;;;;;22885:1;22876:5;:10;22621:288;22872:21;22621:288;22930:6;22923:13;;;;;22239:716;;;:::o;52464:485::-;52566:27;52595:23;52636:38;52677:15;:24;52693:7;52677:24;;;;;;;;;;;52636:65;;52854:18;52831:41;;52911:19;52905:26;52886:45;;52816:126;52464:485;;;:::o;51692:659::-;51841:11;52006:16;51999:5;51995:28;51986:37;;52166:16;52155:9;52151:32;52138:45;;52316:15;52305:9;52302:30;52294:5;52283:9;52280:20;52277:56;52267:66;;51692:659;;;;;:::o;58350:159::-;;;;;:::o;72918:311::-;73053:7;73073:16;35713:3;73099:19;:41;;73073:68;;35713:3;73167:31;73178:4;73184:2;73188:9;73167:10;:31::i;:::-;73159:40;;:62;;73152:69;;;72918:311;;;;;:::o;47810:450::-;47890:14;48058:16;48051:5;48047:28;48038:37;;48235:5;48221:11;48196:23;48192:41;48189:52;48182:5;48179:63;48169:73;;47810:450;;;;:::o;59174:158::-;;;;;:::o;76247:98::-;76300:7;76327:10;76320:17;;76247:98;:::o;66668:689::-;66799:19;66805:2;66809:8;66799:5;:19::i;:::-;66878:1;66860:2;:14;;;:19;66856:483;;66900:11;66914:13;;66900:27;;66946:13;66968:8;66962:3;:14;66946:30;;66995:233;67026:62;67065:1;67069:2;67073:7;;;;;;67082:5;67026:30;:62::i;:::-;67021:167;;67124:40;;;;;;;;;;;;;;67021:167;67223:3;67215:5;:11;66995:233;;67310:3;67293:13;;:20;67289:34;;67315:8;;;67289:34;66881:458;;66856:483;66668:689;;;:::o;59772:716::-;59935:4;59981:2;59956:45;;;60002:19;:17;:19::i;:::-;60023:4;60029:7;60038:5;59956:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59952:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60256:1;60239:6;:13;:18;60235:235;;60285:40;;;;;;;;;;;;;;60235:235;60428:6;60422:13;60413:6;60409:2;60405:15;60398:38;59952:529;60125:54;;;60115:64;;;:6;:64;;;;60108:71;;;59772:716;;;;;;:::o;19105:922::-;19158:7;19178:14;19195:1;19178:18;;19245:6;19236:5;:15;19232:102;;19281:6;19272:15;;;;;;:::i;:::-;;;;;19316:2;19306:12;;;;19232:102;19361:6;19352:5;:15;19348:102;;19397:6;19388:15;;;;;;:::i;:::-;;;;;19432:2;19422:12;;;;19348:102;19477:6;19468:5;:15;19464:102;;19513:6;19504:15;;;;;;:::i;:::-;;;;;19548:2;19538:12;;;;19464:102;19593:5;19584;:14;19580:99;;19628:5;19619:14;;;;;;:::i;:::-;;;;;19662:1;19652:11;;;;19580:99;19706:5;19697;:14;19693:99;;19741:5;19732:14;;;;;;:::i;:::-;;;;;19775:1;19765:11;;;;19693:99;19819:5;19810;:14;19806:99;;19854:5;19845:14;;;;;;:::i;:::-;;;;;19888:1;19878:11;;;;19806:99;19932:5;19923;:14;19919:66;;19968:1;19958:11;;;;19919:66;20013:6;20006:13;;;19105:922;;;:::o;72619:147::-;72756:6;72619:147;;;;;:::o;60950:2966::-;61023:20;61046:13;;61023:36;;61086:1;61074:8;:13;61070:44;;61096:18;;;;;;;;;;;;;;61070:44;61127:61;61157:1;61161:2;61165:12;61179:8;61127:21;:61::i;:::-;61671:1;34671:2;61641:1;:26;;61640:32;61628:8;:45;61602:18;:22;61621:2;61602:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;61950:139;61987:2;62041:33;62064:1;62068:2;62072:1;62041:14;:33::i;:::-;62008:30;62029:8;62008:20;:30::i;:::-;:66;61950:18;:139::i;:::-;61916:17;:31;61934:12;61916:31;;;;;;;;;;;:173;;;;62106:16;62137:11;62166:8;62151:12;:23;62137:37;;62687:16;62683:2;62679:25;62667:37;;63059:12;63019:8;62978:1;62916:25;62857:1;62796;62769:335;63430:1;63416:12;63412:20;63370:346;63471:3;63462:7;63459:16;63370:346;;63689:7;63679:8;63676:1;63649:25;63646:1;63643;63638:59;63524:1;63515:7;63511:15;63500:26;;63370:346;;;63374:77;63761:1;63749:8;:13;63745:45;;63771:19;;;;;;;;;;;;;;63745:45;63823:3;63807:13;:19;;;;61376:2462;;63848:60;63877:1;63881:2;63885:12;63899:8;63848:20;:60::i;:::-;61012:2904;60950:2966;;:::o;48362:324::-;48432:14;48665:1;48655:8;48652:15;48626:24;48622:46;48612:56;;48362: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:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:311::-;12686:4;12776:18;12768:6;12765:30;12762:56;;;12798:18;;:::i;:::-;12762:56;12848:4;12840:6;12836:17;12828:25;;12908:4;12902;12898:15;12890:23;;12609:311;;;:::o;12926:117::-;13035:1;13032;13025:12;13066:710;13162:5;13187:81;13203:64;13260:6;13203:64;:::i;:::-;13187:81;:::i;:::-;13178:90;;13288:5;13317:6;13310:5;13303:21;13351:4;13344:5;13340:16;13333:23;;13404:4;13396:6;13392:17;13384:6;13380:30;13433:3;13425:6;13422:15;13419:122;;;13452:79;;:::i;:::-;13419:122;13567:6;13550:220;13584:6;13579:3;13576:15;13550:220;;;13659:3;13688:37;13721:3;13709:10;13688:37;:::i;:::-;13683:3;13676:50;13755:4;13750:3;13746:14;13739:21;;13626:144;13610:4;13605:3;13601:14;13594:21;;13550:220;;;13554:21;13168:608;;13066:710;;;;;:::o;13799:370::-;13870:5;13919:3;13912:4;13904:6;13900:17;13896:27;13886:122;;13927:79;;:::i;:::-;13886:122;14044:6;14031:20;14069:94;14159:3;14151:6;14144:4;14136:6;14132:17;14069:94;:::i;:::-;14060:103;;13876:293;13799:370;;;;:::o;14175:684::-;14268:6;14276;14325:2;14313:9;14304:7;14300:23;14296:32;14293:119;;;14331:79;;:::i;:::-;14293:119;14479:1;14468:9;14464:17;14451:31;14509:18;14501:6;14498:30;14495:117;;;14531:79;;:::i;:::-;14495:117;14636:78;14706:7;14697:6;14686:9;14682:22;14636:78;:::i;:::-;14626:88;;14422:302;14763:2;14789:53;14834:7;14825:6;14814:9;14810:22;14789:53;:::i;:::-;14779:63;;14734:118;14175:684;;;;;:::o;14865:474::-;14933:6;14941;14990:2;14978:9;14969:7;14965:23;14961:32;14958:119;;;14996:79;;:::i;:::-;14958:119;15116:1;15141:53;15186:7;15177:6;15166:9;15162:22;15141:53;:::i;:::-;15131:63;;15087:117;15243:2;15269:53;15314:7;15305:6;15294:9;15290:22;15269:53;:::i;:::-;15259:63;;15214:118;14865:474;;;;;:::o;15345:180::-;15393:77;15390:1;15383:88;15490:4;15487:1;15480:15;15514:4;15511:1;15504:15;15531:320;15575:6;15612:1;15606:4;15602:12;15592:22;;15659:1;15653:4;15649:12;15680:18;15670:81;;15736:4;15728:6;15724:17;15714:27;;15670:81;15798:2;15790:6;15787:14;15767:18;15764:38;15761:84;;15817:18;;:::i;:::-;15761:84;15582:269;15531:320;;;:::o;15857:180::-;15905:77;15902:1;15895:88;16002:4;15999:1;15992:15;16026:4;16023:1;16016:15;16043:191;16083:3;16102:20;16120:1;16102:20;:::i;:::-;16097:25;;16136:20;16154:1;16136:20;:::i;:::-;16131:25;;16179:1;16176;16172:9;16165:16;;16200:3;16197:1;16194:10;16191:36;;;16207:18;;:::i;:::-;16191:36;16043:191;;;;:::o;16240:410::-;16280:7;16303:20;16321:1;16303:20;:::i;:::-;16298:25;;16337:20;16355:1;16337:20;:::i;:::-;16332:25;;16392:1;16389;16385:9;16414:30;16432:11;16414:30;:::i;:::-;16403:41;;16593:1;16584:7;16580:15;16577:1;16574:22;16554:1;16547:9;16527:83;16504:139;;16623:18;;:::i;:::-;16504:139;16288:362;16240:410;;;;:::o;16656:147::-;16757:11;16794:3;16779:18;;16656:147;;;;:::o;16809:114::-;;:::o;16929:398::-;17088:3;17109:83;17190:1;17185:3;17109:83;:::i;:::-;17102:90;;17201:93;17290:3;17201:93;:::i;:::-;17319:1;17314:3;17310:11;17303:18;;16929:398;;;:::o;17333:379::-;17517:3;17539:147;17682:3;17539:147;:::i;:::-;17532:154;;17703:3;17696:10;;17333:379;;;:::o;17718:141::-;17767:4;17790:3;17782:11;;17813:3;17810:1;17803:14;17847:4;17844:1;17834:18;17826:26;;17718:141;;;:::o;17865:93::-;17902:6;17949:2;17944;17937:5;17933:14;17929:23;17919:33;;17865:93;;;:::o;17964:107::-;18008:8;18058:5;18052:4;18048:16;18027:37;;17964:107;;;;:::o;18077:393::-;18146:6;18196:1;18184:10;18180:18;18219:97;18249:66;18238:9;18219:97;:::i;:::-;18337:39;18367:8;18356:9;18337:39;:::i;:::-;18325:51;;18409:4;18405:9;18398:5;18394:21;18385:30;;18458:4;18448:8;18444:19;18437:5;18434:30;18424:40;;18153:317;;18077:393;;;;;:::o;18476:142::-;18526:9;18559:53;18577:34;18586:24;18604:5;18586:24;:::i;:::-;18577:34;:::i;:::-;18559:53;:::i;:::-;18546:66;;18476:142;;;:::o;18624:75::-;18667:3;18688:5;18681:12;;18624:75;;;:::o;18705:269::-;18815:39;18846:7;18815:39;:::i;:::-;18876:91;18925:41;18949:16;18925:41;:::i;:::-;18917:6;18910:4;18904:11;18876:91;:::i;:::-;18870:4;18863:105;18781:193;18705:269;;;:::o;18980:73::-;19025:3;18980:73;:::o;19059:189::-;19136:32;;:::i;:::-;19177:65;19235:6;19227;19221:4;19177:65;:::i;:::-;19112:136;19059:189;;:::o;19254:186::-;19314:120;19331:3;19324:5;19321:14;19314:120;;;19385:39;19422:1;19415:5;19385:39;:::i;:::-;19358:1;19351:5;19347:13;19338:22;;19314:120;;;19254:186;;:::o;19446:543::-;19547:2;19542:3;19539:11;19536:446;;;19581:38;19613:5;19581:38;:::i;:::-;19665:29;19683:10;19665:29;:::i;:::-;19655:8;19651:44;19848:2;19836:10;19833:18;19830:49;;;19869:8;19854:23;;19830:49;19892:80;19948:22;19966:3;19948:22;:::i;:::-;19938:8;19934:37;19921:11;19892:80;:::i;:::-;19551:431;;19536:446;19446:543;;;:::o;19995:117::-;20049:8;20099:5;20093:4;20089:16;20068:37;;19995:117;;;;:::o;20118:169::-;20162:6;20195:51;20243:1;20239:6;20231:5;20228:1;20224:13;20195:51;:::i;:::-;20191:56;20276:4;20270;20266:15;20256:25;;20169:118;20118:169;;;;:::o;20292:295::-;20368:4;20514:29;20539:3;20533:4;20514:29;:::i;:::-;20506:37;;20576:3;20573:1;20569:11;20563:4;20560:21;20552:29;;20292:295;;;;:::o;20592:1395::-;20709:37;20742:3;20709:37;:::i;:::-;20811:18;20803:6;20800:30;20797:56;;;20833:18;;:::i;:::-;20797:56;20877:38;20909:4;20903:11;20877:38;:::i;:::-;20962:67;21022:6;21014;21008:4;20962:67;:::i;:::-;21056:1;21080:4;21067:17;;21112:2;21104:6;21101:14;21129:1;21124:618;;;;21786:1;21803:6;21800:77;;;21852:9;21847:3;21843:19;21837:26;21828:35;;21800:77;21903:67;21963:6;21956:5;21903:67;:::i;:::-;21897:4;21890:81;21759:222;21094:887;;21124:618;21176:4;21172:9;21164:6;21160:22;21210:37;21242:4;21210:37;:::i;:::-;21269:1;21283:208;21297:7;21294:1;21291:14;21283:208;;;21376:9;21371:3;21367:19;21361:26;21353:6;21346:42;21427:1;21419:6;21415:14;21405:24;;21474:2;21463:9;21459:18;21446:31;;21320:4;21317:1;21313:12;21308:17;;21283:208;;;21519:6;21510:7;21507:19;21504:179;;;21577:9;21572:3;21568:19;21562:26;21620:48;21662:4;21654:6;21650:17;21639:9;21620:48;:::i;:::-;21612:6;21605:64;21527:156;21504:179;21729:1;21725;21717:6;21713:14;21709:22;21703:4;21696:36;21131:611;;;21094:887;;20684:1303;;;20592:1395;;:::o;21993:180::-;22041:77;22038:1;22031:88;22138:4;22135:1;22128:15;22162:4;22159:1;22152:15;22179:233;22218:3;22241:24;22259:5;22241:24;:::i;:::-;22232:33;;22287:66;22280:5;22277:77;22274:103;;22357:18;;:::i;:::-;22274:103;22404:1;22397:5;22393:13;22386:20;;22179:233;;;:::o;22418:148::-;22520:11;22557:3;22542:18;;22418:148;;;;:::o;22572:390::-;22678:3;22706:39;22739:5;22706:39;:::i;:::-;22761:89;22843:6;22838:3;22761:89;:::i;:::-;22754:96;;22859:65;22917:6;22912:3;22905:4;22898:5;22894:16;22859:65;:::i;:::-;22949:6;22944:3;22940:16;22933:23;;22682:280;22572:390;;;;:::o;22968:435::-;23148:3;23170:95;23261:3;23252:6;23170:95;:::i;:::-;23163:102;;23282:95;23373:3;23364:6;23282:95;:::i;:::-;23275:102;;23394:3;23387:10;;22968:435;;;;;:::o;23409:225::-;23549:34;23545:1;23537:6;23533:14;23526:58;23618:8;23613:2;23605:6;23601:15;23594:33;23409:225;:::o;23640:366::-;23782:3;23803:67;23867:2;23862:3;23803:67;:::i;:::-;23796:74;;23879:93;23968:3;23879:93;:::i;:::-;23997:2;23992:3;23988:12;23981:19;;23640:366;;;:::o;24012:419::-;24178:4;24216:2;24205:9;24201:18;24193:26;;24265:9;24259:4;24255:20;24251:1;24240:9;24236:17;24229:47;24293:131;24419:4;24293:131;:::i;:::-;24285:139;;24012:419;;;:::o;24437:332::-;24558:4;24596:2;24585:9;24581:18;24573:26;;24609:71;24677:1;24666:9;24662:17;24653:6;24609:71;:::i;:::-;24690:72;24758:2;24747:9;24743:18;24734:6;24690:72;:::i;:::-;24437:332;;;;;:::o;24775:137::-;24829:5;24860:6;24854:13;24845:22;;24876:30;24900:5;24876:30;:::i;:::-;24775:137;;;;:::o;24918:345::-;24985:6;25034:2;25022:9;25013:7;25009:23;25005:32;25002:119;;;25040:79;;:::i;:::-;25002:119;25160:1;25185:61;25238:7;25229:6;25218:9;25214:22;25185:61;:::i;:::-;25175:71;;25131:125;24918:345;;;;:::o;25269:182::-;25409:34;25405:1;25397:6;25393:14;25386:58;25269:182;:::o;25457:366::-;25599:3;25620:67;25684:2;25679:3;25620:67;:::i;:::-;25613:74;;25696:93;25785:3;25696:93;:::i;:::-;25814:2;25809:3;25805:12;25798:19;;25457:366;;;:::o;25829:419::-;25995:4;26033:2;26022:9;26018:18;26010:26;;26082:9;26076:4;26072:20;26068:1;26057:9;26053:17;26046:47;26110:131;26236:4;26110:131;:::i;:::-;26102:139;;25829:419;;;:::o;26254:181::-;26394:33;26390:1;26382:6;26378:14;26371:57;26254:181;:::o;26441:366::-;26583:3;26604:67;26668:2;26663:3;26604:67;:::i;:::-;26597:74;;26680:93;26769:3;26680:93;:::i;:::-;26798:2;26793:3;26789:12;26782:19;;26441:366;;;:::o;26813:419::-;26979:4;27017:2;27006:9;27002:18;26994:26;;27066:9;27060:4;27056:20;27052:1;27041:9;27037:17;27030:47;27094:131;27220:4;27094:131;:::i;:::-;27086:139;;26813:419;;;:::o;27238:180::-;27286:77;27283:1;27276:88;27383:4;27380:1;27373:15;27407:4;27404:1;27397:15;27424:98;27475:6;27509:5;27503:12;27493:22;;27424:98;;;:::o;27528:168::-;27611:11;27645:6;27640:3;27633:19;27685:4;27680:3;27676:14;27661:29;;27528:168;;;;:::o;27702:373::-;27788:3;27816:38;27848:5;27816:38;:::i;:::-;27870:70;27933:6;27928:3;27870:70;:::i;:::-;27863:77;;27949:65;28007:6;28002:3;27995:4;27988:5;27984:16;27949:65;:::i;:::-;28039:29;28061:6;28039:29;:::i;:::-;28034:3;28030:39;28023:46;;27792:283;27702:373;;;;:::o;28081:640::-;28276:4;28314:3;28303:9;28299:19;28291:27;;28328:71;28396:1;28385:9;28381:17;28372:6;28328:71;:::i;:::-;28409:72;28477:2;28466:9;28462:18;28453:6;28409:72;:::i;:::-;28491;28559:2;28548:9;28544:18;28535:6;28491:72;:::i;:::-;28610:9;28604:4;28600:20;28595:2;28584:9;28580:18;28573:48;28638:76;28709:4;28700:6;28638:76;:::i;:::-;28630:84;;28081:640;;;;;;;:::o;28727:141::-;28783:5;28814:6;28808:13;28799:22;;28830:32;28856:5;28830:32;:::i;:::-;28727:141;;;;:::o;28874:349::-;28943:6;28992:2;28980:9;28971:7;28967:23;28963:32;28960:119;;;28998:79;;:::i;:::-;28960:119;29118:1;29143:63;29198:7;29189:6;29178:9;29174:22;29143:63;:::i;:::-;29133:73;;29089:127;28874:349;;;;:::o

Swarm Source

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