ETH Price: $3,390.65 (-2.59%)
Gas: 1 Gwei

Token

Lost In The Shade (LITS)
 

Overview

Max Total Supply

999 LITS

Holders

955

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LITS
0xc8fc4f75009b69ba5769d525da49a3b2bca143a5
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:
LostInTheShade

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol                                                                               

//Contract creator - arczi.eth
//Visit github https://github.com/Machovsky/ethereum-contracts for free NFT contracts


// ERC721A Contracts v4.0.0

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

    // ==============================
    //            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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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 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. 48 is the ASCII index of '0'.
                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: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: contracts/LostInTheShade.sol


//created by arczi.eth







pragma solidity >=0.8.13 <0.9.0;

contract LostInTheShade is ERC721A, Ownable, ReentrancyGuard { 

  using Strings for uint256;

// ================== Variables Start =======================
    
  string public uri;
  string public hiddenMetadataUri; 
  string public uriSuffix = ".json";
  uint256 public cost1 = 0 ether;
  uint256 public cost2 = 0.01 ether;
  uint256 public supplyPhase1 = 333;
  uint256 public supplyLimit = 999;
  uint256 public maxMintAmountPerTxPhase1 = 1;
  uint256 public maxMintAmountPerTxPhase2 = 3;
  uint256 public maxLimitPerWallet = 7;
  bool public sale = false; 
  bool public revealed = false;

// ================== Variables End =======================  

// ================== Constructor Start =======================

  constructor(
    string memory _uri,
    string memory _hiddenMetadataUri
  ) ERC721A("Lost In The Shade", "LITS")  {
    seturi(_uri);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

// ================== Constructor End =======================

// ================== Mint Functions Start =======================

  function UpdateCost(uint256 _mintAmount) internal view returns  (uint256 _cost) {

         if (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerTxPhase1 && totalSupply() < supplyPhase1) {
          return cost1;
          }
         if (balanceOf(msg.sender) + _mintAmount > maxMintAmountPerTxPhase1){
          return cost2;
        }
  }
  
  function Mint(uint256 _mintAmount) public payable {

    //Normal requirements 
    require(sale, 'The Sale is paused!');
    require(_mintAmount > 0 && _mintAmount <= maxLimitPerWallet, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
    if(balanceOf(msg.sender) == 0){
    require(msg.value >= UpdateCost(_mintAmount) * (_mintAmount-maxMintAmountPerTxPhase1), 'Insufficient funds!');
    }else{
    require(msg.value >= UpdateCost(_mintAmount) * _mintAmount, 'Insufficient funds!');
    }
    if(balanceOf(msg.sender) == 0){
    require((balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerTxPhase1 && totalSupply() < supplyPhase1) || 
    (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerTxPhase2+maxMintAmountPerTxPhase1 && totalSupply() <= supplyLimit), 'Max  mint amount per transaction exceeded!');
    }else{
    require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
    }
    //Mint
     _safeMint(_msgSender(), _mintAmount);
  }  

  function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= supplyLimit, 'Max supply exceeded!');
    _safeMint(_receiver, _mintAmount);
  }

// ================== Mint Functions End =======================  

// ================== Set Functions Start =======================

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

  function seturi(string memory _uri) public onlyOwner {
    uri = _uri;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
  hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setSaleStatus(bool _sale) public onlyOwner {
    sale = _sale;
  }

  function setMaxMintAmountPerTxPhase1(uint256 _maxMintAmountPerTxPhase1) public onlyOwner {
    maxMintAmountPerTxPhase1 = _maxMintAmountPerTxPhase1;
  }

  function setMaxMintAmountPerTxPhase2(uint256 _maxMintAmountPerTxPhase2) public onlyOwner {
    maxMintAmountPerTxPhase2 = _maxMintAmountPerTxPhase2;
  }

  function setmaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner {
    maxLimitPerWallet = _maxLimitPerWallet;
  }

  function setcost1(uint256 _cost1) public onlyOwner {
    cost1 = _cost1;
  }  

  function setcost2(uint256 _cost2) public onlyOwner {
    cost2 = _cost2;
  }  

  function setsupplyLimit(uint256 _supplyLimit) public onlyOwner {
    supplyLimit = _supplyLimit;
  }

  function withdraw() public onlyOwner {
    (bool hs, ) = payable(0xa953009a7A67A02D5E3c3cB11523bD91A598A4e5).call{value: address(this).balance * 15 / 100}("");
    require(hs);
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function price(uint256 _mintAmount) public view returns (uint256){
         if (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerTxPhase1 && totalSupply() < supplyPhase1) {
          return cost1;
          }
         if (balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet && totalSupply() >= supplyPhase1){
          return cost2;
        }
      return cost2;
  }

function tokensOfOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
        uint256[] memory a = new uint256[](balanceOf(owner)); 
        uint256 end = _nextTokenId();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        for (uint256 i; i < end; i++) {
            TokenOwnership memory ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                a[tokenIdsIdx++] = i;
            }
        }
        return a;    
    }
}

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

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

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

