ETH Price: $3,500.60 (+3.84%)
Gas: 4 Gwei

Token

asianCat (asianCat)
 

Overview

Max Total Supply

10,000 asianCat

Holders

1,567

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
megapowerstar.eth
Balance
1 asianCat
0xe05f955dbd02b1b6d4c23fc1c614d26f17db759d
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:
asianCat

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-20
*/

/**
 *Submitted for verification at Etherscan.io on 2022-08-06
*/

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


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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

// File: @openzeppelin/contracts/utils/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.2
// 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();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

    /**
     * @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;

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

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

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

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

    // =============================================================
    //                        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.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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


pragma solidity ^0.8.9;

contract asianCat is ERC721A, Ownable, ReentrancyGuard { 

    uint256 public _maxSupply = 10000;
    uint256 public _mintPrice = 0.01 ether;
    uint256 public _maxMintPerTx = 10;

    uint256 public _maxFreeMintPerAddr = 2;
    uint256 public _maxFreeMintSupply = 1000;

    using Strings for uint256;
    string public baseURI;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor(string memory initBaseURI) ERC721A("asianCat", "asianCat") {
        baseURI = initBaseURI;
    }

    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;

        uint256 pay_count = count;
        if((totalSupply() + count < _maxFreeMintSupply + 1)){ //免费流程

            if(_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr){ //全免费
                pay_count = 0;
                _mintedFreeAmount[msg.sender] += count;
            }else if(_mintedFreeAmount[msg.sender] < _maxFreeMintPerAddr){ //部分免费
                uint256 remainfree = _maxFreeMintPerAddr - _mintedFreeAmount[msg.sender];
                pay_count = count - remainfree;
                _mintedFreeAmount[msg.sender] = _maxFreeMintPerAddr; 
            }else{//不免费
                //do nothing
            }
        }

        if(msg.sender == owner()){//自己花钱炒作
            cost = 0;
        }

        require(msg.value >= pay_count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");

        _safeMint(msg.sender, count);
    }

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

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

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","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":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052612710600a55662386f26fc10000600b55600a600c556002600d556103e8600e553480156200003257600080fd5b5060405162003819380380620038198339818101604052810190620000589190620003b1565b6040518060400160405280600881526020017f617369616e4361740000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f617369616e4361740000000000000000000000000000000000000000000000008152508160029081620000d591906200064d565b508060039081620000e791906200064d565b50620000f86200014160201b60201c565b600081905550505062000120620001146200014660201b60201c565b6200014e60201b60201c565b600160098190555080600f90816200013991906200064d565b505062000734565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200027d8262000232565b810181811067ffffffffffffffff821117156200029f576200029e62000243565b5b80604052505050565b6000620002b462000214565b9050620002c2828262000272565b919050565b600067ffffffffffffffff821115620002e557620002e462000243565b5b620002f08262000232565b9050602081019050919050565b60005b838110156200031d57808201518184015260208101905062000300565b838111156200032d576000848401525b50505050565b60006200034a6200034484620002c7565b620002a8565b9050828152602081018484840111156200036957620003686200022d565b5b62000376848285620002fd565b509392505050565b600082601f83011262000396576200039562000228565b5b8151620003a884826020860162000333565b91505092915050565b600060208284031215620003ca57620003c96200021e565b5b600082015167ffffffffffffffff811115620003eb57620003ea62000223565b5b620003f9848285016200037e565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045557607f821691505b6020821081036200046b576200046a6200040d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000496565b620004e1868362000496565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200052e620005286200052284620004f9565b62000503565b620004f9565b9050919050565b6000819050919050565b6200054a836200050d565b62000562620005598262000535565b848454620004a3565b825550505050565b600090565b620005796200056a565b620005868184846200053f565b505050565b5b81811015620005ae57620005a26000826200056f565b6001810190506200058c565b5050565b601f821115620005fd57620005c78162000471565b620005d28462000486565b81016020851015620005e2578190505b620005fa620005f18562000486565b8301826200058b565b50505b505050565b600082821c905092915050565b6000620006226000198460080262000602565b1980831691505092915050565b60006200063d83836200060f565b9150826002028217905092915050565b620006588262000402565b67ffffffffffffffff81111562000674576200067362000243565b5b6200068082546200043c565b6200068d828285620005b2565b600060209050601f831160018114620006c55760008415620006b0578287015190505b620006bc85826200062f565b8655506200072c565b601f198416620006d58662000471565b60005b82811015620006ff57848901518255600182019150602085019450602081019050620006d8565b868310156200071f57848901516200071b601f8916826200060f565b8355505b6001600288020188555050505b505050505050565b6130d580620007446000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105b8578063de314a59146105f5578063e985e9c514610620578063f2fde38b1461065d576101b7565b8063a0712d681461054a578063a22cb46514610566578063b88d4fde1461058f576101b7565b806391b7f5ed116100c657806391b7f5ed146104a257806392910eec146104cb57806395d89b41146104f45780639cb57d201461051f576101b7565b806370a0823114610423578063715018a6146104605780638da5cb5b14610477576101b7565b806323b872dd1161015957806355f804b31161013357806355f804b3146103675780635e1c4b60146103905780636352211e146103bb5780636c0360eb146103f8576101b7565b806323b872dd1461030b5780633ccfd60b1461033457806342842e0e1461033e576101b7565b8063081812fc11610195578063081812fc1461024f578063095ea7b31461028c57806318160ddd146102b557806322f4596f146102e0576101b7565b806301ffc9a7146101bc5780630387da42146101f957806306fdde0314610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611fc2565b610686565b6040516101f0919061200a565b60405180910390f35b34801561020557600080fd5b5061020e610718565b60405161021b919061203e565b60405180910390f35b34801561023057600080fd5b5061023961071e565b60405161024691906120f2565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190612140565b6107b0565b60405161028391906121ae565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae91906121f5565b61082f565b005b3480156102c157600080fd5b506102ca610973565b6040516102d7919061203e565b60405180910390f35b3480156102ec57600080fd5b506102f561098a565b604051610302919061203e565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612235565b610990565b005b61033c610cb2565b005b34801561034a57600080fd5b5061036560048036038101906103609190612235565b610d88565b005b34801561037357600080fd5b5061038e600480360381019061038991906123bd565b610da8565b005b34801561039c57600080fd5b506103a5610dc3565b6040516103b2919061203e565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612140565b610dc9565b6040516103ef91906121ae565b60405180910390f35b34801561040457600080fd5b5061040d610ddb565b60405161041a91906120f2565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612406565b610e69565b604051610457919061203e565b60405180910390f35b34801561046c57600080fd5b50610475610f21565b005b34801561048357600080fd5b5061048c610f35565b60405161049991906121ae565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190612140565b610f5f565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190612140565b610f71565b005b34801561050057600080fd5b50610509610f83565b60405161051691906120f2565b60405180910390f35b34801561052b57600080fd5b50610534611015565b604051610541919061203e565b60405180910390f35b610564600480360381019061055f9190612140565b61101b565b005b34801561057257600080fd5b5061058d6004803603810190610588919061245f565b611346565b005b34801561059b57600080fd5b506105b660048036038101906105b19190612540565b6114bd565b005b3480156105c457600080fd5b506105df60048036038101906105da9190612140565b611530565b6040516105ec91906120f2565b60405180910390f35b34801561060157600080fd5b5061060a6115ac565b604051610617919061203e565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906125c3565b6115b2565b604051610654919061200a565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612406565b611646565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461072d90612632565b80601f016020809104026020016040519081016040528092919081815260200182805461075990612632565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b60006107bb826116c9565b6107f1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083a82610dc9565b90508073ffffffffffffffffffffffffffffffffffffffff1661085b611728565b73ffffffffffffffffffffffffffffffffffffffff16146108be5761088781610882611728565b6115b2565b6108bd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061097d611730565b6001546000540303905090565b600a5481565b600061099b82611735565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0e84611801565b91509150610a248187610a1f611728565b611828565b610a7057610a3986610a34611728565b6115b2565b610a6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ad6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae3868686600161186c565b8015610aee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbc85610b98888887611872565b7c02000000000000000000000000000000000000000000000000000000001761189a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c425760006001850190506000600460008381526020019081526020016000205403610c40576000548114610c3f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610caa86868660016118c5565b505050505050565b610cba6118cb565b600260095403610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf6906126af565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d2d90612700565b60006040518083038185875af1925050503d8060008114610d6a576040519150601f19603f3d011682016040523d82523d6000602084013e610d6f565b606091505b5050905080610d7d57600080fd5b506001600981905550565b610da3838383604051806020016040528060008152506114bd565b505050565b610db06118cb565b80600f9081610dbf91906128c1565b5050565b600e5481565b6000610dd482611735565b9050919050565b600f8054610de890612632565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1490612632565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f296118cb565b610f336000611949565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f676118cb565b80600b8190555050565b610f796118cb565b80600e8190555050565b606060038054610f9290612632565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbe90612632565b801561100b5780601f10610fe05761010080835404028352916020019161100b565b820191906000526020600020905b815481529060010190602001808311610fee57829003601f168201915b5050505050905090565b600d5481565b6000600b54905060008290506001600e5461103691906129c2565b8361103f610973565b61104991906129c2565b10156111f857600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109d91906129c2565b11611101576000905082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110f591906129c2565b925050819055506111f7565b600d54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156111f5576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546111999190612a18565b905080846111a79190612a18565b9150600d54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550506111f6565b5b5b5b611200610f35565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361123757600091505b81816112439190612a4c565b341015611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90612af2565b60405180910390fd5b6001600a5461129491906129c2565b8361129d610973565b6112a791906129c2565b106112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90612b5e565b60405180910390fd5b6001600c546112f691906129c2565b8310611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90612bca565b60405180910390fd5b6113413384611a0f565b505050565b61134e611728565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113b2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113bf611728565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661146c611728565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b1919061200a565b60405180910390a35050565b6114c8848484610990565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461152a576114f384848484611a2d565b611529576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061153b826116c9565b61157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190612c5c565b60405180910390fd5b600f61158583611b7d565b604051602001611596929190612d87565b6040516020818303038152906040529050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61164e6118cb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490612e28565b60405180910390fd5b6116c681611949565b50565b6000816116d4611730565b111580156116e3575060005482105b8015611721575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611744611730565b116117ca576000548110156117c95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117c7575b600081036117bd576004600083600190039350838152602001908152602001600020549050611793565b80925050506117fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611889868684611cdd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6118d3611ce6565b73ffffffffffffffffffffffffffffffffffffffff166118f1610f35565b73ffffffffffffffffffffffffffffffffffffffff1614611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90612e94565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a29828260405180602001604052806000815250611cee565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a53611728565b8786866040518563ffffffff1660e01b8152600401611a759493929190612f09565b6020604051808303816000875af1925050508015611ab157506040513d601f19601f82011682018060405250810190611aae9190612f6a565b60015b611b2a573d8060008114611ae1576040519150601f19603f3d011682016040523d82523d6000602084013e611ae6565b606091505b506000815103611b22576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611bc4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cd8565b600082905060005b60008214611bf6578080611bdf90612f97565b915050600a82611bef919061300e565b9150611bcc565b60008167ffffffffffffffff811115611c1257611c11612292565b5b6040519080825280601f01601f191660200182016040528015611c445781602001600182028036833780820191505090505b5090505b60008514611cd157600182611c5d9190612a18565b9150600a85611c6c919061303f565b6030611c7891906129c2565b60f81b818381518110611c8e57611c8d613070565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cca919061300e565b9450611c48565b8093505050505b919050565b60009392505050565b600033905090565b611cf88383611d8b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d8657600080549050600083820390505b611d386000868380600101945086611a2d565b611d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d25578160005414611d8357600080fd5b50505b505050565b60008054905060008203611dcb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd8600084838561186c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e4f83611e406000866000611872565b611e4985611f46565b1761189a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ef057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eb5565b5060008203611f2b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f4160008483856118c5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9f81611f6a565b8114611faa57600080fd5b50565b600081359050611fbc81611f96565b92915050565b600060208284031215611fd857611fd7611f60565b5b6000611fe684828501611fad565b91505092915050565b60008115159050919050565b61200481611fef565b82525050565b600060208201905061201f6000830184611ffb565b92915050565b6000819050919050565b61203881612025565b82525050565b6000602082019050612053600083018461202f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612093578082015181840152602081019050612078565b838111156120a2576000848401525b50505050565b6000601f19601f8301169050919050565b60006120c482612059565b6120ce8185612064565b93506120de818560208601612075565b6120e7816120a8565b840191505092915050565b6000602082019050818103600083015261210c81846120b9565b905092915050565b61211d81612025565b811461212857600080fd5b50565b60008135905061213a81612114565b92915050565b60006020828403121561215657612155611f60565b5b60006121648482850161212b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121988261216d565b9050919050565b6121a88161218d565b82525050565b60006020820190506121c3600083018461219f565b92915050565b6121d28161218d565b81146121dd57600080fd5b50565b6000813590506121ef816121c9565b92915050565b6000806040838503121561220c5761220b611f60565b5b600061221a858286016121e0565b925050602061222b8582860161212b565b9150509250929050565b60008060006060848603121561224e5761224d611f60565b5b600061225c868287016121e0565b935050602061226d868287016121e0565b925050604061227e8682870161212b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122ca826120a8565b810181811067ffffffffffffffff821117156122e9576122e8612292565b5b80604052505050565b60006122fc611f56565b905061230882826122c1565b919050565b600067ffffffffffffffff82111561232857612327612292565b5b612331826120a8565b9050602081019050919050565b82818337600083830152505050565b600061236061235b8461230d565b6122f2565b90508281526020810184848401111561237c5761237b61228d565b5b61238784828561233e565b509392505050565b600082601f8301126123a4576123a3612288565b5b81356123b484826020860161234d565b91505092915050565b6000602082840312156123d3576123d2611f60565b5b600082013567ffffffffffffffff8111156123f1576123f0611f65565b5b6123fd8482850161238f565b91505092915050565b60006020828403121561241c5761241b611f60565b5b600061242a848285016121e0565b91505092915050565b61243c81611fef565b811461244757600080fd5b50565b60008135905061245981612433565b92915050565b6000806040838503121561247657612475611f60565b5b6000612484858286016121e0565b92505060206124958582860161244a565b9150509250929050565b600067ffffffffffffffff8211156124ba576124b9612292565b5b6124c3826120a8565b9050602081019050919050565b60006124e36124de8461249f565b6122f2565b9050828152602081018484840111156124ff576124fe61228d565b5b61250a84828561233e565b509392505050565b600082601f83011261252757612526612288565b5b81356125378482602086016124d0565b91505092915050565b6000806000806080858703121561255a57612559611f60565b5b6000612568878288016121e0565b9450506020612579878288016121e0565b935050604061258a8782880161212b565b925050606085013567ffffffffffffffff8111156125ab576125aa611f65565b5b6125b787828801612512565b91505092959194509250565b600080604083850312156125da576125d9611f60565b5b60006125e8858286016121e0565b92505060206125f9858286016121e0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061264a57607f821691505b60208210810361265d5761265c612603565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612699601f83612064565b91506126a482612663565b602082019050919050565b600060208201905081810360008301526126c88161268c565b9050919050565b600081905092915050565b50565b60006126ea6000836126cf565b91506126f5826126da565b600082019050919050565b600061270b826126dd565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261273a565b612781868361273a565b95508019841693508086168417925050509392505050565b6000819050919050565b60006127be6127b96127b484612025565b612799565b612025565b9050919050565b6000819050919050565b6127d8836127a3565b6127ec6127e4826127c5565b848454612747565b825550505050565b600090565b6128016127f4565b61280c8184846127cf565b505050565b5b81811015612830576128256000826127f9565b600181019050612812565b5050565b601f8211156128755761284681612715565b61284f8461272a565b8101602085101561285e578190505b61287261286a8561272a565b830182612811565b50505b505050565b600082821c905092915050565b60006128986000198460080261287a565b1980831691505092915050565b60006128b18383612887565b9150826002028217905092915050565b6128ca82612059565b67ffffffffffffffff8111156128e3576128e2612292565b5b6128ed8254612632565b6128f8828285612834565b600060209050601f83116001811461292b5760008415612919578287015190505b61292385826128a5565b86555061298b565b601f19841661293986612715565b60005b828110156129615784890151825560018201915060208501945060208101905061293c565b8683101561297e578489015161297a601f891682612887565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129cd82612025565b91506129d883612025565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a0d57612a0c612993565b5b828201905092915050565b6000612a2382612025565b9150612a2e83612025565b925082821015612a4157612a40612993565b5b828203905092915050565b6000612a5782612025565b9150612a6283612025565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a9b57612a9a612993565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612adc601d83612064565b9150612ae782612aa6565b602082019050919050565b60006020820190508181036000830152612b0b81612acf565b9050919050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612b48600983612064565b9150612b5382612b12565b602082019050919050565b60006020820190508181036000830152612b7781612b3b565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612bb4601383612064565b9150612bbf82612b7e565b602082019050919050565b60006020820190508181036000830152612be381612ba7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612c46602f83612064565b9150612c5182612bea565b604082019050919050565b60006020820190508181036000830152612c7581612c39565b9050919050565b600081905092915050565b60008154612c9481612632565b612c9e8186612c7c565b94506001821660008114612cb95760018114612cce57612d01565b60ff1983168652811515820286019350612d01565b612cd785612715565b60005b83811015612cf957815481890152600182019150602081019050612cda565b838801955050505b50505092915050565b6000612d1582612059565b612d1f8185612c7c565b9350612d2f818560208601612075565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612d71600583612c7c565b9150612d7c82612d3b565b600582019050919050565b6000612d938285612c87565b9150612d9f8284612d0a565b9150612daa82612d64565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e12602683612064565b9150612e1d82612db6565b604082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e7e602083612064565b9150612e8982612e48565b602082019050919050565b60006020820190508181036000830152612ead81612e71565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612edb82612eb4565b612ee58185612ebf565b9350612ef5818560208601612075565b612efe816120a8565b840191505092915050565b6000608082019050612f1e600083018761219f565b612f2b602083018661219f565b612f38604083018561202f565b8181036060830152612f4a8184612ed0565b905095945050505050565b600081519050612f6481611f96565b92915050565b600060208284031215612f8057612f7f611f60565b5b6000612f8e84828501612f55565b91505092915050565b6000612fa282612025565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fd457612fd3612993565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061301982612025565b915061302483612025565b92508261303457613033612fdf565b5b828204905092915050565b600061304a82612025565b915061305583612025565b92508261306557613064612fdf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208f8fec7caa108ad793440fa483928954d9e533bed853fd63a333cd502ab5164764736f6c634300080f00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d53434b787668356245516665334b72536f5074744b3958507554426742723354595a6f594754366a345776792f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105b8578063de314a59146105f5578063e985e9c514610620578063f2fde38b1461065d576101b7565b8063a0712d681461054a578063a22cb46514610566578063b88d4fde1461058f576101b7565b806391b7f5ed116100c657806391b7f5ed146104a257806392910eec146104cb57806395d89b41146104f45780639cb57d201461051f576101b7565b806370a0823114610423578063715018a6146104605780638da5cb5b14610477576101b7565b806323b872dd1161015957806355f804b31161013357806355f804b3146103675780635e1c4b60146103905780636352211e146103bb5780636c0360eb146103f8576101b7565b806323b872dd1461030b5780633ccfd60b1461033457806342842e0e1461033e576101b7565b8063081812fc11610195578063081812fc1461024f578063095ea7b31461028c57806318160ddd146102b557806322f4596f146102e0576101b7565b806301ffc9a7146101bc5780630387da42146101f957806306fdde0314610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190611fc2565b610686565b6040516101f0919061200a565b60405180910390f35b34801561020557600080fd5b5061020e610718565b60405161021b919061203e565b60405180910390f35b34801561023057600080fd5b5061023961071e565b60405161024691906120f2565b60405180910390f35b34801561025b57600080fd5b5061027660048036038101906102719190612140565b6107b0565b60405161028391906121ae565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae91906121f5565b61082f565b005b3480156102c157600080fd5b506102ca610973565b6040516102d7919061203e565b60405180910390f35b3480156102ec57600080fd5b506102f561098a565b604051610302919061203e565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190612235565b610990565b005b61033c610cb2565b005b34801561034a57600080fd5b5061036560048036038101906103609190612235565b610d88565b005b34801561037357600080fd5b5061038e600480360381019061038991906123bd565b610da8565b005b34801561039c57600080fd5b506103a5610dc3565b6040516103b2919061203e565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612140565b610dc9565b6040516103ef91906121ae565b60405180910390f35b34801561040457600080fd5b5061040d610ddb565b60405161041a91906120f2565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190612406565b610e69565b604051610457919061203e565b60405180910390f35b34801561046c57600080fd5b50610475610f21565b005b34801561048357600080fd5b5061048c610f35565b60405161049991906121ae565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190612140565b610f5f565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190612140565b610f71565b005b34801561050057600080fd5b50610509610f83565b60405161051691906120f2565b60405180910390f35b34801561052b57600080fd5b50610534611015565b604051610541919061203e565b60405180910390f35b610564600480360381019061055f9190612140565b61101b565b005b34801561057257600080fd5b5061058d6004803603810190610588919061245f565b611346565b005b34801561059b57600080fd5b506105b660048036038101906105b19190612540565b6114bd565b005b3480156105c457600080fd5b506105df60048036038101906105da9190612140565b611530565b6040516105ec91906120f2565b60405180910390f35b34801561060157600080fd5b5061060a6115ac565b604051610617919061203e565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906125c3565b6115b2565b604051610654919061200a565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612406565b611646565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461072d90612632565b80601f016020809104026020016040519081016040528092919081815260200182805461075990612632565b80156107a65780601f1061077b576101008083540402835291602001916107a6565b820191906000526020600020905b81548152906001019060200180831161078957829003601f168201915b5050505050905090565b60006107bb826116c9565b6107f1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083a82610dc9565b90508073ffffffffffffffffffffffffffffffffffffffff1661085b611728565b73ffffffffffffffffffffffffffffffffffffffff16146108be5761088781610882611728565b6115b2565b6108bd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061097d611730565b6001546000540303905090565b600a5481565b600061099b82611735565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0e84611801565b91509150610a248187610a1f611728565b611828565b610a7057610a3986610a34611728565b6115b2565b610a6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ad6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae3868686600161186c565b8015610aee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbc85610b98888887611872565b7c02000000000000000000000000000000000000000000000000000000001761189a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c425760006001850190506000600460008381526020019081526020016000205403610c40576000548114610c3f578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610caa86868660016118c5565b505050505050565b610cba6118cb565b600260095403610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf6906126af565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d2d90612700565b60006040518083038185875af1925050503d8060008114610d6a576040519150601f19603f3d011682016040523d82523d6000602084013e610d6f565b606091505b5050905080610d7d57600080fd5b506001600981905550565b610da3838383604051806020016040528060008152506114bd565b505050565b610db06118cb565b80600f9081610dbf91906128c1565b5050565b600e5481565b6000610dd482611735565b9050919050565b600f8054610de890612632565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1490612632565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f296118cb565b610f336000611949565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f676118cb565b80600b8190555050565b610f796118cb565b80600e8190555050565b606060038054610f9290612632565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbe90612632565b801561100b5780601f10610fe05761010080835404028352916020019161100b565b820191906000526020600020905b815481529060010190602001808311610fee57829003601f168201915b5050505050905090565b600d5481565b6000600b54905060008290506001600e5461103691906129c2565b8361103f610973565b61104991906129c2565b10156111f857600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109d91906129c2565b11611101576000905082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110f591906129c2565b925050819055506111f7565b600d54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156111f5576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546111999190612a18565b905080846111a79190612a18565b9150600d54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550506111f6565b5b5b5b611200610f35565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361123757600091505b81816112439190612a4c565b341015611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90612af2565b60405180910390fd5b6001600a5461129491906129c2565b8361129d610973565b6112a791906129c2565b106112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90612b5e565b60405180910390fd5b6001600c546112f691906129c2565b8310611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90612bca565b60405180910390fd5b6113413384611a0f565b505050565b61134e611728565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113b2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113bf611728565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661146c611728565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114b1919061200a565b60405180910390a35050565b6114c8848484610990565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461152a576114f384848484611a2d565b611529576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061153b826116c9565b61157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157190612c5c565b60405180910390fd5b600f61158583611b7d565b604051602001611596929190612d87565b6040516020818303038152906040529050919050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61164e6118cb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490612e28565b60405180910390fd5b6116c681611949565b50565b6000816116d4611730565b111580156116e3575060005482105b8015611721575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611744611730565b116117ca576000548110156117c95760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117c7575b600081036117bd576004600083600190039350838152602001908152602001600020549050611793565b80925050506117fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611889868684611cdd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6118d3611ce6565b73ffffffffffffffffffffffffffffffffffffffff166118f1610f35565b73ffffffffffffffffffffffffffffffffffffffff1614611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90612e94565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a29828260405180602001604052806000815250611cee565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a53611728565b8786866040518563ffffffff1660e01b8152600401611a759493929190612f09565b6020604051808303816000875af1925050508015611ab157506040513d601f19601f82011682018060405250810190611aae9190612f6a565b60015b611b2a573d8060008114611ae1576040519150601f19603f3d011682016040523d82523d6000602084013e611ae6565b606091505b506000815103611b22576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611bc4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cd8565b600082905060005b60008214611bf6578080611bdf90612f97565b915050600a82611bef919061300e565b9150611bcc565b60008167ffffffffffffffff811115611c1257611c11612292565b5b6040519080825280601f01601f191660200182016040528015611c445781602001600182028036833780820191505090505b5090505b60008514611cd157600182611c5d9190612a18565b9150600a85611c6c919061303f565b6030611c7891906129c2565b60f81b818381518110611c8e57611c8d613070565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cca919061300e565b9450611c48565b8093505050505b919050565b60009392505050565b600033905090565b611cf88383611d8b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d8657600080549050600083820390505b611d386000868380600101945086611a2d565b611d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d25578160005414611d8357600080fd5b50505b505050565b60008054905060008203611dcb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd8600084838561186c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e4f83611e406000866000611872565b611e4985611f46565b1761189a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ef057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eb5565b5060008203611f2b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f4160008483856118c5565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9f81611f6a565b8114611faa57600080fd5b50565b600081359050611fbc81611f96565b92915050565b600060208284031215611fd857611fd7611f60565b5b6000611fe684828501611fad565b91505092915050565b60008115159050919050565b61200481611fef565b82525050565b600060208201905061201f6000830184611ffb565b92915050565b6000819050919050565b61203881612025565b82525050565b6000602082019050612053600083018461202f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612093578082015181840152602081019050612078565b838111156120a2576000848401525b50505050565b6000601f19601f8301169050919050565b60006120c482612059565b6120ce8185612064565b93506120de818560208601612075565b6120e7816120a8565b840191505092915050565b6000602082019050818103600083015261210c81846120b9565b905092915050565b61211d81612025565b811461212857600080fd5b50565b60008135905061213a81612114565b92915050565b60006020828403121561215657612155611f60565b5b60006121648482850161212b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121988261216d565b9050919050565b6121a88161218d565b82525050565b60006020820190506121c3600083018461219f565b92915050565b6121d28161218d565b81146121dd57600080fd5b50565b6000813590506121ef816121c9565b92915050565b6000806040838503121561220c5761220b611f60565b5b600061221a858286016121e0565b925050602061222b8582860161212b565b9150509250929050565b60008060006060848603121561224e5761224d611f60565b5b600061225c868287016121e0565b935050602061226d868287016121e0565b925050604061227e8682870161212b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122ca826120a8565b810181811067ffffffffffffffff821117156122e9576122e8612292565b5b80604052505050565b60006122fc611f56565b905061230882826122c1565b919050565b600067ffffffffffffffff82111561232857612327612292565b5b612331826120a8565b9050602081019050919050565b82818337600083830152505050565b600061236061235b8461230d565b6122f2565b90508281526020810184848401111561237c5761237b61228d565b5b61238784828561233e565b509392505050565b600082601f8301126123a4576123a3612288565b5b81356123b484826020860161234d565b91505092915050565b6000602082840312156123d3576123d2611f60565b5b600082013567ffffffffffffffff8111156123f1576123f0611f65565b5b6123fd8482850161238f565b91505092915050565b60006020828403121561241c5761241b611f60565b5b600061242a848285016121e0565b91505092915050565b61243c81611fef565b811461244757600080fd5b50565b60008135905061245981612433565b92915050565b6000806040838503121561247657612475611f60565b5b6000612484858286016121e0565b92505060206124958582860161244a565b9150509250929050565b600067ffffffffffffffff8211156124ba576124b9612292565b5b6124c3826120a8565b9050602081019050919050565b60006124e36124de8461249f565b6122f2565b9050828152602081018484840111156124ff576124fe61228d565b5b61250a84828561233e565b509392505050565b600082601f83011261252757612526612288565b5b81356125378482602086016124d0565b91505092915050565b6000806000806080858703121561255a57612559611f60565b5b6000612568878288016121e0565b9450506020612579878288016121e0565b935050604061258a8782880161212b565b925050606085013567ffffffffffffffff8111156125ab576125aa611f65565b5b6125b787828801612512565b91505092959194509250565b600080604083850312156125da576125d9611f60565b5b60006125e8858286016121e0565b92505060206125f9858286016121e0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061264a57607f821691505b60208210810361265d5761265c612603565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612699601f83612064565b91506126a482612663565b602082019050919050565b600060208201905081810360008301526126c88161268c565b9050919050565b600081905092915050565b50565b60006126ea6000836126cf565b91506126f5826126da565b600082019050919050565b600061270b826126dd565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261273a565b612781868361273a565b95508019841693508086168417925050509392505050565b6000819050919050565b60006127be6127b96127b484612025565b612799565b612025565b9050919050565b6000819050919050565b6127d8836127a3565b6127ec6127e4826127c5565b848454612747565b825550505050565b600090565b6128016127f4565b61280c8184846127cf565b505050565b5b81811015612830576128256000826127f9565b600181019050612812565b5050565b601f8211156128755761284681612715565b61284f8461272a565b8101602085101561285e578190505b61287261286a8561272a565b830182612811565b50505b505050565b600082821c905092915050565b60006128986000198460080261287a565b1980831691505092915050565b60006128b18383612887565b9150826002028217905092915050565b6128ca82612059565b67ffffffffffffffff8111156128e3576128e2612292565b5b6128ed8254612632565b6128f8828285612834565b600060209050601f83116001811461292b5760008415612919578287015190505b61292385826128a5565b86555061298b565b601f19841661293986612715565b60005b828110156129615784890151825560018201915060208501945060208101905061293c565b8683101561297e578489015161297a601f891682612887565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129cd82612025565b91506129d883612025565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a0d57612a0c612993565b5b828201905092915050565b6000612a2382612025565b9150612a2e83612025565b925082821015612a4157612a40612993565b5b828203905092915050565b6000612a5782612025565b9150612a6283612025565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a9b57612a9a612993565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612adc601d83612064565b9150612ae782612aa6565b602082019050919050565b60006020820190508181036000830152612b0b81612acf565b9050919050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612b48600983612064565b9150612b5382612b12565b602082019050919050565b60006020820190508181036000830152612b7781612b3b565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612bb4601383612064565b9150612bbf82612b7e565b602082019050919050565b60006020820190508181036000830152612be381612ba7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612c46602f83612064565b9150612c5182612bea565b604082019050919050565b60006020820190508181036000830152612c7581612c39565b9050919050565b600081905092915050565b60008154612c9481612632565b612c9e8186612c7c565b94506001821660008114612cb95760018114612cce57612d01565b60ff1983168652811515820286019350612d01565b612cd785612715565b60005b83811015612cf957815481890152600182019150602081019050612cda565b838801955050505b50505092915050565b6000612d1582612059565b612d1f8185612c7c565b9350612d2f818560208601612075565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612d71600583612c7c565b9150612d7c82612d3b565b600582019050919050565b6000612d938285612c87565b9150612d9f8284612d0a565b9150612daa82612d64565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e12602683612064565b9150612e1d82612db6565b604082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e7e602083612064565b9150612e8982612e48565b602082019050919050565b60006020820190508181036000830152612ead81612e71565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612edb82612eb4565b612ee58185612ebf565b9350612ef5818560208601612075565b612efe816120a8565b840191505092915050565b6000608082019050612f1e600083018761219f565b612f2b602083018661219f565b612f38604083018561202f565b8181036060830152612f4a8184612ed0565b905095945050505050565b600081519050612f6481611f96565b92915050565b600060208284031215612f8057612f7f611f60565b5b6000612f8e84828501612f55565b91505092915050565b6000612fa282612025565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fd457612fd3612993565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061301982612025565b915061302483612025565b92508261303457613033612fdf565b5b828204905092915050565b600061304a82612025565b915061305583612025565b92508261306557613064612fdf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208f8fec7caa108ad793440fa483928954d9e533bed853fd63a333cd502ab5164764736f6c634300080f0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d53434b787668356245516665334b72536f5074744b3958507554426742723354595a6f594754366a345776792f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): https://ipfs.io/ipfs/QmSCKxvh5bEQfe3KrSoPttK9XPuTBgBr3TYZoYGT6j4Wvy/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d53434b787668356245
Arg [3] : 516665334b72536f5074744b3958507554426742723354595a6f594754366a34
Arg [4] : 5776792f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

59836:2663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27390:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59941:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28292:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34775:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34216:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24043:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59901:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38482:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62291:205;;;:::i;:::-;;41395:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61978:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60073:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29685:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60154:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25227:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8138:103;;;;;;;;;;;;;:::i;:::-;;7490:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62186:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62074:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28468;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60028:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60363:1133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35333:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42178:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61620:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59986:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35798:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8396:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27390:639;27475:4;27814:10;27799:25;;:11;:25;;;;:102;;;;27891:10;27876:25;;:11;:25;;;;27799:102;:179;;;;27968:10;27953:25;;:11;:25;;;;27799:179;27779:199;;27390:639;;;:::o;59941:38::-;;;;:::o;28292:100::-;28346:13;28379:5;28372:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28292:100;:::o;34775:218::-;34851:7;34876:16;34884:7;34876;:16::i;:::-;34871:64;;34901:34;;;;;;;;;;;;;;34871:64;34955:15;:24;34971:7;34955:24;;;;;;;;;;;:30;;;;;;;;;;;;34948:37;;34775:218;;;:::o;34216:400::-;34297:13;34313:16;34321:7;34313;:16::i;:::-;34297:32;;34369:5;34346:28;;:19;:17;:19::i;:::-;:28;;;34342:175;;34394:44;34411:5;34418:19;:17;:19::i;:::-;34394:16;:44::i;:::-;34389:128;;34466:35;;;;;;;;;;;;;;34389:128;34342:175;34562:2;34529:15;:24;34545:7;34529:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34600:7;34596:2;34580:28;;34589:5;34580:28;;;;;;;;;;;;34286:330;34216:400;;:::o;24043:323::-;24104:7;24332:15;:13;:15::i;:::-;24317:12;;24301:13;;:28;:46;24294:53;;24043:323;:::o;59901:33::-;;;;:::o;38482:2817::-;38616:27;38646;38665:7;38646:18;:27::i;:::-;38616:57;;38731:4;38690:45;;38706:19;38690:45;;;38686:86;;38744:28;;;;;;;;;;;;;;38686:86;38786:27;38815:23;38842:35;38869:7;38842:26;:35::i;:::-;38785:92;;;;38977:68;39002:15;39019:4;39025:19;:17;:19::i;:::-;38977:24;:68::i;:::-;38972:180;;39065:43;39082:4;39088:19;:17;:19::i;:::-;39065:16;:43::i;:::-;39060:92;;39117:35;;;;;;;;;;;;;;39060:92;38972:180;39183:1;39169:16;;:2;:16;;;39165:52;;39194:23;;;;;;;;;;;;;;39165:52;39230:43;39252:4;39258:2;39262:7;39271:1;39230:21;:43::i;:::-;39366:15;39363:160;;;39506:1;39485:19;39478:30;39363:160;39903:18;:24;39922:4;39903:24;;;;;;;;;;;;;;;;39901:26;;;;;;;;;;;;39972:18;:22;39991:2;39972:22;;;;;;;;;;;;;;;;39970:24;;;;;;;;;;;40294:146;40331:2;40380:45;40395:4;40401:2;40405:19;40380:14;:45::i;:::-;20442:8;40352:73;40294:18;:146::i;:::-;40265:17;:26;40283:7;40265:26;;;;;;;;;;;:175;;;;40611:1;20442:8;40560:19;:47;:52;40556:627;;40633:19;40665:1;40655:7;:11;40633:33;;40822:1;40788:17;:30;40806:11;40788:30;;;;;;;;;;;;:35;40784:384;;40926:13;;40911:11;:28;40907:242;;41106:19;41073:17;:30;41091:11;41073:30;;;;;;;;;;;:52;;;;40907:242;40784:384;40614:569;40556:627;41230:7;41226:2;41211:27;;41220:4;41211:27;;;;;;;;;;;;41249:42;41270:4;41276:2;41280:7;41289:1;41249:20;:42::i;:::-;38605:2694;;;38482:2817;;;:::o;62291:205::-;7376:13;:11;:13::i;:::-;4415:1:::1;5013:7;;:19:::0;5005:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4415:1;5146:7;:18;;;;62361:12:::2;62387:10;62379:24;;62425:21;62379:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62360:101;;;62480:7;62472:16;;;::::0;::::2;;62349:147;4371:1:::1;5325:7;:22;;;;62291:205::o:0;41395:185::-;41533:39;41550:4;41556:2;41560:7;41533:39;;;;;;;;;;;;:16;:39::i;:::-;41395:185;;;:::o;61978:88::-;7376:13;:11;:13::i;:::-;62055:3:::1;62045:7;:13;;;;;;:::i;:::-;;61978:88:::0;:::o;60073:40::-;;;;:::o;29685:152::-;29757:7;29800:27;29819:7;29800:18;:27::i;:::-;29777:52;;29685:152;;;:::o;60154:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25227:233::-;25299:7;25340:1;25323:19;;:5;:19;;;25319:60;;25351:28;;;;;;;;;;;;;;25319:60;19386:13;25397:18;:25;25416:5;25397:25;;;;;;;;;;;;;;;;:55;25390:62;;25227:233;;;:::o;8138:103::-;7376:13;:11;:13::i;:::-;8203:30:::1;8230:1;8203:18;:30::i;:::-;8138:103::o:0;7490:87::-;7536:7;7563:6;;;;;;;;;;;7556:13;;7490:87;:::o;62186:97::-;7376:13;:11;:13::i;:::-;62266:9:::1;62253:10;:22;;;;62186:97:::0;:::o;62074:104::-;7376:13;:11;:13::i;:::-;62164:6:::1;62143:18;:27;;;;62074:104:::0;:::o;28468:::-;28524:13;28557:7;28550:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28468:104;:::o;60028:38::-;;;;:::o;60363:1133::-;60420:12;60435:10;;60420:25;;60458:17;60478:5;60458:25;;60543:1;60522:18;;:22;;;;:::i;:::-;60514:5;60498:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;60494:639;;;60622:19;;60613:5;60581:17;:29;60599:10;60581:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;60578:544;;60685:1;60673:13;;60738:5;60705:17;:29;60723:10;60705:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;60578:544;;;60799:19;;60767:17;:29;60785:10;60767:29;;;;;;;;;;;;;;;;:51;60764:358;;;60853:18;60896:17;:29;60914:10;60896:29;;;;;;;;;;;;;;;;60874:19;;:51;;;;:::i;:::-;60853:72;;60964:10;60956:5;:18;;;;:::i;:::-;60944:30;;61025:19;;60993:17;:29;61011:10;60993:29;;;;;;;;;;;;;;;:51;;;;60819:242;60764:358;;;;60578:544;60494:639;61162:7;:5;:7::i;:::-;61148:21;;:10;:21;;;61145:80;;61212:1;61205:8;;61145:80;61270:4;61258:9;:16;;;;:::i;:::-;61245:9;:29;;61237:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;61364:1;61351:10;;:14;;;;:::i;:::-;61343:5;61327:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:38;61319:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;61422:1;61406:13;;:17;;;;:::i;:::-;61398:5;:25;61390:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;61460:28;61470:10;61482:5;61460:9;:28::i;:::-;60409:1087;;60363:1133;:::o;35333:308::-;35444:19;:17;:19::i;:::-;35432:31;;:8;:31;;;35428:61;;35472:17;;;;;;;;;;;;;;35428:61;35554:8;35502:18;:39;35521:19;:17;:19::i;:::-;35502:39;;;;;;;;;;;;;;;:49;35542:8;35502:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35614:8;35578:55;;35593:19;:17;:19::i;:::-;35578:55;;;35624:8;35578:55;;;;;;:::i;:::-;;;;;;;;35333:308;;:::o;42178:399::-;42345:31;42358:4;42364:2;42368:7;42345:12;:31::i;:::-;42409:1;42391:2;:14;;;:19;42387:183;;42430:56;42461:4;42467:2;42471:7;42480:5;42430:30;:56::i;:::-;42425:145;;42514:40;;;;;;;;;;;;;;42425:145;42387:183;42178:399;;;;:::o;61620:350::-;61738:13;61791:16;61799:7;61791;:16::i;:::-;61769:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;61924:7;61933:18;:7;:16;:18::i;:::-;61907:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61893:69;;61620:350;;;:::o;59986:33::-;;;;:::o;35798:164::-;35895:4;35919:18;:25;35938:5;35919:25;;;;;;;;;;;;;;;:35;35945:8;35919:35;;;;;;;;;;;;;;;;;;;;;;;;;35912:42;;35798:164;;;;:::o;8396:201::-;7376:13;:11;:13::i;:::-;8505:1:::1;8485:22;;:8;:22;;::::0;8477:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8561:28;8580:8;8561:18;:28::i;:::-;8396:201:::0;:::o;36220:282::-;36285:4;36341:7;36322:15;:13;:15::i;:::-;:26;;:66;;;;;36375:13;;36365:7;:23;36322:66;:153;;;;;36474:1;20162:8;36426:17;:26;36444:7;36426:26;;;;;;;;;;;;:44;:49;36322:153;36302:173;;36220:282;;;:::o;57986:105::-;58046:7;58073:10;58066:17;;57986:105;:::o;23559:92::-;23615:7;23559:92;:::o;30840:1275::-;30907:7;30927:12;30942:7;30927:22;;31010:4;30991:15;:13;:15::i;:::-;:23;30987:1061;;31044:13;;31037:4;:20;31033:1015;;;31082:14;31099:17;:23;31117:4;31099:23;;;;;;;;;;;;31082:40;;31216:1;20162:8;31188:6;:24;:29;31184:845;;31853:113;31870:1;31860:6;:11;31853:113;;31913:17;:25;31931:6;;;;;;;31913:25;;;;;;;;;;;;31904:34;;31853:113;;;31999:6;31992:13;;;;;;31184:845;31059:989;31033:1015;30987:1061;32076:31;;;;;;;;;;;;;;30840:1275;;;;:::o;37383:479::-;37485:27;37514:23;37555:38;37596:15;:24;37612:7;37596:24;;;;;;;;;;;37555:65;;37767:18;37744:41;;37824:19;37818:26;37799:45;;37729:126;37383:479;;;:::o;36611:659::-;36760:11;36925:16;36918:5;36914:28;36905:37;;37085:16;37074:9;37070:32;37057:45;;37235:15;37224:9;37221:30;37213:5;37202:9;37199:20;37196:56;37186:66;;36611:659;;;;;:::o;43239:159::-;;;;;:::o;57295:311::-;57430:7;57450:16;20566:3;57476:19;:41;;57450:68;;20566:3;57544:31;57555:4;57561:2;57565:9;57544:10;:31::i;:::-;57536:40;;:62;;57529:69;;;57295:311;;;;;:::o;32663:450::-;32743:14;32911:16;32904:5;32900:28;32891:37;;33088:5;33074:11;33049:23;33045:41;33042:52;33035:5;33032:63;33022:73;;32663:450;;;;:::o;44063:158::-;;;;;:::o;7655:132::-;7730:12;:10;:12::i;:::-;7719:23;;:7;:5;:7::i;:::-;:23;;;7711:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7655:132::o;8757:191::-;8831:16;8850:6;;;;;;;;;;;8831:25;;8876:8;8867:6;;:17;;;;;;;;;;;;;;;;;;8931:8;8900:40;;8921:8;8900:40;;;;;;;;;;;;8820:128;8757:191;:::o;51818:112::-;51895:27;51905:2;51909:8;51895:27;;;;;;;;;;;;:9;:27::i;:::-;51818:112;;:::o;44661:716::-;44824:4;44870:2;44845:45;;;44891:19;:17;:19::i;:::-;44912:4;44918:7;44927:5;44845:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44841:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45145:1;45128:6;:13;:18;45124:235;;45174:40;;;;;;;;;;;;;;45124:235;45317:6;45311:13;45302:6;45298:2;45294:15;45287:38;44841:529;45014:54;;;45004:64;;;:6;:64;;;;44997:71;;;44661:716;;;;;;:::o;536:723::-;592:13;822:1;813:5;:10;809:53;;840:10;;;;;;;;;;;;;;;;;;;;;809:53;872:12;887:5;872:20;;903:14;928:78;943:1;935:4;:9;928:78;;961:8;;;;;:::i;:::-;;;;992:2;984:10;;;;;:::i;:::-;;;928:78;;;1016:19;1048:6;1038:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016:39;;1066:154;1082:1;1073:5;:10;1066:154;;1110:1;1100:11;;;;;:::i;:::-;;;1177:2;1169:5;:10;;;;:::i;:::-;1156:2;:24;;;;:::i;:::-;1143:39;;1126:6;1133;1126:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1206:2;1197:11;;;;;:::i;:::-;;;1066:154;;;1244:6;1230:21;;;;;536:723;;;;:::o;56996:147::-;57133:6;56996:147;;;;;:::o;6041:98::-;6094:7;6121:10;6114:17;;6041:98;:::o;51045:689::-;51176:19;51182:2;51186:8;51176:5;:19::i;:::-;51255:1;51237:2;:14;;;:19;51233:483;;51277:11;51291:13;;51277:27;;51323:13;51345:8;51339:3;:14;51323:30;;51372:233;51403:62;51442:1;51446:2;51450:7;;;;;;51459:5;51403:30;:62::i;:::-;51398:167;;51501:40;;;;;;;;;;;;;;51398:167;51600:3;51592:5;:11;51372:233;;51687:3;51670:13;;:20;51666:34;;51692:8;;;51666:34;51258:458;;51233:483;51045:689;;;:::o;45839:2454::-;45912:20;45935:13;;45912:36;;45975:1;45963:8;:13;45959:44;;45985:18;;;;;;;;;;;;;;45959:44;46016:61;46046:1;46050:2;46054:12;46068:8;46016:21;:61::i;:::-;46560:1;19524:2;46530:1;:26;;46529:32;46517:8;:45;46491:18;:22;46510:2;46491:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46839:139;46876:2;46930:33;46953:1;46957:2;46961:1;46930:14;:33::i;:::-;46897:30;46918:8;46897:20;:30::i;:::-;:66;46839:18;:139::i;:::-;46805:17;:31;46823:12;46805:31;;;;;;;;;;;:173;;;;46995:16;47026:11;47055:8;47040:12;:23;47026:37;;47310:16;47306:2;47302:25;47290:37;;47682:12;47642:8;47601:1;47539:25;47480:1;47419;47392:335;47807:1;47793:12;47789:20;47747:346;47848:3;47839:7;47836:16;47747:346;;48066:7;48056:8;48053:1;48026:25;48023:1;48020;48015:59;47901:1;47892:7;47888:15;47877:26;;47747:346;;;47751:77;48138:1;48126:8;:13;48122:45;;48148:19;;;;;;;;;;;;;;48122:45;48200:3;48184:13;:19;;;;46265:1950;;48225:60;48254:1;48258:2;48262:12;48276:8;48225:20;:60::i;:::-;45901:2392;45839:2454;;:::o;33215:324::-;33285:14;33518:1;33508:8;33505:15;33479:24;33475:46;33465:56;;33215:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:181::-;12773:33;12769:1;12761:6;12757:14;12750:57;12633:181;:::o;12820:366::-;12962:3;12983:67;13047:2;13042:3;12983:67;:::i;:::-;12976:74;;13059:93;13148:3;13059:93;:::i;:::-;13177:2;13172:3;13168:12;13161:19;;12820:366;;;:::o;13192:419::-;13358:4;13396:2;13385:9;13381:18;13373:26;;13445:9;13439:4;13435:20;13431:1;13420:9;13416:17;13409:47;13473:131;13599:4;13473:131;:::i;:::-;13465:139;;13192:419;;;:::o;13617:147::-;13718:11;13755:3;13740:18;;13617:147;;;;:::o;13770:114::-;;:::o;13890:398::-;14049:3;14070:83;14151:1;14146:3;14070:83;:::i;:::-;14063:90;;14162:93;14251:3;14162:93;:::i;:::-;14280:1;14275:3;14271:11;14264:18;;13890:398;;;:::o;14294:379::-;14478:3;14500:147;14643:3;14500:147;:::i;:::-;14493:154;;14664:3;14657:10;;14294:379;;;:::o;14679:141::-;14728:4;14751:3;14743:11;;14774:3;14771:1;14764:14;14808:4;14805:1;14795:18;14787:26;;14679:141;;;:::o;14826:93::-;14863:6;14910:2;14905;14898:5;14894:14;14890:23;14880:33;;14826:93;;;:::o;14925:107::-;14969:8;15019:5;15013:4;15009:16;14988:37;;14925:107;;;;:::o;15038:393::-;15107:6;15157:1;15145:10;15141:18;15180:97;15210:66;15199:9;15180:97;:::i;:::-;15298:39;15328:8;15317:9;15298:39;:::i;:::-;15286:51;;15370:4;15366:9;15359:5;15355:21;15346:30;;15419:4;15409:8;15405:19;15398:5;15395:30;15385:40;;15114:317;;15038:393;;;;;:::o;15437:60::-;15465:3;15486:5;15479:12;;15437:60;;;:::o;15503:142::-;15553:9;15586:53;15604:34;15613:24;15631:5;15613:24;:::i;:::-;15604:34;:::i;:::-;15586:53;:::i;:::-;15573:66;;15503:142;;;:::o;15651:75::-;15694:3;15715:5;15708:12;;15651:75;;;:::o;15732:269::-;15842:39;15873:7;15842:39;:::i;:::-;15903:91;15952:41;15976:16;15952:41;:::i;:::-;15944:6;15937:4;15931:11;15903:91;:::i;:::-;15897:4;15890:105;15808:193;15732:269;;;:::o;16007:73::-;16052:3;16007:73;:::o;16086:189::-;16163:32;;:::i;:::-;16204:65;16262:6;16254;16248:4;16204:65;:::i;:::-;16139:136;16086:189;;:::o;16281:186::-;16341:120;16358:3;16351:5;16348:14;16341:120;;;16412:39;16449:1;16442:5;16412:39;:::i;:::-;16385:1;16378:5;16374:13;16365:22;;16341:120;;;16281:186;;:::o;16473:543::-;16574:2;16569:3;16566:11;16563:446;;;16608:38;16640:5;16608:38;:::i;:::-;16692:29;16710:10;16692:29;:::i;:::-;16682:8;16678:44;16875:2;16863:10;16860:18;16857:49;;;16896:8;16881:23;;16857:49;16919:80;16975:22;16993:3;16975:22;:::i;:::-;16965:8;16961:37;16948:11;16919:80;:::i;:::-;16578:431;;16563:446;16473:543;;;:::o;17022:117::-;17076:8;17126:5;17120:4;17116:16;17095:37;;17022:117;;;;:::o;17145:169::-;17189:6;17222:51;17270:1;17266:6;17258:5;17255:1;17251:13;17222:51;:::i;:::-;17218:56;17303:4;17297;17293:15;17283:25;;17196:118;17145:169;;;;:::o;17319:295::-;17395:4;17541:29;17566:3;17560:4;17541:29;:::i;:::-;17533:37;;17603:3;17600:1;17596:11;17590:4;17587:21;17579:29;;17319:295;;;;:::o;17619:1395::-;17736:37;17769:3;17736:37;:::i;:::-;17838:18;17830:6;17827:30;17824:56;;;17860:18;;:::i;:::-;17824:56;17904:38;17936:4;17930:11;17904:38;:::i;:::-;17989:67;18049:6;18041;18035:4;17989:67;:::i;:::-;18083:1;18107:4;18094:17;;18139:2;18131:6;18128:14;18156:1;18151:618;;;;18813:1;18830:6;18827:77;;;18879:9;18874:3;18870:19;18864:26;18855:35;;18827:77;18930:67;18990:6;18983:5;18930:67;:::i;:::-;18924:4;18917:81;18786:222;18121:887;;18151:618;18203:4;18199:9;18191:6;18187:22;18237:37;18269:4;18237:37;:::i;:::-;18296:1;18310:208;18324:7;18321:1;18318:14;18310:208;;;18403:9;18398:3;18394:19;18388:26;18380:6;18373:42;18454:1;18446:6;18442:14;18432:24;;18501:2;18490:9;18486:18;18473:31;;18347:4;18344:1;18340:12;18335:17;;18310:208;;;18546:6;18537:7;18534:19;18531:179;;;18604:9;18599:3;18595:19;18589:26;18647:48;18689:4;18681:6;18677:17;18666:9;18647:48;:::i;:::-;18639:6;18632:64;18554:156;18531:179;18756:1;18752;18744:6;18740:14;18736:22;18730:4;18723:36;18158:611;;;18121:887;;17711:1303;;;17619:1395;;:::o;19020:180::-;19068:77;19065:1;19058:88;19165:4;19162:1;19155:15;19189:4;19186:1;19179:15;19206:305;19246:3;19265:20;19283:1;19265:20;:::i;:::-;19260:25;;19299:20;19317:1;19299:20;:::i;:::-;19294:25;;19453:1;19385:66;19381:74;19378:1;19375:81;19372:107;;;19459:18;;:::i;:::-;19372:107;19503:1;19500;19496:9;19489:16;;19206:305;;;;:::o;19517:191::-;19557:4;19577:20;19595:1;19577:20;:::i;:::-;19572:25;;19611:20;19629:1;19611:20;:::i;:::-;19606:25;;19650:1;19647;19644:8;19641:34;;;19655:18;;:::i;:::-;19641:34;19700:1;19697;19693:9;19685:17;;19517:191;;;;:::o;19714:348::-;19754:7;19777:20;19795:1;19777:20;:::i;:::-;19772:25;;19811:20;19829:1;19811:20;:::i;:::-;19806:25;;19999:1;19931:66;19927:74;19924:1;19921:81;19916:1;19909:9;19902:17;19898:105;19895:131;;;20006:18;;:::i;:::-;19895:131;20054:1;20051;20047:9;20036:20;;19714:348;;;;:::o;20068:179::-;20208:31;20204:1;20196:6;20192:14;20185:55;20068:179;:::o;20253:366::-;20395:3;20416:67;20480:2;20475:3;20416:67;:::i;:::-;20409:74;;20492:93;20581:3;20492:93;:::i;:::-;20610:2;20605:3;20601:12;20594:19;;20253:366;;;:::o;20625:419::-;20791:4;20829:2;20818:9;20814:18;20806:26;;20878:9;20872:4;20868:20;20864:1;20853:9;20849:17;20842:47;20906:131;21032:4;20906:131;:::i;:::-;20898:139;;20625:419;;;:::o;21050:159::-;21190:11;21186:1;21178:6;21174:14;21167:35;21050:159;:::o;21215:365::-;21357:3;21378:66;21442:1;21437:3;21378:66;:::i;:::-;21371:73;;21453:93;21542:3;21453:93;:::i;:::-;21571:2;21566:3;21562:12;21555:19;;21215:365;;;:::o;21586:419::-;21752:4;21790:2;21779:9;21775:18;21767:26;;21839:9;21833:4;21829:20;21825:1;21814:9;21810:17;21803:47;21867:131;21993:4;21867:131;:::i;:::-;21859:139;;21586:419;;;:::o;22011:169::-;22151:21;22147:1;22139:6;22135:14;22128:45;22011:169;:::o;22186:366::-;22328:3;22349:67;22413:2;22408:3;22349:67;:::i;:::-;22342:74;;22425:93;22514:3;22425:93;:::i;:::-;22543:2;22538:3;22534:12;22527:19;;22186:366;;;:::o;22558:419::-;22724:4;22762:2;22751:9;22747:18;22739:26;;22811:9;22805:4;22801:20;22797:1;22786:9;22782:17;22775:47;22839:131;22965:4;22839:131;:::i;:::-;22831:139;;22558:419;;;:::o;22983:234::-;23123:34;23119:1;23111:6;23107:14;23100:58;23192:17;23187:2;23179:6;23175:15;23168:42;22983:234;:::o;23223:366::-;23365:3;23386:67;23450:2;23445:3;23386:67;:::i;:::-;23379:74;;23462:93;23551:3;23462:93;:::i;:::-;23580:2;23575:3;23571:12;23564:19;;23223:366;;;:::o;23595:419::-;23761:4;23799:2;23788:9;23784:18;23776:26;;23848:9;23842:4;23838:20;23834:1;23823:9;23819:17;23812:47;23876:131;24002:4;23876:131;:::i;:::-;23868:139;;23595:419;;;:::o;24020:148::-;24122:11;24159:3;24144:18;;24020:148;;;;:::o;24198:874::-;24301:3;24338:5;24332:12;24367:36;24393:9;24367:36;:::i;:::-;24419:89;24501:6;24496:3;24419:89;:::i;:::-;24412:96;;24539:1;24528:9;24524:17;24555:1;24550:166;;;;24730:1;24725:341;;;;24517:549;;24550:166;24634:4;24630:9;24619;24615:25;24610:3;24603:38;24696:6;24689:14;24682:22;24674:6;24670:35;24665:3;24661:45;24654:52;;24550:166;;24725:341;24792:38;24824:5;24792:38;:::i;:::-;24852:1;24866:154;24880:6;24877:1;24874:13;24866:154;;;24954:7;24948:14;24944:1;24939:3;24935:11;24928:35;25004:1;24995:7;24991:15;24980:26;;24902:4;24899:1;24895:12;24890:17;;24866:154;;;25049:6;25044:3;25040:16;25033:23;;24732:334;;24517:549;;24305:767;;24198:874;;;;:::o;25078:377::-;25184:3;25212:39;25245:5;25212:39;:::i;:::-;25267:89;25349:6;25344:3;25267:89;:::i;:::-;25260:96;;25365:52;25410:6;25405:3;25398:4;25391:5;25387:16;25365:52;:::i;:::-;25442:6;25437:3;25433:16;25426:23;;25188:267;25078:377;;;;:::o;25461:155::-;25601:7;25597:1;25589:6;25585:14;25578:31;25461:155;:::o;25622:400::-;25782:3;25803:84;25885:1;25880:3;25803:84;:::i;:::-;25796:91;;25896:93;25985:3;25896:93;:::i;:::-;26014:1;26009:3;26005:11;25998:18;;25622:400;;;:::o;26028:695::-;26306:3;26328:92;26416:3;26407:6;26328:92;:::i;:::-;26321:99;;26437:95;26528:3;26519:6;26437:95;:::i;:::-;26430:102;;26549:148;26693:3;26549:148;:::i;:::-;26542:155;;26714:3;26707:10;;26028:695;;;;;:::o;26729:225::-;26869:34;26865:1;26857:6;26853:14;26846:58;26938:8;26933:2;26925:6;26921:15;26914:33;26729:225;:::o;26960:366::-;27102:3;27123:67;27187:2;27182:3;27123:67;:::i;:::-;27116:74;;27199:93;27288:3;27199:93;:::i;:::-;27317:2;27312:3;27308:12;27301:19;;26960:366;;;:::o;27332:419::-;27498:4;27536:2;27525:9;27521:18;27513:26;;27585:9;27579:4;27575:20;27571:1;27560:9;27556:17;27549:47;27613:131;27739:4;27613:131;:::i;:::-;27605:139;;27332:419;;;:::o;27757:182::-;27897:34;27893:1;27885:6;27881:14;27874:58;27757:182;:::o;27945:366::-;28087:3;28108:67;28172:2;28167:3;28108:67;:::i;:::-;28101:74;;28184:93;28273:3;28184:93;:::i;:::-;28302:2;28297:3;28293:12;28286:19;;27945:366;;;:::o;28317:419::-;28483:4;28521:2;28510:9;28506:18;28498:26;;28570:9;28564:4;28560:20;28556:1;28545:9;28541:17;28534:47;28598:131;28724:4;28598:131;:::i;:::-;28590:139;;28317:419;;;:::o;28742:98::-;28793:6;28827:5;28821:12;28811:22;;28742:98;;;:::o;28846:168::-;28929:11;28963:6;28958:3;28951:19;29003:4;28998:3;28994:14;28979:29;;28846:168;;;;:::o;29020:360::-;29106:3;29134:38;29166:5;29134:38;:::i;:::-;29188:70;29251:6;29246:3;29188:70;:::i;:::-;29181:77;;29267:52;29312:6;29307:3;29300:4;29293:5;29289:16;29267:52;:::i;:::-;29344:29;29366:6;29344:29;:::i;:::-;29339:3;29335:39;29328:46;;29110:270;29020:360;;;;:::o;29386:640::-;29581:4;29619:3;29608:9;29604:19;29596:27;;29633:71;29701:1;29690:9;29686:17;29677:6;29633:71;:::i;:::-;29714:72;29782:2;29771:9;29767:18;29758:6;29714:72;:::i;:::-;29796;29864:2;29853:9;29849:18;29840:6;29796:72;:::i;:::-;29915:9;29909:4;29905:20;29900:2;29889:9;29885:18;29878:48;29943:76;30014:4;30005:6;29943:76;:::i;:::-;29935:84;;29386:640;;;;;;;:::o;30032:141::-;30088:5;30119:6;30113:13;30104:22;;30135:32;30161:5;30135:32;:::i;:::-;30032:141;;;;:::o;30179:349::-;30248:6;30297:2;30285:9;30276:7;30272:23;30268:32;30265:119;;;30303:79;;:::i;:::-;30265:119;30423:1;30448:63;30503:7;30494:6;30483:9;30479:22;30448:63;:::i;:::-;30438:73;;30394:127;30179:349;;;;:::o;30534:233::-;30573:3;30596:24;30614:5;30596:24;:::i;:::-;30587:33;;30642:66;30635:5;30632:77;30629:103;;30712:18;;:::i;:::-;30629:103;30759:1;30752:5;30748:13;30741:20;;30534:233;;;:::o;30773:180::-;30821:77;30818:1;30811:88;30918:4;30915:1;30908:15;30942:4;30939:1;30932:15;30959:185;30999:1;31016:20;31034:1;31016:20;:::i;:::-;31011:25;;31050:20;31068:1;31050:20;:::i;:::-;31045:25;;31089:1;31079:35;;31094:18;;:::i;:::-;31079:35;31136:1;31133;31129:9;31124:14;;30959:185;;;;:::o;31150:176::-;31182:1;31199:20;31217:1;31199:20;:::i;:::-;31194:25;;31233:20;31251:1;31233:20;:::i;:::-;31228:25;;31272:1;31262:35;;31277:18;;:::i;:::-;31262:35;31318:1;31315;31311:9;31306:14;;31150:176;;;;:::o;31332:180::-;31380:77;31377:1;31370:88;31477:4;31474:1;31467:15;31501:4;31498:1;31491:15

Swarm Source

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