ETH Price: $1,973.19 (-0.27%)

Token

CyberAIpunk (CAP)
 

Overview

Max Total Supply

13 CAP

Holders

1

Transfers

-
0

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
CyberAIpunk

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-10-05
*/

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


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (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-rc.1) (utils/Strings.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/MyTest.sol


//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;






contract CyberAIpunk is Ownable, ERC721A {
    uint256 constant public MAX_SUPPLY = 1111;
    

    uint256 public publicPrice = 0.01 ether;

    uint256 constant public PUBLIC_MINT_LIMIT_TXN = 3;
    uint256 constant public PUBLIC_MINT_LIMIT = 3;

    string public revealedURI;

    

    bool public paused = false;
    bool public revealed = true;
    bool public publicSale = false;

    
    address constant internal Artist = 0xb8071E8A83378cB9883Df8B983D075839b2Da7dE;
    
    

    
    mapping(address => uint256) public numUserMints;

    constructor(string memory _name, string memory _symbol, string memory _baseUri) ERC721A("CyberAIpunk", "CAP") { }

    
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function refundOverpay(uint256 price) private {
        if (msg.value > price) {
            (bool succ, ) = payable(msg.sender).call{
                value: (msg.value - price)
            }("");
            require(succ, "Transfer failed");
        }
        else if (msg.value < price) {
            revert("Not enough ETH sent");
        }
    }

    
    

    function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(publicSale, "Public sale inactive");
        require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high");

        uint256 price = publicPrice;
        uint256 currMints = numUserMints[msg.sender];
                
        require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit");
        
        refundOverpay(price * quantity);

        numUserMints[msg.sender] = (currMints + quantity);

        _safeMint(msg.sender, quantity);
    }

    
    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

        currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if (revealed) {
            return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
        }
        else {
            return revealedURI;
        }
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        revealedURI = _baseUri;
    }


    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setPublicEnabled(bool _state) public onlyOwner {
        publicSale = _state;
    }
    
    function withdraw() external payable onlyOwner {
        
        uint256 currBalance = address(this).balance;

        (bool succ, ) = payable(Artist).call{
            value: (currBalance * 10000) / 10000
        }("0xb8071E8A83378cB9883Df8B983D075839b2Da7dE");
        require(succ, "Dev transfer failed");

    }

    
    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

   

    modifier mintCompliance(uint256 quantity) {
        require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","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":[],"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","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":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052662386f26fc100006009556000600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055503480156200006d57600080fd5b5060405162003f5d38038062003f5d833981810160405281019062000093919062000369565b6040518060400160405280600b81526020017f4379626572414970756e6b0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43415000000000000000000000000000000000000000000000000000000000008152506200011f620001136200017260201b60201c565b6200017a60201b60201c565b81600390805190602001906200013792919062000247565b5080600490805190602001906200015092919062000247565b50620001616200023e60201b60201c565b60018190555050505050506200057a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b82805462000255906200049f565b90600052602060002090601f016020900481019282620002795760008555620002c5565b82601f106200029457805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c4578251825591602001919060010190620002a7565b5b509050620002d49190620002d8565b5090565b5b80821115620002f3576000816000905550600101620002d9565b5090565b60006200030e620003088462000433565b6200040a565b9050828152602081018484840111156200032757600080fd5b6200033484828562000469565b509392505050565b600082601f8301126200034e57600080fd5b815162000360848260208601620002f7565b91505092915050565b6000806000606084860312156200037f57600080fd5b600084015167ffffffffffffffff8111156200039a57600080fd5b620003a8868287016200033c565b935050602084015167ffffffffffffffff811115620003c657600080fd5b620003d4868287016200033c565b925050604084015167ffffffffffffffff811115620003f257600080fd5b62000400868287016200033c565b9150509250925092565b60006200041662000429565b9050620004248282620004d5565b919050565b6000604051905090565b600067ffffffffffffffff8211156200045157620004506200053a565b5b6200045c8262000569565b9050602081019050919050565b60005b83811015620004895780820151818401526020810190506200046c565b8381111562000499576000848401525b50505050565b60006002820490506001821680620004b857607f821691505b60208210811415620004cf57620004ce6200050b565b5b50919050565b620004e08262000569565b810181811067ffffffffffffffff821117156200050257620005016200053a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6139d3806200058a6000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a945bf80116100a0578063c87b56dd1161006f578063c87b56dd146106f3578063e0a8085314610730578063e985e9c514610759578063f2fde38b14610796578063f7e8d6ea146107bf57610204565b8063a945bf8014610658578063b88d4fde14610683578063bceae77b1461069f578063c6275255146106ca57610204565b80637af3a1af116100e75780637af3a1af146105875780638da5cb5b146105b05780639007bd72146105db57806395d89b4114610604578063a22cb4651461062f57610204565b80636352211e146104b957806370a08231146104f6578063715018a6146105335780637aeb72421461054a57610204565b80632fecf20b1161019b57806342842e0e1161016a57806342842e0e146103e1578063438b6300146103fd578063518302271461043a57806355f804b3146104655780635c975abb1461048e57610204565b80632fecf20b1461035657806332cb6b0c1461038157806333bc1c5c146103ac5780633ccfd60b146103d757610204565b806316c38b3c116101d757806316c38b3c146102ca57806318160ddd146102f357806323b872dd1461031e5780632db115441461033a57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612a94565b6107ea565b60405161023d919061304f565b60405180910390f35b34801561025257600080fd5b5061025b61087c565b604051610268919061306a565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612b27565b61090e565b6040516102a59190612fc6565b60405180910390f35b6102c860048036038101906102c39190612a2f565b61098d565b005b3480156102d657600080fd5b506102f160048036038101906102ec9190612a6b565b610ad1565b005b3480156102ff57600080fd5b50610308610af6565b604051610315919061320c565b60405180910390f35b61033860048036038101906103339190612929565b610b0d565b005b610354600480360381019061034f9190612b27565b610e32565b005b34801561036257600080fd5b5061036b6110e8565b604051610378919061320c565b60405180910390f35b34801561038d57600080fd5b506103966110ed565b6040516103a3919061320c565b60405180910390f35b3480156103b857600080fd5b506103c16110f3565b6040516103ce919061304f565b60405180910390f35b6103df611106565b005b6103fb60048036038101906103f69190612929565b6111ef565b005b34801561040957600080fd5b50610424600480360381019061041f91906128c4565b61120f565b604051610431919061302d565b60405180910390f35b34801561044657600080fd5b5061044f611366565b60405161045c919061304f565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612ae6565b611379565b005b34801561049a57600080fd5b506104a361139b565b6040516104b0919061304f565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612b27565b6113ae565b6040516104ed9190612fc6565b60405180910390f35b34801561050257600080fd5b5061051d600480360381019061051891906128c4565b6113c0565b60405161052a919061320c565b60405180910390f35b34801561053f57600080fd5b50610548611479565b005b34801561055657600080fd5b50610571600480360381019061056c91906128c4565b61148d565b60405161057e919061320c565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612a6b565b6114a5565b005b3480156105bc57600080fd5b506105c56114ca565b6040516105d29190612fc6565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612b50565b6114f3565b005b34801561061057600080fd5b50610619611620565b604051610626919061306a565b60405180910390f35b34801561063b57600080fd5b50610656600480360381019061065191906129f3565b6116b2565b005b34801561066457600080fd5b5061066d6117bd565b60405161067a919061320c565b60405180910390f35b61069d60048036038101906106989190612978565b6117c3565b005b3480156106ab57600080fd5b506106b4611836565b6040516106c1919061320c565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec9190612b27565b61183b565b005b3480156106ff57600080fd5b5061071a60048036038101906107159190612b27565b61184d565b604051610727919061306a565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612a6b565b611971565b005b34801561076557600080fd5b50610780600480360381019061077b91906128ed565b611996565b60405161078d919061304f565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b891906128c4565b611a2a565b005b3480156107cb57600080fd5b506107d4611aae565b6040516107e1919061306a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108755750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461088b90613515565b80601f01602080910402602001604051908101604052809291908181526020018280546108b790613515565b80156109045780601f106108d957610100808354040283529160200191610904565b820191906000526020600020905b8154815290600101906020018083116108e757829003601f168201915b5050505050905090565b600061091982611b3c565b61094f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610998826113ae565b90508073ffffffffffffffffffffffffffffffffffffffff166109b9611b9b565b73ffffffffffffffffffffffffffffffffffffffff1614610a1c576109e5816109e0611b9b565b611996565b610a1b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ad9611ba3565b80600b60006101000a81548160ff02191690831515021790555050565b6000610b00611c21565b6002546001540303905090565b6000610b1882611c2a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8b84611cf8565b91509150610ba18187610b9c611b9b565b611d1f565b610bed57610bb686610bb1611b9b565b611996565b610bec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c54576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c618686866001611d63565b8015610c6c57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3a85610d16888887611d69565b7c020000000000000000000000000000000000000000000000000000000017611d91565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dc2576000600185019050600060056000838152602001908152602001600020541415610dc0576001548114610dbf578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2a8686866001611dbc565b505050505050565b80600b60009054906101000a900460ff1615610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a906131cc565b60405180910390fd5b61045781610e8f610af6565b610e99919061334a565b1115610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906131ec565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f906130cc565b60405180910390fd5b600b60029054906101000a900460ff16610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e9061316c565b60405180910390fd5b6003821115610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd29061318c565b60405180910390fd5b600060095490506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060038482611034919061334a565b1115611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c906130ec565b60405180910390fd5b611089848361108491906133d1565b611dc2565b8381611095919061334a565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110e23385611ece565b50505050565b600381565b61045781565b600b60029054906101000a900460ff1681565b61110e611ba3565b6000479050600073b8071e8a83378cb9883df8b983d075839b2da7de73ffffffffffffffffffffffffffffffffffffffff16612710808461114f91906133d1565b61115991906133a0565b60405161116590612fb1565b60006040518083038185875af1925050503d80600081146111a2576040519150601f19603f3d011682016040523d82523d6000602084013e6111a7565b606091505b50509050806111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e2906131ac565b60405180910390fd5b5050565b61120a838383604051806020016040528060008152506117c3565b505050565b6060600061121c836113c0565b905060008167ffffffffffffffff811115611260577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561128e5781602001602082028036833780820191505090505b50905060006001905060005b83811080156112ab57506104578211155b1561135a5760006112bb836113ae565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611346578284838151811061132b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050818061134290613578565b9250505b828061135190613578565b9350505061129a565b82945050505050919050565b600b60019054906101000a900460ff1681565b611381611ba3565b80600a90805190602001906113979291906126e8565b5050565b600b60009054906101000a900460ff1681565b60006113b982611c2a565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611428576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611481611ba3565b61148b6000611eec565b565b600c6020528060005260406000206000915090505481565b6114ad611ba3565b80600b60026101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114fb611ba3565b81600b60009054906101000a900460ff161561154c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611543906131cc565b60405180910390fd5b61045781611558610af6565b611562919061334a565b11156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a906131ec565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611608906130cc565b60405180910390fd5b61161b8284611ece565b505050565b60606004805461162f90613515565b80601f016020809104026020016040519081016040528092919081815260200182805461165b90613515565b80156116a85780601f1061167d576101008083540402835291602001916116a8565b820191906000526020600020905b81548152906001019060200180831161168b57829003601f168201915b5050505050905090565b80600860006116bf611b9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176c611b9b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b1919061304f565b60405180910390a35050565b60095481565b6117ce848484610b0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611830576117f984848484611fb0565b61182f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600381565b611843611ba3565b8060098190555050565b606061185882611b3c565b611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e9061312c565b60405180910390fd5b600b60019054906101000a900460ff16156118de57600a6118b783612110565b6040516020016118c8929190612f6d565b604051602081830303815290604052905061196c565b600a80546118eb90613515565b80601f016020809104026020016040519081016040528092919081815260200182805461191790613515565b80156119645780601f1061193957610100808354040283529160200191611964565b820191906000526020600020905b81548152906001019060200180831161194757829003601f168201915b505050505090505b919050565b611979611ba3565b80600b60016101000a81548160ff02191690831515021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a32611ba3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a999061308c565b60405180910390fd5b611aab81611eec565b50565b600a8054611abb90613515565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae790613515565b8015611b345780601f10611b0957610100808354040283529160200191611b34565b820191906000526020600020905b815481529060010190602001808311611b1757829003601f168201915b505050505081565b600081611b47611c21565b11158015611b56575060015482105b8015611b94575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611bab612234565b73ffffffffffffffffffffffffffffffffffffffff16611bc96114ca565b73ffffffffffffffffffffffffffffffffffffffff1614611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c169061310c565b60405180910390fd5b565b60006001905090565b60008082905080611c39611c21565b11611cc157600154811015611cc05760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cbe575b6000811415611cb4576005600083600190039350838152602001908152602001600020549050611c89565b8092505050611cf3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d8086868461223c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80341115611e875760003373ffffffffffffffffffffffffffffffffffffffff168234611def919061342b565b604051611dfb90612f9c565b60006040518083038185875af1925050503d8060008114611e38576040519150601f19603f3d011682016040523d82523d6000602084013e611e3d565b606091505b5050905080611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e78906130ac565b60405180910390fd5b50611ecb565b80341015611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec19061314c565b60405180910390fd5b5b50565b611ee8828260405180602001604052806000815250612245565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fd6611b9b565b8786866040518563ffffffff1660e01b8152600401611ff89493929190612fe1565b602060405180830381600087803b15801561201257600080fd5b505af192505050801561204357506040513d601f19601f820116820180604052508101906120409190612abd565b60015b6120bd573d8060008114612073576040519150601f19603f3d011682016040523d82523d6000602084013e612078565b606091505b506000815114156120b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000600161211f846122e3565b01905060008167ffffffffffffffff811115612164577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121965781602001600182028036833780820191505090505b509050600082602001820190505b600115612229578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612213577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b049450600085141561222457612229565b6121a4565b819350505050919050565b600033905090565b60009392505050565b61224f838361251a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122de5760006001549050600083820390505b6122906000868380600101945086611fb0565b6122c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061227d5781600154146122db57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612367577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161235d577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123ca576d04ee2d6d415b85acef810000000083816123c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc10000831061241f57662386f26fc100008381612415577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e100831061246e576305f5e1008381612464577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b61271083106124b95761271083816124af577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b6064831061250257606483816124f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a8310612511576001810190505b80915050919050565b60006001549050600082141561255c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125696000848385611d63565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125e0836125d16000866000611d69565b6125da856126d8565b17611d91565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461268157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612646565b5060008214156126bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506126d36000848385611dbc565b505050565b60006001821460e11b9050919050565b8280546126f490613515565b90600052602060002090601f016020900481019282612716576000855561275d565b82601f1061272f57805160ff191683800117855561275d565b8280016001018555821561275d579182015b8281111561275c578251825591602001919060010190612741565b5b50905061276a919061276e565b5090565b5b8082111561278757600081600090555060010161276f565b5090565b600061279e6127998461324c565b613227565b9050828152602081018484840111156127b657600080fd5b6127c18482856134d3565b509392505050565b60006127dc6127d78461327d565b613227565b9050828152602081018484840111156127f457600080fd5b6127ff8482856134d3565b509392505050565b60008135905061281681613941565b92915050565b60008135905061282b81613958565b92915050565b6000813590506128408161396f565b92915050565b6000815190506128558161396f565b92915050565b600082601f83011261286c57600080fd5b813561287c84826020860161278b565b91505092915050565b600082601f83011261289657600080fd5b81356128a68482602086016127c9565b91505092915050565b6000813590506128be81613986565b92915050565b6000602082840312156128d657600080fd5b60006128e484828501612807565b91505092915050565b6000806040838503121561290057600080fd5b600061290e85828601612807565b925050602061291f85828601612807565b9150509250929050565b60008060006060848603121561293e57600080fd5b600061294c86828701612807565b935050602061295d86828701612807565b925050604061296e868287016128af565b9150509250925092565b6000806000806080858703121561298e57600080fd5b600061299c87828801612807565b94505060206129ad87828801612807565b93505060406129be878288016128af565b925050606085013567ffffffffffffffff8111156129db57600080fd5b6129e78782880161285b565b91505092959194509250565b60008060408385031215612a0657600080fd5b6000612a1485828601612807565b9250506020612a258582860161281c565b9150509250929050565b60008060408385031215612a4257600080fd5b6000612a5085828601612807565b9250506020612a61858286016128af565b9150509250929050565b600060208284031215612a7d57600080fd5b6000612a8b8482850161281c565b91505092915050565b600060208284031215612aa657600080fd5b6000612ab484828501612831565b91505092915050565b600060208284031215612acf57600080fd5b6000612add84828501612846565b91505092915050565b600060208284031215612af857600080fd5b600082013567ffffffffffffffff811115612b1257600080fd5b612b1e84828501612885565b91505092915050565b600060208284031215612b3957600080fd5b6000612b47848285016128af565b91505092915050565b60008060408385031215612b6357600080fd5b6000612b71858286016128af565b9250506020612b8285828601612807565b9150509250929050565b6000612b988383612f4f565b60208301905092915050565b612bad8161345f565b82525050565b6000612bbe826132d3565b612bc88185613301565b9350612bd3836132ae565b8060005b83811015612c04578151612beb8882612b8c565b9750612bf6836132f4565b925050600181019050612bd7565b5085935050505092915050565b612c1a81613471565b82525050565b6000612c2b826132de565b612c358185613312565b9350612c458185602086016134e2565b612c4e8161367d565b840191505092915050565b6000612c64826132e9565b612c6e818561332e565b9350612c7e8185602086016134e2565b612c878161367d565b840191505092915050565b6000612c9d826132e9565b612ca7818561333f565b9350612cb78185602086016134e2565b80840191505092915050565b60008154612cd081613515565b612cda818661333f565b94506001821660008114612cf55760018114612d0657612d39565b60ff19831686528186019350612d39565b612d0f856132be565b60005b83811015612d3157815481890152600182019150602081019050612d12565b838801955050505b50505092915050565b6000612d4f60268361332e565b9150612d5a8261368e565b604082019050919050565b6000612d72600f8361332e565b9150612d7d826136dd565b602082019050919050565b6000612d9560138361332e565b9150612da082613706565b602082019050919050565b6000612db860138361332e565b9150612dc38261372f565b602082019050919050565b6000612ddb60058361333f565b9150612de682613758565b600582019050919050565b6000612dfe60208361332e565b9150612e0982613781565b602082019050919050565b6000612e21602f8361332e565b9150612e2c826137aa565b604082019050919050565b6000612e4460138361332e565b9150612e4f826137f9565b602082019050919050565b6000612e6760148361332e565b9150612e7282613822565b602082019050919050565b6000612e8a60118361332e565b9150612e958261384b565b602082019050919050565b6000612ead600083613323565b9150612eb882613874565b600082019050919050565b6000612ed060138361332e565b9150612edb82613877565b602082019050919050565b6000612ef360128361332e565b9150612efe826138a0565b602082019050919050565b6000612f1660158361332e565b9150612f21826138c9565b602082019050919050565b6000612f39602a83613323565b9150612f44826138f2565b602a82019050919050565b612f58816134c9565b82525050565b612f67816134c9565b82525050565b6000612f798285612cc3565b9150612f858284612c92565b9150612f9082612dce565b91508190509392505050565b6000612fa782612ea0565b9150819050919050565b6000612fbc82612f2c565b9150819050919050565b6000602082019050612fdb6000830184612ba4565b92915050565b6000608082019050612ff66000830187612ba4565b6130036020830186612ba4565b6130106040830185612f5e565b81810360608301526130228184612c20565b905095945050505050565b600060208201905081810360008301526130478184612bb3565b905092915050565b60006020820190506130646000830184612c11565b92915050565b600060208201905081810360008301526130848184612c59565b905092915050565b600060208201905081810360008301526130a581612d42565b9050919050565b600060208201905081810360008301526130c581612d65565b9050919050565b600060208201905081810360008301526130e581612d88565b9050919050565b6000602082019050818103600083015261310581612dab565b9050919050565b6000602082019050818103600083015261312581612df1565b9050919050565b6000602082019050818103600083015261314581612e14565b9050919050565b6000602082019050818103600083015261316581612e37565b9050919050565b6000602082019050818103600083015261318581612e5a565b9050919050565b600060208201905081810360008301526131a581612e7d565b9050919050565b600060208201905081810360008301526131c581612ec3565b9050919050565b600060208201905081810360008301526131e581612ee6565b9050919050565b6000602082019050818103600083015261320581612f09565b9050919050565b60006020820190506132216000830184612f5e565b92915050565b6000613231613242565b905061323d8282613547565b919050565b6000604051905090565b600067ffffffffffffffff8211156132675761326661364e565b5b6132708261367d565b9050602081019050919050565b600067ffffffffffffffff8211156132985761329761364e565b5b6132a18261367d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613355826134c9565b9150613360836134c9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613395576133946135c1565b5b828201905092915050565b60006133ab826134c9565b91506133b6836134c9565b9250826133c6576133c56135f0565b5b828204905092915050565b60006133dc826134c9565b91506133e7836134c9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134205761341f6135c1565b5b828202905092915050565b6000613436826134c9565b9150613441836134c9565b925082821015613454576134536135c1565b5b828203905092915050565b600061346a826134a9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135005780820151818401526020810190506134e5565b8381111561350f576000848401525b50505050565b6000600282049050600182168061352d57607f821691505b602082108114156135415761354061361f565b5b50919050565b6135508261367d565b810181811067ffffffffffffffff8211171561356f5761356e61364e565b5b80604052505050565b6000613583826134c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135b6576135b56135c1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f446576207472616e73666572206661696c656400000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b7f307862383037314538413833333738634239383833446638423938334430373560008201527f3833396232446137644500000000000000000000000000000000000000000000602082015250565b61394a8161345f565b811461395557600080fd5b50565b61396181613471565b811461396c57600080fd5b50565b6139788161347d565b811461398357600080fd5b50565b61398f816134c9565b811461399a57600080fd5b5056fea26469706673582212209a9b90934ddc82ec871575d9e85c7734b79cba361df089510498df15523a981264736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4379626572414970756e6b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343415000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54647974356174456a4d6e3164587069364c433568676f546a456959386a64526a7a52665956726564746f662f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063a945bf80116100a0578063c87b56dd1161006f578063c87b56dd146106f3578063e0a8085314610730578063e985e9c514610759578063f2fde38b14610796578063f7e8d6ea146107bf57610204565b8063a945bf8014610658578063b88d4fde14610683578063bceae77b1461069f578063c6275255146106ca57610204565b80637af3a1af116100e75780637af3a1af146105875780638da5cb5b146105b05780639007bd72146105db57806395d89b4114610604578063a22cb4651461062f57610204565b80636352211e146104b957806370a08231146104f6578063715018a6146105335780637aeb72421461054a57610204565b80632fecf20b1161019b57806342842e0e1161016a57806342842e0e146103e1578063438b6300146103fd578063518302271461043a57806355f804b3146104655780635c975abb1461048e57610204565b80632fecf20b1461035657806332cb6b0c1461038157806333bc1c5c146103ac5780633ccfd60b146103d757610204565b806316c38b3c116101d757806316c38b3c146102ca57806318160ddd146102f357806323b872dd1461031e5780632db115441461033a57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612a94565b6107ea565b60405161023d919061304f565b60405180910390f35b34801561025257600080fd5b5061025b61087c565b604051610268919061306a565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612b27565b61090e565b6040516102a59190612fc6565b60405180910390f35b6102c860048036038101906102c39190612a2f565b61098d565b005b3480156102d657600080fd5b506102f160048036038101906102ec9190612a6b565b610ad1565b005b3480156102ff57600080fd5b50610308610af6565b604051610315919061320c565b60405180910390f35b61033860048036038101906103339190612929565b610b0d565b005b610354600480360381019061034f9190612b27565b610e32565b005b34801561036257600080fd5b5061036b6110e8565b604051610378919061320c565b60405180910390f35b34801561038d57600080fd5b506103966110ed565b6040516103a3919061320c565b60405180910390f35b3480156103b857600080fd5b506103c16110f3565b6040516103ce919061304f565b60405180910390f35b6103df611106565b005b6103fb60048036038101906103f69190612929565b6111ef565b005b34801561040957600080fd5b50610424600480360381019061041f91906128c4565b61120f565b604051610431919061302d565b60405180910390f35b34801561044657600080fd5b5061044f611366565b60405161045c919061304f565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612ae6565b611379565b005b34801561049a57600080fd5b506104a361139b565b6040516104b0919061304f565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612b27565b6113ae565b6040516104ed9190612fc6565b60405180910390f35b34801561050257600080fd5b5061051d600480360381019061051891906128c4565b6113c0565b60405161052a919061320c565b60405180910390f35b34801561053f57600080fd5b50610548611479565b005b34801561055657600080fd5b50610571600480360381019061056c91906128c4565b61148d565b60405161057e919061320c565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612a6b565b6114a5565b005b3480156105bc57600080fd5b506105c56114ca565b6040516105d29190612fc6565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612b50565b6114f3565b005b34801561061057600080fd5b50610619611620565b604051610626919061306a565b60405180910390f35b34801561063b57600080fd5b50610656600480360381019061065191906129f3565b6116b2565b005b34801561066457600080fd5b5061066d6117bd565b60405161067a919061320c565b60405180910390f35b61069d60048036038101906106989190612978565b6117c3565b005b3480156106ab57600080fd5b506106b4611836565b6040516106c1919061320c565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec9190612b27565b61183b565b005b3480156106ff57600080fd5b5061071a60048036038101906107159190612b27565b61184d565b604051610727919061306a565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612a6b565b611971565b005b34801561076557600080fd5b50610780600480360381019061077b91906128ed565b611996565b60405161078d919061304f565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b891906128c4565b611a2a565b005b3480156107cb57600080fd5b506107d4611aae565b6040516107e1919061306a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108755750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461088b90613515565b80601f01602080910402602001604051908101604052809291908181526020018280546108b790613515565b80156109045780601f106108d957610100808354040283529160200191610904565b820191906000526020600020905b8154815290600101906020018083116108e757829003601f168201915b5050505050905090565b600061091982611b3c565b61094f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610998826113ae565b90508073ffffffffffffffffffffffffffffffffffffffff166109b9611b9b565b73ffffffffffffffffffffffffffffffffffffffff1614610a1c576109e5816109e0611b9b565b611996565b610a1b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ad9611ba3565b80600b60006101000a81548160ff02191690831515021790555050565b6000610b00611c21565b6002546001540303905090565b6000610b1882611c2a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8b84611cf8565b91509150610ba18187610b9c611b9b565b611d1f565b610bed57610bb686610bb1611b9b565b611996565b610bec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c54576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c618686866001611d63565b8015610c6c57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3a85610d16888887611d69565b7c020000000000000000000000000000000000000000000000000000000017611d91565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dc2576000600185019050600060056000838152602001908152602001600020541415610dc0576001548114610dbf578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2a8686866001611dbc565b505050505050565b80600b60009054906101000a900460ff1615610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a906131cc565b60405180910390fd5b61045781610e8f610af6565b610e99919061334a565b1115610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906131ec565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f906130cc565b60405180910390fd5b600b60029054906101000a900460ff16610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e9061316c565b60405180910390fd5b6003821115610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd29061318c565b60405180910390fd5b600060095490506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060038482611034919061334a565b1115611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c906130ec565b60405180910390fd5b611089848361108491906133d1565b611dc2565b8381611095919061334a565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110e23385611ece565b50505050565b600381565b61045781565b600b60029054906101000a900460ff1681565b61110e611ba3565b6000479050600073b8071e8a83378cb9883df8b983d075839b2da7de73ffffffffffffffffffffffffffffffffffffffff16612710808461114f91906133d1565b61115991906133a0565b60405161116590612fb1565b60006040518083038185875af1925050503d80600081146111a2576040519150601f19603f3d011682016040523d82523d6000602084013e6111a7565b606091505b50509050806111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e2906131ac565b60405180910390fd5b5050565b61120a838383604051806020016040528060008152506117c3565b505050565b6060600061121c836113c0565b905060008167ffffffffffffffff811115611260577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561128e5781602001602082028036833780820191505090505b50905060006001905060005b83811080156112ab57506104578211155b1561135a5760006112bb836113ae565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611346578284838151811061132b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050818061134290613578565b9250505b828061135190613578565b9350505061129a565b82945050505050919050565b600b60019054906101000a900460ff1681565b611381611ba3565b80600a90805190602001906113979291906126e8565b5050565b600b60009054906101000a900460ff1681565b60006113b982611c2a565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611428576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611481611ba3565b61148b6000611eec565b565b600c6020528060005260406000206000915090505481565b6114ad611ba3565b80600b60026101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114fb611ba3565b81600b60009054906101000a900460ff161561154c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611543906131cc565b60405180910390fd5b61045781611558610af6565b611562919061334a565b11156115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a906131ec565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611608906130cc565b60405180910390fd5b61161b8284611ece565b505050565b60606004805461162f90613515565b80601f016020809104026020016040519081016040528092919081815260200182805461165b90613515565b80156116a85780601f1061167d576101008083540402835291602001916116a8565b820191906000526020600020905b81548152906001019060200180831161168b57829003601f168201915b5050505050905090565b80600860006116bf611b9b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661176c611b9b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117b1919061304f565b60405180910390a35050565b60095481565b6117ce848484610b0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611830576117f984848484611fb0565b61182f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600381565b611843611ba3565b8060098190555050565b606061185882611b3c565b611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e9061312c565b60405180910390fd5b600b60019054906101000a900460ff16156118de57600a6118b783612110565b6040516020016118c8929190612f6d565b604051602081830303815290604052905061196c565b600a80546118eb90613515565b80601f016020809104026020016040519081016040528092919081815260200182805461191790613515565b80156119645780601f1061193957610100808354040283529160200191611964565b820191906000526020600020905b81548152906001019060200180831161194757829003601f168201915b505050505090505b919050565b611979611ba3565b80600b60016101000a81548160ff02191690831515021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a32611ba3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a999061308c565b60405180910390fd5b611aab81611eec565b50565b600a8054611abb90613515565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae790613515565b8015611b345780601f10611b0957610100808354040283529160200191611b34565b820191906000526020600020905b815481529060010190602001808311611b1757829003601f168201915b505050505081565b600081611b47611c21565b11158015611b56575060015482105b8015611b94575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611bab612234565b73ffffffffffffffffffffffffffffffffffffffff16611bc96114ca565b73ffffffffffffffffffffffffffffffffffffffff1614611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c169061310c565b60405180910390fd5b565b60006001905090565b60008082905080611c39611c21565b11611cc157600154811015611cc05760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611cbe575b6000811415611cb4576005600083600190039350838152602001908152602001600020549050611c89565b8092505050611cf3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d8086868461223c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80341115611e875760003373ffffffffffffffffffffffffffffffffffffffff168234611def919061342b565b604051611dfb90612f9c565b60006040518083038185875af1925050503d8060008114611e38576040519150601f19603f3d011682016040523d82523d6000602084013e611e3d565b606091505b5050905080611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e78906130ac565b60405180910390fd5b50611ecb565b80341015611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec19061314c565b60405180910390fd5b5b50565b611ee8828260405180602001604052806000815250612245565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fd6611b9b565b8786866040518563ffffffff1660e01b8152600401611ff89493929190612fe1565b602060405180830381600087803b15801561201257600080fd5b505af192505050801561204357506040513d601f19601f820116820180604052508101906120409190612abd565b60015b6120bd573d8060008114612073576040519150601f19603f3d011682016040523d82523d6000602084013e612078565b606091505b506000815114156120b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000600161211f846122e3565b01905060008167ffffffffffffffff811115612164577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121965781602001600182028036833780820191505090505b509050600082602001820190505b600115612229578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612213577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b049450600085141561222457612229565b6121a4565b819350505050919050565b600033905090565b60009392505050565b61224f838361251a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122de5760006001549050600083820390505b6122906000868380600101945086611fb0565b6122c6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061227d5781600154146122db57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612367577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161235d577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123ca576d04ee2d6d415b85acef810000000083816123c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc10000831061241f57662386f26fc100008381612415577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e100831061246e576305f5e1008381612464577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b61271083106124b95761271083816124af577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b6064831061250257606483816124f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a8310612511576001810190505b80915050919050565b60006001549050600082141561255c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125696000848385611d63565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125e0836125d16000866000611d69565b6125da856126d8565b17611d91565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461268157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612646565b5060008214156126bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506126d36000848385611dbc565b505050565b60006001821460e11b9050919050565b8280546126f490613515565b90600052602060002090601f016020900481019282612716576000855561275d565b82601f1061272f57805160ff191683800117855561275d565b8280016001018555821561275d579182015b8281111561275c578251825591602001919060010190612741565b5b50905061276a919061276e565b5090565b5b8082111561278757600081600090555060010161276f565b5090565b600061279e6127998461324c565b613227565b9050828152602081018484840111156127b657600080fd5b6127c18482856134d3565b509392505050565b60006127dc6127d78461327d565b613227565b9050828152602081018484840111156127f457600080fd5b6127ff8482856134d3565b509392505050565b60008135905061281681613941565b92915050565b60008135905061282b81613958565b92915050565b6000813590506128408161396f565b92915050565b6000815190506128558161396f565b92915050565b600082601f83011261286c57600080fd5b813561287c84826020860161278b565b91505092915050565b600082601f83011261289657600080fd5b81356128a68482602086016127c9565b91505092915050565b6000813590506128be81613986565b92915050565b6000602082840312156128d657600080fd5b60006128e484828501612807565b91505092915050565b6000806040838503121561290057600080fd5b600061290e85828601612807565b925050602061291f85828601612807565b9150509250929050565b60008060006060848603121561293e57600080fd5b600061294c86828701612807565b935050602061295d86828701612807565b925050604061296e868287016128af565b9150509250925092565b6000806000806080858703121561298e57600080fd5b600061299c87828801612807565b94505060206129ad87828801612807565b93505060406129be878288016128af565b925050606085013567ffffffffffffffff8111156129db57600080fd5b6129e78782880161285b565b91505092959194509250565b60008060408385031215612a0657600080fd5b6000612a1485828601612807565b9250506020612a258582860161281c565b9150509250929050565b60008060408385031215612a4257600080fd5b6000612a5085828601612807565b9250506020612a61858286016128af565b9150509250929050565b600060208284031215612a7d57600080fd5b6000612a8b8482850161281c565b91505092915050565b600060208284031215612aa657600080fd5b6000612ab484828501612831565b91505092915050565b600060208284031215612acf57600080fd5b6000612add84828501612846565b91505092915050565b600060208284031215612af857600080fd5b600082013567ffffffffffffffff811115612b1257600080fd5b612b1e84828501612885565b91505092915050565b600060208284031215612b3957600080fd5b6000612b47848285016128af565b91505092915050565b60008060408385031215612b6357600080fd5b6000612b71858286016128af565b9250506020612b8285828601612807565b9150509250929050565b6000612b988383612f4f565b60208301905092915050565b612bad8161345f565b82525050565b6000612bbe826132d3565b612bc88185613301565b9350612bd3836132ae565b8060005b83811015612c04578151612beb8882612b8c565b9750612bf6836132f4565b925050600181019050612bd7565b5085935050505092915050565b612c1a81613471565b82525050565b6000612c2b826132de565b612c358185613312565b9350612c458185602086016134e2565b612c4e8161367d565b840191505092915050565b6000612c64826132e9565b612c6e818561332e565b9350612c7e8185602086016134e2565b612c878161367d565b840191505092915050565b6000612c9d826132e9565b612ca7818561333f565b9350612cb78185602086016134e2565b80840191505092915050565b60008154612cd081613515565b612cda818661333f565b94506001821660008114612cf55760018114612d0657612d39565b60ff19831686528186019350612d39565b612d0f856132be565b60005b83811015612d3157815481890152600182019150602081019050612d12565b838801955050505b50505092915050565b6000612d4f60268361332e565b9150612d5a8261368e565b604082019050919050565b6000612d72600f8361332e565b9150612d7d826136dd565b602082019050919050565b6000612d9560138361332e565b9150612da082613706565b602082019050919050565b6000612db860138361332e565b9150612dc38261372f565b602082019050919050565b6000612ddb60058361333f565b9150612de682613758565b600582019050919050565b6000612dfe60208361332e565b9150612e0982613781565b602082019050919050565b6000612e21602f8361332e565b9150612e2c826137aa565b604082019050919050565b6000612e4460138361332e565b9150612e4f826137f9565b602082019050919050565b6000612e6760148361332e565b9150612e7282613822565b602082019050919050565b6000612e8a60118361332e565b9150612e958261384b565b602082019050919050565b6000612ead600083613323565b9150612eb882613874565b600082019050919050565b6000612ed060138361332e565b9150612edb82613877565b602082019050919050565b6000612ef360128361332e565b9150612efe826138a0565b602082019050919050565b6000612f1660158361332e565b9150612f21826138c9565b602082019050919050565b6000612f39602a83613323565b9150612f44826138f2565b602a82019050919050565b612f58816134c9565b82525050565b612f67816134c9565b82525050565b6000612f798285612cc3565b9150612f858284612c92565b9150612f9082612dce565b91508190509392505050565b6000612fa782612ea0565b9150819050919050565b6000612fbc82612f2c565b9150819050919050565b6000602082019050612fdb6000830184612ba4565b92915050565b6000608082019050612ff66000830187612ba4565b6130036020830186612ba4565b6130106040830185612f5e565b81810360608301526130228184612c20565b905095945050505050565b600060208201905081810360008301526130478184612bb3565b905092915050565b60006020820190506130646000830184612c11565b92915050565b600060208201905081810360008301526130848184612c59565b905092915050565b600060208201905081810360008301526130a581612d42565b9050919050565b600060208201905081810360008301526130c581612d65565b9050919050565b600060208201905081810360008301526130e581612d88565b9050919050565b6000602082019050818103600083015261310581612dab565b9050919050565b6000602082019050818103600083015261312581612df1565b9050919050565b6000602082019050818103600083015261314581612e14565b9050919050565b6000602082019050818103600083015261316581612e37565b9050919050565b6000602082019050818103600083015261318581612e5a565b9050919050565b600060208201905081810360008301526131a581612e7d565b9050919050565b600060208201905081810360008301526131c581612ec3565b9050919050565b600060208201905081810360008301526131e581612ee6565b9050919050565b6000602082019050818103600083015261320581612f09565b9050919050565b60006020820190506132216000830184612f5e565b92915050565b6000613231613242565b905061323d8282613547565b919050565b6000604051905090565b600067ffffffffffffffff8211156132675761326661364e565b5b6132708261367d565b9050602081019050919050565b600067ffffffffffffffff8211156132985761329761364e565b5b6132a18261367d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613355826134c9565b9150613360836134c9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613395576133946135c1565b5b828201905092915050565b60006133ab826134c9565b91506133b6836134c9565b9250826133c6576133c56135f0565b5b828204905092915050565b60006133dc826134c9565b91506133e7836134c9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134205761341f6135c1565b5b828202905092915050565b6000613436826134c9565b9150613441836134c9565b925082821015613454576134536135c1565b5b828203905092915050565b600061346a826134a9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135005780820151818401526020810190506134e5565b8381111561350f576000848401525b50505050565b6000600282049050600182168061352d57607f821691505b602082108114156135415761354061361f565b5b50919050565b6135508261367d565b810181811067ffffffffffffffff8211171561356f5761356e61364e565b5b80604052505050565b6000613583826134c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135b6576135b56135c1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f446576207472616e73666572206661696c656400000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b7f307862383037314538413833333738634239383833446638423938334430373560008201527f3833396232446137644500000000000000000000000000000000000000000000602082015250565b61394a8161345f565b811461395557600080fd5b50565b61396181613471565b811461396c57600080fd5b50565b6139788161347d565b811461398357600080fd5b50565b61398f816134c9565b811461399a57600080fd5b5056fea26469706673582212209a9b90934ddc82ec871575d9e85c7734b79cba361df089510498df15523a981264736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4379626572414970756e6b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000343415000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54647974356174456a4d6e3164587069364c433568676f546a456959386a64526a7a52665956726564746f662f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CyberAIpunk
Arg [1] : _symbol (string): CAP
Arg [2] : _baseUri (string): ipfs://QmTdyt5atEjMn1dXpi6LC5hgoTjEiY8jdRjzRfYVredtof/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4379626572414970756e6b000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4341500000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d54647974356174456a4d6e3164587069364c433568676f
Arg [9] : 546a456959386a64526a7a52665956726564746f662f00000000000000000000


Deployed Bytecode Sourcemap

70341:4155:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37206:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38108:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44599:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44032:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73441:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33859:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48238:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71534:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70493:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70389:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70712:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73733:325;;;:::i;:::-;;51159:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72119:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70678:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73329:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70645:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39501:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35043:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17985:103;;;;;;;;;;;;;:::i;:::-;;70861:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73627:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17337:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74072:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38284:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45157:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70445:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51950:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70549:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73213:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72816:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73532:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45548:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18243:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70603:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37206:639;37291:4;37630:10;37615:25;;:11;:25;;;;:102;;;;37707:10;37692:25;;:11;:25;;;;37615:102;:179;;;;37784:10;37769:25;;:11;:25;;;;37615:179;37595:199;;37206:639;;;:::o;38108:100::-;38162:13;38195:5;38188:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38108:100;:::o;44599:218::-;44675:7;44700:16;44708:7;44700;:16::i;:::-;44695:64;;44725:34;;;;;;;;;;;;;;44695:64;44779:15;:24;44795:7;44779:24;;;;;;;;;;;:30;;;;;;;;;;;;44772:37;;44599:218;;;:::o;44032:408::-;44121:13;44137:16;44145:7;44137;:16::i;:::-;44121:32;;44193:5;44170:28;;:19;:17;:19::i;:::-;:28;;;44166:175;;44218:44;44235:5;44242:19;:17;:19::i;:::-;44218:16;:44::i;:::-;44213:128;;44290:35;;;;;;;;;;;;;;44213:128;44166:175;44386:2;44353:15;:24;44369:7;44353:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44424:7;44420:2;44404:28;;44413:5;44404:28;;;;;;;;;;;;44032:408;;;:::o;73441:83::-;17223:13;:11;:13::i;:::-;73510:6:::1;73501;;:15;;;;;;;;;;;;;;;;;;73441:83:::0;:::o;33859:323::-;33920:7;34148:15;:13;:15::i;:::-;34133:12;;34117:13;;:28;:46;34110:53;;33859:323;:::o;48238:2825::-;48380:27;48410;48429:7;48410:18;:27::i;:::-;48380:57;;48495:4;48454:45;;48470:19;48454:45;;;48450:86;;48508:28;;;;;;;;;;;;;;48450:86;48550:27;48579:23;48606:35;48633:7;48606:26;:35::i;:::-;48549:92;;;;48741:68;48766:15;48783:4;48789:19;:17;:19::i;:::-;48741:24;:68::i;:::-;48736:180;;48829:43;48846:4;48852:19;:17;:19::i;:::-;48829:16;:43::i;:::-;48824:92;;48881:35;;;;;;;;;;;;;;48824:92;48736:180;48947:1;48933:16;;:2;:16;;;48929:52;;;48958:23;;;;;;;;;;;;;;48929:52;48994:43;49016:4;49022:2;49026:7;49035:1;48994:21;:43::i;:::-;49130:15;49127:2;;;49270:1;49249:19;49242:30;49127:2;49667:18;:24;49686:4;49667:24;;;;;;;;;;;;;;;;49665:26;;;;;;;;;;;;49736:18;:22;49755:2;49736:22;;;;;;;;;;;;;;;;49734:24;;;;;;;;;;;50058:146;50095:2;50144:45;50159:4;50165:2;50169:19;50144:14;:45::i;:::-;30258:8;50116:73;50058:18;:146::i;:::-;50029:17;:26;50047:7;50029:26;;;;;;;;;;;:175;;;;50375:1;30258:8;50324:19;:47;:52;50320:627;;;50397:19;50429:1;50419:7;:11;50397:33;;50586:1;50552:17;:30;50570:11;50552:30;;;;;;;;;;;;:35;50548:384;;;50690:13;;50675:11;:28;50671:242;;50870:19;50837:17;:30;50855:11;50837:30;;;;;;;;;;;:52;;;;50671:242;50548:384;50320:627;;50994:7;50990:2;50975:27;;50984:4;50975:27;;;;;;;;;;;;51013:42;51034:4;51040:2;51044:7;51053:1;51013:20;:42::i;:::-;48238:2825;;;;;;:::o;71534:571::-;71604:8;74295:6;;;;;;;;;;;74294:7;74286:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;70426:4;74359:8;74343:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;74335:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;74439:10;74426:23;;:9;:23;;;74418:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71633:10:::1;;;;;;;;;;;71625:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;70541:1;71687:8;:33;;71679:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;71755:13;71771:11;;71755:27;;71793:17;71813:12;:24;71826:10;71813:24;;;;;;;;;;;;;;;;71793:44;;70593:1;71886:8;71874:9;:20;;;;:::i;:::-;:41;;71866:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;71960:31;71982:8;71974:5;:16;;;;:::i;:::-;71960:13;:31::i;:::-;72044:8;72032:9;:20;;;;:::i;:::-;72004:12;:24;72017:10;72004:24;;;;;;;;;;;;;;;:49;;;;72066:31;72076:10;72088:8;72066:9;:31::i;:::-;74484:1;;71534:571:::0;;:::o;70493:49::-;70541:1;70493:49;:::o;70389:41::-;70426:4;70389:41;:::o;70712:30::-;;;;;;;;;;;;;:::o;73733:325::-;17223:13;:11;:13::i;:::-;73801:19:::1;73823:21;73801:43;;73858:9;70792:42;73873:20;;73939:5;73930::::0;73916:11:::1;:19;;;;:::i;:::-;73915:29;;;;:::i;:::-;73873:128;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73857:144;;;74020:4;74012:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;17247:1;;73733:325::o:0;51159:193::-;51305:39;51322:4;51328:2;51332:7;51305:39;;;;;;;;;;;;:16;:39::i;:::-;51159:193;;;:::o;72119:689::-;72179:16;72213:23;72239:17;72249:6;72239:9;:17::i;:::-;72213:43;;72267:30;72314:15;72300:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72267:63;;72341:22;72366:1;72341:26;;72378:23;72418:350;72443:15;72425;:33;:65;;;;;70426:4;72462:14;:28;;72425:65;72418:350;;;72507:25;72535:23;72543:14;72535:7;:23::i;:::-;72507:51;;72600:6;72579:27;;:17;:27;;;72575:153;;;72660:14;72627:13;72641:15;72627:30;;;;;;;;;;;;;;;;;;;;;:47;;;;;72695:17;;;;;:::i;:::-;;;;72575:153;72740:16;;;;;:::i;:::-;;;;72418:350;;;;72787:13;72780:20;;;;;;72119:689;;;:::o;70678:27::-;;;;;;;;;;;;;:::o;73329:102::-;17223:13;:11;:13::i;:::-;73415:8:::1;73401:11;:22;;;;;;;;;;;;:::i;:::-;;73329:102:::0;:::o;70645:26::-;;;;;;;;;;;;;:::o;39501:152::-;39573:7;39616:27;39635:7;39616:18;:27::i;:::-;39593:52;;39501:152;;;:::o;35043:233::-;35115:7;35156:1;35139:19;;:5;:19;;;35135:60;;;35167:28;;;;;;;;;;;;;;35135:60;29202:13;35213:18;:25;35232:5;35213:25;;;;;;;;;;;;;;;;:55;35206:62;;35043:233;;;:::o;17985:103::-;17223:13;:11;:13::i;:::-;18050:30:::1;18077:1;18050:18;:30::i;:::-;17985:103::o:0;70861:47::-;;;;;;;;;;;;;;;;;:::o;73627:94::-;17223:13;:11;:13::i;:::-;73707:6:::1;73694:10;;:19;;;;;;;;;;;;;;;;;;73627:94:::0;:::o;17337:87::-;17383:7;17410:6;;;;;;;;;;;17403:13;;17337:87;:::o;74072:146::-;17223:13;:11;:13::i;:::-;74160:8:::1;74295:6;;;;;;;;;;;74294:7;74286:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;70426:4;74359:8;74343:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;74335:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;74439:10;74426:23;;:9;:23;;;74418:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;74181:29:::2;74191:8;74201;74181:9;:29::i;:::-;17247:1:::1;74072:146:::0;;:::o;38284:104::-;38340:13;38373:7;38366:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38284:104;:::o;45157:234::-;45304:8;45252:18;:39;45271:19;:17;:19::i;:::-;45252:39;;;;;;;;;;;;;;;:49;45292:8;45252:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;45364:8;45328:55;;45343:19;:17;:19::i;:::-;45328:55;;;45374:8;45328:55;;;;;;:::i;:::-;;;;;;;;45157:234;;:::o;70445:39::-;;;;:::o;51950:407::-;52125:31;52138:4;52144:2;52148:7;52125:12;:31::i;:::-;52189:1;52171:2;:14;;;:19;52167:183;;52210:56;52241:4;52247:2;52251:7;52260:5;52210:30;:56::i;:::-;52205:145;;52294:40;;;;;;;;;;;;;;52205:145;52167:183;51950:407;;;;:::o;70549:45::-;70593:1;70549:45;:::o;73213:108::-;17223:13;:11;:13::i;:::-;73301:12:::1;73287:11;:26;;;;73213:108:::0;:::o;72816:389::-;72882:13;72926:17;72934:8;72926:7;:17::i;:::-;72918:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;73020:8;;;;;;;;;;;73016:182;;;73076:11;73089:26;73106:8;73089:16;:26::i;:::-;73059:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73045:81;;;;73016:182;73175:11;73168:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72816:389;;;;:::o;73532:87::-;17223:13;:11;:13::i;:::-;73605:6:::1;73594:8;;:17;;;;;;;;;;;;;;;;;;73532:87:::0;:::o;45548:164::-;45645:4;45669:18;:25;45688:5;45669:25;;;;;;;;;;;;;;;:35;45695:8;45669:35;;;;;;;;;;;;;;;;;;;;;;;;;45662:42;;45548:164;;;;:::o;18243:201::-;17223:13;:11;:13::i;:::-;18352:1:::1;18332:22;;:8;:22;;;;18324:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18408:28;18427:8;18408:18;:28::i;:::-;18243:201:::0;:::o;70603:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45970:282::-;46035:4;46091:7;46072:15;:13;:15::i;:::-;:26;;:66;;;;;46125:13;;46115:7;:23;46072:66;:153;;;;;46224:1;29978:8;46176:17;:26;46194:7;46176:26;;;;;;;;;;;;:44;:49;46072:153;46052:173;;45970:282;;;:::o;68278:105::-;68338:7;68365:10;68358:17;;68278:105;:::o;17502:132::-;17577:12;:10;:12::i;:::-;17566:23;;:7;:5;:7::i;:::-;:23;;;17558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17502:132::o;71044:101::-;71109:7;71136:1;71129:8;;71044:101;:::o;40656:1275::-;40723:7;40743:12;40758:7;40743:22;;40826:4;40807:15;:13;:15::i;:::-;:23;40803:1061;;40860:13;;40853:4;:20;40849:1015;;;40898:14;40915:17;:23;40933:4;40915:23;;;;;;;;;;;;40898:40;;41032:1;29978:8;41004:6;:24;:29;41000:845;;;41669:113;41686:1;41676:6;:11;41669:113;;;41729:17;:25;41747:6;;;;;;;41729:25;;;;;;;;;;;;41720:34;;41669:113;;;41815:6;41808:13;;;;;;41000:845;40849:1015;;40803:1061;41892:31;;;;;;;;;;;;;;40656:1275;;;;:::o;47133:485::-;47235:27;47264:23;47305:38;47346:15;:24;47362:7;47346:24;;;;;;;;;;;47305:65;;47523:18;47500:41;;47580:19;47574:26;47555:45;;47485:126;;;;:::o;46361:659::-;46510:11;46675:16;46668:5;46664:28;46655:37;;46835:16;46824:9;46820:32;46807:45;;46985:15;46974:9;46971:30;46963:5;46952:9;46949:20;46946:56;46936:66;;46543:470;;;;;:::o;53019:159::-;;;;;:::o;67587:311::-;67722:7;67742:16;30382:3;67768:19;:41;;67742:68;;30382:3;67836:31;67847:4;67853:2;67857:9;67836:10;:31::i;:::-;67828:40;;:62;;67821:69;;;67587:311;;;;;:::o;42479:450::-;42559:14;42727:16;42720:5;42716:28;42707:37;;42904:5;42890:11;42865:23;42861:41;42858:52;42851:5;42848:63;42838:73;;42595:327;;;;:::o;53843:158::-;;;;;:::o;71153:359::-;71226:5;71214:9;:17;71210:295;;;71249:9;71272:10;71264:24;;71327:5;71315:9;:17;;;;:::i;:::-;71264:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71248:104;;;71375:4;71367:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;71210:295;;;;71442:5;71430:9;:17;71426:79;;;71464:29;;;;;;;;;;:::i;:::-;;;;;;;;71426:79;71210:295;71153:359;:::o;62110:112::-;62187:27;62197:2;62201:8;62187:27;;;;;;;;;;;;:9;:27::i;:::-;62110:112;;:::o;18604:191::-;18678:16;18697:6;;;;;;;;;;;18678:25;;18723:8;18714:6;;:17;;;;;;;;;;;;;;;;;;18778:8;18747:40;;18768:8;18747:40;;;;;;;;;;;;18604:191;;:::o;54441:716::-;54604:4;54650:2;54625:45;;;54671:19;:17;:19::i;:::-;54692:4;54698:7;54707:5;54625:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54621:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54925:1;54908:6;:13;:18;54904:235;;;54954:40;;;;;;;;;;;;;;54904:235;55097:6;55091:13;55082:6;55078:2;55074:15;55067:38;54621:529;54794:54;;;54784:64;;;:6;:64;;;;54777:71;;;54441:716;;;;;;:::o;13315:::-;13371:13;13422:14;13459:1;13439:17;13450:5;13439:10;:17::i;:::-;:21;13422:38;;13475:20;13509:6;13498:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13475:41;;13531:11;13660:6;13656:2;13652:15;13644:6;13640:28;13633:35;;13697:288;13704:4;13697:288;;;13729:5;;;;;;;;13871:8;13866:2;13859:5;13855:14;13850:30;13845:3;13837:44;13927:2;13918:11;;;;;;;;;;;;;;;;;13961:1;13952:5;:10;13948:21;;;13964:5;;13948:21;13697:288;;;14006:6;13999:13;;;;;13315:716;;;:::o;15888:98::-;15941:7;15968:10;15961:17;;15888:98;:::o;67288:147::-;67425:6;67288:147;;;;;:::o;61337:689::-;61468:19;61474:2;61478:8;61468:5;:19::i;:::-;61547:1;61529:2;:14;;;:19;61525:483;;61569:11;61583:13;;61569:27;;61615:13;61637:8;61631:3;:14;61615:30;;61664:233;61695:62;61734:1;61738:2;61742:7;;;;;;61751:5;61695:30;:62::i;:::-;61690:167;;61793:40;;;;;;;;;;;;;;61690:167;61892:3;61884:5;:11;61664:233;;61979:3;61962:13;;:20;61958:34;;61984:8;;;61958:34;61525:483;;;61337:689;;;:::o;10176:922::-;10229:7;10249:14;10266:1;10249:18;;10316:6;10307:5;:15;10303:102;;10352:6;10343:15;;;;;;;;;;;;;;;;;10387:2;10377:12;;;;10303:102;10432:6;10423:5;:15;10419:102;;10468:6;10459:15;;;;;;;;;;;;;;;;;10503:2;10493:12;;;;10419:102;10548:6;10539:5;:15;10535:102;;10584:6;10575:15;;;;;;;;;;;;;;;;;10619:2;10609:12;;;;10535:102;10664:5;10655;:14;10651:99;;10699:5;10690:14;;;;;;;;;;;;;;;;;10733:1;10723:11;;;;10651:99;10777:5;10768;:14;10764:99;;10812:5;10803:14;;;;;;;;;;;;;;;;;10846:1;10836:11;;;;10764:99;10890:5;10881;:14;10877:99;;10925:5;10916:14;;;;;;;;;;;;;;;;;10959:1;10949:11;;;;10877:99;11003:5;10994;:14;10990:66;;11039:1;11029:11;;;;10990:66;11084:6;11077:13;;;10176:922;;;:::o;55619:2966::-;55692:20;55715:13;;55692:36;;55755:1;55743:8;:13;55739:44;;;55765:18;;;;;;;;;;;;;;55739:44;55796:61;55826:1;55830:2;55834:12;55848:8;55796:21;:61::i;:::-;56340:1;29340:2;56310:1;:26;;56309:32;56297:8;:45;56271:18;:22;56290:2;56271:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;56619:139;56656:2;56710:33;56733:1;56737:2;56741:1;56710:14;:33::i;:::-;56677:30;56698:8;56677:20;:30::i;:::-;:66;56619:18;:139::i;:::-;56585:17;:31;56603:12;56585:31;;;;;;;;;;;:173;;;;56775:16;56806:11;56835:8;56820:12;:23;56806:37;;57356:16;57352:2;57348:25;57336:37;;57728:12;57688:8;57647:1;57585:25;57526:1;57465;57438:335;58099:1;58085:12;58081:20;58039:346;58140:3;58131:7;58128:16;58039:346;;58358:7;58348:8;58345:1;58318:25;58315:1;58312;58307:59;58193:1;58184:7;58180:15;58169:26;;58039:346;;;58043:77;58430:1;58418:8;:13;58414:45;;;58440:19;;;;;;;;;;;;;;58414:45;58492:3;58476:13;:19;;;;55619:2966;;58517:60;58546:1;58550:2;58554:12;58568:8;58517:20;:60::i;:::-;55619:2966;;;:::o;43031:324::-;43101:14;43334:1;43324:8;43321:15;43295:24;43291:46;43281:56;;43203:145;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:407::-;6416:6;6424;6473:2;6461:9;6452:7;6448:23;6444:32;6441:2;;;6489:1;6486;6479:12;6441:2;6532:1;6557:53;6602:7;6593:6;6582:9;6578:22;6557:53;:::i;:::-;6547:63;;6503:117;6659:2;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6630:118;6431:324;;;;;:::o;6761:179::-;6830:10;6851:46;6893:3;6885:6;6851:46;:::i;:::-;6929:4;6924:3;6920:14;6906:28;;6841:99;;;;:::o;6946:118::-;7033:24;7051:5;7033:24;:::i;:::-;7028:3;7021:37;7011:53;;:::o;7100:732::-;7219:3;7248:54;7296:5;7248:54;:::i;:::-;7318:86;7397:6;7392:3;7318:86;:::i;:::-;7311:93;;7428:56;7478:5;7428:56;:::i;:::-;7507:7;7538:1;7523:284;7548:6;7545:1;7542:13;7523:284;;;7624:6;7618:13;7651:63;7710:3;7695:13;7651:63;:::i;:::-;7644:70;;7737:60;7790:6;7737:60;:::i;:::-;7727:70;;7583:224;7570:1;7567;7563:9;7558:14;;7523:284;;;7527:14;7823:3;7816:10;;7224:608;;;;;;;:::o;7838:109::-;7919:21;7934:5;7919:21;:::i;:::-;7914:3;7907:34;7897:50;;:::o;7953:360::-;8039:3;8067:38;8099:5;8067:38;:::i;:::-;8121:70;8184:6;8179:3;8121:70;:::i;:::-;8114:77;;8200:52;8245:6;8240:3;8233:4;8226:5;8222:16;8200:52;:::i;:::-;8277:29;8299:6;8277:29;:::i;:::-;8272:3;8268:39;8261:46;;8043:270;;;;;:::o;8319:364::-;8407:3;8435:39;8468:5;8435:39;:::i;:::-;8490:71;8554:6;8549:3;8490:71;:::i;:::-;8483:78;;8570:52;8615:6;8610:3;8603:4;8596:5;8592:16;8570:52;:::i;:::-;8647:29;8669:6;8647:29;:::i;:::-;8642:3;8638:39;8631:46;;8411:272;;;;;:::o;8689:377::-;8795:3;8823:39;8856:5;8823:39;:::i;:::-;8878:89;8960:6;8955:3;8878:89;:::i;:::-;8871:96;;8976:52;9021:6;9016:3;9009:4;9002:5;8998:16;8976:52;:::i;:::-;9053:6;9048:3;9044:16;9037:23;;8799:267;;;;;:::o;9096:845::-;9199:3;9236:5;9230:12;9265:36;9291:9;9265:36;:::i;:::-;9317:89;9399:6;9394:3;9317:89;:::i;:::-;9310:96;;9437:1;9426:9;9422:17;9453:1;9448:137;;;;9599:1;9594:341;;;;9415:520;;9448:137;9532:4;9528:9;9517;9513:25;9508:3;9501:38;9568:6;9563:3;9559:16;9552:23;;9448:137;;9594:341;9661:38;9693:5;9661:38;:::i;:::-;9721:1;9735:154;9749:6;9746:1;9743:13;9735:154;;;9823:7;9817:14;9813:1;9808:3;9804:11;9797:35;9873:1;9864:7;9860:15;9849:26;;9771:4;9768:1;9764:12;9759:17;;9735:154;;;9918:6;9913:3;9909:16;9902:23;;9601:334;;9415:520;;9203:738;;;;;;:::o;9947:366::-;10089:3;10110:67;10174:2;10169:3;10110:67;:::i;:::-;10103:74;;10186:93;10275:3;10186:93;:::i;:::-;10304:2;10299:3;10295:12;10288:19;;10093:220;;;:::o;10319:366::-;10461:3;10482:67;10546:2;10541:3;10482:67;:::i;:::-;10475:74;;10558:93;10647:3;10558:93;:::i;:::-;10676:2;10671:3;10667:12;10660:19;;10465:220;;;:::o;10691:366::-;10833:3;10854:67;10918:2;10913:3;10854:67;:::i;:::-;10847:74;;10930:93;11019:3;10930:93;:::i;:::-;11048:2;11043:3;11039:12;11032:19;;10837:220;;;:::o;11063:366::-;11205:3;11226:67;11290:2;11285:3;11226:67;:::i;:::-;11219:74;;11302:93;11391:3;11302:93;:::i;:::-;11420:2;11415:3;11411:12;11404:19;;11209:220;;;:::o;11435:400::-;11595:3;11616:84;11698:1;11693:3;11616:84;:::i;:::-;11609:91;;11709:93;11798:3;11709:93;:::i;:::-;11827:1;11822:3;11818:11;11811:18;;11599:236;;;:::o;11841:366::-;11983:3;12004:67;12068:2;12063:3;12004:67;:::i;:::-;11997:74;;12080:93;12169:3;12080:93;:::i;:::-;12198:2;12193:3;12189:12;12182:19;;11987:220;;;:::o;12213:366::-;12355:3;12376:67;12440:2;12435:3;12376:67;:::i;:::-;12369:74;;12452:93;12541:3;12452:93;:::i;:::-;12570:2;12565:3;12561:12;12554:19;;12359:220;;;:::o;12585:366::-;12727:3;12748:67;12812:2;12807:3;12748:67;:::i;:::-;12741:74;;12824:93;12913:3;12824:93;:::i;:::-;12942:2;12937:3;12933:12;12926:19;;12731:220;;;:::o;12957:366::-;13099:3;13120:67;13184:2;13179:3;13120:67;:::i;:::-;13113:74;;13196:93;13285:3;13196:93;:::i;:::-;13314:2;13309:3;13305:12;13298:19;;13103:220;;;:::o;13329:366::-;13471:3;13492:67;13556:2;13551:3;13492:67;:::i;:::-;13485:74;;13568:93;13657:3;13568:93;:::i;:::-;13686:2;13681:3;13677:12;13670:19;;13475:220;;;:::o;13701:398::-;13860:3;13881:83;13962:1;13957:3;13881:83;:::i;:::-;13874:90;;13973:93;14062:3;13973:93;:::i;:::-;14091:1;14086:3;14082:11;14075:18;;13864:235;;;:::o;14105:366::-;14247:3;14268:67;14332:2;14327:3;14268:67;:::i;:::-;14261:74;;14344:93;14433:3;14344:93;:::i;:::-;14462:2;14457:3;14453:12;14446:19;;14251:220;;;:::o;14477:366::-;14619:3;14640:67;14704:2;14699:3;14640:67;:::i;:::-;14633:74;;14716:93;14805:3;14716:93;:::i;:::-;14834:2;14829:3;14825:12;14818:19;;14623:220;;;:::o;14849:366::-;14991:3;15012:67;15076:2;15071:3;15012:67;:::i;:::-;15005:74;;15088:93;15177:3;15088:93;:::i;:::-;15206:2;15201:3;15197:12;15190:19;;14995:220;;;:::o;15221:400::-;15380:3;15401:84;15482:2;15477:3;15401:84;:::i;:::-;15394:91;;15494:93;15583:3;15494:93;:::i;:::-;15612:2;15607:3;15603:12;15596:19;;15384:237;;;:::o;15627:108::-;15704:24;15722:5;15704:24;:::i;:::-;15699:3;15692:37;15682:53;;:::o;15741:118::-;15828:24;15846:5;15828:24;:::i;:::-;15823:3;15816:37;15806:53;;:::o;15865:695::-;16143:3;16165:92;16253:3;16244:6;16165:92;:::i;:::-;16158:99;;16274:95;16365:3;16356:6;16274:95;:::i;:::-;16267:102;;16386:148;16530:3;16386:148;:::i;:::-;16379:155;;16551:3;16544:10;;16147:413;;;;;:::o;16566:379::-;16750:3;16772:147;16915:3;16772:147;:::i;:::-;16765:154;;16936:3;16929:10;;16754:191;;;:::o;16951:379::-;17135:3;17157:147;17300:3;17157:147;:::i;:::-;17150:154;;17321:3;17314:10;;17139:191;;;:::o;17336:222::-;17429:4;17467:2;17456:9;17452:18;17444:26;;17480:71;17548:1;17537:9;17533:17;17524:6;17480:71;:::i;:::-;17434:124;;;;:::o;17564:640::-;17759:4;17797:3;17786:9;17782:19;17774:27;;17811:71;17879:1;17868:9;17864:17;17855:6;17811:71;:::i;:::-;17892:72;17960:2;17949:9;17945:18;17936:6;17892:72;:::i;:::-;17974;18042:2;18031:9;18027:18;18018:6;17974:72;:::i;:::-;18093:9;18087:4;18083:20;18078:2;18067:9;18063:18;18056:48;18121:76;18192:4;18183:6;18121:76;:::i;:::-;18113:84;;17764:440;;;;;;;:::o;18210:373::-;18353:4;18391:2;18380:9;18376:18;18368:26;;18440:9;18434:4;18430:20;18426:1;18415:9;18411:17;18404:47;18468:108;18571:4;18562:6;18468:108;:::i;:::-;18460:116;;18358:225;;;;:::o;18589:210::-;18676:4;18714:2;18703:9;18699:18;18691:26;;18727:65;18789:1;18778:9;18774:17;18765:6;18727:65;:::i;:::-;18681:118;;;;:::o;18805:313::-;18918:4;18956:2;18945:9;18941:18;18933:26;;19005:9;18999:4;18995:20;18991:1;18980:9;18976:17;18969:47;19033:78;19106:4;19097:6;19033:78;:::i;:::-;19025:86;;18923:195;;;;:::o;19124:419::-;19290:4;19328:2;19317:9;19313:18;19305:26;;19377:9;19371:4;19367:20;19363:1;19352:9;19348:17;19341:47;19405:131;19531:4;19405:131;:::i;:::-;19397:139;;19295:248;;;:::o;19549:419::-;19715:4;19753:2;19742:9;19738:18;19730:26;;19802:9;19796:4;19792:20;19788:1;19777:9;19773:17;19766:47;19830:131;19956:4;19830:131;:::i;:::-;19822:139;;19720:248;;;:::o;19974:419::-;20140:4;20178:2;20167:9;20163:18;20155:26;;20227:9;20221:4;20217:20;20213:1;20202:9;20198:17;20191:47;20255:131;20381:4;20255:131;:::i;:::-;20247:139;;20145:248;;;:::o;20399:419::-;20565:4;20603:2;20592:9;20588:18;20580:26;;20652:9;20646:4;20642:20;20638:1;20627:9;20623:17;20616:47;20680:131;20806:4;20680:131;:::i;:::-;20672:139;;20570:248;;;:::o;20824:419::-;20990:4;21028:2;21017:9;21013:18;21005:26;;21077:9;21071:4;21067:20;21063:1;21052:9;21048:17;21041:47;21105:131;21231:4;21105:131;:::i;:::-;21097:139;;20995:248;;;:::o;21249:419::-;21415:4;21453:2;21442:9;21438:18;21430:26;;21502:9;21496:4;21492:20;21488:1;21477:9;21473:17;21466:47;21530:131;21656:4;21530:131;:::i;:::-;21522:139;;21420:248;;;:::o;21674:419::-;21840:4;21878:2;21867:9;21863:18;21855:26;;21927:9;21921:4;21917:20;21913:1;21902:9;21898:17;21891:47;21955:131;22081:4;21955:131;:::i;:::-;21947:139;;21845:248;;;:::o;22099:419::-;22265:4;22303:2;22292:9;22288:18;22280:26;;22352:9;22346:4;22342:20;22338:1;22327:9;22323:17;22316:47;22380:131;22506:4;22380:131;:::i;:::-;22372:139;;22270:248;;;:::o;22524:419::-;22690:4;22728:2;22717:9;22713:18;22705:26;;22777:9;22771:4;22767:20;22763:1;22752:9;22748:17;22741:47;22805:131;22931:4;22805:131;:::i;:::-;22797:139;;22695:248;;;:::o;22949:419::-;23115:4;23153:2;23142:9;23138:18;23130:26;;23202:9;23196:4;23192:20;23188:1;23177:9;23173:17;23166:47;23230:131;23356:4;23230:131;:::i;:::-;23222:139;;23120:248;;;:::o;23374:419::-;23540:4;23578:2;23567:9;23563:18;23555:26;;23627:9;23621:4;23617:20;23613:1;23602:9;23598:17;23591:47;23655:131;23781:4;23655:131;:::i;:::-;23647:139;;23545:248;;;:::o;23799:419::-;23965:4;24003:2;23992:9;23988:18;23980:26;;24052:9;24046:4;24042:20;24038:1;24027:9;24023:17;24016:47;24080:131;24206:4;24080:131;:::i;:::-;24072:139;;23970:248;;;:::o;24224:222::-;24317:4;24355:2;24344:9;24340:18;24332:26;;24368:71;24436:1;24425:9;24421:17;24412:6;24368:71;:::i;:::-;24322:124;;;;:::o;24452:129::-;24486:6;24513:20;;:::i;:::-;24503:30;;24542:33;24570:4;24562:6;24542:33;:::i;:::-;24493:88;;;:::o;24587:75::-;24620:6;24653:2;24647:9;24637:19;;24627:35;:::o;24668:307::-;24729:4;24819:18;24811:6;24808:30;24805:2;;;24841:18;;:::i;:::-;24805:2;24879:29;24901:6;24879:29;:::i;:::-;24871:37;;24963:4;24957;24953:15;24945:23;;24734:241;;;:::o;24981:308::-;25043:4;25133:18;25125:6;25122:30;25119:2;;;25155:18;;:::i;:::-;25119:2;25193:29;25215:6;25193:29;:::i;:::-;25185:37;;25277:4;25271;25267:15;25259:23;;25048:241;;;:::o;25295:132::-;25362:4;25385:3;25377:11;;25415:4;25410:3;25406:14;25398:22;;25367:60;;;:::o;25433:141::-;25482:4;25505:3;25497:11;;25528:3;25525:1;25518:14;25562:4;25559:1;25549:18;25541:26;;25487:87;;;:::o;25580:114::-;25647:6;25681:5;25675:12;25665:22;;25654:40;;;:::o;25700:98::-;25751:6;25785:5;25779:12;25769:22;;25758:40;;;:::o;25804:99::-;25856:6;25890:5;25884:12;25874:22;;25863:40;;;:::o;25909:113::-;25979:4;26011;26006:3;26002:14;25994:22;;25984:38;;;:::o;26028:184::-;26127:11;26161:6;26156:3;26149:19;26201:4;26196:3;26192:14;26177:29;;26139:73;;;;:::o;26218:168::-;26301:11;26335:6;26330:3;26323:19;26375:4;26370:3;26366:14;26351:29;;26313:73;;;;:::o;26392:147::-;26493:11;26530:3;26515:18;;26505:34;;;;:::o;26545:169::-;26629:11;26663:6;26658:3;26651:19;26703:4;26698:3;26694:14;26679:29;;26641:73;;;;:::o;26720:148::-;26822:11;26859:3;26844:18;;26834:34;;;;:::o;26874:305::-;26914:3;26933:20;26951:1;26933:20;:::i;:::-;26928:25;;26967:20;26985:1;26967:20;:::i;:::-;26962:25;;27121:1;27053:66;27049:74;27046:1;27043:81;27040:2;;;27127:18;;:::i;:::-;27040:2;27171:1;27168;27164:9;27157:16;;26918:261;;;;:::o;27185:185::-;27225:1;27242:20;27260:1;27242:20;:::i;:::-;27237:25;;27276:20;27294:1;27276:20;:::i;:::-;27271:25;;27315:1;27305:2;;27320:18;;:::i;:::-;27305:2;27362:1;27359;27355:9;27350:14;;27227:143;;;;:::o;27376:348::-;27416:7;27439:20;27457:1;27439:20;:::i;:::-;27434:25;;27473:20;27491:1;27473:20;:::i;:::-;27468:25;;27661:1;27593:66;27589:74;27586:1;27583:81;27578:1;27571:9;27564:17;27560:105;27557:2;;;27668:18;;:::i;:::-;27557:2;27716:1;27713;27709:9;27698:20;;27424:300;;;;:::o;27730:191::-;27770:4;27790:20;27808:1;27790:20;:::i;:::-;27785:25;;27824:20;27842:1;27824:20;:::i;:::-;27819:25;;27863:1;27860;27857:8;27854:2;;;27868:18;;:::i;:::-;27854:2;27913:1;27910;27906:9;27898:17;;27775:146;;;;:::o;27927:96::-;27964:7;27993:24;28011:5;27993:24;:::i;:::-;27982:35;;27972:51;;;:::o;28029:90::-;28063:7;28106:5;28099:13;28092:21;28081:32;;28071:48;;;:::o;28125:149::-;28161:7;28201:66;28194:5;28190:78;28179:89;;28169:105;;;:::o;28280:126::-;28317:7;28357:42;28350:5;28346:54;28335:65;;28325:81;;;:::o;28412:77::-;28449:7;28478:5;28467:16;;28457:32;;;:::o;28495:154::-;28579:6;28574:3;28569;28556:30;28641:1;28632:6;28627:3;28623:16;28616:27;28546:103;;;:::o;28655:307::-;28723:1;28733:113;28747:6;28744:1;28741:13;28733:113;;;28832:1;28827:3;28823:11;28817:18;28813:1;28808:3;28804:11;28797:39;28769:2;28766:1;28762:10;28757:15;;28733:113;;;28864:6;28861:1;28858:13;28855:2;;;28944:1;28935:6;28930:3;28926:16;28919:27;28855:2;28704:258;;;;:::o;28968:320::-;29012:6;29049:1;29043:4;29039:12;29029:22;;29096:1;29090:4;29086:12;29117:18;29107:2;;29173:4;29165:6;29161:17;29151:27;;29107:2;29235;29227:6;29224:14;29204:18;29201:38;29198:2;;;29254:18;;:::i;:::-;29198:2;29019:269;;;;:::o;29294:281::-;29377:27;29399:4;29377:27;:::i;:::-;29369:6;29365:40;29507:6;29495:10;29492:22;29471:18;29459:10;29456:34;29453:62;29450:2;;;29518:18;;:::i;:::-;29450:2;29558:10;29554:2;29547:22;29337:238;;;:::o;29581:233::-;29620:3;29643:24;29661:5;29643:24;:::i;:::-;29634:33;;29689:66;29682:5;29679:77;29676:2;;;29759:18;;:::i;:::-;29676:2;29806:1;29799:5;29795:13;29788:20;;29624:190;;;:::o;29820:180::-;29868:77;29865:1;29858:88;29965:4;29962:1;29955:15;29989:4;29986:1;29979:15;30006:180;30054:77;30051:1;30044:88;30151:4;30148:1;30141:15;30175:4;30172:1;30165:15;30192:180;30240:77;30237:1;30230:88;30337:4;30334:1;30327:15;30361:4;30358:1;30351:15;30378:180;30426:77;30423:1;30416:88;30523:4;30520:1;30513:15;30547:4;30544:1;30537:15;30564:102;30605:6;30656:2;30652:7;30647:2;30640:5;30636:14;30632:28;30622:38;;30612:54;;;:::o;30672:225::-;30812:34;30808:1;30800:6;30796:14;30789:58;30881:8;30876:2;30868:6;30864:15;30857:33;30778:119;:::o;30903:165::-;31043:17;31039:1;31031:6;31027:14;31020:41;31009:59;:::o;31074:169::-;31214:21;31210:1;31202:6;31198:14;31191:45;31180:63;:::o;31249:169::-;31389:21;31385:1;31377:6;31373:14;31366:45;31355:63;:::o;31424:155::-;31564:7;31560:1;31552:6;31548:14;31541:31;31530:49;:::o;31585:182::-;31725:34;31721:1;31713:6;31709:14;31702:58;31691:76;:::o;31773:234::-;31913:34;31909:1;31901:6;31897:14;31890:58;31982:17;31977:2;31969:6;31965:15;31958:42;31879:128;:::o;32013:169::-;32153:21;32149:1;32141:6;32137:14;32130:45;32119:63;:::o;32188:170::-;32328:22;32324:1;32316:6;32312:14;32305:46;32294:64;:::o;32364:167::-;32504:19;32500:1;32492:6;32488:14;32481:43;32470:61;:::o;32537:114::-;32643:8;:::o;32657:169::-;32797:21;32793:1;32785:6;32781:14;32774:45;32763:63;:::o;32832:168::-;32972:20;32968:1;32960:6;32956:14;32949:44;32938:62;:::o;33006:171::-;33146:23;33142:1;33134:6;33130:14;33123:47;33112:65;:::o;33183:229::-;33323:34;33319:1;33311:6;33307:14;33300:58;33392:12;33387:2;33379:6;33375:15;33368:37;33289:123;:::o;33418:122::-;33491:24;33509:5;33491:24;:::i;:::-;33484:5;33481:35;33471:2;;33530:1;33527;33520:12;33471:2;33461:79;:::o;33546:116::-;33616:21;33631:5;33616:21;:::i;:::-;33609:5;33606:32;33596:2;;33652:1;33649;33642:12;33596:2;33586:76;:::o;33668:120::-;33740:23;33757:5;33740:23;:::i;:::-;33733:5;33730:34;33720:2;;33778:1;33775;33768:12;33720:2;33710:78;:::o;33794:122::-;33867:24;33885:5;33867:24;:::i;:::-;33860:5;33857:35;33847:2;;33906:1;33903;33896:12;33847:2;33837:79;:::o

Swarm Source

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