// ================== Read Functions End =======================  

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTxPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTxPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTxPhase1","type":"uint256"}],"name":"setMaxMintAmountPerTxPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTxPhase2","type":"uint256"}],"name":"setMaxMintAmountPerTxPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost1","type":"uint256"}],"name":"setcost1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost2","type":"uint256"}],"name":"setcost2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setmaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setsupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000245565b506000600d55662386f26fc10000600e5561014d600f556103e76010556001601155600360125560076013556014805461ffff191690553480156200006c57600080fd5b5060405162002983380380620029838339810160408190526200008f91620003b8565b60408051808201825260118152704c6f737420496e2054686520536861646560781b6020808301918252835180850190945260048452634c49545360e01b908401528151919291620000e49160029162000245565b508051620000fa90600390602084019062000245565b50506001600055506200010d3362000130565b60016009556200011d8262000182565b6200012881620001ea565b50506200045e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001d15760405162461bcd60e51b815260206004820181905260248201526000805160206200296383398151915260448201526064015b60405180910390fd5b8051620001e690600a90602084019062000245565b5050565b6008546001600160a01b03163314620002355760405162461bcd60e51b81526020600482018190526024820152600080516020620029638339815191526044820152606401620001c8565b8051620001e690600b9060208401905b828054620002539062000422565b90600052602060002090601f016020900481019282620002775760008555620002c2565b82601f106200029257805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c2578251825591602001919060010190620002a5565b50620002d0929150620002d4565b5090565b5b80821115620002d05760008155600101620002d5565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200031357600080fd5b81516001600160401b0380821115620003305762000330620002eb565b604051601f8301601f19908116603f011681019082821181831017156200035b576200035b620002eb565b816040528381526020925086838588010111156200037857600080fd5b600091505b838210156200039c57858201830151818301840152908201906200037d565b83821115620003ae5760008385830101525b9695505050505050565b60008060408385031215620003cc57600080fd5b82516001600160401b0380821115620003e457600080fd5b620003f28683870162000301565b935060208501519150808211156200040957600080fd5b50620004188582860162000301565b9150509250929050565b600181811c908216806200043757607f821691505b6020821081036200045857634e487b7160e01b600052602260045260246000fd5b50919050565b6124f5806200046e6000396000f3fe6080604052600436106102715760003560e01c80636352211e1161014f578063a22cb465116100c1578063da5e1f4d1161007a578063da5e1f4d14610704578063e0a8085314610724578063e985e9c514610744578063eac989f81461078d578063f2fde38b146107a2578063f6484980146107c257600080fd5b8063a22cb4651461064f578063a45ba8e71461066f578063b88d4fde14610684578063c87b56dd146106a4578063d897833e146106c4578063d9f0a671146106e457600080fd5b8063783806411161011357806378380641146105995780637871e154146105b95780638462151c146105d95780638da5cb5b1461060657806395d89b41146106245780639a1b28851461063957600080fd5b80636352211e14610514578063684ed5f2146105345780636ad1fe021461054a57806370a0823114610564578063715018a61461058457600080fd5b806321f6b017116101e857806342842e0e116101ac57806342842e0e1461046a5780634fdd43cb1461048a57806351830227146104aa5780635503a0e8146104c95780635a0b8b23146104de57806360bb41b6146104f457600080fd5b806321f6b017146103e957806323b872dd146103ff57806326a49e371461041f57806333573dc21461043f5780633ccfd60b1461045557600080fd5b8063095ea7b31161023a578063095ea7b31461033a57806316ba10e01461035a57806318160ddd1461037a57806319d1997a1461039d57806320d55b51146103b357806321a3c248146103c957600080fd5b806275770a1461027657806301ffc9a71461029857806306fdde03146102cd57806307883703146102ef578063081812fc14610302575b600080fd5b34801561028257600080fd5b50610296610291366004611ed3565b6107e2565b005b3480156102a457600080fd5b506102b86102b3366004611f02565b61081a565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e261086c565b6040516102c49190611f77565b6102966102fd366004611ed3565b6108fe565b34801561030e57600080fd5b5061032261031d366004611ed3565b610c82565b6040516001600160a01b0390911681526020016102c4565b34801561034657600080fd5b50610296610355366004611fa1565b610cc6565b34801561036657600080fd5b50610296610375366004612057565b610d98565b34801561038657600080fd5b5061038f610dd9565b6040519081526020016102c4565b3480156103a957600080fd5b5061038f60105481565b3480156103bf57600080fd5b5061038f600f5481565b3480156103d557600080fd5b506102966103e4366004611ed3565b610de7565b3480156103f557600080fd5b5061038f60115481565b34801561040b57600080fd5b5061029661041a3660046120a0565b610e16565b34801561042b57600080fd5b5061038f61043a366004611ed3565b610e26565b34801561044b57600080fd5b5061038f600d5481565b34801561046157600080fd5b50610296610ea5565b34801561047657600080fd5b506102966104853660046120a0565b610fbd565b34801561049657600080fd5b506102966104a5366004612057565b610fd8565b3480156104b657600080fd5b506014546102b890610100900460ff1681565b3480156104d557600080fd5b506102e2611015565b3480156104ea57600080fd5b5061038f60135481565b34801561050057600080fd5b5061029661050f366004611ed3565b6110a3565b34801561052057600080fd5b5061032261052f366004611ed3565b6110d2565b34801561054057600080fd5b5061038f60125481565b34801561055657600080fd5b506014546102b89060ff1681565b34801561057057600080fd5b5061038f61057f3660046120dc565b6110dd565b34801561059057600080fd5b5061029661112c565b3480156105a557600080fd5b506102966105b4366004611ed3565b611162565b3480156105c557600080fd5b506102966105d43660046120f7565b611191565b3480156105e557600080fd5b506105f96105f43660046120dc565b611220565b6040516102c49190612123565b34801561061257600080fd5b506008546001600160a01b0316610322565b34801561063057600080fd5b506102e2611312565b34801561064557600080fd5b5061038f600e5481565b34801561065b57600080fd5b5061029661066a366004612177565b611321565b34801561067b57600080fd5b506102e26113b6565b34801561069057600080fd5b5061029661069f3660046121a1565b6113c3565b3480156106b057600080fd5b506102e26106bf366004611ed3565b61140d565b3480156106d057600080fd5b506102966106df36600461221d565b611581565b3480156106f057600080fd5b506102966106ff366004611ed3565b6115be565b34801561071057600080fd5b5061029661071f366004611ed3565b6115ed565b34801561073057600080fd5b5061029661073f36600461221d565b61161c565b34801561075057600080fd5b506102b861075f366004612238565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561079957600080fd5b506102e2611660565b3480156107ae57600080fd5b506102966107bd3660046120dc565b61166d565b3480156107ce57600080fd5b506102966107dd366004612057565b611705565b6008546001600160a01b031633146108155760405162461bcd60e51b815260040161080c90612262565b60405180910390fd5b601055565b60006301ffc9a760e01b6001600160e01b03198316148061084b57506380ac58cd60e01b6001600160e01b03198316145b806108665750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461087b90612297565b80601f01602080910402602001604051908101604052809291908181526020018280546108a790612297565b80156108f45780601f106108c9576101008083540402835291602001916108f4565b820191906000526020600020905b8154815290600101906020018083116108d757829003601f168201915b5050505050905090565b60145460ff166109465760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b604482015260640161080c565b60008111801561095857506013548111155b61099b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161080c565b601054816109a7610dd9565b6109b191906122e7565b11156109f65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161080c565b60135481610a03336110dd565b610a0d91906122e7565b1115610a5b5760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c657420657863656564656421000000604482015260640161080c565b610a64336110dd565b600003610ad557601154610a7890826122ff565b610a8182611742565b610a8b9190612316565b341015610ad05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161080c565b610b2e565b80610adf82611742565b610ae99190612316565b341015610b2e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161080c565b610b37336110dd565b600003610c105760115481610b4b336110dd565b610b5591906122e7565b11158015610b6b5750600f54610b69610dd9565b105b80610bac5750601154601254610b8191906122e7565b81610b8b336110dd565b610b9591906122e7565b11158015610bac5750601054610ba9610dd9565b11155b610c0b5760405162461bcd60e51b815260206004820152602a60248201527f4d617820206d696e7420616d6f756e7420706572207472616e73616374696f6e6044820152692065786365656465642160b01b606482015260840161080c565b610c75565b60135481610c1d336110dd565b610c2791906122e7565b1115610c755760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c657420657863656564656421000000604482015260640161080c565b610c7f33826117a8565b50565b6000610c8d826117c2565b610caa576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610cd1826117f7565b9050806001600160a01b0316836001600160a01b031603610d055760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610d3c57610d1f813361075f565b610d3c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610dc25760405162461bcd60e51b815260040161080c90612262565b8051610dd590600c906020840190611e3a565b5050565b600154600054036000190190565b6008546001600160a01b03163314610e115760405162461bcd60e51b815260040161080c90612262565b600e55565b610e21838383611866565b505050565b600060115482610e35336110dd565b610e3f91906122e7565b11158015610e555750600f54610e53610dd9565b105b15610e62575050600d5490565b60135482610e6f336110dd565b610e7991906122e7565b11158015610e905750600f54610e8d610dd9565b10155b15610e9d575050600e5490565b5050600e5490565b6008546001600160a01b03163314610ecf5760405162461bcd60e51b815260040161080c90612262565b600073a953009a7a67a02d5e3c3cb11523bd91a598a4e56064610ef347600f612316565b610efd919061234b565b604051600081818185875af1925050503d8060008114610f39576040519150601f19603f3d011682016040523d82523d6000602084013e610f3e565b606091505b5050905080610f4c57600080fd5b6000610f606008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610faa576040519150601f19603f3d011682016040523d82523d6000602084013e610faf565b606091505b5050905080610dd557600080fd5b610e21838383604051806020016040528060008152506113c3565b6008546001600160a01b031633146110025760405162461bcd60e51b815260040161080c90612262565b8051610dd590600b906020840190611e3a565b600c805461102290612297565b80601f016020809104026020016040519081016040528092919081815260200182805461104e90612297565b801561109b5780601f106110705761010080835404028352916020019161109b565b820191906000526020600020905b81548152906001019060200180831161107e57829003601f168201915b505050505081565b6008546001600160a01b031633146110cd5760405162461bcd60e51b815260040161080c90612262565b601155565b6000610866826117f7565b60006001600160a01b038216611106576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146111565760405162461bcd60e51b815260040161080c90612262565b6111606000611a0d565b565b6008546001600160a01b0316331461118c5760405162461bcd60e51b815260040161080c90612262565b601255565b6008546001600160a01b031633146111bb5760405162461bcd60e51b815260040161080c90612262565b601054826111c7610dd9565b6111d191906122e7565b11156112165760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161080c565b610dd581836117a8565b6060600061122d836110dd565b67ffffffffffffffff81111561124557611245611fcb565b60405190808252806020026020018201604052801561126e578160200160208202803683370190505b509050600061127c60005490565b905060008060005b8381101561130757600061129782611a5f565b90508060400151156112a957506112ff565b80516001600160a01b0316156112be57805192505b876001600160a01b0316836001600160a01b0316036112fd57818685806001019650815181106112f0576112f061235f565b6020026020010181815250505b505b600101611284565b509295945050505050565b60606003805461087b90612297565b336001600160a01b0383160361134a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b805461102290612297565b6113ce848484611866565b6001600160a01b0383163b15611407576113ea84848484611aca565b611407576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611418826117c2565b61147c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080c565b601454610100900460ff16151560000361152257600b805461149d90612297565b80601f01602080910402602001604051908101604052809291908181526020018280546114c990612297565b80156115165780601f106114eb57610100808354040283529160200191611516565b820191906000526020600020905b8154815290600101906020018083116114f957829003601f168201915b50505050509050919050565b600061152c611bb6565b9050600081511161154c576040518060200160405280600081525061157a565b8061155684611bc5565b600c60405160200161156a93929190612375565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115ab5760405162461bcd60e51b815260040161080c90612262565b6014805460ff1916911515919091179055565b6008546001600160a01b031633146115e85760405162461bcd60e51b815260040161080c90612262565b601355565b6008546001600160a01b031633146116175760405162461bcd60e51b815260040161080c90612262565b600d55565b6008546001600160a01b031633146116465760405162461bcd60e51b815260040161080c90612262565b601480549115156101000261ff0019909216919091179055565b600a805461102290612297565b6008546001600160a01b031633146116975760405162461bcd60e51b815260040161080c90612262565b6001600160a01b0381166116fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080c565b610c7f81611a0d565b6008546001600160a01b0316331461172f5760405162461bcd60e51b815260040161080c90612262565b8051610dd590600a906020840190611e3a565b600060115482611751336110dd565b61175b91906122e7565b111580156117715750600f5461176f610dd9565b105b1561177e575050600d5490565b6011548261178b336110dd565b61179591906122e7565b11156117a3575050600e5490565b919050565b610dd5828260405180602001604052806000815250611cc6565b6000816001111580156117d6575060005482105b8015610866575050600090815260046020526040902054600160e01b161590565b6000818060011161184d5760005481101561184d5760008181526004602052604081205490600160e01b8216900361184b575b8060000361157a57506000190160008181526004602052604090205461182a565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611871826117f7565b9050836001600160a01b0316816001600160a01b0316146118a45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118c257506118c2853361075f565b806118dd5750336118d284610c82565b6001600160a01b0316145b9050806118fd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661192457604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036119c5576001830160008181526004602052604081205490036119c35760005481146119c35760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461086690604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611aff903390899088908890600401612438565b6020604051808303816000875af1925050508015611b3a575060408051601f3d908101601f19168201909252611b3791810190612475565b60015b611b98573d808015611b68576040519150601f19603f3d011682016040523d82523d6000602084013e611b6d565b606091505b508051600003611b90576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461087b90612297565b606081600003611bec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c165780611c0081612492565b9150611c0f9050600a8361234b565b9150611bf0565b60008167ffffffffffffffff811115611c3157611c31611fcb565b6040519080825280601f01601f191660200182016040528015611c5b576020820181803683370190505b5090505b8415611bae57611c706001836122ff565b9150611c7d600a866124ab565b611c889060306122e7565b60f81b818381518110611c9d57611c9d61235f565b60200101906001600160f81b031916908160001a905350611cbf600a8661234b565b9450611c5f565b6000546001600160a01b038416611cef57604051622e076360e81b815260040160405180910390fd5b82600003611d105760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611de5575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dae6000878480600101955087611aca565b611dcb576040516368d2bf6b60e11b815260040160405180910390fd5b808210611d63578260005414611de057600080fd5b611e2a565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611de6575b5060009081556114079085838684565b828054611e4690612297565b90600052602060002090601f016020900481019282611e685760008555611eae565b82601f10611e8157805160ff1916838001178555611eae565b82800160010185558215611eae579182015b82811115611eae578251825591602001919060010190611e93565b50611eba929150611ebe565b5090565b5b80821115611eba5760008155600101611ebf565b600060208284031215611ee557600080fd5b5035919050565b6001600160e01b031981168114610c7f57600080fd5b600060208284031215611f1457600080fd5b813561157a81611eec565b60005b83811015611f3a578181015183820152602001611f22565b838111156114075750506000910152565b60008151808452611f63816020860160208601611f1f565b601f01601f19169290920160200192915050565b60208152600061157a6020830184611f4b565b80356001600160a01b03811681146117a357600080fd5b60008060408385031215611fb457600080fd5b611fbd83611f8a565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ffc57611ffc611fcb565b604051601f8501601f19908116603f0116810190828211818310171561202457612024611fcb565b8160405280935085815286868601111561203d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561206957600080fd5b813567ffffffffffffffff81111561208057600080fd5b8201601f8101841361209157600080fd5b611bae84823560208401611fe1565b6000806000606084860312156120b557600080fd5b6120be84611f8a565b92506120cc60208501611f8a565b9150604084013590509250925092565b6000602082840312156120ee57600080fd5b61157a82611f8a565b6000806040838503121561210a57600080fd5b8235915061211a60208401611f8a565b90509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561215b5783518352928401929184019160010161213f565b50909695505050505050565b803580151581146117a357600080fd5b6000806040838503121561218a57600080fd5b61219383611f8a565b915061211a60208401612167565b600080600080608085870312156121b757600080fd5b6121c085611f8a565b93506121ce60208601611f8a565b925060408501359150606085013567ffffffffffffffff8111156121f157600080fd5b8501601f8101871361220257600080fd5b61221187823560208401611fe1565b91505092959194509250565b60006020828403121561222f57600080fd5b61157a82612167565b6000806040838503121561224b57600080fd5b61225483611f8a565b915061211a60208401611f8a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806122ab57607f821691505b6020821081036122cb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122fa576122fa6122d1565b500190565b600082821015612311576123116122d1565b500390565b6000816000190483118215151615612330576123306122d1565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261235a5761235a612335565b500490565b634e487b7160e01b600052603260045260246000fd5b6000845160206123888285838a01611f1f565b85519184019161239b8184848a01611f1f565b8554920191600090600181811c90808316806123b857607f831692505b85831081036123d557634e487b7160e01b85526022600452602485fd5b8080156123e957600181146123fa57612427565b60ff19851688528388019550612427565b60008b81526020902060005b8581101561241f5781548a820152908401908801612406565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061246b90830184611f4b565b9695505050505050565b60006020828403121561248757600080fd5b815161157a81611eec565b6000600182016124a4576124a46122d1565b5060010190565b6000826124ba576124ba612335565b50069056fea264697066735822122014d69de4c1b332b238a53de98a2bc32244edb6a246e717dc824d3514a342114464736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d567752776958693669586f71426f61334e46327745795a6735726738415675393463376e5865727259744b672f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d61634d3664696f6b6f714c6544525435446f34684459484b3753736234593465746f7a4a61546170477663722f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102715760003560e01c80636352211e1161014f578063a22cb465116100c1578063da5e1f4d1161007a578063da5e1f4d14610704578063e0a8085314610724578063e985e9c514610744578063eac989f81461078d578063f2fde38b146107a2578063f6484980146107c257600080fd5b8063a22cb4651461064f578063a45ba8e71461066f578063b88d4fde14610684578063c87b56dd146106a4578063d897833e146106c4578063d9f0a671146106e457600080fd5b8063783806411161011357806378380641146105995780637871e154146105b95780638462151c146105d95780638da5cb5b1461060657806395d89b41146106245780639a1b28851461063957600080fd5b80636352211e14610514578063684ed5f2146105345780636ad1fe021461054a57806370a0823114610564578063715018a61461058457600080fd5b806321f6b017116101e857806342842e0e116101ac57806342842e0e1461046a5780634fdd43cb1461048a57806351830227146104aa5780635503a0e8146104c95780635a0b8b23146104de57806360bb41b6146104f457600080fd5b806321f6b017146103e957806323b872dd146103ff57806326a49e371461041f57806333573dc21461043f5780633ccfd60b1461045557600080fd5b8063095ea7b31161023a578063095ea7b31461033a57806316ba10e01461035a57806318160ddd1461037a57806319d1997a1461039d57806320d55b51146103b357806321a3c248146103c957600080fd5b806275770a1461027657806301ffc9a71461029857806306fdde03146102cd57806307883703146102ef578063081812fc14610302575b600080fd5b34801561028257600080fd5b50610296610291366004611ed3565b6107e2565b005b3480156102a457600080fd5b506102b86102b3366004611f02565b61081a565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e261086c565b6040516102c49190611f77565b6102966102fd366004611ed3565b6108fe565b34801561030e57600080fd5b5061032261031d366004611ed3565b610c82565b6040516001600160a01b0390911681526020016102c4565b34801561034657600080fd5b50610296610355366004611fa1565b610cc6565b34801561036657600080fd5b50610296610375366004612057565b610d98565b34801561038657600080fd5b5061038f610dd9565b6040519081526020016102c4565b3480156103a957600080fd5b5061038f60105481565b3480156103bf57600080fd5b5061038f600f5481565b3480156103d557600080fd5b506102966103e4366004611ed3565b610de7565b3480156103f557600080fd5b5061038f60115481565b34801561040b57600080fd5b5061029661041a3660046120a0565b610e16565b34801561042b57600080fd5b5061038f61043a366004611ed3565b610e26565b34801561044b57600080fd5b5061038f600d5481565b34801561046157600080fd5b50610296610ea5565b34801561047657600080fd5b506102966104853660046120a0565b610fbd565b34801561049657600080fd5b506102966104a5366004612057565b610fd8565b3480156104b657600080fd5b506014546102b890610100900460ff1681565b3480156104d557600080fd5b506102e2611015565b3480156104ea57600080fd5b5061038f60135481565b34801561050057600080fd5b5061029661050f366004611ed3565b6110a3565b34801561052057600080fd5b5061032261052f366004611ed3565b6110d2565b34801561054057600080fd5b5061038f60125481565b34801561055657600080fd5b506014546102b89060ff1681565b34801561057057600080fd5b5061038f61057f3660046120dc565b6110dd565b34801561059057600080fd5b5061029661112c565b3480156105a557600080fd5b506102966105b4366004611ed3565b611162565b3480156105c557600080fd5b506102966105d43660046120f7565b611191565b3480156105e557600080fd5b506105f96105f43660046120dc565b611220565b6040516102c49190612123565b34801561061257600080fd5b506008546001600160a01b0316610322565b34801561063057600080fd5b506102e2611312565b34801561064557600080fd5b5061038f600e5481565b34801561065b57600080fd5b5061029661066a366004612177565b611321565b34801561067b57600080fd5b506102e26113b6565b34801561069057600080fd5b5061029661069f3660046121a1565b6113c3565b3480156106b057600080fd5b506102e26106bf366004611ed3565b61140d565b3480156106d057600080fd5b506102966106df36600461221d565b611581565b3480156106f057600080fd5b506102966106ff366004611ed3565b6115be565b34801561071057600080fd5b5061029661071f366004611ed3565b6115ed565b34801561073057600080fd5b5061029661073f36600461221d565b61161c565b34801561075057600080fd5b506102b861075f366004612238565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561079957600080fd5b506102e2611660565b3480156107ae57600080fd5b506102966107bd3660046120dc565b61166d565b3480156107ce57600080fd5b506102966107dd366004612057565b611705565b6008546001600160a01b031633146108155760405162461bcd60e51b815260040161080c90612262565b60405180910390fd5b601055565b60006301ffc9a760e01b6001600160e01b03198316148061084b57506380ac58cd60e01b6001600160e01b03198316145b806108665750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461087b90612297565b80601f01602080910402602001604051908101604052809291908181526020018280546108a790612297565b80156108f45780601f106108c9576101008083540402835291602001916108f4565b820191906000526020600020905b8154815290600101906020018083116108d757829003601f168201915b5050505050905090565b60145460ff166109465760405162461bcd60e51b81526020600482015260136024820152725468652053616c65206973207061757365642160681b604482015260640161080c565b60008111801561095857506013548111155b61099b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161080c565b601054816109a7610dd9565b6109b191906122e7565b11156109f65760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161080c565b60135481610a03336110dd565b610a0d91906122e7565b1115610a5b5760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c657420657863656564656421000000604482015260640161080c565b610a64336110dd565b600003610ad557601154610a7890826122ff565b610a8182611742565b610a8b9190612316565b341015610ad05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161080c565b610b2e565b80610adf82611742565b610ae99190612316565b341015610b2e5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161080c565b610b37336110dd565b600003610c105760115481610b4b336110dd565b610b5591906122e7565b11158015610b6b5750600f54610b69610dd9565b105b80610bac5750601154601254610b8191906122e7565b81610b8b336110dd565b610b9591906122e7565b11158015610bac5750601054610ba9610dd9565b11155b610c0b5760405162461bcd60e51b815260206004820152602a60248201527f4d617820206d696e7420616d6f756e7420706572207472616e73616374696f6e6044820152692065786365656465642160b01b606482015260840161080c565b610c75565b60135481610c1d336110dd565b610c2791906122e7565b1115610c755760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c657420657863656564656421000000604482015260640161080c565b610c7f33826117a8565b50565b6000610c8d826117c2565b610caa576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610cd1826117f7565b9050806001600160a01b0316836001600160a01b031603610d055760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610d3c57610d1f813361075f565b610d3c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610dc25760405162461bcd60e51b815260040161080c90612262565b8051610dd590600c906020840190611e3a565b5050565b600154600054036000190190565b6008546001600160a01b03163314610e115760405162461bcd60e51b815260040161080c90612262565b600e55565b610e21838383611866565b505050565b600060115482610e35336110dd565b610e3f91906122e7565b11158015610e555750600f54610e53610dd9565b105b15610e62575050600d5490565b60135482610e6f336110dd565b610e7991906122e7565b11158015610e905750600f54610e8d610dd9565b10155b15610e9d575050600e5490565b5050600e5490565b6008546001600160a01b03163314610ecf5760405162461bcd60e51b815260040161080c90612262565b600073a953009a7a67a02d5e3c3cb11523bd91a598a4e56064610ef347600f612316565b610efd919061234b565b604051600081818185875af1925050503d8060008114610f39576040519150601f19603f3d011682016040523d82523d6000602084013e610f3e565b606091505b5050905080610f4c57600080fd5b6000610f606008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610faa576040519150601f19603f3d011682016040523d82523d6000602084013e610faf565b606091505b5050905080610dd557600080fd5b610e21838383604051806020016040528060008152506113c3565b6008546001600160a01b031633146110025760405162461bcd60e51b815260040161080c90612262565b8051610dd590600b906020840190611e3a565b600c805461102290612297565b80601f016020809104026020016040519081016040528092919081815260200182805461104e90612297565b801561109b5780601f106110705761010080835404028352916020019161109b565b820191906000526020600020905b81548152906001019060200180831161107e57829003601f168201915b505050505081565b6008546001600160a01b031633146110cd5760405162461bcd60e51b815260040161080c90612262565b601155565b6000610866826117f7565b60006001600160a01b038216611106576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146111565760405162461bcd60e51b815260040161080c90612262565b6111606000611a0d565b565b6008546001600160a01b0316331461118c5760405162461bcd60e51b815260040161080c90612262565b601255565b6008546001600160a01b031633146111bb5760405162461bcd60e51b815260040161080c90612262565b601054826111c7610dd9565b6111d191906122e7565b11156112165760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161080c565b610dd581836117a8565b6060600061122d836110dd565b67ffffffffffffffff81111561124557611245611fcb565b60405190808252806020026020018201604052801561126e578160200160208202803683370190505b509050600061127c60005490565b905060008060005b8381101561130757600061129782611a5f565b90508060400151156112a957506112ff565b80516001600160a01b0316156112be57805192505b876001600160a01b0316836001600160a01b0316036112fd57818685806001019650815181106112f0576112f061235f565b6020026020010181815250505b505b600101611284565b509295945050505050565b60606003805461087b90612297565b336001600160a01b0383160361134a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b805461102290612297565b6113ce848484611866565b6001600160a01b0383163b15611407576113ea84848484611aca565b611407576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611418826117c2565b61147c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080c565b601454610100900460ff16151560000361152257600b805461149d90612297565b80601f01602080910402602001604051908101604052809291908181526020018280546114c990612297565b80156115165780601f106114eb57610100808354040283529160200191611516565b820191906000526020600020905b8154815290600101906020018083116114f957829003601f168201915b50505050509050919050565b600061152c611bb6565b9050600081511161154c576040518060200160405280600081525061157a565b8061155684611bc5565b600c60405160200161156a93929190612375565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115ab5760405162461bcd60e51b815260040161080c90612262565b6014805460ff1916911515919091179055565b6008546001600160a01b031633146115e85760405162461bcd60e51b815260040161080c90612262565b601355565b6008546001600160a01b031633146116175760405162461bcd60e51b815260040161080c90612262565b600d55565b6008546001600160a01b031633146116465760405162461bcd60e51b815260040161080c90612262565b601480549115156101000261ff0019909216919091179055565b600a805461102290612297565b6008546001600160a01b031633146116975760405162461bcd60e51b815260040161080c90612262565b6001600160a01b0381166116fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080c565b610c7f81611a0d565b6008546001600160a01b0316331461172f5760405162461bcd60e51b815260040161080c90612262565b8051610dd590600a906020840190611e3a565b600060115482611751336110dd565b61175b91906122e7565b111580156117715750600f5461176f610dd9565b105b1561177e575050600d5490565b6011548261178b336110dd565b61179591906122e7565b11156117a3575050600e5490565b919050565b610dd5828260405180602001604052806000815250611cc6565b6000816001111580156117d6575060005482105b8015610866575050600090815260046020526040902054600160e01b161590565b6000818060011161184d5760005481101561184d5760008181526004602052604081205490600160e01b8216900361184b575b8060000361157a57506000190160008181526004602052604090205461182a565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611871826117f7565b9050836001600160a01b0316816001600160a01b0316146118a45760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118c257506118c2853361075f565b806118dd5750336118d284610c82565b6001600160a01b0316145b9050806118fd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661192457604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036119c5576001830160008181526004602052604081205490036119c35760005481146119c35760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915260008281526004602052604090205461086690604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611aff903390899088908890600401612438565b6020604051808303816000875af1925050508015611b3a575060408051601f3d908101601f19168201909252611b3791810190612475565b60015b611b98573d808015611b68576040519150601f19603f3d011682016040523d82523d6000602084013e611b6d565b606091505b508051600003611b90576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461087b90612297565b606081600003611bec5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c165780611c0081612492565b9150611c0f9050600a8361234b565b9150611bf0565b60008167ffffffffffffffff811115611c3157611c31611fcb565b6040519080825280601f01601f191660200182016040528015611c5b576020820181803683370190505b5090505b8415611bae57611c706001836122ff565b9150611c7d600a866124ab565b611c889060306122e7565b60f81b818381518110611c9d57611c9d61235f565b60200101906001600160f81b031916908160001a905350611cbf600a8661234b565b9450611c5f565b6000546001600160a01b038416611cef57604051622e076360e81b815260040160405180910390fd5b82600003611d105760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611de5575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dae6000878480600101955087611aca565b611dcb576040516368d2bf6b60e11b815260040160405180910390fd5b808210611d63578260005414611de057600080fd5b611e2a565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611de6575b5060009081556114079085838684565b828054611e4690612297565b90600052602060002090601f016020900481019282611e685760008555611eae565b82601f10611e8157805160ff1916838001178555611eae565b82800160010185558215611eae579182015b82811115611eae578251825591602001919060010190611e93565b50611eba929150611ebe565b5090565b5b80821115611eba5760008155600101611ebf565b600060208284031215611ee557600080fd5b5035919050565b6001600160e01b031981168114610c7f57600080fd5b600060208284031215611f1457600080fd5b813561157a81611eec565b60005b83811015611f3a578181015183820152602001611f22565b838111156114075750506000910152565b60008151808452611f63816020860160208601611f1f565b601f01601f19169290920160200192915050565b60208152600061157a6020830184611f4b565b80356001600160a01b03811681146117a357600080fd5b60008060408385031215611fb457600080fd5b611fbd83611f8a565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ffc57611ffc611fcb565b604051601f8501601f19908116603f0116810190828211818310171561202457612024611fcb565b8160405280935085815286868601111561203d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561206957600080fd5b813567ffffffffffffffff81111561208057600080fd5b8201601f8101841361209157600080fd5b611bae84823560208401611fe1565b6000806000606084860312156120b557600080fd5b6120be84611f8a565b92506120cc60208501611f8a565b9150604084013590509250925092565b6000602082840312156120ee57600080fd5b61157a82611f8a565b6000806040838503121561210a57600080fd5b8235915061211a60208401611f8a565b90509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561215b5783518352928401929184019160010161213f565b50909695505050505050565b803580151581146117a357600080fd5b6000806040838503121561218a57600080fd5b61219383611f8a565b915061211a60208401612167565b600080600080608085870312156121b757600080fd5b6121c085611f8a565b93506121ce60208601611f8a565b925060408501359150606085013567ffffffffffffffff8111156121f157600080fd5b8501601f8101871361220257600080fd5b61221187823560208401611fe1565b91505092959194509250565b60006020828403121561222f57600080fd5b61157a82612167565b6000806040838503121561224b57600080fd5b61225483611f8a565b915061211a60208401611f8a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806122ab57607f821691505b6020821081036122cb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156122fa576122fa6122d1565b500190565b600082821015612311576123116122d1565b500390565b6000816000190483118215151615612330576123306122d1565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261235a5761235a612335565b500490565b634e487b7160e01b600052603260045260246000fd5b6000845160206123888285838a01611f1f565b85519184019161239b8184848a01611f1f565b8554920191600090600181811c90808316806123b857607f831692505b85831081036123d557634e487b7160e01b85526022600452602485fd5b8080156123e957600181146123fa57612427565b60ff19851688528388019550612427565b60008b81526020902060005b8581101561241f5781548a820152908401908801612406565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061246b90830184611f4b565b9695505050505050565b60006020828403121561248757600080fd5b815161157a81611eec565b6000600182016124a4576124a46122d1565b5060010190565b6000826124ba576124ba612335565b50069056fea264697066735822122014d69de4c1b332b238a53de98a2bc32244edb6a246e717dc824d3514a342114464736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d567752776958693669586f71426f61334e46327745795a6735726738415675393463376e5865727259744b672f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d61634d3664696f6b6f714c6544525435446f34684459484b3753736234593465746f7a4a61546170477663722f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmVwRwiXi6iXoqBoa3NF2wEyZg5rg8AVu94c7nXerrYtKg/
Arg [1] : _hiddenMetadataUri (string): ipfs://QmacM6diokoqLeDRT5Do4hDYHK7Ssb4Y4etozJaTapGvcr/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d567752776958693669586f71426f61334e46327745795a
Arg [4] : 6735726738415675393463376e5865727259744b672f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d61634d3664696f6b6f714c6544525435446f3468445948
Arg [7] : 4b3753736234593465746f7a4a61546170477663722f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

