ETH Price: $2,612.28 (+0.81%)

Token

Yukino (YKN)
 

Overview

Max Total Supply

420 YKN

Holders

210

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 YKN
0xa81f75e1760fdb01d0404d96cc21c1166cce1854
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:
Yukino

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
/**
 *Submitted for verification at Etherscan.io on 2022-08-02
*/

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.0
// 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.0
// 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 1;
    }

    /**
     * @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 ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 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: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


pragma solidity ^0.8.0;


//MAX_PER_WALLET - максимум на кошелек
//MAX_PURCHASE - максимум за транзакцию

contract Yukino is ERC721A, Ownable {
    uint256 public MINT_PRICE = 0.005 ether;
    uint256 public MAX_SUPPLY = 420;
    uint256 public MAX_PER_WALLET = 10;
    uint256 public constant MAX_PURCHASE = 20;

    constructor() ERC721A("Yukino", "YKN") {}

    modifier hasCorrectAmount(uint256 _wei, uint256 _quantity) {
        require(_wei >= MINT_PRICE * _quantity, "Insufficent funds");
        _;
    }

    modifier withinMaximumSupply(uint256 _quantity) {
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Surpasses supply");
        _;
    }

    /**
     * Public sale and whitelist sale mechansim
     */
    bool public publicSale = false;
    

    modifier publicSaleActive() {
        require(publicSale, "Public sale not started");
        _;
    }

    function setPublicSale(bool toggle) external onlyOwner {
        publicSale = toggle;
    }


    /**
     * Public minting
     */
    mapping(address => uint256) public publicAddressMintCount;

    function mintPublic(uint256 _quantity)
        public
        payable
        publicSaleActive
        hasCorrectAmount(msg.value, _quantity)
        withinMaximumSupply(_quantity)
    {
        require(
            _quantity > 0 && _quantity <= MAX_PURCHASE &&
                publicAddressMintCount[msg.sender] + _quantity <=
                MAX_PER_WALLET,
            "Minting above public limit"
        );
        publicAddressMintCount[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    modifier hasValidTier(uint256 tier) {
        require(tier >= 0 && tier <= 4, "Invalid Tier");
        _;
    }

    modifier hasValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address not whitelisted"
        );
        _;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /**
     * Admin minting
     */
    function mintAdmin(address _recipient, uint256 _quantity)
        public
        onlyOwner
        withinMaximumSupply(_quantity)
    {
        _safeMint(_recipient, _quantity);
    }

    /**
     * Base URI
     */
    string private baseURI;

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

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

     function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(baseURI, _toString(tokenId), ".json"));
    }

    function cutS(uint256 maxT) external onlyOwner {
        MAX_SUPPLY = maxT;
    }

    function setPrice(uint256 newPrice, uint256 maxPerWallet) external onlyOwner {
        MINT_PRICE = newPrice;
        MAX_PER_WALLET = maxPerWallet;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","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":[{"internalType":"uint256","name":"maxT","type":"uint256"}],"name":"cutS","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPublic","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":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setPublicSale","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":"nonpayable","type":"function"}]

