ETH Price: $3,124.33 (+2.12%)
Gas: 3 Gwei

Token

Block Turtles (BT)
 

Overview

Max Total Supply

2,222 BT

Holders

323

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jackzeus.eth
Balance
9 BT
0x7a64a202b0e969316a1682a56356b3e1231f3a7b
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:
BlockTurtles

Compiler Version
v0.8.18+commit.87f61d96

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-15
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/Math.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

// File: operator-filter-registry/src/lib/Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

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


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    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.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    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));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    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);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    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) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            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.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/common/ERC2981.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

// File: BlockTurtles.sol



pragma solidity ^0.8.17;







contract BlockTurtles is ERC721A, Ownable, ERC2981, ReentrancyGuard, DefaultOperatorFilterer {

  using Strings for uint256;
 
  string public _baseTokenURI;
  string public hiddenMetadataUri;
 
  uint256 public cost = 0.000 ether;
  uint256 public maxSupply = 3333;
  uint256 public freeSupply = 1333;
  uint256 public maxMintAmountPerTx = 5;
 
  bool public paused;
  bool public revealed = false;
 
  constructor(string memory _hiddenMetadataUri) ERC721A("Block Turtles", "BT") {
     setHiddenMetadataUri(_hiddenMetadataUri);
     _setDefaultRoyalty(0x70668bf9f0854Cd2DaBf68a60431fDfA256f5EAa, 500);
  }
 
  function mint(uint256 _mintAmount) public payable nonReentrant {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    if (totalSupply() >= freeSupply) {
          require(msg.value > 0, "Max free supply exceeded!");
      }
 
    _safeMint(_msgSender(), _mintAmount);
  }
 
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }
 
  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }
 
  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }
 
  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
 
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
 
  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setFreeSupply(uint256 _freeSupply) public onlyOwner {
    freeSupply = _freeSupply;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }
 
  // METADATA HANDLING
 
  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }
 
  function setBaseURI(string calldata baseURI) public onlyOwner {
    _baseTokenURI = baseURI;
  }
 
  function _baseURI() internal view virtual override returns (string memory) {
      return _baseTokenURI;
  }
 
  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
      require(_exists(_tokenId), "URI does not exist!");
 
      if (revealed) {
          return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json"));
      } else {
          return hiddenMetadataUri;
      }
  }

  function setDefaultRoyalty(
    address receiver,
    uint96 feeNumerator
  ) external onlyOwner {
    _setDefaultRoyalty(receiver, feeNumerator);
  }

  function deleteDefaultRoyalty() external onlyOwner {
    _deleteDefaultRoyalty();
  }

  //override
  function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
    super.setApprovalForAll(operator, approved);
  }

  function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
    super.approve(operator, tokenId);
  }

  function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
    super.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
      super.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    payable
    override
    onlyAllowedOperator(from)
  {
    super.safeTransferFrom(from, to, tokenId, data);
  }

  function supportsInterface(
    bytes4 interfaceId
  ) public view virtual override(ERC721A, ERC2981) returns (bool) {
    // Supports the following `interfaceId`s:
    // - IERC165: 0x01ffc9a7
    // - IERC721: 0x80ac58cd
    // - IERC721Metadata: 0x5b5e139f
    // - IERC2981: 0x2a55205a
    return 
        ERC721A.supportsInterface(interfaceId) || 
        ERC2981.supportsInterface(interfaceId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxSupply","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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"}]

60806040526000600e55610d05600f5561053560105560056011556000601260016101000a81548160ff0219169083151502179055503480156200004257600080fd5b5060405162004deb38038062004deb83398181016040528101906200006891906200087d565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020017f426c6f636b20547572746c6573000000000000000000000000000000000000008152506040518060400160405280600281526020017f42540000000000000000000000000000000000000000000000000000000000008152508160029081620000fc919062000b19565b5080600390816200010e919062000b19565b506200011f6200038660201b60201c565b6000819055505050620001476200013b6200038f60201b60201c565b6200039760201b60201c565b6001600b8190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003445780156200020a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001d092919062000c45565b600060405180830381600087803b158015620001eb57600080fd5b505af115801562000200573d6000803e3d6000fd5b5050505062000343565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002c4576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200028a92919062000c45565b600060405180830381600087803b158015620002a557600080fd5b505af1158015620002ba573d6000803e3d6000fd5b5050505062000342565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200030d919062000c72565b600060405180830381600087803b1580156200032857600080fd5b505af11580156200033d573d6000803e3d6000fd5b505050505b5b5b505062000357816200045d60201b60201c565b6200037f7370668bf9f0854cd2dabf68a60431fdfa256f5eaa6101f46200048260201b60201c565b5062000e1c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200046d6200062560201b60201c565b80600d90816200047e919062000b19565b5050565b62000492620006b660201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620004f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ea9062000d16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000565576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055c9062000d88565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b620006356200038f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200065b620006c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ab9062000dfa565b60405180910390fd5b565b6000612710905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620007538262000708565b810181811067ffffffffffffffff8211171562000775576200077462000719565b5b80604052505050565b60006200078a620006ea565b905062000798828262000748565b919050565b600067ffffffffffffffff821115620007bb57620007ba62000719565b5b620007c68262000708565b9050602081019050919050565b60005b83811015620007f3578082015181840152602081019050620007d6565b60008484015250505050565b60006200081662000810846200079d565b6200077e565b90508281526020810184848401111562000835576200083462000703565b5b62000842848285620007d3565b509392505050565b600082601f830112620008625762000861620006fe565b5b815162000874848260208601620007ff565b91505092915050565b600060208284031215620008965762000895620006f4565b5b600082015167ffffffffffffffff811115620008b757620008b6620006f9565b5b620008c5848285016200084a565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200092157607f821691505b602082108103620009375762000936620008d9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000962565b620009ad868362000962565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009fa620009f4620009ee84620009c5565b620009cf565b620009c5565b9050919050565b6000819050919050565b62000a1683620009d9565b62000a2e62000a258262000a01565b8484546200096f565b825550505050565b600090565b62000a4562000a36565b62000a5281848462000a0b565b505050565b5b8181101562000a7a5762000a6e60008262000a3b565b60018101905062000a58565b5050565b601f82111562000ac95762000a93816200093d565b62000a9e8462000952565b8101602085101562000aae578190505b62000ac662000abd8562000952565b83018262000a57565b50505b505050565b600082821c905092915050565b600062000aee6000198460080262000ace565b1980831691505092915050565b600062000b09838362000adb565b9150826002028217905092915050565b62000b2482620008ce565b67ffffffffffffffff81111562000b405762000b3f62000719565b5b62000b4c825462000908565b62000b5982828562000a7e565b600060209050601f83116001811462000b91576000841562000b7c578287015190505b62000b88858262000afb565b86555062000bf8565b601f19841662000ba1866200093d565b60005b8281101562000bcb5784890151825560018201915060208501945060208101905062000ba4565b8683101562000beb578489015162000be7601f89168262000adb565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c2d8262000c00565b9050919050565b62000c3f8162000c20565b82525050565b600060408201905062000c5c600083018562000c34565b62000c6b602083018462000c34565b9392505050565b600060208201905062000c89600083018462000c34565b92915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000cfe602a8362000c8f565b915062000d0b8262000ca0565b604082019050919050565b6000602082019050818103600083015262000d318162000cef565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000d7060198362000c8f565b915062000d7d8262000d38565b602082019050919050565b6000602082019050818103600083015262000da38162000d61565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000de260208362000c8f565b915062000def8262000daa565b602082019050919050565b6000602082019050818103600083015262000e158162000dd3565b9050919050565b613fbf8062000e2c6000396000f3fe60806040526004361061023b5760003560e01c80636f8b44b01161012e578063b071401b116100ab578063e0a808531161006f578063e0a80853146107f7578063e985e9c514610820578063efbd73f41461085d578063f2fde38b14610886578063f676308a146108af5761023b565b8063b071401b1461071f578063b88d4fde14610748578063c87b56dd14610764578063cfc86f7b146107a1578063d5abeb01146107cc5761023b565b806395d89b41116100f257806395d89b411461066d578063a0712d6814610698578063a22cb465146106b4578063a45ba8e7146106dd578063aa1b103f146107085761023b565b80636f8b44b01461059a57806370a08231146105c3578063715018a6146106005780638da5cb5b1461061757806394354fd0146106425761023b565b80632a55205a116101bc5780634fdd43cb116101805780634fdd43cb146104b557806351830227146104de57806355f804b3146105095780635c975abb146105325780636352211e1461055d5761023b565b80632a55205a146103f05780633ccfd60b1461042e57806341f434341461044557806342842e0e1461047057806344a0d68a1461048c5761023b565b806313faede61161020357806313faede61461032a57806316c38b3c1461035557806318160ddd1461037e57806323b872dd146103a957806324a6ab0c146103c55761023b565b806301ffc9a71461024057806304634d8d1461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612ae1565b6108d8565b6040516102749190612b29565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612be6565b6108fa565b005b3480156102b257600080fd5b506102bb610910565b6040516102c89190612cb6565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612d0e565b6109a2565b6040516103059190612d4a565b60405180910390f35b61032860048036038101906103239190612d65565b610a21565b005b34801561033657600080fd5b5061033f610a3a565b60405161034c9190612db4565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190612dfb565b610a40565b005b34801561038a57600080fd5b50610393610a65565b6040516103a09190612db4565b60405180910390f35b6103c360048036038101906103be9190612e28565b610a7c565b005b3480156103d157600080fd5b506103da610acb565b6040516103e79190612db4565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612e7b565b610ad1565b604051610425929190612ebb565b60405180910390f35b34801561043a57600080fd5b50610443610cbb565b005b34801561045157600080fd5b5061045a610d53565b6040516104679190612f43565b60405180910390f35b61048a60048036038101906104859190612e28565b610d65565b005b34801561049857600080fd5b506104b360048036038101906104ae9190612d0e565b610db4565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190613093565b610dc6565b005b3480156104ea57600080fd5b506104f3610de1565b6040516105009190612b29565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b919061313c565b610df4565b005b34801561053e57600080fd5b50610547610e12565b6040516105549190612b29565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190612d0e565b610e25565b6040516105919190612d4a565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190612d0e565b610e37565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190613189565b610e49565b6040516105f79190612db4565b60405180910390f35b34801561060c57600080fd5b50610615610f01565b005b34801561062357600080fd5b5061062c610f15565b6040516106399190612d4a565b60405180910390f35b34801561064e57600080fd5b50610657610f3f565b6040516106649190612db4565b60405180910390f35b34801561067957600080fd5b50610682610f45565b60405161068f9190612cb6565b60405180910390f35b6106b260048036038101906106ad9190612d0e565b610fd7565b005b3480156106c057600080fd5b506106db60048036038101906106d691906131b6565b611197565b005b3480156106e957600080fd5b506106f26111b0565b6040516106ff9190612cb6565b60405180910390f35b34801561071457600080fd5b5061071d61123e565b005b34801561072b57600080fd5b5061074660048036038101906107419190612d0e565b611250565b005b610762600480360381019061075d9190613297565b611262565b005b34801561077057600080fd5b5061078b60048036038101906107869190612d0e565b6112b3565b6040516107989190612cb6565b60405180910390f35b3480156107ad57600080fd5b506107b66113dd565b6040516107c39190612cb6565b60405180910390f35b3480156107d857600080fd5b506107e161146b565b6040516107ee9190612db4565b60405180910390f35b34801561080357600080fd5b5061081e60048036038101906108199190612dfb565b611471565b005b34801561082c57600080fd5b506108476004803603810190610842919061331a565b611496565b6040516108549190612b29565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f919061335a565b61152a565b005b34801561089257600080fd5b506108ad60048036038101906108a89190613189565b611540565b005b3480156108bb57600080fd5b506108d660048036038101906108d19190612d0e565b6115c3565b005b60006108e3826115d5565b806108f357506108f282611667565b5b9050919050565b6109026116e1565b61090c828261175f565b5050565b60606002805461091f906133c9565b80601f016020809104026020016040519081016040528092919081815260200182805461094b906133c9565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109ad826118f4565b6109e3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a2b81611953565b610a358383611a50565b505050565b600e5481565b610a486116e1565b80601260006101000a81548160ff02191690831515021790555050565b6000610a6f611b94565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aba57610ab933611953565b5b610ac5848484611b9d565b50505050565b60105481565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610c665760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610c70611ebf565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610c9c9190613429565b610ca6919061349a565b90508160000151819350935050509250929050565b610cc36116e1565b610ccb611ec9565b6000610cd5610f15565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cf8906134fc565b60006040518083038185875af1925050503d8060008114610d35576040519150601f19603f3d011682016040523d82523d6000602084013e610d3a565b606091505b5050905080610d4857600080fd5b50610d51611f18565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da357610da233611953565b5b610dae848484611f22565b50505050565b610dbc6116e1565b80600e8190555050565b610dce6116e1565b80600d9081610ddd91906136b3565b5050565b601260019054906101000a900460ff1681565b610dfc6116e1565b8181600c9182610e0d929190613790565b505050565b601260009054906101000a900460ff1681565b6000610e3082611f42565b9050919050565b610e3f6116e1565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f096116e1565b610f13600061200e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b606060038054610f54906133c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f80906133c9565b8015610fcd5780601f10610fa257610100808354040283529160200191610fcd565b820191906000526020600020905b815481529060010190602001808311610fb057829003601f168201915b5050505050905090565b610fdf611ec9565b600081118015610ff157506011548111155b611030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611027906138ac565b60405180910390fd5b600f548161103c610a65565b61104691906138cc565b1115611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e9061394c565b60405180910390fd5b601260009054906101000a900460ff16156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906139b8565b60405180910390fd5b80600e546110e59190613429565b341015611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90613a24565b60405180910390fd5b601054611132610a65565b1061117b576000341161117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190613a90565b60405180910390fd5b5b61118c6111866120d4565b826120dc565b611194611f18565b50565b816111a181611953565b6111ab83836120fa565b505050565b600d80546111bd906133c9565b80601f01602080910402602001604051908101604052809291908181526020018280546111e9906133c9565b80156112365780601f1061120b57610100808354040283529160200191611236565b820191906000526020600020905b81548152906001019060200180831161121957829003601f168201915b505050505081565b6112466116e1565b61124e612205565b565b6112586116e1565b8060118190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112a05761129f33611953565b5b6112ac85858585612252565b5050505050565b60606112be826118f4565b6112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490613afc565b60405180910390fd5b601260019054906101000a900460ff161561134a5761131a6122c5565b61132383612357565b604051602001611334929190613ba4565b60405160208183030381529060405290506113d8565b600d8054611357906133c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611383906133c9565b80156113d05780601f106113a5576101008083540402835291602001916113d0565b820191906000526020600020905b8154815290600101906020018083116113b357829003601f168201915b505050505090505b919050565b600c80546113ea906133c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611416906133c9565b80156114635780601f1061143857610100808354040283529160200191611463565b820191906000526020600020905b81548152906001019060200180831161144657829003601f168201915b505050505081565b600f5481565b6114796116e1565b80601260016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115326116e1565b61153c81836120dc565b5050565b6115486116e1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613c45565b60405180910390fd5b6115c08161200e565b50565b6115cb6116e1565b8060108190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061163057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116605750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116da57506116d982612425565b5b9050919050565b6116e96120d4565b73ffffffffffffffffffffffffffffffffffffffff16611707610f15565b73ffffffffffffffffffffffffffffffffffffffff161461175d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175490613cb1565b60405180910390fd5b565b611767611ebf565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90613d43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90613daf565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816118ff611b94565b1115801561190e575060005482105b801561194c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611a4d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016119ca929190613dcf565b602060405180830381865afa1580156119e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0b9190613e0d565b611a4c57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611a439190612d4a565b60405180910390fd5b5b50565b6000611a5b82610e25565b90508073ffffffffffffffffffffffffffffffffffffffff16611a7c61248f565b73ffffffffffffffffffffffffffffffffffffffff1614611adf57611aa881611aa361248f565b611496565b611ade576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ba882611f42565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c0f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611c1b84612497565b91509150611c318187611c2c61248f565b6124be565b611c7d57611c4686611c4161248f565b611496565b611c7c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ce3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cf08686866001612502565b8015611cfb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611dc985611da5888887612508565b7c020000000000000000000000000000000000000000000000000000000017612530565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611e4f5760006001850190506000600460008381526020019081526020016000205403611e4d576000548114611e4c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eb7868686600161255b565b505050505050565b6000612710905090565b6002600b5403611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0590613e86565b60405180910390fd5b6002600b81905550565b6001600b81905550565b611f3d83838360405180602001604052806000815250611262565b505050565b60008082905080611f51611b94565b11611fd757600054811015611fd65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611fd4575b60008103611fca576004600083600190039350838152602001908152602001600020549050611fa0565b8092505050612009565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6120f6828260405180602001604052806000815250612561565b5050565b806007600061210761248f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121b461248f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121f99190612b29565b60405180910390a35050565b6009600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff02191690555050565b61225d848484610a7c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122bf57612288848484846125fe565b6122be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600c80546122d4906133c9565b80601f0160208091040260200160405190810160405280929190818152602001828054612300906133c9565b801561234d5780601f106123225761010080835404028352916020019161234d565b820191906000526020600020905b81548152906001019060200180831161233057829003601f168201915b5050505050905090565b6060600060016123668461274e565b01905060008167ffffffffffffffff81111561238557612384612f68565b5b6040519080825280601f01601f1916602001820160405280156123b75781602001600182028036833780820191505090505b509050600082602001820190505b60011561241a578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161240e5761240d61346b565b5b049450600085036123c5575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861251f8686846128a1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61256b83836128aa565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125f957600080549050600083820390505b6125ab60008683806001019450866125fe565b6125e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125985781600054146125f657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261262461248f565b8786866040518563ffffffff1660e01b81526004016126469493929190613efb565b6020604051808303816000875af192505050801561268257506040513d601f19601f8201168201806040525081019061267f9190613f5c565b60015b6126fb573d80600081146126b2576040519150601f19603f3d011682016040523d82523d6000602084013e6126b7565b606091505b5060008151036126f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106127ac577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816127a2576127a161346b565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106127e9576d04ee2d6d415b85acef810000000083816127df576127de61346b565b5b0492506020810190505b662386f26fc10000831061281857662386f26fc10000838161280e5761280d61346b565b5b0492506010810190505b6305f5e1008310612841576305f5e10083816128375761283661346b565b5b0492506008810190505b612710831061286657612710838161285c5761285b61346b565b5b0492506004810190505b60648310612889576064838161287f5761287e61346b565b5b0492506002810190505b600a8310612898576001810190505b80915050919050565b60009392505050565b600080549050600082036128ea576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128f76000848385612502565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061296e8361295f6000866000612508565b61296885612a65565b17612530565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612a0f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506129d4565b5060008203612a4a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612a60600084838561255b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612abe81612a89565b8114612ac957600080fd5b50565b600081359050612adb81612ab5565b92915050565b600060208284031215612af757612af6612a7f565b5b6000612b0584828501612acc565b91505092915050565b60008115159050919050565b612b2381612b0e565b82525050565b6000602082019050612b3e6000830184612b1a565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b6f82612b44565b9050919050565b612b7f81612b64565b8114612b8a57600080fd5b50565b600081359050612b9c81612b76565b92915050565b60006bffffffffffffffffffffffff82169050919050565b612bc381612ba2565b8114612bce57600080fd5b50565b600081359050612be081612bba565b92915050565b60008060408385031215612bfd57612bfc612a7f565b5b6000612c0b85828601612b8d565b9250506020612c1c85828601612bd1565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c60578082015181840152602081019050612c45565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c8882612c26565b612c928185612c31565b9350612ca2818560208601612c42565b612cab81612c6c565b840191505092915050565b60006020820190508181036000830152612cd08184612c7d565b905092915050565b6000819050919050565b612ceb81612cd8565b8114612cf657600080fd5b50565b600081359050612d0881612ce2565b92915050565b600060208284031215612d2457612d23612a7f565b5b6000612d3284828501612cf9565b91505092915050565b612d4481612b64565b82525050565b6000602082019050612d5f6000830184612d3b565b92915050565b60008060408385031215612d7c57612d7b612a7f565b5b6000612d8a85828601612b8d565b9250506020612d9b85828601612cf9565b9150509250929050565b612dae81612cd8565b82525050565b6000602082019050612dc96000830184612da5565b92915050565b612dd881612b0e565b8114612de357600080fd5b50565b600081359050612df581612dcf565b92915050565b600060208284031215612e1157612e10612a7f565b5b6000612e1f84828501612de6565b91505092915050565b600080600060608486031215612e4157612e40612a7f565b5b6000612e4f86828701612b8d565b9350506020612e6086828701612b8d565b9250506040612e7186828701612cf9565b9150509250925092565b60008060408385031215612e9257612e91612a7f565b5b6000612ea085828601612cf9565b9250506020612eb185828601612cf9565b9150509250929050565b6000604082019050612ed06000830185612d3b565b612edd6020830184612da5565b9392505050565b6000819050919050565b6000612f09612f04612eff84612b44565b612ee4565b612b44565b9050919050565b6000612f1b82612eee565b9050919050565b6000612f2d82612f10565b9050919050565b612f3d81612f22565b82525050565b6000602082019050612f586000830184612f34565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fa082612c6c565b810181811067ffffffffffffffff82111715612fbf57612fbe612f68565b5b80604052505050565b6000612fd2612a75565b9050612fde8282612f97565b919050565b600067ffffffffffffffff821115612ffe57612ffd612f68565b5b61300782612c6c565b9050602081019050919050565b82818337600083830152505050565b600061303661303184612fe3565b612fc8565b90508281526020810184848401111561305257613051612f63565b5b61305d848285613014565b509392505050565b600082601f83011261307a57613079612f5e565b5b813561308a848260208601613023565b91505092915050565b6000602082840312156130a9576130a8612a7f565b5b600082013567ffffffffffffffff8111156130c7576130c6612a84565b5b6130d384828501613065565b91505092915050565b600080fd5b600080fd5b60008083601f8401126130fc576130fb612f5e565b5b8235905067ffffffffffffffff811115613119576131186130dc565b5b602083019150836001820283011115613135576131346130e1565b5b9250929050565b6000806020838503121561315357613152612a7f565b5b600083013567ffffffffffffffff81111561317157613170612a84565b5b61317d858286016130e6565b92509250509250929050565b60006020828403121561319f5761319e612a7f565b5b60006131ad84828501612b8d565b91505092915050565b600080604083850312156131cd576131cc612a7f565b5b60006131db85828601612b8d565b92505060206131ec85828601612de6565b9150509250929050565b600067ffffffffffffffff82111561321157613210612f68565b5b61321a82612c6c565b9050602081019050919050565b600061323a613235846131f6565b612fc8565b90508281526020810184848401111561325657613255612f63565b5b613261848285613014565b509392505050565b600082601f83011261327e5761327d612f5e565b5b813561328e848260208601613227565b91505092915050565b600080600080608085870312156132b1576132b0612a7f565b5b60006132bf87828801612b8d565b94505060206132d087828801612b8d565b93505060406132e187828801612cf9565b925050606085013567ffffffffffffffff81111561330257613301612a84565b5b61330e87828801613269565b91505092959194509250565b6000806040838503121561333157613330612a7f565b5b600061333f85828601612b8d565b925050602061335085828601612b8d565b9150509250929050565b6000806040838503121561337157613370612a7f565b5b600061337f85828601612cf9565b925050602061339085828601612b8d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133e157607f821691505b6020821081036133f4576133f361339a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061343482612cd8565b915061343f83612cd8565b925082820261344d81612cd8565b91508282048414831517613464576134636133fa565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134a582612cd8565b91506134b083612cd8565b9250826134c0576134bf61346b565b5b828204905092915050565b600081905092915050565b50565b60006134e66000836134cb565b91506134f1826134d6565b600082019050919050565b6000613507826134d9565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613536565b61357d8683613536565b95508019841693508086168417925050509392505050565b60006135b06135ab6135a684612cd8565b612ee4565b612cd8565b9050919050565b6000819050919050565b6135ca83613595565b6135de6135d6826135b7565b848454613543565b825550505050565b600090565b6135f36135e6565b6135fe8184846135c1565b505050565b5b81811015613622576136176000826135eb565b600181019050613604565b5050565b601f8211156136675761363881613511565b61364184613526565b81016020851015613650578190505b61366461365c85613526565b830182613603565b50505b505050565b600082821c905092915050565b600061368a6000198460080261366c565b1980831691505092915050565b60006136a38383613679565b9150826002028217905092915050565b6136bc82612c26565b67ffffffffffffffff8111156136d5576136d4612f68565b5b6136df82546133c9565b6136ea828285613626565b600060209050601f83116001811461371d576000841561370b578287015190505b6137158582613697565b86555061377d565b601f19841661372b86613511565b60005b828110156137535784890151825560018201915060208501945060208101905061372e565b86831015613770578489015161376c601f891682613679565b8355505b6001600288020188555050505b505050505050565b600082905092915050565b61379a8383613785565b67ffffffffffffffff8111156137b3576137b2612f68565b5b6137bd82546133c9565b6137c8828285613626565b6000601f8311600181146137f757600084156137e5578287013590505b6137ef8582613697565b865550613857565b601f19841661380586613511565b60005b8281101561382d57848901358255600182019150602085019450602081019050613808565b8683101561384a5784890135613846601f891682613679565b8355505b6001600288020188555050505b50505050505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613896601483612c31565b91506138a182613860565b602082019050919050565b600060208201905081810360008301526138c581613889565b9050919050565b60006138d782612cd8565b91506138e283612cd8565b92508282019050808211156138fa576138f96133fa565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613936601483612c31565b915061394182613900565b602082019050919050565b6000602082019050818103600083015261396581613929565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006139a2601783612c31565b91506139ad8261396c565b602082019050919050565b600060208201905081810360008301526139d181613995565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a0e601383612c31565b9150613a19826139d8565b602082019050919050565b60006020820190508181036000830152613a3d81613a01565b9050919050565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b6000613a7a601983612c31565b9150613a8582613a44565b602082019050919050565b60006020820190508181036000830152613aa981613a6d565b9050919050565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b6000613ae6601383612c31565b9150613af182613ab0565b602082019050919050565b60006020820190508181036000830152613b1581613ad9565b9050919050565b600081905092915050565b6000613b3282612c26565b613b3c8185613b1c565b9350613b4c818560208601612c42565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613b8e600583613b1c565b9150613b9982613b58565b600582019050919050565b6000613bb08285613b27565b9150613bbc8284613b27565b9150613bc782613b81565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c2f602683612c31565b9150613c3a82613bd3565b604082019050919050565b60006020820190508181036000830152613c5e81613c22565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c9b602083612c31565b9150613ca682613c65565b602082019050919050565b60006020820190508181036000830152613cca81613c8e565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000613d2d602a83612c31565b9150613d3882613cd1565b604082019050919050565b60006020820190508181036000830152613d5c81613d20565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000613d99601983612c31565b9150613da482613d63565b602082019050919050565b60006020820190508181036000830152613dc881613d8c565b9050919050565b6000604082019050613de46000830185612d3b565b613df16020830184612d3b565b9392505050565b600081519050613e0781612dcf565b92915050565b600060208284031215613e2357613e22612a7f565b5b6000613e3184828501613df8565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613e70601f83612c31565b9150613e7b82613e3a565b602082019050919050565b60006020820190508181036000830152613e9f81613e63565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ecd82613ea6565b613ed78185613eb1565b9350613ee7818560208601612c42565b613ef081612c6c565b840191505092915050565b6000608082019050613f106000830187612d3b565b613f1d6020830186612d3b565b613f2a6040830185612da5565b8181036060830152613f3c8184613ec2565b905095945050505050565b600081519050613f5681612ab5565b92915050565b600060208284031215613f7257613f71612a7f565b5b6000613f8084828501613f47565b9150509291505056fea26469706673582212203de79bcc46c4cafffb284090b53ed5d37dc45757e7fdcc289762c5184d2ba16b64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d53385a43677a65414731454b6b6671487074765773616e5356444562794270335167707a45504e50346a4a782f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636f8b44b01161012e578063b071401b116100ab578063e0a808531161006f578063e0a80853146107f7578063e985e9c514610820578063efbd73f41461085d578063f2fde38b14610886578063f676308a146108af5761023b565b8063b071401b1461071f578063b88d4fde14610748578063c87b56dd14610764578063cfc86f7b146107a1578063d5abeb01146107cc5761023b565b806395d89b41116100f257806395d89b411461066d578063a0712d6814610698578063a22cb465146106b4578063a45ba8e7146106dd578063aa1b103f146107085761023b565b80636f8b44b01461059a57806370a08231146105c3578063715018a6146106005780638da5cb5b1461061757806394354fd0146106425761023b565b80632a55205a116101bc5780634fdd43cb116101805780634fdd43cb146104b557806351830227146104de57806355f804b3146105095780635c975abb146105325780636352211e1461055d5761023b565b80632a55205a146103f05780633ccfd60b1461042e57806341f434341461044557806342842e0e1461047057806344a0d68a1461048c5761023b565b806313faede61161020357806313faede61461032a57806316c38b3c1461035557806318160ddd1461037e57806323b872dd146103a957806324a6ab0c146103c55761023b565b806301ffc9a71461024057806304634d8d1461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612ae1565b6108d8565b6040516102749190612b29565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612be6565b6108fa565b005b3480156102b257600080fd5b506102bb610910565b6040516102c89190612cb6565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190612d0e565b6109a2565b6040516103059190612d4a565b60405180910390f35b61032860048036038101906103239190612d65565b610a21565b005b34801561033657600080fd5b5061033f610a3a565b60405161034c9190612db4565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190612dfb565b610a40565b005b34801561038a57600080fd5b50610393610a65565b6040516103a09190612db4565b60405180910390f35b6103c360048036038101906103be9190612e28565b610a7c565b005b3480156103d157600080fd5b506103da610acb565b6040516103e79190612db4565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612e7b565b610ad1565b604051610425929190612ebb565b60405180910390f35b34801561043a57600080fd5b50610443610cbb565b005b34801561045157600080fd5b5061045a610d53565b6040516104679190612f43565b60405180910390f35b61048a60048036038101906104859190612e28565b610d65565b005b34801561049857600080fd5b506104b360048036038101906104ae9190612d0e565b610db4565b005b3480156104c157600080fd5b506104dc60048036038101906104d79190613093565b610dc6565b005b3480156104ea57600080fd5b506104f3610de1565b6040516105009190612b29565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b919061313c565b610df4565b005b34801561053e57600080fd5b50610547610e12565b6040516105549190612b29565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190612d0e565b610e25565b6040516105919190612d4a565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190612d0e565b610e37565b005b3480156105cf57600080fd5b506105ea60048036038101906105e59190613189565b610e49565b6040516105f79190612db4565b60405180910390f35b34801561060c57600080fd5b50610615610f01565b005b34801561062357600080fd5b5061062c610f15565b6040516106399190612d4a565b60405180910390f35b34801561064e57600080fd5b50610657610f3f565b6040516106649190612db4565b60405180910390f35b34801561067957600080fd5b50610682610f45565b60405161068f9190612cb6565b60405180910390f35b6106b260048036038101906106ad9190612d0e565b610fd7565b005b3480156106c057600080fd5b506106db60048036038101906106d691906131b6565b611197565b005b3480156106e957600080fd5b506106f26111b0565b6040516106ff9190612cb6565b60405180910390f35b34801561071457600080fd5b5061071d61123e565b005b34801561072b57600080fd5b5061074660048036038101906107419190612d0e565b611250565b005b610762600480360381019061075d9190613297565b611262565b005b34801561077057600080fd5b5061078b60048036038101906107869190612d0e565b6112b3565b6040516107989190612cb6565b60405180910390f35b3480156107ad57600080fd5b506107b66113dd565b6040516107c39190612cb6565b60405180910390f35b3480156107d857600080fd5b506107e161146b565b6040516107ee9190612db4565b60405180910390f35b34801561080357600080fd5b5061081e60048036038101906108199190612dfb565b611471565b005b34801561082c57600080fd5b506108476004803603810190610842919061331a565b611496565b6040516108549190612b29565b60405180910390f35b34801561086957600080fd5b50610884600480360381019061087f919061335a565b61152a565b005b34801561089257600080fd5b506108ad60048036038101906108a89190613189565b611540565b005b3480156108bb57600080fd5b506108d660048036038101906108d19190612d0e565b6115c3565b005b60006108e3826115d5565b806108f357506108f282611667565b5b9050919050565b6109026116e1565b61090c828261175f565b5050565b60606002805461091f906133c9565b80601f016020809104026020016040519081016040528092919081815260200182805461094b906133c9565b80156109985780601f1061096d57610100808354040283529160200191610998565b820191906000526020600020905b81548152906001019060200180831161097b57829003601f168201915b5050505050905090565b60006109ad826118f4565b6109e3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a2b81611953565b610a358383611a50565b505050565b600e5481565b610a486116e1565b80601260006101000a81548160ff02191690831515021790555050565b6000610a6f611b94565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aba57610ab933611953565b5b610ac5848484611b9d565b50505050565b60105481565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610c665760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610c70611ebf565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610c9c9190613429565b610ca6919061349a565b90508160000151819350935050509250929050565b610cc36116e1565b610ccb611ec9565b6000610cd5610f15565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cf8906134fc565b60006040518083038185875af1925050503d8060008114610d35576040519150601f19603f3d011682016040523d82523d6000602084013e610d3a565b606091505b5050905080610d4857600080fd5b50610d51611f18565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da357610da233611953565b5b610dae848484611f22565b50505050565b610dbc6116e1565b80600e8190555050565b610dce6116e1565b80600d9081610ddd91906136b3565b5050565b601260019054906101000a900460ff1681565b610dfc6116e1565b8181600c9182610e0d929190613790565b505050565b601260009054906101000a900460ff1681565b6000610e3082611f42565b9050919050565b610e3f6116e1565b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f096116e1565b610f13600061200e565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b606060038054610f54906133c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f80906133c9565b8015610fcd5780601f10610fa257610100808354040283529160200191610fcd565b820191906000526020600020905b815481529060010190602001808311610fb057829003601f168201915b5050505050905090565b610fdf611ec9565b600081118015610ff157506011548111155b611030576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611027906138ac565b60405180910390fd5b600f548161103c610a65565b61104691906138cc565b1115611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e9061394c565b60405180910390fd5b601260009054906101000a900460ff16156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906139b8565b60405180910390fd5b80600e546110e59190613429565b341015611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90613a24565b60405180910390fd5b601054611132610a65565b1061117b576000341161117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117190613a90565b60405180910390fd5b5b61118c6111866120d4565b826120dc565b611194611f18565b50565b816111a181611953565b6111ab83836120fa565b505050565b600d80546111bd906133c9565b80601f01602080910402602001604051908101604052809291908181526020018280546111e9906133c9565b80156112365780601f1061120b57610100808354040283529160200191611236565b820191906000526020600020905b81548152906001019060200180831161121957829003601f168201915b505050505081565b6112466116e1565b61124e612205565b565b6112586116e1565b8060118190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112a05761129f33611953565b5b6112ac85858585612252565b5050505050565b60606112be826118f4565b6112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f490613afc565b60405180910390fd5b601260019054906101000a900460ff161561134a5761131a6122c5565b61132383612357565b604051602001611334929190613ba4565b60405160208183030381529060405290506113d8565b600d8054611357906133c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611383906133c9565b80156113d05780601f106113a5576101008083540402835291602001916113d0565b820191906000526020600020905b8154815290600101906020018083116113b357829003601f168201915b505050505090505b919050565b600c80546113ea906133c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611416906133c9565b80156114635780601f1061143857610100808354040283529160200191611463565b820191906000526020600020905b81548152906001019060200180831161144657829003601f168201915b505050505081565b600f5481565b6114796116e1565b80601260016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115326116e1565b61153c81836120dc565b5050565b6115486116e1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613c45565b60405180910390fd5b6115c08161200e565b50565b6115cb6116e1565b8060108190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061163057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806116605750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116da57506116d982612425565b5b9050919050565b6116e96120d4565b73ffffffffffffffffffffffffffffffffffffffff16611707610f15565b73ffffffffffffffffffffffffffffffffffffffff161461175d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175490613cb1565b60405180910390fd5b565b611767611ebf565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90613d43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90613daf565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816118ff611b94565b1115801561190e575060005482105b801561194c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611a4d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016119ca929190613dcf565b602060405180830381865afa1580156119e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0b9190613e0d565b611a4c57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611a439190612d4a565b60405180910390fd5b5b50565b6000611a5b82610e25565b90508073ffffffffffffffffffffffffffffffffffffffff16611a7c61248f565b73ffffffffffffffffffffffffffffffffffffffff1614611adf57611aa881611aa361248f565b611496565b611ade576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ba882611f42565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c0f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611c1b84612497565b91509150611c318187611c2c61248f565b6124be565b611c7d57611c4686611c4161248f565b611496565b611c7c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611ce3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cf08686866001612502565b8015611cfb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611dc985611da5888887612508565b7c020000000000000000000000000000000000000000000000000000000017612530565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611e4f5760006001850190506000600460008381526020019081526020016000205403611e4d576000548114611e4c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eb7868686600161255b565b505050505050565b6000612710905090565b6002600b5403611f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0590613e86565b60405180910390fd5b6002600b81905550565b6001600b81905550565b611f3d83838360405180602001604052806000815250611262565b505050565b60008082905080611f51611b94565b11611fd757600054811015611fd65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611fd4575b60008103611fca576004600083600190039350838152602001908152602001600020549050611fa0565b8092505050612009565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6120f6828260405180602001604052806000815250612561565b5050565b806007600061210761248f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121b461248f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121f99190612b29565b60405180910390a35050565b6009600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff02191690555050565b61225d848484610a7c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122bf57612288848484846125fe565b6122be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600c80546122d4906133c9565b80601f0160208091040260200160405190810160405280929190818152602001828054612300906133c9565b801561234d5780601f106123225761010080835404028352916020019161234d565b820191906000526020600020905b81548152906001019060200180831161233057829003601f168201915b5050505050905090565b6060600060016123668461274e565b01905060008167ffffffffffffffff81111561238557612384612f68565b5b6040519080825280601f01601f1916602001820160405280156123b75781602001600182028036833780820191505090505b509050600082602001820190505b60011561241a578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161240e5761240d61346b565b5b049450600085036123c5575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861251f8686846128a1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61256b83836128aa565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125f957600080549050600083820390505b6125ab60008683806001019450866125fe565b6125e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125985781600054146125f657600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261262461248f565b8786866040518563ffffffff1660e01b81526004016126469493929190613efb565b6020604051808303816000875af192505050801561268257506040513d601f19601f8201168201806040525081019061267f9190613f5c565b60015b6126fb573d80600081146126b2576040519150601f19603f3d011682016040523d82523d6000602084013e6126b7565b606091505b5060008151036126f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106127ac577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816127a2576127a161346b565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106127e9576d04ee2d6d415b85acef810000000083816127df576127de61346b565b5b0492506020810190505b662386f26fc10000831061281857662386f26fc10000838161280e5761280d61346b565b5b0492506010810190505b6305f5e1008310612841576305f5e10083816128375761283661346b565b5b0492506008810190505b612710831061286657612710838161285c5761285b61346b565b5b0492506004810190505b60648310612889576064838161287f5761287e61346b565b5b0492506002810190505b600a8310612898576001810190505b80915050919050565b60009392505050565b600080549050600082036128ea576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128f76000848385612502565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061296e8361295f6000866000612508565b61296885612a65565b17612530565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612a0f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506129d4565b5060008203612a4a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612a60600084838561255b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612abe81612a89565b8114612ac957600080fd5b50565b600081359050612adb81612ab5565b92915050565b600060208284031215612af757612af6612a7f565b5b6000612b0584828501612acc565b91505092915050565b60008115159050919050565b612b2381612b0e565b82525050565b6000602082019050612b3e6000830184612b1a565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b6f82612b44565b9050919050565b612b7f81612b64565b8114612b8a57600080fd5b50565b600081359050612b9c81612b76565b92915050565b60006bffffffffffffffffffffffff82169050919050565b612bc381612ba2565b8114612bce57600080fd5b50565b600081359050612be081612bba565b92915050565b60008060408385031215612bfd57612bfc612a7f565b5b6000612c0b85828601612b8d565b9250506020612c1c85828601612bd1565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c60578082015181840152602081019050612c45565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c8882612c26565b612c928185612c31565b9350612ca2818560208601612c42565b612cab81612c6c565b840191505092915050565b60006020820190508181036000830152612cd08184612c7d565b905092915050565b6000819050919050565b612ceb81612cd8565b8114612cf657600080fd5b50565b600081359050612d0881612ce2565b92915050565b600060208284031215612d2457612d23612a7f565b5b6000612d3284828501612cf9565b91505092915050565b612d4481612b64565b82525050565b6000602082019050612d5f6000830184612d3b565b92915050565b60008060408385031215612d7c57612d7b612a7f565b5b6000612d8a85828601612b8d565b9250506020612d9b85828601612cf9565b9150509250929050565b612dae81612cd8565b82525050565b6000602082019050612dc96000830184612da5565b92915050565b612dd881612b0e565b8114612de357600080fd5b50565b600081359050612df581612dcf565b92915050565b600060208284031215612e1157612e10612a7f565b5b6000612e1f84828501612de6565b91505092915050565b600080600060608486031215612e4157612e40612a7f565b5b6000612e4f86828701612b8d565b9350506020612e6086828701612b8d565b9250506040612e7186828701612cf9565b9150509250925092565b60008060408385031215612e9257612e91612a7f565b5b6000612ea085828601612cf9565b9250506020612eb185828601612cf9565b9150509250929050565b6000604082019050612ed06000830185612d3b565b612edd6020830184612da5565b9392505050565b6000819050919050565b6000612f09612f04612eff84612b44565b612ee4565b612b44565b9050919050565b6000612f1b82612eee565b9050919050565b6000612f2d82612f10565b9050919050565b612f3d81612f22565b82525050565b6000602082019050612f586000830184612f34565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fa082612c6c565b810181811067ffffffffffffffff82111715612fbf57612fbe612f68565b5b80604052505050565b6000612fd2612a75565b9050612fde8282612f97565b919050565b600067ffffffffffffffff821115612ffe57612ffd612f68565b5b61300782612c6c565b9050602081019050919050565b82818337600083830152505050565b600061303661303184612fe3565b612fc8565b90508281526020810184848401111561305257613051612f63565b5b61305d848285613014565b509392505050565b600082601f83011261307a57613079612f5e565b5b813561308a848260208601613023565b91505092915050565b6000602082840312156130a9576130a8612a7f565b5b600082013567ffffffffffffffff8111156130c7576130c6612a84565b5b6130d384828501613065565b91505092915050565b600080fd5b600080fd5b60008083601f8401126130fc576130fb612f5e565b5b8235905067ffffffffffffffff811115613119576131186130dc565b5b602083019150836001820283011115613135576131346130e1565b5b9250929050565b6000806020838503121561315357613152612a7f565b5b600083013567ffffffffffffffff81111561317157613170612a84565b5b61317d858286016130e6565b92509250509250929050565b60006020828403121561319f5761319e612a7f565b5b60006131ad84828501612b8d565b91505092915050565b600080604083850312156131cd576131cc612a7f565b5b60006131db85828601612b8d565b92505060206131ec85828601612de6565b9150509250929050565b600067ffffffffffffffff82111561321157613210612f68565b5b61321a82612c6c565b9050602081019050919050565b600061323a613235846131f6565b612fc8565b90508281526020810184848401111561325657613255612f63565b5b613261848285613014565b509392505050565b600082601f83011261327e5761327d612f5e565b5b813561328e848260208601613227565b91505092915050565b600080600080608085870312156132b1576132b0612a7f565b5b60006132bf87828801612b8d565b94505060206132d087828801612b8d565b93505060406132e187828801612cf9565b925050606085013567ffffffffffffffff81111561330257613301612a84565b5b61330e87828801613269565b91505092959194509250565b6000806040838503121561333157613330612a7f565b5b600061333f85828601612b8d565b925050602061335085828601612b8d565b9150509250929050565b6000806040838503121561337157613370612a7f565b5b600061337f85828601612cf9565b925050602061339085828601612b8d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133e157607f821691505b6020821081036133f4576133f361339a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061343482612cd8565b915061343f83612cd8565b925082820261344d81612cd8565b91508282048414831517613464576134636133fa565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134a582612cd8565b91506134b083612cd8565b9250826134c0576134bf61346b565b5b828204905092915050565b600081905092915050565b50565b60006134e66000836134cb565b91506134f1826134d6565b600082019050919050565b6000613507826134d9565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613536565b61357d8683613536565b95508019841693508086168417925050509392505050565b60006135b06135ab6135a684612cd8565b612ee4565b612cd8565b9050919050565b6000819050919050565b6135ca83613595565b6135de6135d6826135b7565b848454613543565b825550505050565b600090565b6135f36135e6565b6135fe8184846135c1565b505050565b5b81811015613622576136176000826135eb565b600181019050613604565b5050565b601f8211156136675761363881613511565b61364184613526565b81016020851015613650578190505b61366461365c85613526565b830182613603565b50505b505050565b600082821c905092915050565b600061368a6000198460080261366c565b1980831691505092915050565b60006136a38383613679565b9150826002028217905092915050565b6136bc82612c26565b67ffffffffffffffff8111156136d5576136d4612f68565b5b6136df82546133c9565b6136ea828285613626565b600060209050601f83116001811461371d576000841561370b578287015190505b6137158582613697565b86555061377d565b601f19841661372b86613511565b60005b828110156137535784890151825560018201915060208501945060208101905061372e565b86831015613770578489015161376c601f891682613679565b8355505b6001600288020188555050505b505050505050565b600082905092915050565b61379a8383613785565b67ffffffffffffffff8111156137b3576137b2612f68565b5b6137bd82546133c9565b6137c8828285613626565b6000601f8311600181146137f757600084156137e5578287013590505b6137ef8582613697565b865550613857565b601f19841661380586613511565b60005b8281101561382d57848901358255600182019150602085019450602081019050613808565b8683101561384a5784890135613846601f891682613679565b8355505b6001600288020188555050505b50505050505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613896601483612c31565b91506138a182613860565b602082019050919050565b600060208201905081810360008301526138c581613889565b9050919050565b60006138d782612cd8565b91506138e283612cd8565b92508282019050808211156138fa576138f96133fa565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613936601483612c31565b915061394182613900565b602082019050919050565b6000602082019050818103600083015261396581613929565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b60006139a2601783612c31565b91506139ad8261396c565b602082019050919050565b600060208201905081810360008301526139d181613995565b9050919050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a0e601383612c31565b9150613a19826139d8565b602082019050919050565b60006020820190508181036000830152613a3d81613a01565b9050919050565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b6000613a7a601983612c31565b9150613a8582613a44565b602082019050919050565b60006020820190508181036000830152613aa981613a6d565b9050919050565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b6000613ae6601383612c31565b9150613af182613ab0565b602082019050919050565b60006020820190508181036000830152613b1581613ad9565b9050919050565b600081905092915050565b6000613b3282612c26565b613b3c8185613b1c565b9350613b4c818560208601612c42565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613b8e600583613b1c565b9150613b9982613b58565b600582019050919050565b6000613bb08285613b27565b9150613bbc8284613b27565b9150613bc782613b81565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c2f602683612c31565b9150613c3a82613bd3565b604082019050919050565b60006020820190508181036000830152613c5e81613c22565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c9b602083612c31565b9150613ca682613c65565b602082019050919050565b60006020820190508181036000830152613cca81613c8e565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000613d2d602a83612c31565b9150613d3882613cd1565b604082019050919050565b60006020820190508181036000830152613d5c81613d20565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000613d99601983612c31565b9150613da482613d63565b602082019050919050565b60006020820190508181036000830152613dc881613d8c565b9050919050565b6000604082019050613de46000830185612d3b565b613df16020830184612d3b565b9392505050565b600081519050613e0781612dcf565b92915050565b600060208284031215613e2357613e22612a7f565b5b6000613e3184828501613df8565b91505092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613e70601f83612c31565b9150613e7b82613e3a565b602082019050919050565b60006020820190508181036000830152613e9f81613e63565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ecd82613ea6565b613ed78185613eb1565b9350613ee7818560208601612c42565b613ef081612c6c565b840191505092915050565b6000608082019050613f106000830187612d3b565b613f1d6020830186612d3b565b613f2a6040830185612da5565b8181036060830152613f3c8184613ec2565b905095945050505050565b600081519050613f5681612ab5565b92915050565b600060208284031215613f7257613f71612a7f565b5b6000613f8084828501613f47565b9150509291505056fea26469706673582212203de79bcc46c4cafffb284090b53ed5d37dc45757e7fdcc289762c5184d2ba16b64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d53385a43677a65414731454b6b6671487074765773616e5356444562794270335167707a45504e50346a4a782f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string): ipfs://QmS8ZCgzeAG1EKkfqHptvWsanSVDEbyBp3QgpzEPNP4jJx/hidden.json

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [2] : 697066733a2f2f516d53385a43677a65414731454b6b6671487074765773616e
Arg [3] : 5356444562794270335167707a45504e50346a4a782f68696464656e2e6a736f
Arg [4] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

91364:4475:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95421:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94233:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37484:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43975:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94677:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91568:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93271:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33235:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94842:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91642:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88794:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;93355:150;;;;;;;;;;;;;:::i;:::-;;80941:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95013:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92849:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93539:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91747:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93678:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91724:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38877:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93067:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34419:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72389:103;;;;;;;;;;;;;:::i;:::-;;71741:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91679:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37660:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91996:522;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94501:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91529:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94394:87;;;;;;;;;;;;;:::i;:::-;;92930:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95194:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93900:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91497:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91606:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92761:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44924:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92525:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72647:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93167:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95421:415;95534:4;95740:38;95766:11;95740:25;:38::i;:::-;:90;;;;95792:38;95818:11;95792:25;:38::i;:::-;95740:90;95723:107;;95421:415;;;:::o;94233:155::-;71627:13;:11;:13::i;:::-;94340:42:::1;94359:8;94369:12;94340:18;:42::i;:::-;94233:155:::0;;:::o;37484:100::-;37538:13;37571:5;37564:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37484:100;:::o;43975:218::-;44051:7;44076:16;44084:7;44076;:16::i;:::-;44071:64;;44101:34;;;;;;;;;;;;;;44071:64;44155:15;:24;44171:7;44155:24;;;;;;;;;;;:30;;;;;;;;;;;;44148:37;;43975:218;;;:::o;94677:159::-;94781:8;82723:30;82744:8;82723:20;:30::i;:::-;94798:32:::1;94812:8;94822:7;94798:13;:32::i;:::-;94677:159:::0;;;:::o;91568:33::-;;;;:::o;93271:77::-;71627:13;:11;:13::i;:::-;93336:6:::1;93327;;:15;;;;;;;;;;;;;;;;;;93271:77:::0;:::o;33235:323::-;33296:7;33524:15;:13;:15::i;:::-;33509:12;;33493:13;;:28;:46;33486:53;;33235:323;:::o;94842:165::-;94951:4;82457:10;82449:18;;:4;:18;;;82445:83;;82484:32;82505:10;82484:20;:32::i;:::-;82445:83;94964:37:::1;94983:4;94989:2;94993:7;94964:18;:37::i;:::-;94842:165:::0;;;;:::o;91642:32::-;;;;:::o;88794:442::-;88891:7;88900;88920:26;88949:17;:27;88967:8;88949:27;;;;;;;;;;;88920:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89021:1;88993:30;;:7;:16;;;:30;;;88989:92;;89050:19;89040:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88989:92;89093:21;89158:17;:15;:17::i;:::-;89117:58;;89131:7;:23;;;89118:36;;:10;:36;;;;:::i;:::-;89117:58;;;;:::i;:::-;89093:82;;89196:7;:16;;;89214:13;89188:40;;;;;;88794:442;;;;;:::o;93355:150::-;71627:13;:11;:13::i;:::-;17577:21:::1;:19;:21::i;:::-;93413:7:::2;93434;:5;:7::i;:::-;93426:21;;93455;93426:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93412:69;;;93496:2;93488:11;;;::::0;::::2;;93405:100;17621:20:::1;:18;:20::i;:::-;93355:150::o:0;80941:143::-;73357:42;80941:143;:::o;95013:175::-;95126:4;82457:10;82449:18;;:4;:18;;;82445:83;;82484:32;82505:10;82484:20;:32::i;:::-;82445:83;95141:41:::1;95164:4;95170:2;95174:7;95141:22;:41::i;:::-;95013:175:::0;;;;:::o;92849:74::-;71627:13;:11;:13::i;:::-;92912:5:::1;92905:4;:12;;;;92849:74:::0;:::o;93539:132::-;71627:13;:11;:13::i;:::-;93647:18:::1;93627:17;:38;;;;;;:::i;:::-;;93539:132:::0;:::o;91747:28::-;;;;;;;;;;;;;:::o;93678:98::-;71627:13;:11;:13::i;:::-;93763:7:::1;;93747:13;:23;;;;;;;:::i;:::-;;93678:98:::0;;:::o;91724:18::-;;;;;;;;;;;;;:::o;38877:152::-;38949:7;38992:27;39011:7;38992:18;:27::i;:::-;38969:52;;38877:152;;;:::o;93067:94::-;71627:13;:11;:13::i;:::-;93145:10:::1;93133:9;:22;;;;93067:94:::0;:::o;34419:233::-;34491:7;34532:1;34515:19;;:5;:19;;;34511:60;;34543:28;;;;;;;;;;;;;;34511:60;28578:13;34589:18;:25;34608:5;34589:25;;;;;;;;;;;;;;;;:55;34582:62;;34419:233;;;:::o;72389:103::-;71627:13;:11;:13::i;:::-;72454:30:::1;72481:1;72454:18;:30::i;:::-;72389:103::o:0;71741:87::-;71787:7;71814:6;;;;;;;;;;;71807:13;;71741:87;:::o;91679:37::-;;;;:::o;37660:104::-;37716:13;37749:7;37742:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37660:104;:::o;91996:522::-;17577:21;:19;:21::i;:::-;92088:1:::1;92074:11;:15;:52;;;;;92108:18;;92093:11;:33;;92074:52;92066:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;92197:9;;92182:11;92166:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;92158:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;92247:6;;;;;;;;;;;92246:7;92238:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;92316:11;92309:4;;:18;;;;:::i;:::-;92296:9;:31;;92288:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;92381:10;;92364:13;:11;:13::i;:::-;:27;92360:107;;92426:1;92414:9;:13;92406:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;92360:107;92476:36;92486:12;:10;:12::i;:::-;92500:11;92476:9;:36::i;:::-;17621:20:::0;:18;:20::i;:::-;91996:522;:::o;94501:170::-;94605:8;82723:30;82744:8;82723:20;:30::i;:::-;94622:43:::1;94646:8;94656;94622:23;:43::i;:::-;94501:170:::0;;;:::o;91529:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;94394:87::-;71627:13;:11;:13::i;:::-;94452:23:::1;:21;:23::i;:::-;94394:87::o:0;92930:130::-;71627:13;:11;:13::i;:::-;93035:19:::1;93014:18;:40;;;;92930:130:::0;:::o;95194:221::-;95346:4;82457:10;82449:18;;:4;:18;;;82445:83;;82484:32;82505:10;82484:20;:32::i;:::-;82445:83;95362:47:::1;95385:4;95391:2;95395:7;95404:4;95362:22;:47::i;:::-;95194:221:::0;;;;;:::o;93900:327::-;93974:13;94006:17;94014:8;94006:7;:17::i;:::-;93998:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;94063:8;;;;;;;;;;;94059:163;;;94117:10;:8;:10::i;:::-;94129:19;:8;:17;:19::i;:::-;94100:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;94086:73;;;;94059:163;94195:17;94188:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93900:327;;;;:::o;91497:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;91606:31::-;;;;:::o;92761:81::-;71627:13;:11;:13::i;:::-;92830:6:::1;92819:8;;:17;;;;;;;;;;;;;;;;;;92761:81:::0;:::o;44924:164::-;45021:4;45045:18;:25;45064:5;45045:25;;;;;;;;;;;;;;;:35;45071:8;45045:35;;;;;;;;;;;;;;;;;;;;;;;;;45038:42;;44924:164;;;;:::o;92525:127::-;71627:13;:11;:13::i;:::-;92613:33:::1;92623:9;92634:11;92613:9;:33::i;:::-;92525:127:::0;;:::o;72647:201::-;71627:13;:11;:13::i;:::-;72756:1:::1;72736:22;;:8;:22;;::::0;72728:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;72812:28;72831:8;72812:18;:28::i;:::-;72647:201:::0;:::o;93167:98::-;71627:13;:11;:13::i;:::-;93248:11:::1;93235:10;:24;;;;93167:98:::0;:::o;36582:639::-;36667:4;37006:10;36991:25;;:11;:25;;;;:102;;;;37083:10;37068:25;;:11;:25;;;;36991:102;:179;;;;37160:10;37145:25;;:11;:25;;;;36991:179;36971:199;;36582:639;;;:::o;88524:215::-;88626:4;88665:26;88650:41;;;:11;:41;;;;:81;;;;88695:36;88719:11;88695:23;:36::i;:::-;88650:81;88643:88;;88524:215;;;:::o;71906:132::-;71981:12;:10;:12::i;:::-;71970:23;;:7;:5;:7::i;:::-;:23;;;71962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71906:132::o;89886:332::-;90005:17;:15;:17::i;:::-;89989:33;;:12;:33;;;;89981:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;90108:1;90088:22;;:8;:22;;;90080:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;90175:35;;;;;;;;90187:8;90175:35;;;;;;90197:12;90175:35;;;;;90153:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89886:332;;:::o;45346:282::-;45411:4;45467:7;45448:15;:13;:15::i;:::-;:26;;:66;;;;;45501:13;;45491:7;:23;45448:66;:153;;;;;45600:1;29354:8;45552:17;:26;45570:7;45552:26;;;;;;;;;;;;:44;:49;45448:153;45428:173;;45346:282;;;:::o;82866:647::-;83105:1;73357:42;83057:45;;;:49;83053:453;;;73357:42;83356;;;83407:4;83414:8;83356:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;83351:144;;83470:8;83451:28;;;;;;;;;;;:::i;:::-;;;;;;;;83351:144;83053:453;82866:647;:::o;43408:408::-;43497:13;43513:16;43521:7;43513;:16::i;:::-;43497:32;;43569:5;43546:28;;:19;:17;:19::i;:::-;:28;;;43542:175;;43594:44;43611:5;43618:19;:17;:19::i;:::-;43594:16;:44::i;:::-;43589:128;;43666:35;;;;;;;;;;;;;;43589:128;43542:175;43762:2;43729:15;:24;43745:7;43729:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43800:7;43796:2;43780:28;;43789:5;43780:28;;;;;;;;;;;;43486:330;43408:408;;:::o;92659:95::-;92724:7;92747:1;92740:8;;92659:95;:::o;47614:2825::-;47756:27;47786;47805:7;47786:18;:27::i;:::-;47756:57;;47871:4;47830:45;;47846:19;47830:45;;;47826:86;;47884:28;;;;;;;;;;;;;;47826:86;47926:27;47955:23;47982:35;48009:7;47982:26;:35::i;:::-;47925:92;;;;48117:68;48142:15;48159:4;48165:19;:17;:19::i;:::-;48117:24;:68::i;:::-;48112:180;;48205:43;48222:4;48228:19;:17;:19::i;:::-;48205:16;:43::i;:::-;48200:92;;48257:35;;;;;;;;;;;;;;48200:92;48112:180;48323:1;48309:16;;:2;:16;;;48305:52;;48334:23;;;;;;;;;;;;;;48305:52;48370:43;48392:4;48398:2;48402:7;48411:1;48370:21;:43::i;:::-;48506:15;48503:160;;;48646:1;48625:19;48618:30;48503:160;49043:18;:24;49062:4;49043:24;;;;;;;;;;;;;;;;49041:26;;;;;;;;;;;;49112:18;:22;49131:2;49112:22;;;;;;;;;;;;;;;;49110:24;;;;;;;;;;;49434:146;49471:2;49520:45;49535:4;49541:2;49545:19;49520:14;:45::i;:::-;29634:8;49492:73;49434:18;:146::i;:::-;49405:17;:26;49423:7;49405:26;;;;;;;;;;;:175;;;;49751:1;29634:8;49700:19;:47;:52;49696:627;;49773:19;49805:1;49795:7;:11;49773:33;;49962:1;49928:17;:30;49946:11;49928:30;;;;;;;;;;;;:35;49924:384;;50066:13;;50051:11;:28;50047:242;;50246:19;50213:17;:30;50231:11;50213:30;;;;;;;;;;;:52;;;;50047:242;49924:384;49754:569;49696:627;50370:7;50366:2;50351:27;;50360:4;50351:27;;;;;;;;;;;;50389:42;50410:4;50416:2;50420:7;50429:1;50389:20;:42::i;:::-;47745:2694;;;47614:2825;;;:::o;89518:97::-;89576:6;89602:5;89595:12;;89518:97;:::o;17657:293::-;17059:1;17791:7;;:19;17783:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17059:1;17924:7;:18;;;;17657:293::o;17958:213::-;17015:1;18141:7;:22;;;;17958:213::o;50535:193::-;50681:39;50698:4;50704:2;50708:7;50681:39;;;;;;;;;;;;:16;:39::i;:::-;50535:193;;;:::o;40032:1275::-;40099:7;40119:12;40134:7;40119:22;;40202:4;40183:15;:13;:15::i;:::-;:23;40179:1061;;40236:13;;40229:4;:20;40225:1015;;;40274:14;40291:17;:23;40309:4;40291:23;;;;;;;;;;;;40274:40;;40408:1;29354:8;40380:6;:24;:29;40376:845;;41045:113;41062:1;41052:6;:11;41045:113;;41105:17;:25;41123:6;;;;;;;41105:25;;;;;;;;;;;;41096:34;;41045:113;;;41191:6;41184:13;;;;;;40376:845;40251:989;40225:1015;40179:1061;41268:31;;;;;;;;;;;;;;40032:1275;;;;:::o;73008:191::-;73082:16;73101:6;;;;;;;;;;;73082:25;;73127:8;73118:6;;:17;;;;;;;;;;;;;;;;;;73182:8;73151:40;;73172:8;73151:40;;;;;;;;;;;;73071:128;73008:191;:::o;70292:98::-;70345:7;70372:10;70365:17;;70292:98;:::o;61486:112::-;61563:27;61573:2;61577:8;61563:27;;;;;;;;;;;;:9;:27::i;:::-;61486:112;;:::o;44533:234::-;44680:8;44628:18;:39;44647:19;:17;:19::i;:::-;44628:39;;;;;;;;;;;;;;;:49;44668:8;44628:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44740:8;44704:55;;44719:19;:17;:19::i;:::-;44704:55;;;44750:8;44704:55;;;;;;:::i;:::-;;;;;;;;44533:234;;:::o;90294:95::-;90362:19;;90355:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90294:95::o;51326:407::-;51501:31;51514:4;51520:2;51524:7;51501:12;:31::i;:::-;51565:1;51547:2;:14;;;:19;51543:183;;51586:56;51617:4;51623:2;51627:7;51636:5;51586:30;:56::i;:::-;51581:145;;51670:40;;;;;;;;;;;;;;51581:145;51543:183;51326:407;;;;:::o;93783:110::-;93843:13;93874;93867:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93783:110;:::o;13338:716::-;13394:13;13445:14;13482:1;13462:17;13473:5;13462:10;:17::i;:::-;:21;13445:38;;13498:20;13532:6;13521:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13498:41;;13554:11;13683:6;13679:2;13675:15;13667:6;13663:28;13656:35;;13720:288;13727:4;13720:288;;;13752:5;;;;;;;;13894:8;13889:2;13882:5;13878:14;13873:30;13868:3;13860:44;13950:2;13941:11;;;;;;:::i;:::-;;;;;13984:1;13975:5;:10;13720:288;13971:21;13720:288;14029:6;14022:13;;;;;13338:716;;;:::o;86076:157::-;86161:4;86200:25;86185:40;;;:11;:40;;;;86178:47;;86076:157;;;:::o;67654:105::-;67714:7;67741:10;67734:17;;67654:105;:::o;46509:485::-;46611:27;46640:23;46681:38;46722:15;:24;46738:7;46722:24;;;;;;;;;;;46681:65;;46899:18;46876:41;;46956:19;46950:26;46931:45;;46861:126;46509:485;;;:::o;45737:659::-;45886:11;46051:16;46044:5;46040:28;46031:37;;46211:16;46200:9;46196:32;46183:45;;46361:15;46350:9;46347:30;46339:5;46328:9;46325:20;46322:56;46312:66;;45737:659;;;;;:::o;52395:159::-;;;;;:::o;66963:311::-;67098:7;67118:16;29758:3;67144:19;:41;;67118:68;;29758:3;67212:31;67223:4;67229:2;67233:9;67212:10;:31::i;:::-;67204:40;;:62;;67197:69;;;66963:311;;;;;:::o;41855:450::-;41935:14;42103:16;42096:5;42092:28;42083:37;;42280:5;42266:11;42241:23;42237:41;42234:52;42227:5;42224:63;42214:73;;41855:450;;;;:::o;53219:158::-;;;;;:::o;60713:689::-;60844:19;60850:2;60854:8;60844:5;:19::i;:::-;60923:1;60905:2;:14;;;:19;60901:483;;60945:11;60959:13;;60945:27;;60991:13;61013:8;61007:3;:14;60991:30;;61040:233;61071:62;61110:1;61114:2;61118:7;;;;;;61127:5;61071:30;:62::i;:::-;61066:167;;61169:40;;;;;;;;;;;;;;61066:167;61268:3;61260:5;:11;61040:233;;61355:3;61338:13;;:20;61334:34;;61360:8;;;61334:34;60926:458;;60901:483;60713:689;;;:::o;53817:716::-;53980:4;54026:2;54001:45;;;54047:19;:17;:19::i;:::-;54068:4;54074:7;54083:5;54001:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53997:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54301:1;54284:6;:13;:18;54280:235;;54330:40;;;;;;;;;;;;;;54280:235;54473:6;54467:13;54458:6;54454:2;54450:15;54443:38;53997:529;54170:54;;;54160:64;;;:6;:64;;;;54153:71;;;53817:716;;;;;;:::o;10204:922::-;10257:7;10277:14;10294:1;10277:18;;10344:6;10335:5;:15;10331:102;;10380:6;10371:15;;;;;;:::i;:::-;;;;;10415:2;10405:12;;;;10331:102;10460:6;10451:5;:15;10447:102;;10496:6;10487:15;;;;;;:::i;:::-;;;;;10531:2;10521:12;;;;10447:102;10576:6;10567:5;:15;10563:102;;10612:6;10603:15;;;;;;:::i;:::-;;;;;10647:2;10637:12;;;;10563:102;10692:5;10683;:14;10679:99;;10727:5;10718:14;;;;;;:::i;:::-;;;;;10761:1;10751:11;;;;10679:99;10805:5;10796;:14;10792:99;;10840:5;10831:14;;;;;;:::i;:::-;;;;;10874:1;10864:11;;;;10792:99;10918:5;10909;:14;10905:99;;10953:5;10944:14;;;;;;:::i;:::-;;;;;10987:1;10977:11;;;;10905:99;11031:5;11022;:14;11018:66;;11067:1;11057:11;;;;11018:66;11112:6;11105:13;;;10204:922;;;:::o;66664:147::-;66801:6;66664:147;;;;;:::o;54995:2966::-;55068:20;55091:13;;55068:36;;55131:1;55119:8;:13;55115:44;;55141:18;;;;;;;;;;;;;;55115:44;55172:61;55202:1;55206:2;55210:12;55224:8;55172:21;:61::i;:::-;55716:1;28716:2;55686:1;:26;;55685:32;55673:8;:45;55647:18;:22;55666:2;55647:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55995:139;56032:2;56086:33;56109:1;56113:2;56117:1;56086:14;:33::i;:::-;56053:30;56074:8;56053:20;:30::i;:::-;:66;55995:18;:139::i;:::-;55961:17;:31;55979:12;55961:31;;;;;;;;;;;:173;;;;56151:16;56182:11;56211:8;56196:12;:23;56182:37;;56732:16;56728:2;56724:25;56712:37;;57104:12;57064:8;57023:1;56961:25;56902:1;56841;56814:335;57475:1;57461:12;57457:20;57415:346;57516:3;57507:7;57504:16;57415:346;;57734:7;57724:8;57721:1;57694:25;57691:1;57688;57683:59;57569:1;57560:7;57556:15;57545:26;;57415:346;;;57419:77;57806:1;57794:8;:13;57790:45;;57816:19;;;;;;;;;;;;;;57790:45;57868:3;57852:13;:19;;;;55421:2462;;57893:60;57922:1;57926:2;57930:12;57944:8;57893:20;:60::i;:::-;55057:2904;54995:2966;;:::o;42407:324::-;42477:14;42710:1;42700:8;42697:15;42671:24;42667:46;42657:56;;42407: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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:246::-;3248:1;3258:113;3272:6;3269:1;3266:13;3258:113;;;3357:1;3352:3;3348:11;3342:18;3338:1;3333:3;3329:11;3322:39;3294:2;3291:1;3287:10;3282:15;;3258:113;;;3405:1;3396:6;3391:3;3387:16;3380:27;3229:184;3167:246;;;:::o;3419:102::-;3460:6;3511:2;3507:7;3502:2;3495:5;3491:14;3487:28;3477:38;;3419:102;;;:::o;3527:377::-;3615:3;3643:39;3676:5;3643:39;:::i;:::-;3698:71;3762:6;3757:3;3698:71;:::i;:::-;3691:78;;3778:65;3836:6;3831:3;3824:4;3817:5;3813:16;3778:65;:::i;:::-;3868:29;3890:6;3868:29;:::i;:::-;3863:3;3859:39;3852:46;;3619:285;3527:377;;;;:::o;3910:313::-;4023:4;4061:2;4050:9;4046:18;4038:26;;4110:9;4104:4;4100:20;4096:1;4085:9;4081:17;4074:47;4138:78;4211:4;4202:6;4138:78;:::i;:::-;4130:86;;3910:313;;;;:::o;4229:77::-;4266:7;4295:5;4284:16;;4229:77;;;:::o;4312:122::-;4385:24;4403:5;4385:24;:::i;:::-;4378:5;4375:35;4365:63;;4424:1;4421;4414:12;4365:63;4312:122;:::o;4440:139::-;4486:5;4524:6;4511:20;4502:29;;4540:33;4567:5;4540:33;:::i;:::-;4440:139;;;;:::o;4585:329::-;4644:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:119;;;4699:79;;:::i;:::-;4661:119;4819:1;4844:53;4889:7;4880:6;4869:9;4865:22;4844:53;:::i;:::-;4834:63;;4790:117;4585:329;;;;:::o;4920:118::-;5007:24;5025:5;5007:24;:::i;:::-;5002:3;4995:37;4920:118;;:::o;5044:222::-;5137:4;5175:2;5164:9;5160:18;5152:26;;5188:71;5256:1;5245:9;5241:17;5232:6;5188:71;:::i;:::-;5044:222;;;;:::o;5272:474::-;5340:6;5348;5397:2;5385:9;5376:7;5372:23;5368:32;5365:119;;;5403:79;;:::i;:::-;5365:119;5523:1;5548:53;5593:7;5584:6;5573:9;5569:22;5548:53;:::i;:::-;5538:63;;5494:117;5650:2;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5621:118;5272:474;;;;;:::o;5752:118::-;5839:24;5857:5;5839:24;:::i;:::-;5834:3;5827:37;5752:118;;:::o;5876:222::-;5969:4;6007:2;5996:9;5992:18;5984:26;;6020:71;6088:1;6077:9;6073:17;6064:6;6020:71;:::i;:::-;5876:222;;;;:::o;6104:116::-;6174:21;6189:5;6174:21;:::i;:::-;6167:5;6164:32;6154:60;;6210:1;6207;6200:12;6154:60;6104:116;:::o;6226:133::-;6269:5;6307:6;6294:20;6285:29;;6323:30;6347:5;6323:30;:::i;:::-;6226:133;;;;:::o;6365:323::-;6421:6;6470:2;6458:9;6449:7;6445:23;6441:32;6438:119;;;6476:79;;:::i;:::-;6438:119;6596:1;6621:50;6663:7;6654:6;6643:9;6639:22;6621:50;:::i;:::-;6611:60;;6567:114;6365:323;;;;:::o;6694:619::-;6771:6;6779;6787;6836:2;6824:9;6815:7;6811:23;6807:32;6804:119;;;6842:79;;:::i;:::-;6804:119;6962:1;6987:53;7032:7;7023:6;7012:9;7008:22;6987:53;:::i;:::-;6977:63;;6933:117;7089:2;7115:53;7160:7;7151:6;7140:9;7136:22;7115:53;:::i;:::-;7105:63;;7060:118;7217:2;7243:53;7288:7;7279:6;7268:9;7264:22;7243:53;:::i;:::-;7233:63;;7188:118;6694:619;;;;;:::o;7319:474::-;7387:6;7395;7444:2;7432:9;7423:7;7419:23;7415:32;7412:119;;;7450:79;;:::i;:::-;7412:119;7570:1;7595:53;7640:7;7631:6;7620:9;7616:22;7595:53;:::i;:::-;7585:63;;7541:117;7697:2;7723:53;7768:7;7759:6;7748:9;7744:22;7723:53;:::i;:::-;7713:63;;7668:118;7319:474;;;;;:::o;7799:332::-;7920:4;7958:2;7947:9;7943:18;7935:26;;7971:71;8039:1;8028:9;8024:17;8015:6;7971:71;:::i;:::-;8052:72;8120:2;8109:9;8105:18;8096:6;8052:72;:::i;:::-;7799:332;;;;;:::o;8137:60::-;8165:3;8186:5;8179:12;;8137:60;;;:::o;8203:142::-;8253:9;8286:53;8304:34;8313:24;8331:5;8313:24;:::i;:::-;8304:34;:::i;:::-;8286:53;:::i;:::-;8273:66;;8203:142;;;:::o;8351:126::-;8401:9;8434:37;8465:5;8434:37;:::i;:::-;8421:50;;8351:126;;;:::o;8483:158::-;8565:9;8598:37;8629:5;8598:37;:::i;:::-;8585:50;;8483:158;;;:::o;8647:195::-;8766:69;8829:5;8766:69;:::i;:::-;8761:3;8754:82;8647:195;;:::o;8848:286::-;8973:4;9011:2;9000:9;8996:18;8988:26;;9024:103;9124:1;9113:9;9109:17;9100:6;9024:103;:::i;:::-;8848:286;;;;:::o;9140:117::-;9249:1;9246;9239:12;9263:117;9372:1;9369;9362:12;9386:180;9434:77;9431:1;9424:88;9531:4;9528:1;9521:15;9555:4;9552:1;9545:15;9572:281;9655:27;9677:4;9655:27;:::i;:::-;9647:6;9643:40;9785:6;9773:10;9770:22;9749:18;9737:10;9734:34;9731:62;9728:88;;;9796:18;;:::i;:::-;9728:88;9836:10;9832:2;9825:22;9615:238;9572:281;;:::o;9859:129::-;9893:6;9920:20;;:::i;:::-;9910:30;;9949:33;9977:4;9969:6;9949:33;:::i;:::-;9859:129;;;:::o;9994:308::-;10056:4;10146:18;10138:6;10135:30;10132:56;;;10168:18;;:::i;:::-;10132:56;10206:29;10228:6;10206:29;:::i;:::-;10198:37;;10290:4;10284;10280:15;10272:23;;9994:308;;;:::o;10308:146::-;10405:6;10400:3;10395;10382:30;10446:1;10437:6;10432:3;10428:16;10421:27;10308:146;;;:::o;10460:425::-;10538:5;10563:66;10579:49;10621:6;10579:49;:::i;:::-;10563:66;:::i;:::-;10554:75;;10652:6;10645:5;10638:21;10690:4;10683:5;10679:16;10728:3;10719:6;10714:3;10710:16;10707:25;10704:112;;;10735:79;;:::i;:::-;10704:112;10825:54;10872:6;10867:3;10862;10825:54;:::i;:::-;10544:341;10460:425;;;;;:::o;10905:340::-;10961:5;11010:3;11003:4;10995:6;10991:17;10987:27;10977:122;;11018:79;;:::i;:::-;10977:122;11135:6;11122:20;11160:79;11235:3;11227:6;11220:4;11212:6;11208:17;11160:79;:::i;:::-;11151:88;;10967:278;10905:340;;;;:::o;11251:509::-;11320:6;11369:2;11357:9;11348:7;11344:23;11340:32;11337:119;;;11375:79;;:::i;:::-;11337:119;11523:1;11512:9;11508:17;11495:31;11553:18;11545:6;11542:30;11539:117;;;11575:79;;:::i;:::-;11539:117;11680:63;11735:7;11726:6;11715:9;11711:22;11680:63;:::i;:::-;11670:73;;11466:287;11251:509;;;;:::o;11766:117::-;11875:1;11872;11865:12;11889:117;11998:1;11995;11988:12;12026:553;12084:8;12094:6;12144:3;12137:4;12129:6;12125:17;12121:27;12111:122;;12152:79;;:::i;:::-;12111:122;12265:6;12252:20;12242:30;;12295:18;12287:6;12284:30;12281:117;;;12317:79;;:::i;:::-;12281:117;12431:4;12423:6;12419:17;12407:29;;12485:3;12477:4;12469:6;12465:17;12455:8;12451:32;12448:41;12445:128;;;12492:79;;:::i;:::-;12445:128;12026:553;;;;;:::o;12585:529::-;12656:6;12664;12713:2;12701:9;12692:7;12688:23;12684:32;12681:119;;;12719:79;;:::i;:::-;12681:119;12867:1;12856:9;12852:17;12839:31;12897:18;12889:6;12886:30;12883:117;;;12919:79;;:::i;:::-;12883:117;13032:65;13089:7;13080:6;13069:9;13065:22;13032:65;:::i;:::-;13014:83;;;;12810:297;12585:529;;;;;:::o;13120:329::-;13179:6;13228:2;13216:9;13207:7;13203:23;13199:32;13196:119;;;13234:79;;:::i;:::-;13196:119;13354:1;13379:53;13424:7;13415:6;13404:9;13400:22;13379:53;:::i;:::-;13369:63;;13325:117;13120:329;;;;:::o;13455:468::-;13520:6;13528;13577:2;13565:9;13556:7;13552:23;13548:32;13545:119;;;13583:79;;:::i;:::-;13545:119;13703:1;13728:53;13773:7;13764:6;13753:9;13749:22;13728:53;:::i;:::-;13718:63;;13674:117;13830:2;13856:50;13898:7;13889:6;13878:9;13874:22;13856:50;:::i;:::-;13846:60;;13801:115;13455:468;;;;;:::o;13929:307::-;13990:4;14080:18;14072:6;14069:30;14066:56;;;14102:18;;:::i;:::-;14066:56;14140:29;14162:6;14140:29;:::i;:::-;14132:37;;14224:4;14218;14214:15;14206:23;;13929:307;;;:::o;14242:423::-;14319:5;14344:65;14360:48;14401:6;14360:48;:::i;:::-;14344:65;:::i;:::-;14335:74;;14432:6;14425:5;14418:21;14470:4;14463:5;14459:16;14508:3;14499:6;14494:3;14490:16;14487:25;14484:112;;;14515:79;;:::i;:::-;14484:112;14605:54;14652:6;14647:3;14642;14605:54;:::i;:::-;14325:340;14242:423;;;;;:::o;14684:338::-;14739:5;14788:3;14781:4;14773:6;14769:17;14765:27;14755:122;;14796:79;;:::i;:::-;14755:122;14913:6;14900:20;14938:78;15012:3;15004:6;14997:4;14989:6;14985:17;14938:78;:::i;:::-;14929:87;;14745:277;14684:338;;;;:::o;15028:943::-;15123:6;15131;15139;15147;15196:3;15184:9;15175:7;15171:23;15167:33;15164:120;;;15203:79;;:::i;:::-;15164:120;15323:1;15348:53;15393:7;15384:6;15373:9;15369:22;15348:53;:::i;:::-;15338:63;;15294:117;15450:2;15476:53;15521:7;15512:6;15501:9;15497:22;15476:53;:::i;:::-;15466:63;;15421:118;15578:2;15604:53;15649:7;15640:6;15629:9;15625:22;15604:53;:::i;:::-;15594:63;;15549:118;15734:2;15723:9;15719:18;15706:32;15765:18;15757:6;15754:30;15751:117;;;15787:79;;:::i;:::-;15751:117;15892:62;15946:7;15937:6;15926:9;15922:22;15892:62;:::i;:::-;15882:72;;15677:287;15028:943;;;;;;;:::o;15977:474::-;16045:6;16053;16102:2;16090:9;16081:7;16077:23;16073:32;16070:119;;;16108:79;;:::i;:::-;16070:119;16228:1;16253:53;16298:7;16289:6;16278:9;16274:22;16253:53;:::i;:::-;16243:63;;16199:117;16355:2;16381:53;16426:7;16417:6;16406:9;16402:22;16381:53;:::i;:::-;16371:63;;16326:118;15977:474;;;;;:::o;16457:::-;16525:6;16533;16582:2;16570:9;16561:7;16557:23;16553:32;16550:119;;;16588:79;;:::i;:::-;16550:119;16708:1;16733:53;16778:7;16769:6;16758:9;16754:22;16733:53;:::i;:::-;16723:63;;16679:117;16835:2;16861:53;16906:7;16897:6;16886:9;16882:22;16861:53;:::i;:::-;16851:63;;16806:118;16457:474;;;;;:::o;16937:180::-;16985:77;16982:1;16975:88;17082:4;17079:1;17072:15;17106:4;17103:1;17096:15;17123:320;17167:6;17204:1;17198:4;17194:12;17184:22;;17251:1;17245:4;17241:12;17272:18;17262:81;;17328:4;17320:6;17316:17;17306:27;;17262:81;17390:2;17382:6;17379:14;17359:18;17356:38;17353:84;;17409:18;;:::i;:::-;17353:84;17174:269;17123:320;;;:::o;17449:180::-;17497:77;17494:1;17487:88;17594:4;17591:1;17584:15;17618:4;17615:1;17608:15;17635:410;17675:7;17698:20;17716:1;17698:20;:::i;:::-;17693:25;;17732:20;17750:1;17732:20;:::i;:::-;17727:25;;17787:1;17784;17780:9;17809:30;17827:11;17809:30;:::i;:::-;17798:41;;17988:1;17979:7;17975:15;17972:1;17969:22;17949:1;17942:9;17922:83;17899:139;;18018:18;;:::i;:::-;17899:139;17683:362;17635:410;;;;:::o;18051:180::-;18099:77;18096:1;18089:88;18196:4;18193:1;18186:15;18220:4;18217:1;18210:15;18237:185;18277:1;18294:20;18312:1;18294:20;:::i;:::-;18289:25;;18328:20;18346:1;18328:20;:::i;:::-;18323:25;;18367:1;18357:35;;18372:18;;:::i;:::-;18357:35;18414:1;18411;18407:9;18402:14;;18237:185;;;;:::o;18428:147::-;18529:11;18566:3;18551:18;;18428:147;;;;:::o;18581:114::-;;:::o;18701:398::-;18860:3;18881:83;18962:1;18957:3;18881:83;:::i;:::-;18874:90;;18973:93;19062:3;18973:93;:::i;:::-;19091:1;19086:3;19082:11;19075:18;;18701:398;;;:::o;19105:379::-;19289:3;19311:147;19454:3;19311:147;:::i;:::-;19304:154;;19475:3;19468:10;;19105:379;;;:::o;19490:141::-;19539:4;19562:3;19554:11;;19585:3;19582:1;19575:14;19619:4;19616:1;19606:18;19598:26;;19490:141;;;:::o;19637:93::-;19674:6;19721:2;19716;19709:5;19705:14;19701:23;19691:33;;19637:93;;;:::o;19736:107::-;19780:8;19830:5;19824:4;19820:16;19799:37;;19736:107;;;;:::o;19849:393::-;19918:6;19968:1;19956:10;19952:18;19991:97;20021:66;20010:9;19991:97;:::i;:::-;20109:39;20139:8;20128:9;20109:39;:::i;:::-;20097:51;;20181:4;20177:9;20170:5;20166:21;20157:30;;20230:4;20220:8;20216:19;20209:5;20206:30;20196:40;;19925:317;;19849:393;;;;;:::o;20248:142::-;20298:9;20331:53;20349:34;20358:24;20376:5;20358:24;:::i;:::-;20349:34;:::i;:::-;20331:53;:::i;:::-;20318:66;;20248:142;;;:::o;20396:75::-;20439:3;20460:5;20453:12;;20396:75;;;:::o;20477:269::-;20587:39;20618:7;20587:39;:::i;:::-;20648:91;20697:41;20721:16;20697:41;:::i;:::-;20689:6;20682:4;20676:11;20648:91;:::i;:::-;20642:4;20635:105;20553:193;20477:269;;;:::o;20752:73::-;20797:3;20752:73;:::o;20831:189::-;20908:32;;:::i;:::-;20949:65;21007:6;20999;20993:4;20949:65;:::i;:::-;20884:136;20831:189;;:::o;21026:186::-;21086:120;21103:3;21096:5;21093:14;21086:120;;;21157:39;21194:1;21187:5;21157:39;:::i;:::-;21130:1;21123:5;21119:13;21110:22;;21086:120;;;21026:186;;:::o;21218:543::-;21319:2;21314:3;21311:11;21308:446;;;21353:38;21385:5;21353:38;:::i;:::-;21437:29;21455:10;21437:29;:::i;:::-;21427:8;21423:44;21620:2;21608:10;21605:18;21602:49;;;21641:8;21626:23;;21602:49;21664:80;21720:22;21738:3;21720:22;:::i;:::-;21710:8;21706:37;21693:11;21664:80;:::i;:::-;21323:431;;21308:446;21218:543;;;:::o;21767:117::-;21821:8;21871:5;21865:4;21861:16;21840:37;;21767:117;;;;:::o;21890:169::-;21934:6;21967:51;22015:1;22011:6;22003:5;22000:1;21996:13;21967:51;:::i;:::-;21963:56;22048:4;22042;22038:15;22028:25;;21941:118;21890:169;;;;:::o;22064:295::-;22140:4;22286:29;22311:3;22305:4;22286:29;:::i;:::-;22278:37;;22348:3;22345:1;22341:11;22335:4;22332:21;22324:29;;22064:295;;;;:::o;22364:1395::-;22481:37;22514:3;22481:37;:::i;:::-;22583:18;22575:6;22572:30;22569:56;;;22605:18;;:::i;:::-;22569:56;22649:38;22681:4;22675:11;22649:38;:::i;:::-;22734:67;22794:6;22786;22780:4;22734:67;:::i;:::-;22828:1;22852:4;22839:17;;22884:2;22876:6;22873:14;22901:1;22896:618;;;;23558:1;23575:6;23572:77;;;23624:9;23619:3;23615:19;23609:26;23600:35;;23572:77;23675:67;23735:6;23728:5;23675:67;:::i;:::-;23669:4;23662:81;23531:222;22866:887;;22896:618;22948:4;22944:9;22936:6;22932:22;22982:37;23014:4;22982:37;:::i;:::-;23041:1;23055:208;23069:7;23066:1;23063:14;23055:208;;;23148:9;23143:3;23139:19;23133:26;23125:6;23118:42;23199:1;23191:6;23187:14;23177:24;;23246:2;23235:9;23231:18;23218:31;;23092:4;23089:1;23085:12;23080:17;;23055:208;;;23291:6;23282:7;23279:19;23276:179;;;23349:9;23344:3;23340:19;23334:26;23392:48;23434:4;23426:6;23422:17;23411:9;23392:48;:::i;:::-;23384:6;23377:64;23299:156;23276:179;23501:1;23497;23489:6;23485:14;23481:22;23475:4;23468:36;22903:611;;;22866:887;;22456:1303;;;22364:1395;;:::o;23765:97::-;23824:6;23852:3;23842:13;;23765:97;;;;:::o;23868:1403::-;23992:44;24032:3;24027;23992:44;:::i;:::-;24101:18;24093:6;24090:30;24087:56;;;24123:18;;:::i;:::-;24087:56;24167:38;24199:4;24193:11;24167:38;:::i;:::-;24252:67;24312:6;24304;24298:4;24252:67;:::i;:::-;24346:1;24375:2;24367:6;24364:14;24392:1;24387:632;;;;25063:1;25080:6;25077:84;;;25136:9;25131:3;25127:19;25114:33;25105:42;;25077:84;25187:67;25247:6;25240:5;25187:67;:::i;:::-;25181:4;25174:81;25036:229;24357:908;;24387:632;24439:4;24435:9;24427:6;24423:22;24473:37;24505:4;24473:37;:::i;:::-;24532:1;24546:215;24560:7;24557:1;24554:14;24546:215;;;24646:9;24641:3;24637:19;24624:33;24616:6;24609:49;24697:1;24689:6;24685:14;24675:24;;24744:2;24733:9;24729:18;24716:31;;24583:4;24580:1;24576:12;24571:17;;24546:215;;;24789:6;24780:7;24777:19;24774:186;;;24854:9;24849:3;24845:19;24832:33;24897:48;24939:4;24931:6;24927:17;24916:9;24897:48;:::i;:::-;24889:6;24882:64;24797:163;24774:186;25006:1;25002;24994:6;24990:14;24986:22;24980:4;24973:36;24394:625;;;24357:908;;23967:1304;;;23868:1403;;;:::o;25277:170::-;25417:22;25413:1;25405:6;25401:14;25394:46;25277:170;:::o;25453:366::-;25595:3;25616:67;25680:2;25675:3;25616:67;:::i;:::-;25609:74;;25692:93;25781:3;25692:93;:::i;:::-;25810:2;25805:3;25801:12;25794:19;;25453:366;;;:::o;25825:419::-;25991:4;26029:2;26018:9;26014:18;26006:26;;26078:9;26072:4;26068:20;26064:1;26053:9;26049:17;26042:47;26106:131;26232:4;26106:131;:::i;:::-;26098:139;;25825:419;;;:::o;26250:191::-;26290:3;26309:20;26327:1;26309:20;:::i;:::-;26304:25;;26343:20;26361:1;26343:20;:::i;:::-;26338:25;;26386:1;26383;26379:9;26372:16;;26407:3;26404:1;26401:10;26398:36;;;26414:18;;:::i;:::-;26398:36;26250:191;;;;:::o;26447:170::-;26587:22;26583:1;26575:6;26571:14;26564:46;26447:170;:::o;26623:366::-;26765:3;26786:67;26850:2;26845:3;26786:67;:::i;:::-;26779:74;;26862:93;26951:3;26862:93;:::i;:::-;26980:2;26975:3;26971:12;26964:19;;26623:366;;;:::o;26995:419::-;27161:4;27199:2;27188:9;27184:18;27176:26;;27248:9;27242:4;27238:20;27234:1;27223:9;27219:17;27212:47;27276:131;27402:4;27276:131;:::i;:::-;27268:139;;26995:419;;;:::o;27420:173::-;27560:25;27556:1;27548:6;27544:14;27537:49;27420:173;:::o;27599:366::-;27741:3;27762:67;27826:2;27821:3;27762:67;:::i;:::-;27755:74;;27838:93;27927:3;27838:93;:::i;:::-;27956:2;27951:3;27947:12;27940:19;;27599:366;;;:::o;27971:419::-;28137:4;28175:2;28164:9;28160:18;28152:26;;28224:9;28218:4;28214:20;28210:1;28199:9;28195:17;28188:47;28252:131;28378:4;28252:131;:::i;:::-;28244:139;;27971:419;;;:::o;28396:169::-;28536:21;28532:1;28524:6;28520:14;28513:45;28396:169;:::o;28571:366::-;28713:3;28734:67;28798:2;28793:3;28734:67;:::i;:::-;28727:74;;28810:93;28899:3;28810:93;:::i;:::-;28928:2;28923:3;28919:12;28912:19;;28571:366;;;:::o;28943:419::-;29109:4;29147:2;29136:9;29132:18;29124:26;;29196:9;29190:4;29186:20;29182:1;29171:9;29167:17;29160:47;29224:131;29350:4;29224:131;:::i;:::-;29216:139;;28943:419;;;:::o;29368:175::-;29508:27;29504:1;29496:6;29492:14;29485:51;29368:175;:::o;29549:366::-;29691:3;29712:67;29776:2;29771:3;29712:67;:::i;:::-;29705:74;;29788:93;29877:3;29788:93;:::i;:::-;29906:2;29901:3;29897:12;29890:19;;29549:366;;;:::o;29921:419::-;30087:4;30125:2;30114:9;30110:18;30102:26;;30174:9;30168:4;30164:20;30160:1;30149:9;30145:17;30138:47;30202:131;30328:4;30202:131;:::i;:::-;30194:139;;29921:419;;;:::o;30346:169::-;30486:21;30482:1;30474:6;30470:14;30463:45;30346:169;:::o;30521:366::-;30663:3;30684:67;30748:2;30743:3;30684:67;:::i;:::-;30677:74;;30760:93;30849:3;30760:93;:::i;:::-;30878:2;30873:3;30869:12;30862:19;;30521:366;;;:::o;30893:419::-;31059:4;31097:2;31086:9;31082:18;31074:26;;31146:9;31140:4;31136:20;31132:1;31121:9;31117:17;31110:47;31174:131;31300:4;31174:131;:::i;:::-;31166:139;;30893:419;;;:::o;31318:148::-;31420:11;31457:3;31442:18;;31318:148;;;;:::o;31472:390::-;31578:3;31606:39;31639:5;31606:39;:::i;:::-;31661:89;31743:6;31738:3;31661:89;:::i;:::-;31654:96;;31759:65;31817:6;31812:3;31805:4;31798:5;31794:16;31759:65;:::i;:::-;31849:6;31844:3;31840:16;31833:23;;31582:280;31472:390;;;;:::o;31868:155::-;32008:7;32004:1;31996:6;31992:14;31985:31;31868:155;:::o;32029:400::-;32189:3;32210:84;32292:1;32287:3;32210:84;:::i;:::-;32203:91;;32303:93;32392:3;32303:93;:::i;:::-;32421:1;32416:3;32412:11;32405:18;;32029:400;;;:::o;32435:701::-;32716:3;32738:95;32829:3;32820:6;32738:95;:::i;:::-;32731:102;;32850:95;32941:3;32932:6;32850:95;:::i;:::-;32843:102;;32962:148;33106:3;32962:148;:::i;:::-;32955:155;;33127:3;33120:10;;32435:701;;;;;:::o;33142:225::-;33282:34;33278:1;33270:6;33266:14;33259:58;33351:8;33346:2;33338:6;33334:15;33327:33;33142:225;:::o;33373:366::-;33515:3;33536:67;33600:2;33595:3;33536:67;:::i;:::-;33529:74;;33612:93;33701:3;33612:93;:::i;:::-;33730:2;33725:3;33721:12;33714:19;;33373:366;;;:::o;33745:419::-;33911:4;33949:2;33938:9;33934:18;33926:26;;33998:9;33992:4;33988:20;33984:1;33973:9;33969:17;33962:47;34026:131;34152:4;34026:131;:::i;:::-;34018:139;;33745:419;;;:::o;34170:182::-;34310:34;34306:1;34298:6;34294:14;34287:58;34170:182;:::o;34358:366::-;34500:3;34521:67;34585:2;34580:3;34521:67;:::i;:::-;34514:74;;34597:93;34686:3;34597:93;:::i;:::-;34715:2;34710:3;34706:12;34699:19;;34358:366;;;:::o;34730:419::-;34896:4;34934:2;34923:9;34919:18;34911:26;;34983:9;34977:4;34973:20;34969:1;34958:9;34954:17;34947:47;35011:131;35137:4;35011:131;:::i;:::-;35003:139;;34730:419;;;:::o;35155:229::-;35295:34;35291:1;35283:6;35279:14;35272:58;35364:12;35359:2;35351:6;35347:15;35340:37;35155:229;:::o;35390:366::-;35532:3;35553:67;35617:2;35612:3;35553:67;:::i;:::-;35546:74;;35629:93;35718:3;35629:93;:::i;:::-;35747:2;35742:3;35738:12;35731:19;;35390:366;;;:::o;35762:419::-;35928:4;35966:2;35955:9;35951:18;35943:26;;36015:9;36009:4;36005:20;36001:1;35990:9;35986:17;35979:47;36043:131;36169:4;36043:131;:::i;:::-;36035:139;;35762:419;;;:::o;36187:175::-;36327:27;36323:1;36315:6;36311:14;36304:51;36187:175;:::o;36368:366::-;36510:3;36531:67;36595:2;36590:3;36531:67;:::i;:::-;36524:74;;36607:93;36696:3;36607:93;:::i;:::-;36725:2;36720:3;36716:12;36709:19;;36368:366;;;:::o;36740:419::-;36906:4;36944:2;36933:9;36929:18;36921:26;;36993:9;36987:4;36983:20;36979:1;36968:9;36964:17;36957:47;37021:131;37147:4;37021:131;:::i;:::-;37013:139;;36740:419;;;:::o;37165:332::-;37286:4;37324:2;37313:9;37309:18;37301:26;;37337:71;37405:1;37394:9;37390:17;37381:6;37337:71;:::i;:::-;37418:72;37486:2;37475:9;37471:18;37462:6;37418:72;:::i;:::-;37165:332;;;;;:::o;37503:137::-;37557:5;37588:6;37582:13;37573:22;;37604:30;37628:5;37604:30;:::i;:::-;37503:137;;;;:::o;37646:345::-;37713:6;37762:2;37750:9;37741:7;37737:23;37733:32;37730:119;;;37768:79;;:::i;:::-;37730:119;37888:1;37913:61;37966:7;37957:6;37946:9;37942:22;37913:61;:::i;:::-;37903:71;;37859:125;37646:345;;;;:::o;37997:181::-;38137:33;38133:1;38125:6;38121:14;38114:57;37997:181;:::o;38184:366::-;38326:3;38347:67;38411:2;38406:3;38347:67;:::i;:::-;38340:74;;38423:93;38512:3;38423:93;:::i;:::-;38541:2;38536:3;38532:12;38525:19;;38184:366;;;:::o;38556:419::-;38722:4;38760:2;38749:9;38745:18;38737:26;;38809:9;38803:4;38799:20;38795:1;38784:9;38780:17;38773:47;38837:131;38963:4;38837:131;:::i;:::-;38829:139;;38556:419;;;:::o;38981:98::-;39032:6;39066:5;39060:12;39050:22;;38981:98;;;:::o;39085:168::-;39168:11;39202:6;39197:3;39190:19;39242:4;39237:3;39233:14;39218:29;;39085:168;;;;:::o;39259:373::-;39345:3;39373:38;39405:5;39373:38;:::i;:::-;39427:70;39490:6;39485:3;39427:70;:::i;:::-;39420:77;;39506:65;39564:6;39559:3;39552:4;39545:5;39541:16;39506:65;:::i;:::-;39596:29;39618:6;39596:29;:::i;:::-;39591:3;39587:39;39580:46;;39349:283;39259:373;;;;:::o;39638:640::-;39833:4;39871:3;39860:9;39856:19;39848:27;;39885:71;39953:1;39942:9;39938:17;39929:6;39885:71;:::i;:::-;39966:72;40034:2;40023:9;40019:18;40010:6;39966:72;:::i;:::-;40048;40116:2;40105:9;40101:18;40092:6;40048:72;:::i;:::-;40167:9;40161:4;40157:20;40152:2;40141:9;40137:18;40130:48;40195:76;40266:4;40257:6;40195:76;:::i;:::-;40187:84;;39638:640;;;;;;;:::o;40284:141::-;40340:5;40371:6;40365:13;40356:22;;40387:32;40413:5;40387:32;:::i;:::-;40284:141;;;;:::o;40431:349::-;40500:6;40549:2;40537:9;40528:7;40524:23;40520:32;40517:119;;;40555:79;;:::i;:::-;40517:119;40675:1;40700:63;40755:7;40746:6;40735:9;40731:22;40700:63;:::i;:::-;40690:73;;40646:127;40431:349;;;;:::o

Swarm Source

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