58499:6315:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62591:102;;;;;;;;;;-1:-1:-1;62591:102:0;;;;;:::i;:::-;;:::i;:::-;;13282:615;;;;;;;;;;-1:-1:-1;13282:615:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;13282:615:0;;;;;;;;18295:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59942:1176::-;;;;;;:::i;:::-;;:::i;20363:204::-;;;;;;;;;;-1:-1:-1;20363:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;20363:204:0;1528:203:1;19823:474:0;;;;;;;;;;-1:-1:-1;19823:474:0;;;;;:::i;:::-;;:::i;61778:100::-;;;;;;;;;;-1:-1:-1;61778:100:0;;;;;:::i;:::-;;:::i;12336:315::-;;;;;;;;;;;;;:::i;:::-;;;3544:25:1;;;3532:2;3517:18;12336:315:0;3398:177:1;58877:32:0;;;;;;;;;;;;;;;;58839:33;;;;;;;;;;;;;;;;62505:78;;;;;;;;;;-1:-1:-1;62505:78:0;;;;;:::i;:::-;;:::i;58914:43::-;;;;;;;;;;;;;;;;21249:170;;;;;;;;;;-1:-1:-1;21249:170:0;;;;;:::i;:::-;;:::i;62982:385::-;;;;;;;;;;-1:-1:-1;62982:385:0;;;;;:::i;:::-;;:::i;58766:30::-;;;;;;;;;;;;;;;;62699:277;;;;;;;;;;;;;:::i;21490:185::-;;;;;;;;;;-1:-1:-1;21490:185:0;;;;;:::i;:::-;;:::i;61642:130::-;;;;;;;;;;-1:-1:-1;61642:130:0;;;;;:::i;:::-;;:::i;59081:28::-;;;;;;;;;;-1:-1:-1;59081:28:0;;;;;;;;;;;58728:33;;;;;;;;;;;;;:::i;59010:36::-;;;;;;;;;;;;;;;;61967:154;;;;;;;;;;-1:-1:-1;61967:154:0;;;;;:::i;:::-;;:::i;18084:144::-;;;;;;;;;;-1:-1:-1;18084:144:0;;;;;:::i;:::-;;:::i;58962:43::-;;;;;;;;;;;;;;;;59051:24;;;;;;;;;;-1:-1:-1;59051:24:0;;;;;;;;13961:224;;;;;;;;;;-1:-1:-1;13961:224:0;;;;;:::i;:::-;;:::i;54806:103::-;;;;;;;;;;;;;:::i;62127:154::-;;;;;;;;;;-1:-1:-1;62127:154:0;;;;;:::i;:::-;;:::i;61126:202::-;;;;;;;;;;-1:-1:-1;61126:202:0;;;;;:::i;:::-;;:::i;63371:712::-;;;;;;;;;;-1:-1:-1;63371:712:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54155:87::-;;;;;;;;;;-1:-1:-1;54228:6:0;;-1:-1:-1;;;;;54228:6:0;54155:87;;18464:104;;;;;;;;;;;;;:::i;58801:33::-;;;;;;;;;;;;;;;;20639:308;;;;;;;;;;-1:-1:-1;20639:308:0;;;;;:::i;:::-;;:::i;58691:31::-;;;;;;;;;;;;;:::i;21746:396::-;;;;;;;;;;-1:-1:-1;21746:396:0;;;;;:::i;:::-;;:::i;64190:445::-;;;;;;;;;;-1:-1:-1;64190:445:0;;;;;:::i;:::-;;:::i;61884:77::-;;;;;;;;;;-1:-1:-1;61884:77:0;;;;;:::i;:::-;;:::i;62287:126::-;;;;;;;;;;-1:-1:-1;62287:126:0;;;;;:::i;:::-;;:::i;62419:78::-;;;;;;;;;;-1:-1:-1;62419:78:0;;;;;:::i;:::-;;:::i;61473:81::-;;;;;;;;;;-1:-1:-1;61473:81:0;;;;;:::i;:::-;;:::i;21018:164::-;;;;;;;;;;-1:-1:-1;21018:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21139:25:0;;;21115:4;21139:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21018:164;58669:17;;;;;;;;;;;;;:::i;55064:201::-;;;;;;;;;;-1:-1:-1;55064:201:0;;;;;:::i;:::-;;:::i;61560:76::-;;;;;;;;;;-1:-1:-1;61560:76:0;;;;;:::i;:::-;;:::i;62591:102::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;;;;;;;;;62661:11:::1;:26:::0;62591:102::o;13282:615::-;13367:4;-1:-1:-1;;;;;;;;;13667:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13744:25:0;;;13667:102;:179;;;-1:-1:-1;;;;;;;;;;13821:25:0;;;13667:179;13647:199;13282:615;-1:-1:-1;;13282:615:0:o;18295:100::-;18349:13;18382:5;18375:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18295:100;:::o;59942:1176::-;60037:4;;;;60029:36;;;;-1:-1:-1;;;60029:36:0;;7494:2:1;60029:36:0;;;7476:21:1;7533:2;7513:18;;;7506:30;-1:-1:-1;;;7552:18:1;;;7545:49;7611:18;;60029:36:0;7292:343:1;60029:36:0;60094:1;60080:11;:15;:51;;;;;60114:17;;60099:11;:32;;60080:51;60072:84;;;;-1:-1:-1;;;60072:84:0;;7842:2:1;60072:84:0;;;7824:21:1;7881:2;7861:18;;;7854:30;-1:-1:-1;;;7900:18:1;;;7893:50;7960:18;;60072:84:0;7640:344:1;60072:84:0;60202:11;;60187;60171:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;60163:75;;;;-1:-1:-1;;;60163:75:0;;8456:2:1;60163:75:0;;;8438:21:1;8495:2;8475:18;;;8468:30;-1:-1:-1;;;8514:18:1;;;8507:50;8574:18;;60163:75:0;8254:344:1;60163:75:0;60292:17;;60277:11;60253:21;60263:10;60253:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;60245:98;;;;-1:-1:-1;;;60245:98:0;;8805:2:1;60245:98:0;;;8787:21:1;8844:2;8824:18;;;8817:30;8883:31;8863:18;;;8856:59;8932:18;;60245:98:0;8603:353:1;60245:98:0;60353:21;60363:10;60353:9;:21::i;:::-;60378:1;60353:26;60350:255;;60447:24;;60435:36;;:11;:36;:::i;:::-;60408:23;60419:11;60408:10;:23::i;:::-;:64;;;;:::i;:::-;60395:9;:77;;60387:109;;;;-1:-1:-1;;;60387:109:0;;9466:2:1;60387:109:0;;;9448:21:1;9505:2;9485:18;;;9478:30;-1:-1:-1;;;9524:18:1;;;9517:49;9583:18;;60387:109:0;9264:343:1;60387:109:0;60350:255;;;60562:11;60536:23;60547:11;60536:10;:23::i;:::-;:37;;;;:::i;:::-;60523:9;:50;;60515:82;;;;-1:-1:-1;;;60515:82:0;;9466:2:1;60515:82:0;;;9448:21:1;9505:2;9485:18;;;9478:30;-1:-1:-1;;;9524:18:1;;;9517:49;9583:18;;60515:82:0;9264:343:1;60515:82:0;60614:21;60624:10;60614:9;:21::i;:::-;60639:1;60614:26;60611:446;;60696:24;;60681:11;60657:21;60667:10;60657:9;:21::i;:::-;:35;;;;:::i;:::-;:63;;:95;;;;;60740:12;;60724:13;:11;:13::i;:::-;:28;60657:95;60656:229;;;;60828:24;;60803;;:49;;;;:::i;:::-;60788:11;60764:21;60774:10;60764:9;:21::i;:::-;:35;;;;:::i;:::-;:88;;:120;;;;;60873:11;;60856:13;:11;:13::i;:::-;:28;;60764:120;60648:284;;;;-1:-1:-1;;;60648:284:0;;9814:2:1;60648:284:0;;;9796:21:1;9853:2;9833:18;;;9826:30;9892:34;9872:18;;;9865:62;-1:-1:-1;;;9943:18:1;;;9936:40;9993:19;;60648:284:0;9612:406:1;60648:284:0;60611:446;;;60998:17;;60983:11;60959:21;60969:10;60959:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;60951:98;;;;-1:-1:-1;;;60951:98:0;;8805:2:1;60951:98:0;;;8787:21:1;8844:2;8824:18;;;8817:30;8883:31;8863:18;;;8856:59;8932:18;;60951:98:0;8603:353:1;60951:98:0;61076:36;52959:10;61100:11;61076:9;:36::i;:::-;59942:1176;:::o;20363:204::-;20431:7;20456:16;20464:7;20456;:16::i;:::-;20451:64;;20481:34;;-1:-1:-1;;;20481:34:0;;;;;;;;;;;20451:64;-1:-1:-1;20535:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20535:24:0;;20363:204::o;19823:474::-;19896:13;19928:27;19947:7;19928:18;:27::i;:::-;19896:61;;19978:5;-1:-1:-1;;;;;19972:11:0;:2;-1:-1:-1;;;;;19972:11:0;;19968:48;;19992:24;;-1:-1:-1;;;19992:24:0;;;;;;;;;;;19968:48;52959:10;-1:-1:-1;;;;;20033:28:0;;;20029:175;;20081:44;20098:5;52959:10;21018:164;:::i;20081:44::-;20076:128;;20153:35;;-1:-1:-1;;;20153:35:0;;;;;;;;;;;20076:128;20216:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20216:29:0;-1:-1:-1;;;;;20216:29:0;;;;;;;;;20261:28;;20216:24;;20261:28;;;;;;;19885:412;19823:474;;:::o;61778:100::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;61850:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;61778:100:::0;:::o;12336:315::-;64177:1;12602:12;12389:7;12586:13;:28;-1:-1:-1;;12586:46:0;;12336:315::o;62505:78::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;62563:5:::1;:14:::0;62505:78::o;21249:170::-;21383:28;21393:4;21399:2;21403:7;21383:9;:28::i;:::-;21249:170;;;:::o;62982:385::-;63039:7;63102:24;;63087:11;63063:21;63073:10;63063:9;:21::i;:::-;:35;;;;:::i;:::-;:63;;:95;;;;;63146:12;;63130:13;:11;:13::i;:::-;:28;63063:95;63059:140;;;-1:-1:-1;;63180:5:0;;;62982:385::o;63059:140::-;63253:17;;63238:11;63214:21;63224:10;63214:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;:89;;;;;63291:12;;63274:13;:11;:13::i;:::-;:29;;63214:89;63210:131;;;-1:-1:-1;;63324:5:0;;;62982:385::o;63210:131::-;-1:-1:-1;;63356:5:0;;;62982:385::o;62699:277::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;62744:7:::1;62765:42;62850:3;62821:26;:21;62845:2;62821:26;:::i;:::-;:32;;;;:::i;:::-;62757:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62743:115;;;62873:2;62865:11;;;::::0;::::1;;62884:7;62905;54228:6:::0;;-1:-1:-1;;;;;54228:6:0;;54155:87;62905:7:::1;-1:-1:-1::0;;;;;62897:21:0::1;62926;62897:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62883:69;;;62967:2;62959:11;;;::::0;::::1;21490:185:::0;21628:39;21645:4;21651:2;21655:7;21628:39;;;;;;;;;;;;:16;:39::i;61642:130::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;61728:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;58728:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61967:154::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;62063:24:::1;:52:::0;61967:154::o;18084:144::-;18148:7;18191:27;18210:7;18191:18;:27::i;13961:224::-;14025:7;-1:-1:-1;;;;;14049:19:0;;14045:60;;14077:28;;-1:-1:-1;;;14077:28:0;;;;;;;;;;;14045:60;-1:-1:-1;;;;;;14123:25:0;;;;;:18;:25;;;;;;9300:13;14123:54;;13961:224::o;54806:103::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;54871:30:::1;54898:1;54871:18;:30::i;:::-;54806:103::o:0;62127:154::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;62223:24:::1;:52:::0;62127:154::o;61126:202::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;61246:11:::1;;61231;61215:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;61207:75;;;::::0;-1:-1:-1;;;61207:75:0;;8456:2:1;61207:75:0::1;::::0;::::1;8438:21:1::0;8495:2;8475:18;;;8468:30;-1:-1:-1;;;8514:18:1;;;8507:50;8574:18;;61207:75:0::1;8254:344:1::0;61207:75:0::1;61289:33;61299:9;61310:11;61289:9;:33::i;63371:712::-:0;63432:16;63478:18;63513:16;63523:5;63513:9;:16::i;:::-;63499:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63499:31:0;;63478:52;;63542:11;63556:14;12077:7;12104:13;;12030:95;63556:14;63542:28;;63581:19;63611:25;63652:9;63647:403;63667:3;63663:1;:7;63647:403;;;63692:31;63726:15;63739:1;63726:12;:15::i;:::-;63692:49;;63760:9;:16;;;63756:65;;;63797:8;;;63756:65;63839:14;;-1:-1:-1;;;;;63839:28:0;;63835:103;;63908:14;;;-1:-1:-1;63835:103:0;63977:5;-1:-1:-1;;;;;63956:26:0;:17;-1:-1:-1;;;;;63956:26:0;;63952:87;;64022:1;64003;64005:13;;;;;;64003:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;63952:87;63677:373;63647:403;63672:3;;63647:403;;;-1:-1:-1;64067:1:0;;63371:712;-1:-1:-1;;;;;63371:712:0:o;18464:104::-;18520:13;18553:7;18546:14;;;;;:::i;20639:308::-;52959:10;-1:-1:-1;;;;;20738:31:0;;;20734:61;;20778:17;;-1:-1:-1;;;20778:17:0;;;;;;;;;;;20734:61;52959:10;20808:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20808:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20808:60:0;;;;;;;;;;20884:55;;725:41:1;;;20808:49:0;;52959:10;20884:55;;698:18:1;20884:55:0;;;;;;;20639:308;;:::o;58691:31::-;;;;;;;:::i;21746:396::-;21913:28;21923:4;21929:2;21933:7;21913:9;:28::i;:::-;-1:-1:-1;;;;;21956:14:0;;;:19;21952:183;;21995:56;22026:4;22032:2;22036:7;22045:5;21995:30;:56::i;:::-;21990:145;;22079:40;;-1:-1:-1;;;22079:40:0;;;;;;;;;;;21990:145;21746:396;;;;:::o;64190:445::-;64264:13;64294:17;64302:8;64294:7;:17::i;:::-;64286:77;;;;-1:-1:-1;;;64286:77:0;;10824:2:1;64286:77:0;;;10806:21:1;10863:2;10843:18;;;10836:30;10902:34;10882:18;;;10875:62;-1:-1:-1;;;10953:18:1;;;10946:45;11008:19;;64286:77:0;10622:411:1;64286:77:0;64376:8;;;;;;;:17;;64388:5;64376:17;64372:64;;64411:17;64404:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64190:445;;;:::o;64372:64::-;64444:28;64475:10;:8;:10::i;:::-;64444:41;;64530:1;64505:14;64499:28;:32;:130;;;;;;;;;;;;;;;;;64567:14;64583:19;:8;:17;:19::i;:::-;64604:9;64550:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64499:130;64492:137;64190:445;-1:-1:-1;;;64190:445:0:o;61884:77::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;61943:4:::1;:12:::0;;-1:-1:-1;;61943:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;61884:77::o;62287:126::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;62369:17:::1;:38:::0;62287:126::o;62419:78::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;62477:5:::1;:14:::0;62419:78::o;61473:81::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;61531:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;61531:17:0;;::::1;::::0;;;::::1;::::0;;61473:81::o;58669:17::-;;;;;;;:::i;55064:201::-;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55153:22:0;::::1;55145:73;;;::::0;-1:-1:-1;;;55145:73:0;;12898:2:1;55145:73:0::1;::::0;::::1;12880:21:1::0;12937:2;12917:18;;;12910:30;12976:34;12956:18;;;12949:62;-1:-1:-1;;;13027:18:1;;;13020:36;13073:19;;55145:73:0::1;12696:402:1::0;55145:73:0::1;55229:28;55248:8;55229:18;:28::i;61560:76::-:0;54228:6;;-1:-1:-1;;;;;54228:6:0;52959:10;54375:23;54367:68;;;;-1:-1:-1;;;54367:68:0;;;;;;;:::i;:::-;61620:10;;::::1;::::0;:3:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;59580:354::-:0;59645:13;59717:24;;59702:11;59678:21;59688:10;59678:9;:21::i;:::-;:35;;;;:::i;:::-;:63;;:95;;;;;59761:12;;59745:13;:11;:13::i;:::-;:28;59678:95;59674:140;;;-1:-1:-1;;59795:5:0;;;59580:354::o;59674:140::-;59867:24;;59853:11;59829:21;59839:10;59829:9;:21::i;:::-;:35;;;;:::i;:::-;:62;59825:104;;;-1:-1:-1;;59912:5:0;;;59580:354::o;59825:104::-;59580:354;;;:::o;22754:104::-;22823:27;22833:2;22837:8;22823:27;;;;;;;;;;;;:9;:27::i;22397:273::-;22454:4;22510:7;64177:1;22491:26;;:66;;;;;22544:13;;22534:7;:23;22491:66;:152;;;;-1:-1:-1;;22595:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22595:43:0;:48;;22397:273::o;15599:1129::-;15666:7;15701;;64177:1;15750:23;15746:915;;15803:13;;15796:4;:20;15792:869;;;15841:14;15858:23;;;:17;:23;;;;;;;-1:-1:-1;;;15947:23:0;;:28;;15943:699;;16466:113;16473:6;16483:1;16473:11;16466:113;;-1:-1:-1;;;16544:6:0;16526:25;;;;:17;:25;;;;;;16466:113;;15943:699;15818:843;15792:869;16689:31;;-1:-1:-1;;;16689:31:0;;;;;;;;;;;27636:2515;27751:27;27781;27800:7;27781:18;:27::i;:::-;27751:57;;27866:4;-1:-1:-1;;;;;27825:45:0;27841:19;-1:-1:-1;;;;;27825:45:0;;27821:86;;27879:28;;-1:-1:-1;;;27879:28:0;;;;;;;;;;;27821:86;27920:22;52959:10;-1:-1:-1;;;;;27946:27:0;;;;:87;;-1:-1:-1;27990:43:0;28007:4;52959:10;21018:164;:::i;27990:43::-;27946:147;;;-1:-1:-1;52959:10:0;28050:20;28062:7;28050:11;:20::i;:::-;-1:-1:-1;;;;;28050:43:0;;27946:147;27920:174;;28112:17;28107:66;;28138:35;;-1:-1:-1;;;28138:35:0;;;;;;;;;;;28107:66;-1:-1:-1;;;;;28188:16:0;;28184:52;;28213:23;;-1:-1:-1;;;28213:23:0;;;;;;;;;;;28184:52;28365:24;;;;:15;:24;;;;;;;;28358:31;;-1:-1:-1;;;;;;28358:31:0;;;-1:-1:-1;;;;;28757:24:0;;;;;:18;:24;;;;;28755:26;;-1:-1:-1;;28755:26:0;;;28826:22;;;;;;;28824:24;;-1:-1:-1;28824:24:0;;;29119:26;;;:17;:26;;;;;-1:-1:-1;;;29207:15:0;9954:3;29207:41;29165:84;;:128;;29119:174;;;29413:46;;:51;;29409:626;;29517:1;29507:11;;29485:19;29640:30;;;:17;:30;;;;;;:35;;29636:384;;29778:13;;29763:11;:28;29759:242;;29925:30;;;;:17;:30;;;;;:52;;;29759:242;29466:569;29409:626;30082:7;30078:2;-1:-1:-1;;;;;30063:27:0;30072:4;-1:-1:-1;;;;;30063:27:0;;;;;;;;;;;27740:2411;;27636:2515;;;:::o;55425:191::-;55518:6;;;-1:-1:-1;;;;;55535:17:0;;;-1:-1:-1;;;;;;55535:17:0;;;;;;;55568:40;;55518:6;;;55535:17;55518:6;;55568:40;;55499:16;;55568:40;55488:128;55425:191;:::o;17208:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;17328:24:0;;;;:17;:24;;;;;;17309:44;;-1:-1:-1;;;;;;;;;;;;;16932:41:0;;;;9954:3;17018:32;;;16984:67;;-1:-1:-1;;;16984:67:0;-1:-1:-1;;;17081:23:0;;;:28;;-1:-1:-1;;;17062:47:0;-1:-1:-1;16822:295:0;33848:716;34032:88;;-1:-1:-1;;;34032:88:0;;34011:4;;-1:-1:-1;;;;;34032:45:0;;;;;:88;;52959:10;;34099:4;;34105:7;;34114:5;;34032:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34032:88:0;;;;;;;;-1:-1:-1;;34032:88:0;;;;;;;;;;;;:::i;:::-;;;34028:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34315:6;:13;34332:1;34315:18;34311:235;;34361:40;;-1:-1:-1;;;34361:40:0;;;;;;;;;;;34311:235;34504:6;34498:13;34489:6;34485:2;34481:15;34474:38;34028:529;-1:-1:-1;;;;;;34191:64:0;-1:-1:-1;;;34191:64:0;;-1:-1:-1;34028:529:0;33848:716;;;;;;:::o;64641:98::-;64701:13;64730:3;64723:10;;;;;:::i;47570:723::-;47626:13;47847:5;47856:1;47847:10;47843:53;;-1:-1:-1;;47874:10:0;;;;;;;;;;;;-1:-1:-1;;;47874:10:0;;;;;47570:723::o;47843:53::-;47921:5;47906:12;47962:78;47969:9;;47962:78;;47995:8;;;;:::i;:::-;;-1:-1:-1;48018:10:0;;-1:-1:-1;48026:2:0;48018:10;;:::i;:::-;;;47962:78;;;48050:19;48082:6;48072:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48072:17:0;;48050:39;;48100:154;48107:10;;48100:154;;48134:11;48144:1;48134:11;;:::i;:::-;;-1:-1:-1;48203:10:0;48211:2;48203:5;:10;:::i;:::-;48190:24;;:2;:24;:::i;:::-;48177:39;;48160:6;48167;48160:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;48160:56:0;;;;;;;;-1:-1:-1;48231:11:0;48240:2;48231:11;;:::i;:::-;;;48100:154;;23231:2236;23354:20;23377:13;-1:-1:-1;;;;;23405:16:0;;23401:48;;23430:19;;-1:-1:-1;;;23430:19:0;;;;;;;;;;;23401:48;23464:8;23476:1;23464:13;23460:44;;23486:18;;-1:-1:-1;;;23486:18:0;;;;;;;;;;;23460:44;-1:-1:-1;;;;;24053:22:0;;;;;;:18;:22;;;;9437:2;24053:22;;;:70;;24091:31;24079:44;;24053:70;;;24366:31;;;:17;:31;;;;;24459:15;9954:3;24459:41;24417:84;;-1:-1:-1;24537:13:0;;10217:3;24522:56;24417:162;24366:213;;:31;;24660:23;;;;24704:14;:19;24700:635;;24744:313;24775:38;;24800:12;;-1:-1:-1;;;;;24775:38:0;;;24792:1;;24775:38;;24792:1;;24775:38;24841:69;24880:1;24884:2;24888:14;;;;;;24904:5;24841:30;:69::i;:::-;24836:174;;24946:40;;-1:-1:-1;;;24946:40:0;;;;;;;;;;;24836:174;25052:3;25037:12;:18;24744:313;;25138:12;25121:13;;:29;25117:43;;25152:8;;;25117:43;24700:635;;;25201:119;25232:40;;25257:14;;;;;-1:-1:-1;;;;;25232:40:0;;;25249:1;;25232:40;;25249:1;;25232:40;25315:3;25300:12;:18;25201:119;;24700:635;-1:-1:-1;25349:13:0;:28;;;25399:60;;25432:2;25436:12;25450:8;25399:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:131::-;-1:-1:-1;;;;;;273:32:1;;263:43;;253:71;;320:1;317;310:12;335:245;393:6;446:2;434:9;425:7;421:23;417:32;414:52;;;462:1;459;452:12;414:52;501:9;488:23;520:30;544:5;520:30;:::i;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1914:254;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:254::-;4172:6;4180;4233:2;4221:9;4212:7;4208:23;4204:32;4201:52;;;4249:1;4246;4239:12;4201:52;4285:9;4272:23;4262:33;;4314:38;4348:2;4337:9;4333:18;4314:38;:::i;:::-;4304:48;;4104:254;;;;;:::o;4363:632::-;4534:2;4586:21;;;4656:13;;4559:18;;;4678:22;;;4505:4;;4534:2;4757:15;;;;4731:2;4716:18;;;4505:4;4800:169;4814:6;4811:1;4808:13;4800:169;;;4875:13;;4863:26;;4944:15;;;;4909:12;;;;4836:1;4829:9;4800:169;;;-1:-1:-1;4986:3:1;;4363:632;-1:-1:-1;;;;;;4363:632:1:o;5000:160::-;5065:20;;5121:13;;5114:21;5104:32;;5094:60;;5150:1;5147;5140:12;5165:254;5230:6;5238;5291:2;5279:9;5270:7;5266:23;5262:32;5259:52;;;5307:1;5304;5297:12;5259:52;5330:29;5349:9;5330:29;:::i;:::-;5320:39;;5378:35;5409:2;5398:9;5394:18;5378:35;:::i;5424:667::-;5519:6;5527;5535;5543;5596:3;5584:9;5575:7;5571:23;5567:33;5564:53;;;5613:1;5610;5603:12;5564:53;5636:29;5655:9;5636:29;:::i;:::-;5626:39;;5684:38;5718:2;5707:9;5703:18;5684:38;:::i;:::-;5674:48;;5769:2;5758:9;5754:18;5741:32;5731:42;;5824:2;5813:9;5809:18;5796:32;5851:18;5843:6;5840:30;5837:50;;;5883:1;5880;5873:12;5837:50;5906:22;;5959:4;5951:13;;5947:27;-1:-1:-1;5937:55:1;;5988:1;5985;5978:12;5937:55;6011:74;6077:7;6072:2;6059:16;6054:2;6050;6046:11;6011:74;:::i;:::-;6001:84;;;5424:667;;;;;;;:::o;6096:180::-;6152:6;6205:2;6193:9;6184:7;6180:23;6176:32;6173:52;;;6221:1;6218;6211:12;6173:52;6244:26;6260:9;6244:26;:::i;6281:260::-;6349:6;6357;6410:2;6398:9;6389:7;6385:23;6381:32;6378:52;;;6426:1;6423;6416:12;6378:52;6449:29;6468:9;6449:29;:::i;:::-;6439:39;;6497:38;6531:2;6520:9;6516:18;6497:38;:::i;6546:356::-;6748:2;6730:21;;;6767:18;;;6760:30;6826:34;6821:2;6806:18;;6799:62;6893:2;6878:18;;6546:356::o;6907:380::-;6986:1;6982:12;;;;7029;;;7050:61;;7104:4;7096:6;7092:17;7082:27;;7050:61;7157:2;7149:6;7146:14;7126:18;7123:38;7120:161;;7203:10;7198:3;7194:20;7191:1;7184:31;7238:4;7235:1;7228:15;7266:4;7263:1;7256:15;7120:161;;6907:380;;;:::o;7989:127::-;8050:10;8045:3;8041:20;8038:1;8031:31;8081:4;8078:1;8071:15;8105:4;8102:1;8095:15;8121:128;8161:3;8192:1;8188:6;8185:1;8182:13;8179:39;;;8198:18;;:::i;:::-;-1:-1:-1;8234:9:1;;8121:128::o;8961:125::-;9001:4;9029:1;9026;9023:8;9020:34;;;9034:18;;:::i;:::-;-1:-1:-1;9071:9:1;;8961:125::o;9091:168::-;9131:7;9197:1;9193;9189:6;9185:14;9182:1;9179:21;9174:1;9167:9;9160:17;9156:45;9153:71;;;9204:18;;:::i;:::-;-1:-1:-1;9244:9:1;;9091:168::o;10023:127::-;10084:10;10079:3;10075:20;10072:1;10065:31;10115:4;10112:1;10105:15;10139:4;10136:1;10129:15;10155:120;10195:1;10221;10211:35;;10226:18;;:::i;:::-;-1:-1:-1;10260:9:1;;10155:120::o;10490:127::-;10551:10;10546:3;10542:20;10539:1;10532:31;10582:4;10579:1;10572:15;10606:4;10603:1;10596:15;11164:1527;11388:3;11426:6;11420:13;11452:4;11465:51;11509:6;11504:3;11499:2;11491:6;11487:15;11465:51;:::i;:::-;11579:13;;11538:16;;;;11601:55;11579:13;11538:16;11623:15;;;11601:55;:::i;:::-;11745:13;;11678:20;;;11718:1;;11805;11827:18;;;;11880;;;;11907:93;;11985:4;11975:8;11971:19;11959:31;;11907:93;12048:2;12038:8;12035:16;12015:18;12012:40;12009:167;;-1:-1:-1;;;12075:33:1;;12131:4;12128:1;12121:15;12161:4;12082:3;12149:17;12009:167;12192:18;12219:110;;;;12343:1;12338:328;;;;12185:481;;12219:110;-1:-1:-1;;12254:24:1;;12240:39;;12299:20;;;;-1:-1:-1;12219:110:1;;12338:328;11111:1;11104:14;;;11148:4;11135:18;;12433:1;12447:169;12461:8;12458:1;12455:15;12447:169;;;12543:14;;12528:13;;;12521:37;12586:16;;;;12478:10;;12447:169;;;12451:3;;12647:8;12640:5;12636:20;12629:27;;12185:481;-1:-1:-1;12682:3:1;;11164:1527;-1:-1:-1;;;;;;;;;;;11164:1527:1:o;13103:489::-;-1:-1:-1;;;;;13372:15:1;;;13354:34;;13424:15;;13419:2;13404:18;;13397:43;13471:2;13456:18;;13449:34;;;13519:3;13514:2;13499:18;;13492:31;;;13297:4;;13540:46;;13566:19;;13558:6;13540:46;:::i;:::-;13532:54;13103:489;-1:-1:-1;;;;;;13103:489:1:o;13597:249::-;13666:6;13719:2;13707:9;13698:7;13694:23;13690:32;13687:52;;;13735:1;13732;13725:12;13687:52;13767:9;13761:16;13786:30;13810:5;13786:30;:::i;13851:135::-;13890:3;13911:17;;;13908:43;;13931:18;;:::i;:::-;-1:-1:-1;13978:1:1;13967:13;;13851:135::o;13991:112::-;14023:1;14049;14039:35;;14054:18;;:::i;:::-;-1:-1:-1;14088:9:1;;13991:112::o

Swarm Source

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