60806040526611c37937e080006009556101a4600a55600a600b556000600c60006101000a81548160ff0219169083151502179055503480156200004257600080fd5b506040518060400160405280600681526020017f59756b696e6f00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f594b4e00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c7929190620001f6565b508060039080519060200190620000e0929190620001f6565b50620000f16200011f60201b60201c565b6000819055505050620001196200010d6200012860201b60201c565b6200013060201b60201c565b6200030b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020490620002a6565b90600052602060002090601f01602090048101928262000228576000855562000274565b82601f106200024357805160ff191683800117855562000274565b8280016001018555821562000274579182015b828111156200027357825182559160200191906001019062000256565b5b50905062000283919062000287565b5090565b5b80821115620002a257600081600090555060010162000288565b5090565b60006002820490506001821680620002bf57607f821691505b60208210811415620002d657620002d5620002dc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612b4c806200031b6000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610662578063efd0cbf91461069f578063f2fde38b146106bb578063f7d97577146106e4576101cd565b8063b88d4fde146105a8578063c002d23d146105d1578063c3a71999146105fc578063c87b56dd14610625576101cd565b8063715018a6116100d1578063715018a6146105125780638da5cb5b1461052957806395d89b4114610554578063a22cb4651461057f576101cd565b806370a082311461048157806370f02af4146104be5780637146bd08146104e7576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103c957806355f804b3146103f25780635aca1bb61461041b5780636352211e14610444576101cd565b806323b872dd1461033357806332cb6b0c1461035c57806333bc1c5c146103875780633ccfd60b146103b2576101cd565b8063081812fc116101ab578063081812fc14610277578063095ea7b3146102b45780630f2cdd6c146102dd57806318160ddd14610308576101cd565b806301ffc9a7146101d257806306fdde031461020f57806307e4d4801461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612119565b61070d565b6040516102069190612503565b60405180910390f35b34801561021b57600080fd5b5061022461079f565b604051610231919061251e565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190611f29565b610831565b60405161026e9190612600565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906121bc565b610849565b6040516102ab919061249c565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906120ac565b6108c8565b005b3480156102e957600080fd5b506102f2610a0c565b6040516102ff9190612600565b60405180910390f35b34801561031457600080fd5b5061031d610a12565b60405161032a9190612600565b60405180910390f35b34801561033f57600080fd5b5061035a60048036038101906103559190611f96565b610a29565b005b34801561036857600080fd5b50610371610d4e565b60405161037e9190612600565b60405180910390f35b34801561039357600080fd5b5061039c610d54565b6040516103a99190612503565b60405180910390f35b3480156103be57600080fd5b506103c7610d67565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190611f96565b610db8565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612173565b610dd8565b005b34801561042757600080fd5b50610442600480360381019061043d91906120ec565b610dfa565b005b34801561045057600080fd5b5061046b600480360381019061046691906121bc565b610e1f565b604051610478919061249c565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190611f29565b610e31565b6040516104b59190612600565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e091906121bc565b610eea565b005b3480156104f357600080fd5b506104fc610efc565b6040516105099190612600565b60405180910390f35b34801561051e57600080fd5b50610527610f01565b005b34801561053557600080fd5b5061053e610f15565b60405161054b919061249c565b60405180910390f35b34801561056057600080fd5b50610569610f3f565b604051610576919061251e565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a1919061206c565b610fd1565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190611fe9565b611149565b005b3480156105dd57600080fd5b506105e66111bc565b6040516105f39190612600565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906120ac565b6111c2565b005b34801561063157600080fd5b5061064c600480360381019061064791906121bc565b611231565b604051610659919061251e565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190611f56565b611265565b6040516106969190612503565b60405180910390f35b6106b960048036038101906106b491906121bc565b6112f9565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190611f29565b611500565b005b3480156106f057600080fd5b5061070b600480360381019061070691906121e9565b611584565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107ae90612860565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90612860565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b60006108548261159e565b61088a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d382610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff166108f46115fd565b73ffffffffffffffffffffffffffffffffffffffff1614610957576109208161091b6115fd565b611265565b610956576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610a1c611605565b6001546000540303905090565b6000610a348261160e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610aa7846116dc565b91509150610abd8187610ab86115fd565b611703565b610b0957610ad286610acd6115fd565b611265565b610b08576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b70576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b7d8686866001611747565b8015610b8857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5685610c3288888761174d565b7c020000000000000000000000000000000000000000000000000000000017611775565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cde576000600185019050600060046000838152602001908152602001600020541415610cdc576000548114610cdb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d4686868660016117a0565b505050505050565b600a5481565b600c60009054906101000a900460ff1681565b610d6f6117a6565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610db5573d6000803e3d6000fd5b50565b610dd383838360405180602001604052806000815250611149565b505050565b610de06117a6565b80600e9080519060200190610df6929190611d3d565b5050565b610e026117a6565b80600c60006101000a81548160ff02191690831515021790555050565b6000610e2a8261160e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e99576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef26117a6565b80600a8190555050565b601481565b610f096117a6565b610f136000611824565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f4e90612860565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7a90612860565b8015610fc75780601f10610f9c57610100808354040283529160200191610fc7565b820191906000526020600020905b815481529060010190602001808311610faa57829003601f168201915b5050505050905090565b610fd96115fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061104b6115fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110f86115fd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161113d9190612503565b60405180910390a35050565b611154848484610a29565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111b65761117f848484846118ea565b6111b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b6111ca6117a6565b80600a54816111d7610a12565b6111e191906126fa565b1115611222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611219906125e0565b60405180910390fd5b61122c8383611a4a565b505050565b6060600e61123e83611a68565b60405160200161124f92919061246d565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff16611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90612580565b60405180910390fd5b3481806009546113589190612750565b82101561139a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611391906125c0565b60405180910390fd5b82600a54816113a7610a12565b6113b191906126fa565b11156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e9906125e0565b60405180910390fd5b600084118015611403575060148411155b801561145b5750600b5484600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145891906126fa565b11155b61149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190612540565b60405180910390fd5b83600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e991906126fa565b925050819055506114fa3385611a4a565b50505050565b6115086117a6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90612560565b60405180910390fd5b61158181611824565b50565b61158c6117a6565b8160098190555080600b819055505050565b6000816115a9611605565b111580156115b8575060005482105b80156115f6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061161d611605565b116116a5576000548110156116a45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156116a2575b600081141561169857600460008360019003935083815260200190815260200160002054905061166d565b80925050506116d7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611764868684611ac2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117ae611acb565b73ffffffffffffffffffffffffffffffffffffffff166117cc610f15565b73ffffffffffffffffffffffffffffffffffffffff1614611822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611819906125a0565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119106115fd565b8786866040518563ffffffff1660e01b815260040161193294939291906124b7565b602060405180830381600087803b15801561194c57600080fd5b505af192505050801561197d57506040513d601f19601f8201168201806040525081019061197a9190612146565b60015b6119f7573d80600081146119ad576040519150601f19603f3d011682016040523d82523d6000602084013e6119b2565b606091505b506000815114156119ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611a64828260405180602001604052806000815250611ad3565b5050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611aae57600183039250600a81066030018353600a81049050611a8e565b508181036020830392508083525050919050565b60009392505050565b600033905090565b611add8383611b70565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b6b57600080549050600083820390505b611b1d60008683806001019450866118ea565b611b53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611b0a578160005414611b6857600080fd5b50505b505050565b6000805490506000821415611bb1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bbe6000848385611747565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611c3583611c26600086600061174d565b611c2f85611d2d565b17611775565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611cd657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611c9b565b506000821415611d12576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611d2860008483856117a0565b505050565b60006001821460e11b9050919050565b828054611d4990612860565b90600052602060002090601f016020900481019282611d6b5760008555611db2565b82601f10611d8457805160ff1916838001178555611db2565b82800160010185558215611db2579182015b82811115611db1578251825591602001919060010190611d96565b5b509050611dbf9190611dc3565b5090565b5b80821115611ddc576000816000905550600101611dc4565b5090565b6000611df3611dee84612640565b61261b565b905082815260208101848484011115611e0f57611e0e612955565b5b611e1a84828561281e565b509392505050565b6000611e35611e3084612671565b61261b565b905082815260208101848484011115611e5157611e50612955565b5b611e5c84828561281e565b509392505050565b600081359050611e7381612aba565b92915050565b600081359050611e8881612ad1565b92915050565b600081359050611e9d81612ae8565b92915050565b600081519050611eb281612ae8565b92915050565b600082601f830112611ecd57611ecc612950565b5b8135611edd848260208601611de0565b91505092915050565b600082601f830112611efb57611efa612950565b5b8135611f0b848260208601611e22565b91505092915050565b600081359050611f2381612aff565b92915050565b600060208284031215611f3f57611f3e61295f565b5b6000611f4d84828501611e64565b91505092915050565b60008060408385031215611f6d57611f6c61295f565b5b6000611f7b85828601611e64565b9250506020611f8c85828601611e64565b9150509250929050565b600080600060608486031215611faf57611fae61295f565b5b6000611fbd86828701611e64565b9350506020611fce86828701611e64565b9250506040611fdf86828701611f14565b9150509250925092565b600080600080608085870312156120035761200261295f565b5b600061201187828801611e64565b945050602061202287828801611e64565b935050604061203387828801611f14565b925050606085013567ffffffffffffffff8111156120545761205361295a565b5b61206087828801611eb8565b91505092959194509250565b600080604083850312156120835761208261295f565b5b600061209185828601611e64565b92505060206120a285828601611e79565b9150509250929050565b600080604083850312156120c3576120c261295f565b5b60006120d185828601611e64565b92505060206120e285828601611f14565b9150509250929050565b6000602082840312156121025761210161295f565b5b600061211084828501611e79565b91505092915050565b60006020828403121561212f5761212e61295f565b5b600061213d84828501611e8e565b91505092915050565b60006020828403121561215c5761215b61295f565b5b600061216a84828501611ea3565b91505092915050565b6000602082840312156121895761218861295f565b5b600082013567ffffffffffffffff8111156121a7576121a661295a565b5b6121b384828501611ee6565b91505092915050565b6000602082840312156121d2576121d161295f565b5b60006121e084828501611f14565b91505092915050565b60008060408385031215612200576121ff61295f565b5b600061220e85828601611f14565b925050602061221f85828601611f14565b9150509250929050565b612232816127aa565b82525050565b612241816127bc565b82525050565b6000612252826126b7565b61225c81856126cd565b935061226c81856020860161282d565b61227581612964565b840191505092915050565b600061228b826126c2565b61229581856126de565b93506122a581856020860161282d565b6122ae81612964565b840191505092915050565b60006122c4826126c2565b6122ce81856126ef565b93506122de81856020860161282d565b80840191505092915050565b600081546122f781612860565b61230181866126ef565b9450600182166000811461231c576001811461232d57612360565b60ff19831686528186019350612360565b612336856126a2565b60005b8381101561235857815481890152600182019150602081019050612339565b838801955050505b50505092915050565b6000612376601a836126de565b915061238182612975565b602082019050919050565b60006123996026836126de565b91506123a48261299e565b604082019050919050565b60006123bc6017836126de565b91506123c7826129ed565b602082019050919050565b60006123df6005836126ef565b91506123ea82612a16565b600582019050919050565b60006124026020836126de565b915061240d82612a3f565b602082019050919050565b60006124256011836126de565b915061243082612a68565b602082019050919050565b60006124486010836126de565b915061245382612a91565b602082019050919050565b61246781612814565b82525050565b600061247982856122ea565b915061248582846122b9565b9150612490826123d2565b91508190509392505050565b60006020820190506124b16000830184612229565b92915050565b60006080820190506124cc6000830187612229565b6124d96020830186612229565b6124e6604083018561245e565b81810360608301526124f88184612247565b905095945050505050565b60006020820190506125186000830184612238565b92915050565b600060208201905081810360008301526125388184612280565b905092915050565b6000602082019050818103600083015261255981612369565b9050919050565b600060208201905081810360008301526125798161238c565b9050919050565b60006020820190508181036000830152612599816123af565b9050919050565b600060208201905081810360008301526125b9816123f5565b9050919050565b600060208201905081810360008301526125d981612418565b9050919050565b600060208201905081810360008301526125f98161243b565b9050919050565b6000602082019050612615600083018461245e565b92915050565b6000612625612636565b90506126318282612892565b919050565b6000604051905090565b600067ffffffffffffffff82111561265b5761265a612921565b5b61266482612964565b9050602081019050919050565b600067ffffffffffffffff82111561268c5761268b612921565b5b61269582612964565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061270582612814565b915061271083612814565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612745576127446128c3565b5b828201905092915050565b600061275b82612814565b915061276683612814565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561279f5761279e6128c3565b5b828202905092915050565b60006127b5826127f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561284b578082015181840152602081019050612830565b8381111561285a576000848401525b50505050565b6000600282049050600182168061287857607f821691505b6020821081141561288c5761288b6128f2565b5b50919050565b61289b82612964565b810181811067ffffffffffffffff821117156128ba576128b9612921565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e672061626f7665207075626c6963206c696d6974000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e737566666963656e742066756e6473000000000000000000000000000000600082015250565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b612ac3816127aa565b8114612ace57600080fd5b50565b612ada816127bc565b8114612ae557600080fd5b50565b612af1816127c8565b8114612afc57600080fd5b50565b612b0881612814565b8114612b1357600080fd5b5056fea2646970667358221220dc6576161edad8fc02a4caa12b639eaaaa6d04108f87668352e02040d001ad9b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610662578063efd0cbf91461069f578063f2fde38b146106bb578063f7d97577146106e4576101cd565b8063b88d4fde146105a8578063c002d23d146105d1578063c3a71999146105fc578063c87b56dd14610625576101cd565b8063715018a6116100d1578063715018a6146105125780638da5cb5b1461052957806395d89b4114610554578063a22cb4651461057f576101cd565b806370a082311461048157806370f02af4146104be5780637146bd08146104e7576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103c957806355f804b3146103f25780635aca1bb61461041b5780636352211e14610444576101cd565b806323b872dd1461033357806332cb6b0c1461035c57806333bc1c5c146103875780633ccfd60b146103b2576101cd565b8063081812fc116101ab578063081812fc14610277578063095ea7b3146102b45780630f2cdd6c146102dd57806318160ddd14610308576101cd565b806301ffc9a7146101d257806306fdde031461020f57806307e4d4801461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612119565b61070d565b6040516102069190612503565b60405180910390f35b34801561021b57600080fd5b5061022461079f565b604051610231919061251e565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190611f29565b610831565b60405161026e9190612600565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906121bc565b610849565b6040516102ab919061249c565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906120ac565b6108c8565b005b3480156102e957600080fd5b506102f2610a0c565b6040516102ff9190612600565b60405180910390f35b34801561031457600080fd5b5061031d610a12565b60405161032a9190612600565b60405180910390f35b34801561033f57600080fd5b5061035a60048036038101906103559190611f96565b610a29565b005b34801561036857600080fd5b50610371610d4e565b60405161037e9190612600565b60405180910390f35b34801561039357600080fd5b5061039c610d54565b6040516103a99190612503565b60405180910390f35b3480156103be57600080fd5b506103c7610d67565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190611f96565b610db8565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612173565b610dd8565b005b34801561042757600080fd5b50610442600480360381019061043d91906120ec565b610dfa565b005b34801561045057600080fd5b5061046b600480360381019061046691906121bc565b610e1f565b604051610478919061249c565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190611f29565b610e31565b6040516104b59190612600565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e091906121bc565b610eea565b005b3480156104f357600080fd5b506104fc610efc565b6040516105099190612600565b60405180910390f35b34801561051e57600080fd5b50610527610f01565b005b34801561053557600080fd5b5061053e610f15565b60405161054b919061249c565b60405180910390f35b34801561056057600080fd5b50610569610f3f565b604051610576919061251e565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a1919061206c565b610fd1565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190611fe9565b611149565b005b3480156105dd57600080fd5b506105e66111bc565b6040516105f39190612600565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906120ac565b6111c2565b005b34801561063157600080fd5b5061064c600480360381019061064791906121bc565b611231565b604051610659919061251e565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190611f56565b611265565b6040516106969190612503565b60405180910390f35b6106b960048036038101906106b491906121bc565b6112f9565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190611f29565b611500565b005b3480156106f057600080fd5b5061070b600480360381019061070691906121e9565b611584565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107ae90612860565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90612860565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915090505481565b60006108548261159e565b61088a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108d382610e1f565b90508073ffffffffffffffffffffffffffffffffffffffff166108f46115fd565b73ffffffffffffffffffffffffffffffffffffffff1614610957576109208161091b6115fd565b611265565b610956576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610a1c611605565b6001546000540303905090565b6000610a348261160e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610aa7846116dc565b91509150610abd8187610ab86115fd565b611703565b610b0957610ad286610acd6115fd565b611265565b610b08576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b70576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b7d8686866001611747565b8015610b8857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5685610c3288888761174d565b7c020000000000000000000000000000000000000000000000000000000017611775565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cde576000600185019050600060046000838152602001908152602001600020541415610cdc576000548114610cdb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d4686868660016117a0565b505050505050565b600a5481565b600c60009054906101000a900460ff1681565b610d6f6117a6565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610db5573d6000803e3d6000fd5b50565b610dd383838360405180602001604052806000815250611149565b505050565b610de06117a6565b80600e9080519060200190610df6929190611d3d565b5050565b610e026117a6565b80600c60006101000a81548160ff02191690831515021790555050565b6000610e2a8261160e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e99576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef26117a6565b80600a8190555050565b601481565b610f096117a6565b610f136000611824565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f4e90612860565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7a90612860565b8015610fc75780601f10610f9c57610100808354040283529160200191610fc7565b820191906000526020600020905b815481529060010190602001808311610faa57829003601f168201915b5050505050905090565b610fd96115fd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561103e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061104b6115fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166110f86115fd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161113d9190612503565b60405180910390a35050565b611154848484610a29565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111b65761117f848484846118ea565b6111b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b6111ca6117a6565b80600a54816111d7610a12565b6111e191906126fa565b1115611222576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611219906125e0565b60405180910390fd5b61122c8383611a4a565b505050565b6060600e61123e83611a68565b60405160200161124f92919061246d565b6040516020818303038152906040529050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff16611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90612580565b60405180910390fd5b3481806009546113589190612750565b82101561139a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611391906125c0565b60405180910390fd5b82600a54816113a7610a12565b6113b191906126fa565b11156113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e9906125e0565b60405180910390fd5b600084118015611403575060148411155b801561145b5750600b5484600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145891906126fa565b11155b61149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190612540565b60405180910390fd5b83600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e991906126fa565b925050819055506114fa3385611a4a565b50505050565b6115086117a6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156f90612560565b60405180910390fd5b61158181611824565b50565b61158c6117a6565b8160098190555080600b819055505050565b6000816115a9611605565b111580156115b8575060005482105b80156115f6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061161d611605565b116116a5576000548110156116a45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156116a2575b600081141561169857600460008360019003935083815260200190815260200160002054905061166d565b80925050506116d7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611764868684611ac2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117ae611acb565b73ffffffffffffffffffffffffffffffffffffffff166117cc610f15565b73ffffffffffffffffffffffffffffffffffffffff1614611822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611819906125a0565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119106115fd565b8786866040518563ffffffff1660e01b815260040161193294939291906124b7565b602060405180830381600087803b15801561194c57600080fd5b505af192505050801561197d57506040513d601f19601f8201168201806040525081019061197a9190612146565b60015b6119f7573d80600081146119ad576040519150601f19603f3d011682016040523d82523d6000602084013e6119b2565b606091505b506000815114156119ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611a64828260405180602001604052806000815250611ad3565b5050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611aae57600183039250600a81066030018353600a81049050611a8e565b508181036020830392508083525050919050565b60009392505050565b600033905090565b611add8383611b70565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b6b57600080549050600083820390505b611b1d60008683806001019450866118ea565b611b53576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611b0a578160005414611b6857600080fd5b50505b505050565b6000805490506000821415611bb1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bbe6000848385611747565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611c3583611c26600086600061174d565b611c2f85611d2d565b17611775565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611cd657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611c9b565b506000821415611d12576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611d2860008483856117a0565b505050565b60006001821460e11b9050919050565b828054611d4990612860565b90600052602060002090601f016020900481019282611d6b5760008555611db2565b82601f10611d8457805160ff1916838001178555611db2565b82800160010185558215611db2579182015b82811115611db1578251825591602001919060010190611d96565b5b509050611dbf9190611dc3565b5090565b5b80821115611ddc576000816000905550600101611dc4565b5090565b6000611df3611dee84612640565b61261b565b905082815260208101848484011115611e0f57611e0e612955565b5b611e1a84828561281e565b509392505050565b6000611e35611e3084612671565b61261b565b905082815260208101848484011115611e5157611e50612955565b5b611e5c84828561281e565b509392505050565b600081359050611e7381612aba565b92915050565b600081359050611e8881612ad1565b92915050565b600081359050611e9d81612ae8565b92915050565b600081519050611eb281612ae8565b92915050565b600082601f830112611ecd57611ecc612950565b5b8135611edd848260208601611de0565b91505092915050565b600082601f830112611efb57611efa612950565b5b8135611f0b848260208601611e22565b91505092915050565b600081359050611f2381612aff565b92915050565b600060208284031215611f3f57611f3e61295f565b5b6000611f4d84828501611e64565b91505092915050565b60008060408385031215611f6d57611f6c61295f565b5b6000611f7b85828601611e64565b9250506020611f8c85828601611e64565b9150509250929050565b600080600060608486031215611faf57611fae61295f565b5b6000611fbd86828701611e64565b9350506020611fce86828701611e64565b9250506040611fdf86828701611f14565b9150509250925092565b600080600080608085870312156120035761200261295f565b5b600061201187828801611e64565b945050602061202287828801611e64565b935050604061203387828801611f14565b925050606085013567ffffffffffffffff8111156120545761205361295a565b5b61206087828801611eb8565b91505092959194509250565b600080604083850312156120835761208261295f565b5b600061209185828601611e64565b92505060206120a285828601611e79565b9150509250929050565b600080604083850312156120c3576120c261295f565b5b60006120d185828601611e64565b92505060206120e285828601611f14565b9150509250929050565b6000602082840312156121025761210161295f565b5b600061211084828501611e79565b91505092915050565b60006020828403121561212f5761212e61295f565b5b600061213d84828501611e8e565b91505092915050565b60006020828403121561215c5761215b61295f565b5b600061216a84828501611ea3565b91505092915050565b6000602082840312156121895761218861295f565b5b600082013567ffffffffffffffff8111156121a7576121a661295a565b5b6121b384828501611ee6565b91505092915050565b6000602082840312156121d2576121d161295f565b5b60006121e084828501611f14565b91505092915050565b60008060408385031215612200576121ff61295f565b5b600061220e85828601611f14565b925050602061221f85828601611f14565b9150509250929050565b612232816127aa565b82525050565b612241816127bc565b82525050565b6000612252826126b7565b61225c81856126cd565b935061226c81856020860161282d565b61227581612964565b840191505092915050565b600061228b826126c2565b61229581856126de565b93506122a581856020860161282d565b6122ae81612964565b840191505092915050565b60006122c4826126c2565b6122ce81856126ef565b93506122de81856020860161282d565b80840191505092915050565b600081546122f781612860565b61230181866126ef565b9450600182166000811461231c576001811461232d57612360565b60ff19831686528186019350612360565b612336856126a2565b60005b8381101561235857815481890152600182019150602081019050612339565b838801955050505b50505092915050565b6000612376601a836126de565b915061238182612975565b602082019050919050565b60006123996026836126de565b91506123a48261299e565b604082019050919050565b60006123bc6017836126de565b91506123c7826129ed565b602082019050919050565b60006123df6005836126ef565b91506123ea82612a16565b600582019050919050565b60006124026020836126de565b915061240d82612a3f565b602082019050919050565b60006124256011836126de565b915061243082612a68565b602082019050919050565b60006124486010836126de565b915061245382612a91565b602082019050919050565b61246781612814565b82525050565b600061247982856122ea565b915061248582846122b9565b9150612490826123d2565b91508190509392505050565b60006020820190506124b16000830184612229565b92915050565b60006080820190506124cc6000830187612229565b6124d96020830186612229565b6124e6604083018561245e565b81810360608301526124f88184612247565b905095945050505050565b60006020820190506125186000830184612238565b92915050565b600060208201905081810360008301526125388184612280565b905092915050565b6000602082019050818103600083015261255981612369565b9050919050565b600060208201905081810360008301526125798161238c565b9050919050565b60006020820190508181036000830152612599816123af565b9050919050565b600060208201905081810360008301526125b9816123f5565b9050919050565b600060208201905081810360008301526125d981612418565b9050919050565b600060208201905081810360008301526125f98161243b565b9050919050565b6000602082019050612615600083018461245e565b92915050565b6000612625612636565b90506126318282612892565b919050565b6000604051905090565b600067ffffffffffffffff82111561265b5761265a612921565b5b61266482612964565b9050602081019050919050565b600067ffffffffffffffff82111561268c5761268b612921565b5b61269582612964565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061270582612814565b915061271083612814565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612745576127446128c3565b5b828201905092915050565b600061275b82612814565b915061276683612814565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561279f5761279e6128c3565b5b828202905092915050565b60006127b5826127f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561284b578082015181840152602081019050612830565b8381111561285a576000848401525b50505050565b6000600282049050600182168061287857607f821691505b6020821081141561288c5761288b6128f2565b5b50919050565b61289b82612964565b810181811067ffffffffffffffff821117156128ba576128b9612921565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e672061626f7665207075626c6963206c696d6974000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206e6f742073746172746564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e737566666963656e742066756e6473000000000000000000000000000000600082015250565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b612ac3816127aa565b8114612ace57600080fd5b50565b612ada816127bc565b8114612ae557600080fd5b50565b612af1816127c8565b8114612afc57600080fd5b50565b612b0881612814565b8114612b1357600080fd5b5056fea2646970667358221220dc6576161edad8fc02a4caa12b639eaaaa6d04108f87668352e02040d001ad9b64736f6c63430008070033

Deployed Bytecode Sourcemap

63916:3081:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18610:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19512:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64865:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25995:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25436:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64043:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15263:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29702:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64005:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64563:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65923:109;;;;;;;;;;;;;:::i;:::-;;32615:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66343:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64721:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20905:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16447:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66744:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64084:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62923:103;;;;;;;;;;;;;:::i;:::-;;62275:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19688:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26553:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33398:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63959:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66080:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66568:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27018:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64931:531;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63181:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66835:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18610:639;18695:4;19034:10;19019:25;;:11;:25;;;;:102;;;;19111:10;19096:25;;:11;:25;;;;19019:102;:179;;;;19188:10;19173:25;;:11;:25;;;;19019:179;18999:199;;18610:639;;;:::o;19512:100::-;19566:13;19599:5;19592:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19512:100;:::o;64865:57::-;;;;;;;;;;;;;;;;;:::o;25995:218::-;26071:7;26096:16;26104:7;26096;:16::i;:::-;26091:64;;26121:34;;;;;;;;;;;;;;26091:64;26175:15;:24;26191:7;26175:24;;;;;;;;;;;:30;;;;;;;;;;;;26168:37;;25995:218;;;:::o;25436:400::-;25517:13;25533:16;25541:7;25533;:16::i;:::-;25517:32;;25589:5;25566:28;;:19;:17;:19::i;:::-;:28;;;25562:175;;25614:44;25631:5;25638:19;:17;:19::i;:::-;25614:16;:44::i;:::-;25609:128;;25686:35;;;;;;;;;;;;;;25609:128;25562:175;25782:2;25749:15;:24;25765:7;25749:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25820:7;25816:2;25800:28;;25809:5;25800:28;;;;;;;;;;;;25506:330;25436:400;;:::o;64043:34::-;;;;:::o;15263:323::-;15324:7;15552:15;:13;:15::i;:::-;15537:12;;15521:13;;:28;:46;15514:53;;15263:323;:::o;29702:2817::-;29836:27;29866;29885:7;29866:18;:27::i;:::-;29836:57;;29951:4;29910:45;;29926:19;29910:45;;;29906:86;;29964:28;;;;;;;;;;;;;;29906:86;30006:27;30035:23;30062:35;30089:7;30062:26;:35::i;:::-;30005:92;;;;30197:68;30222:15;30239:4;30245:19;:17;:19::i;:::-;30197:24;:68::i;:::-;30192:180;;30285:43;30302:4;30308:19;:17;:19::i;:::-;30285:16;:43::i;:::-;30280:92;;30337:35;;;;;;;;;;;;;;30280:92;30192:180;30403:1;30389:16;;:2;:16;;;30385:52;;;30414:23;;;;;;;;;;;;;;30385:52;30450:43;30472:4;30478:2;30482:7;30491:1;30450:21;:43::i;:::-;30586:15;30583:160;;;30726:1;30705:19;30698:30;30583:160;31123:18;:24;31142:4;31123:24;;;;;;;;;;;;;;;;31121:26;;;;;;;;;;;;31192:18;:22;31211:2;31192:22;;;;;;;;;;;;;;;;31190:24;;;;;;;;;;;31514:146;31551:2;31600:45;31615:4;31621:2;31625:19;31600:14;:45::i;:::-;11662:8;31572:73;31514:18;:146::i;:::-;31485:17;:26;31503:7;31485:26;;;;;;;;;;;:175;;;;31831:1;11662:8;31780:19;:47;:52;31776:627;;;31853:19;31885:1;31875:7;:11;31853:33;;32042:1;32008:17;:30;32026:11;32008:30;;;;;;;;;;;;:35;32004:384;;;32146:13;;32131:11;:28;32127:242;;32326:19;32293:17;:30;32311:11;32293:30;;;;;;;;;;;:52;;;;32127:242;32004:384;31834:569;31776:627;32450:7;32446:2;32431:27;;32440:4;32431:27;;;;;;;;;;;;32469:42;32490:4;32496:2;32500:7;32509:1;32469:20;:42::i;:::-;29825:2694;;;29702:2817;;;:::o;64005:31::-;;;;:::o;64563:30::-;;;;;;;;;;;;;:::o;65923:109::-;62161:13;:11;:13::i;:::-;65981:10:::1;65973:28;;:51;66002:21;65973:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65923:109::o:0;32615:185::-;32753:39;32770:4;32776:2;32780:7;32753:39;;;;;;;;;;;;:16;:39::i;:::-;32615:185;;;:::o;66343:100::-;62161:13;:11;:13::i;:::-;66427:8:::1;66417:7;:18;;;;;;;;;;;;:::i;:::-;;66343:100:::0;:::o;64721:93::-;62161:13;:11;:13::i;:::-;64800:6:::1;64787:10;;:19;;;;;;;;;;;;;;;;;;64721:93:::0;:::o;20905:152::-;20977:7;21020:27;21039:7;21020:18;:27::i;:::-;20997:52;;20905:152;;;:::o;16447:233::-;16519:7;16560:1;16543:19;;:5;:19;;;16539:60;;;16571:28;;;;;;;;;;;;;;16539:60;10606:13;16617:18;:25;16636:5;16617:25;;;;;;;;;;;;;;;;:55;16610:62;;16447:233;;;:::o;66744:83::-;62161:13;:11;:13::i;:::-;66815:4:::1;66802:10;:17;;;;66744:83:::0;:::o;64084:41::-;64123:2;64084:41;:::o;62923:103::-;62161:13;:11;:13::i;:::-;62988:30:::1;63015:1;62988:18;:30::i;:::-;62923:103::o:0;62275:87::-;62321:7;62348:6;;;;;;;;;;;62341:13;;62275:87;:::o;19688:104::-;19744:13;19777:7;19770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19688:104;:::o;26553:308::-;26664:19;:17;:19::i;:::-;26652:31;;:8;:31;;;26648:61;;;26692:17;;;;;;;;;;;;;;26648:61;26774:8;26722:18;:39;26741:19;:17;:19::i;:::-;26722:39;;;;;;;;;;;;;;;:49;26762:8;26722:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26834:8;26798:55;;26813:19;:17;:19::i;:::-;26798:55;;;26844:8;26798:55;;;;;;:::i;:::-;;;;;;;;26553:308;;:::o;33398:399::-;33565:31;33578:4;33584:2;33588:7;33565:12;:31::i;:::-;33629:1;33611:2;:14;;;:19;33607:183;;33650:56;33681:4;33687:2;33691:7;33700:5;33650:30;:56::i;:::-;33645:145;;33734:40;;;;;;;;;;;;;;33645:145;33607:183;33398:399;;;;:::o;63959:39::-;;;;:::o;66080:189::-;62161:13;:11;:13::i;:::-;66202:9:::1;64437:10;;64424:9;64408:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;64400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66229:32:::2;66239:10;66251:9;66229;:32::i;:::-;62185:1:::1;66080:189:::0;;:::o;66568:168::-;66633:13;66690:7;66699:18;66709:7;66699:9;:18::i;:::-;66673:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66659:69;;66568:168;;;:::o;27018:164::-;27115:4;27139:18;:25;27158:5;27139:25;;;;;;;;;;;;;;;:35;27165:8;27139:35;;;;;;;;;;;;;;;;;;;;;;;;;27132:42;;27018:164;;;;:::o;64931:531::-;64655:10;;;;;;;;;;;64647:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;65055:9:::1;65066;64282;64269:10;;:22;;;;:::i;:::-;64261:4;:30;;64253:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;65106:9:::2;64437:10;;64424:9;64408:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;64400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65167:1:::3;65155:9;:13;:42;;;;;64123:2;65172:9;:25;;65155:42;:144;;;;;65285:14;;65255:9;65218:22;:34;65241:10;65218:34;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:81;;65155:144;65133:220;;;;;;;;;;;;:::i;:::-;;;;;;;;;65402:9;65364:22;:34;65387:10;65364:34;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;65422:32;65432:10;65444:9;65422;:32::i;:::-;64324:1:::2;64704::::1;;64931:531:::0;:::o;63181:201::-;62161:13;:11;:13::i;:::-;63290:1:::1;63270:22;;:8;:22;;;;63262:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;63346:28;63365:8;63346:18;:28::i;:::-;63181:201:::0;:::o;66835:157::-;62161:13;:11;:13::i;:::-;66936:8:::1;66923:10;:21;;;;66972:12;66955:14;:29;;;;66835:157:::0;;:::o;27440:282::-;27505:4;27561:7;27542:15;:13;:15::i;:::-;:26;;:66;;;;;27595:13;;27585:7;:23;27542:66;:153;;;;;27694:1;11382:8;27646:17;:26;27664:7;27646:26;;;;;;;;;;;;:44;:49;27542:153;27522:173;;27440:282;;;:::o;49206:105::-;49266:7;49293:10;49286:17;;49206:105;:::o;14779:92::-;14835:7;14862:1;14855:8;;14779:92;:::o;22060:1275::-;22127:7;22147:12;22162:7;22147:22;;22230:4;22211:15;:13;:15::i;:::-;:23;22207:1061;;22264:13;;22257:4;:20;22253:1015;;;22302:14;22319:17;:23;22337:4;22319:23;;;;;;;;;;;;22302:40;;22436:1;11382:8;22408:6;:24;:29;22404:845;;;23073:113;23090:1;23080:6;:11;23073:113;;;23133:17;:25;23151:6;;;;;;;23133:25;;;;;;;;;;;;23124:34;;23073:113;;;23219:6;23212:13;;;;;;22404:845;22279:989;22253:1015;22207:1061;23296:31;;;;;;;;;;;;;;22060:1275;;;;:::o;28603:479::-;28705:27;28734:23;28775:38;28816:15;:24;28832:7;28816:24;;;;;;;;;;;28775:65;;28987:18;28964:41;;29044:19;29038:26;29019:45;;28949:126;28603:479;;;:::o;27831:659::-;27980:11;28145:16;28138:5;28134:28;28125:37;;28305:16;28294:9;28290:32;28277:45;;28455:15;28444:9;28441:30;28433:5;28422:9;28419:20;28416:56;28406:66;;27831:659;;;;;:::o;34459:159::-;;;;;:::o;48515:311::-;48650:7;48670:16;11786:3;48696:19;:41;;48670:68;;11786:3;48764:31;48775:4;48781:2;48785:9;48764:10;:31::i;:::-;48756:40;;:62;;48749:69;;;48515:311;;;;;:::o;23883:450::-;23963:14;24131:16;24124:5;24120:28;24111:37;;24308:5;24294:11;24269:23;24265:41;24262:52;24255:5;24252:63;24242:73;;23883:450;;;;:::o;35283:158::-;;;;;:::o;62440:132::-;62515:12;:10;:12::i;:::-;62504:23;;:7;:5;:7::i;:::-;:23;;;62496:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62440:132::o;63542:191::-;63616:16;63635:6;;;;;;;;;;;63616:25;;63661:8;63652:6;;:17;;;;;;;;;;;;;;;;;;63716:8;63685:40;;63706:8;63685:40;;;;;;;;;;;;63605:128;63542:191;:::o;35881:716::-;36044:4;36090:2;36065:45;;;36111:19;:17;:19::i;:::-;36132:4;36138:7;36147:5;36065:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36061:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36365:1;36348:6;:13;:18;36344:235;;;36394:40;;;;;;;;;;;;;;36344:235;36537:6;36531:13;36522:6;36518:2;36514:15;36507:38;36061:529;36234:54;;;36224:64;;;:6;:64;;;;36217:71;;;35881:716;;;;;;:::o;43038:112::-;43115:27;43125:2;43129:8;43115:27;;;;;;;;;;;;:9;:27::i;:::-;43038:112;;:::o;49413:2002::-;49478:17;49897:3;49890:4;49884:11;49880:21;49873:28;;49988:3;49982:4;49975:17;50094:3;50550:5;50680:1;50675:3;50671:11;50664:18;;50851:2;50845:4;50841:13;50837:2;50833:22;50828:3;50820:36;50892:2;50886:4;50882:13;50874:21;;50442:731;50911:4;50442:731;;;51102:1;51097:3;51093:11;51086:18;;51153:2;51147:4;51143:13;51139:2;51135:22;51130:3;51122:36;51006:2;51000:4;50996:13;50988:21;;50442:731;;;50446:464;51212:3;51207;51203:13;51327:2;51322:3;51318:12;51311:19;;51390:6;51385:3;51378:19;49517:1891;;49413:2002;;;:::o;48216:147::-;48353:6;48216:147;;;;;:::o;60826:98::-;60879:7;60906:10;60899:17;;60826:98;:::o;42265:689::-;42396:19;42402:2;42406:8;42396:5;:19::i;:::-;42475:1;42457:2;:14;;;:19;42453:483;;42497:11;42511:13;;42497:27;;42543:13;42565:8;42559:3;:14;42543:30;;42592:233;42623:62;42662:1;42666:2;42670:7;;;;;;42679:5;42623:30;:62::i;:::-;42618:167;;42721:40;;;;;;;;;;;;;;42618:167;42820:3;42812:5;:11;42592:233;;42907:3;42890:13;;:20;42886:34;;42912:8;;;42886:34;42478:458;;42453:483;42265:689;;;:::o;37059:2454::-;37132:20;37155:13;;37132:36;;37195:1;37183:8;:13;37179:44;;;37205:18;;;;;;;;;;;;;;37179:44;37236:61;37266:1;37270:2;37274:12;37288:8;37236:21;:61::i;:::-;37780:1;10744:2;37750:1;:26;;37749:32;37737:8;:45;37711:18;:22;37730:2;37711:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38059:139;38096:2;38150:33;38173:1;38177:2;38181:1;38150:14;:33::i;:::-;38117:30;38138:8;38117:20;:30::i;:::-;:66;38059:18;:139::i;:::-;38025:17;:31;38043:12;38025:31;;;;;;;;;;;:173;;;;38215:16;38246:11;38275:8;38260:12;:23;38246:37;;38530:16;38526:2;38522:25;38510:37;;38902:12;38862:8;38821:1;38759:25;38700:1;38639;38612:335;39027:1;39013:12;39009:20;38967:346;39068:3;39059:7;39056:16;38967:346;;39286:7;39276:8;39273:1;39246:25;39243:1;39240;39235:59;39121:1;39112:7;39108:15;39097:26;;38967:346;;;38971:77;39358:1;39346:8;:13;39342:45;;;39368:19;;;;;;;;;;;;;;39342:45;39420:3;39404:13;:19;;;;37485:1950;;39445:60;39474:1;39478:2;39482:12;39496:8;39445:20;:60::i;:::-;37121:2392;37059:2454;;:::o;24435:324::-;24505:14;24738:1;24728:8;24725:15;24699:24;24695:46;24685:56;;24435:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:400::-;11476:3;11497:84;11579:1;11574:3;11497:84;:::i;:::-;11490:91;;11590:93;11679:3;11590:93;:::i;:::-;11708:1;11703:3;11699:11;11692:18;;11316:400;;;:::o;11722:366::-;11864:3;11885:67;11949:2;11944:3;11885:67;:::i;:::-;11878:74;;11961:93;12050:3;11961:93;:::i;:::-;12079:2;12074:3;12070:12;12063:19;;11722:366;;;:::o;12094:::-;12236:3;12257:67;12321:2;12316:3;12257:67;:::i;:::-;12250:74;;12333:93;12422:3;12333:93;:::i;:::-;12451:2;12446:3;12442:12;12435:19;;12094:366;;;:::o;12466:::-;12608:3;12629:67;12693:2;12688:3;12629:67;:::i;:::-;12622:74;;12705:93;12794:3;12705:93;:::i;:::-;12823:2;12818:3;12814:12;12807:19;;12466:366;;;:::o;12838:118::-;12925:24;12943:5;12925:24;:::i;:::-;12920:3;12913:37;12838:118;;:::o;12962:695::-;13240:3;13262:92;13350:3;13341:6;13262:92;:::i;:::-;13255:99;;13371:95;13462:3;13453:6;13371:95;:::i;:::-;13364:102;;13483:148;13627:3;13483:148;:::i;:::-;13476:155;;13648:3;13641:10;;12962:695;;;;;:::o;13663:222::-;13756:4;13794:2;13783:9;13779:18;13771:26;;13807:71;13875:1;13864:9;13860:17;13851:6;13807:71;:::i;:::-;13663:222;;;;:::o;13891:640::-;14086:4;14124:3;14113:9;14109:19;14101:27;;14138:71;14206:1;14195:9;14191:17;14182:6;14138:71;:::i;:::-;14219:72;14287:2;14276:9;14272:18;14263:6;14219:72;:::i;:::-;14301;14369:2;14358:9;14354:18;14345:6;14301:72;:::i;:::-;14420:9;14414:4;14410:20;14405:2;14394:9;14390:18;14383:48;14448:76;14519:4;14510:6;14448:76;:::i;:::-;14440:84;;13891:640;;;;;;;:::o;14537:210::-;14624:4;14662:2;14651:9;14647:18;14639:26;;14675:65;14737:1;14726:9;14722:17;14713:6;14675:65;:::i;:::-;14537:210;;;;:::o;14753:313::-;14866:4;14904:2;14893:9;14889:18;14881:26;;14953:9;14947:4;14943:20;14939:1;14928:9;14924:17;14917:47;14981:78;15054:4;15045:6;14981:78;:::i;:::-;14973:86;;14753:313;;;;:::o;15072:419::-;15238:4;15276:2;15265:9;15261:18;15253:26;;15325:9;15319:4;15315:20;15311:1;15300:9;15296:17;15289:47;15353:131;15479:4;15353:131;:::i;:::-;15345:139;;15072:419;;;:::o;15497:::-;15663:4;15701:2;15690:9;15686:18;15678:26;;15750:9;15744:4;15740:20;15736:1;15725:9;15721:17;15714:47;15778:131;15904:4;15778:131;:::i;:::-;15770:139;;15497:419;;;:::o;15922:::-;16088:4;16126:2;16115:9;16111:18;16103:26;;16175:9;16169:4;16165:20;16161:1;16150:9;16146:17;16139:47;16203:131;16329:4;16203:131;:::i;:::-;16195:139;;15922:419;;;:::o;16347:::-;16513:4;16551:2;16540:9;16536:18;16528:26;;16600:9;16594:4;16590:20;16586:1;16575:9;16571:17;16564:47;16628:131;16754:4;16628:131;:::i;:::-;16620:139;;16347:419;;;:::o;16772:::-;16938:4;16976:2;16965:9;16961:18;16953:26;;17025:9;17019:4;17015:20;17011:1;17000:9;16996:17;16989:47;17053:131;17179:4;17053:131;:::i;:::-;17045:139;;16772:419;;;:::o;17197:::-;17363:4;17401:2;17390:9;17386:18;17378:26;;17450:9;17444:4;17440:20;17436:1;17425:9;17421:17;17414:47;17478:131;17604:4;17478:131;:::i;:::-;17470:139;;17197:419;;;:::o;17622:222::-;17715:4;17753:2;17742:9;17738:18;17730:26;;17766:71;17834:1;17823:9;17819:17;17810:6;17766:71;:::i;:::-;17622:222;;;;:::o;17850:129::-;17884:6;17911:20;;:::i;:::-;17901:30;;17940:33;17968:4;17960:6;17940:33;:::i;:::-;17850:129;;;:::o;17985:75::-;18018:6;18051:2;18045:9;18035:19;;17985:75;:::o;18066:307::-;18127:4;18217:18;18209:6;18206:30;18203:56;;;18239:18;;:::i;:::-;18203:56;18277:29;18299:6;18277:29;:::i;:::-;18269:37;;18361:4;18355;18351:15;18343:23;;18066:307;;;:::o;18379:308::-;18441:4;18531:18;18523:6;18520:30;18517:56;;;18553:18;;:::i;:::-;18517:56;18591:29;18613:6;18591:29;:::i;:::-;18583:37;;18675:4;18669;18665:15;18657:23;;18379:308;;;:::o;18693:141::-;18742:4;18765:3;18757:11;;18788:3;18785:1;18778:14;18822:4;18819:1;18809:18;18801:26;;18693:141;;;:::o;18840:98::-;18891:6;18925:5;18919:12;18909:22;;18840:98;;;:::o;18944:99::-;18996:6;19030:5;19024:12;19014:22;;18944:99;;;:::o;19049:168::-;19132:11;19166:6;19161:3;19154:19;19206:4;19201:3;19197:14;19182:29;;19049:168;;;;:::o;19223:169::-;19307:11;19341:6;19336:3;19329:19;19381:4;19376:3;19372:14;19357:29;;19223:169;;;;:::o;19398:148::-;19500:11;19537:3;19522:18;;19398:148;;;;:::o;19552:305::-;19592:3;19611:20;19629:1;19611:20;:::i;:::-;19606:25;;19645:20;19663:1;19645:20;:::i;:::-;19640:25;;19799:1;19731:66;19727:74;19724:1;19721:81;19718:107;;;19805:18;;:::i;:::-;19718:107;19849:1;19846;19842:9;19835:16;;19552:305;;;;:::o;19863:348::-;19903:7;19926:20;19944:1;19926:20;:::i;:::-;19921:25;;19960:20;19978:1;19960:20;:::i;:::-;19955:25;;20148:1;20080:66;20076:74;20073:1;20070:81;20065:1;20058:9;20051:17;20047:105;20044:131;;;20155:18;;:::i;:::-;20044:131;20203:1;20200;20196:9;20185:20;;19863:348;;;;:::o;20217:96::-;20254:7;20283:24;20301:5;20283:24;:::i;:::-;20272:35;;20217:96;;;:::o;20319:90::-;20353:7;20396:5;20389:13;20382:21;20371:32;;20319:90;;;:::o;20415:149::-;20451:7;20491:66;20484:5;20480:78;20469:89;;20415:149;;;:::o;20570:126::-;20607:7;20647:42;20640:5;20636:54;20625:65;;20570:126;;;:::o;20702:77::-;20739:7;20768:5;20757:16;;20702:77;;;:::o;20785:154::-;20869:6;20864:3;20859;20846:30;20931:1;20922:6;20917:3;20913:16;20906:27;20785:154;;;:::o;20945:307::-;21013:1;21023:113;21037:6;21034:1;21031:13;21023:113;;;21122:1;21117:3;21113:11;21107:18;21103:1;21098:3;21094:11;21087:39;21059:2;21056:1;21052:10;21047:15;;21023:113;;;21154:6;21151:1;21148:13;21145:101;;;21234:1;21225:6;21220:3;21216:16;21209:27;21145:101;20994:258;20945:307;;;:::o;21258:320::-;21302:6;21339:1;21333:4;21329:12;21319:22;;21386:1;21380:4;21376:12;21407:18;21397:81;;21463:4;21455:6;21451:17;21441:27;;21397:81;21525:2;21517:6;21514:14;21494:18;21491:38;21488:84;;;21544:18;;:::i;:::-;21488:84;21309:269;21258:320;;;:::o;21584:281::-;21667:27;21689:4;21667:27;:::i;:::-;21659:6;21655:40;21797:6;21785:10;21782:22;21761:18;21749:10;21746:34;21743:62;21740:88;;;21808:18;;:::i;:::-;21740:88;21848:10;21844:2;21837:22;21627:238;21584:281;;:::o;21871:180::-;21919:77;21916:1;21909:88;22016:4;22013:1;22006:15;22040:4;22037:1;22030:15;22057:180;22105:77;22102:1;22095:88;22202:4;22199:1;22192:15;22226:4;22223:1;22216:15;22243:180;22291:77;22288:1;22281:88;22388:4;22385:1;22378:15;22412:4;22409:1;22402:15;22429:117;22538:1;22535;22528:12;22552:117;22661:1;22658;22651:12;22675:117;22784:1;22781;22774:12;22798:117;22907:1;22904;22897:12;22921:102;22962:6;23013:2;23009:7;23004:2;22997:5;22993:14;22989:28;22979:38;;22921:102;;;:::o;23029:176::-;23169:28;23165:1;23157:6;23153:14;23146:52;23029:176;:::o;23211:225::-;23351:34;23347:1;23339:6;23335:14;23328:58;23420:8;23415:2;23407:6;23403:15;23396:33;23211:225;:::o;23442:173::-;23582:25;23578:1;23570:6;23566:14;23559:49;23442:173;:::o;23621:155::-;23761:7;23757:1;23749:6;23745:14;23738:31;23621:155;:::o;23782:182::-;23922:34;23918:1;23910:6;23906:14;23899:58;23782:182;:::o;23970:167::-;24110:19;24106:1;24098:6;24094:14;24087:43;23970:167;:::o;24143:166::-;24283:18;24279:1;24271:6;24267:14;24260:42;24143:166;:::o;24315:122::-;24388:24;24406:5;24388:24;:::i;:::-;24381:5;24378:35;24368:63;;24427:1;24424;24417:12;24368:63;24315:122;:::o;24443:116::-;24513:21;24528:5;24513:21;:::i;:::-;24506:5;24503:32;24493:60;;24549:1;24546;24539:12;24493:60;24443:116;:::o;24565:120::-;24637:23;24654:5;24637:23;:::i;:::-;24630:5;24627:34;24617:62;;24675:1;24672;24665:12;24617:62;24565:120;:::o;24691:122::-;24764:24;24782:5;24764:24;:::i;:::-;24757:5;24754:35;24744:63;;24803:1;24800;24793:12;24744:63;24691:122;:::o

Swarm Source

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