ETH Price: $3,140.91 (-8.20%)
Gas: 6 Gwei

Token

Lucky Brats (LB)
 

Overview

Max Total Supply

522 LB

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 LB
0xdd1bd95250d9acaa0a9d6cddbda31b5d27874dec
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:
luckybrats

Compiler Version
v0.8.13+commit.abaa5c0e

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

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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: erc721a/contracts/IERC721A.sol


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

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: @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: contract.sol

pragma solidity >=0.8.13 <0.9.0;


contract luckybrats is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

// ================== Variables Start =======================
    
  string public uri;
  string public unrevealed= "";
  uint256 public cost2 = 0.005 ether;
  uint256 public supplyLimit = 10000;
  uint256 public maxMintAmountPerTx = 15;
  uint256 public maxLimitPerWallet = 3;
  bool public publicsale = true;
  bool public revealed = false;
  string public names= "Lucky Brats";
  string public symbols= "LB";
  bool public conditions= true;

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

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

  constructor(
  ) ERC721A(names, symbols)  {
    seturi("https://www.luckybrats.xyz/tokens/");
    _safeMint(msg.sender,1);
  }

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

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



    function namechange(string memory namme) public  onlyOwner {
            names=namme;
  }
  
  
    function symbolchange(string memory symbolss) public  onlyOwner {
            symbols=symbolss;
  }
  function mint(uint256 _mintAmount) public payable {
    //Dynamic Price
    uint256 supply = totalSupply();
    // Normal requirements 
    if(conditions==true){
    require(publicsale==true, 'Sale is paused!');{
    if((supply<=1000) && (balanceOf(msg.sender) + _mintAmount<=maxLimitPerWallet)) {    
      require(supply + _mintAmount <= 1000, 'Max supply exceeded!');
      require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');
  }
    else{
       require( _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
       require(supply + _mintAmount <= supplyLimit, 'Max supply exceeded!');
       require(msg.value>=cost2*_mintAmount, "Insufficient ETH sent");    
    }
               _safeMint(_msgSender(), _mintAmount);

  }
    }

  else{    
    _safeMint(_msgSender(), _mintAmount);
  }
  
}



   function flipconditions() public onlyOwner {
conditions=!conditions;

  }

  

    

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

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

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

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

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




// sales toggle
  function setSaleStatus(bool _sale) public onlyOwner {
    publicsale = _sale;
  }

// max per tx
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

// pax per wallet
  function setmaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner {
    maxLimitPerWallet = _maxLimitPerWallet;
  }


// pax per wallet2


// price


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

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

// ================== Set Functions End =======================

// ================== Withdraw Function Start =======================
  
  function withdraw() public onlyOwner nonReentrant {
    //owner withdraw
                require(payable(msg.sender).send(address(this).balance));    
               
  }

// ================== Withdraw Function End=======================  

// ================== Read Functions Start =======================
 


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) override public view returns (string memory) {

     
        return string(abi.encodePacked(_baseURI(), "", uint256(tokenId).toString()));
    }
    

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":"conditions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipconditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"namme","type":"string"}],"name":"namechange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"names","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","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":"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":[{"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":"string","name":"symbolss","type":"string"}],"name":"symbolchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbols","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":"unrevealed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b91620005b2565b506611c37937e08000600c55612710600d55600f600e819055600390556010805461ffff1916600117905560408051808201909152600b8082526a4c75636b7920427261747360a81b60209092019182526200007a91601191620005b2565b5060408051808201909152600280825261262160f11b6020909201918252620000a691601291620005b2565b506013805460ff19166001179055348015620000c157600080fd5b5060118054620000d19062000658565b80601f0160208091040260200160405190810160405280929190818152602001828054620000ff9062000658565b8015620001505780601f10620001245761010080835404028352916020019162000150565b820191906000526020600020905b8154815290600101906020018083116200013257829003601f168201915b505050505060128054620001649062000658565b80601f0160208091040260200160405190810160405280929190818152602001828054620001929062000658565b8015620001e35780601f10620001b757610100808354040283529160200191620001e3565b820191906000526020600020905b815481529060010190602001808311620001c557829003601f168201915b50508451620001fd935060029250602086019150620005b2565b50805162000213906003906020840190620005b2565b5050600160005550620002263362000265565b6001600981905550620002526040518060600160405280602281526020016200272760229139620002b7565b6200025f3360016200032f565b62000742565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620003165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200032b90600a906020840190620005b2565b5050565b6200032b8282604051806020016040528060008152506200035160201b60201c565b6000546001600160a01b0384166200037b57604051622e076360e81b815260040160405180910390fd5b826000036200039d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1562000469575b60405182906001600160a01b0388169060009060008051602062002749833981519152908290a460018201916200042e90600090889087620004be565b6200044c576040516368d2bf6b60e11b815260040160405180910390fd5b808210620003f15782600054146200046357600080fd5b6200049e565b5b6040516001830192906001600160a01b0388169060009060008051602062002749833981519152908290a48082106200046a575b506000908155620004b8908583866001600160e01b038516565b50505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620004f590339089908890889060040162000694565b6020604051808303816000875af192505050801562000533575060408051601f3d908101601f1916820190925262000530918101906200070f565b60015b62000595573d80801562000564576040519150601f19603f3d011682016040523d82523d6000602084013e62000569565b606091505b5080516000036200058d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620005c09062000658565b90600052602060002090601f016020900481019282620005e457600085556200062f565b82601f10620005ff57805160ff19168380011785556200062f565b828001600101855582156200062f579182015b828111156200062f57825182559160200191906001019062000612565b506200063d92915062000641565b5090565b5b808211156200063d576000815560010162000642565b600181811c908216806200066d57607f821691505b6020821081036200068e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006e35785810182015185820160a001528101620006c5565b82811115620006f657600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200072257600080fd5b81516001600160e01b0319811681146200073b57600080fd5b9392505050565b611fd580620007526000396000f3fe6080604052600436106102505760003560e01c80637b19290711610139578063b88d4fde116100b6578063e0a808531161007a578063e0a808531461068f578063e35c59d0146106af578063e985e9c5146106c9578063eac989f814610712578063f2fde38b14610727578063f64849801461074757600080fd5b8063b88d4fde146105f5578063b94805a214610615578063c87b56dd1461062f578063d897833e1461064f578063d9f0a6711461066f57600080fd5b80639a1b2885116100fd5780639a1b28851461056c578063a0712d6814610582578063a22cb46514610595578063adec55ad146105b5578063b071401b146105d557600080fd5b80637b192907146104e15780638462151c146104f65780638da5cb5b1461052357806394354fd01461054157806395d89b411461055757600080fd5b806323b872dd116101d25780635a0b8b23116101965780635a0b8b23146104365780636352211e1461044c5780636f3c859f1461046c57806370a082311461048c578063715018a6146104ac5780637871e154146104c157600080fd5b806323b872dd146103ad5780633ccfd60b146103cd57806342842e0e146103e25780634b1e856614610402578063518302271461041757600080fd5b8063081812fc11610219578063081812fc146102f8578063095ea7b31461033057806318160ddd1461035057806319d1997a1461037757806321a3c2481461038d57600080fd5b806275770a1461025557806301ffc9a714610277578063056da048146102ac57806306fdde03146102ce57806307039ff9146102e3575b600080fd5b34801561026157600080fd5b50610275610270366004611a14565b610767565b005b34801561028357600080fd5b50610297610292366004611a43565b61079f565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c16107f1565b6040516102a39190611ab8565b3480156102da57600080fd5b506102c161087f565b3480156102ef57600080fd5b506102c1610911565b34801561030457600080fd5b50610318610313366004611a14565b61091e565b6040516001600160a01b0390911681526020016102a3565b34801561033c57600080fd5b5061027561034b366004611ae7565b610962565b34801561035c57600080fd5b5060015460005403600019015b6040519081526020016102a3565b34801561038357600080fd5b50610369600d5481565b34801561039957600080fd5b506102756103a8366004611a14565b610a34565b3480156103b957600080fd5b506102756103c8366004611b11565b610a63565b3480156103d957600080fd5b50610275610a73565b3480156103ee57600080fd5b506102756103fd366004611b11565b610b1f565b34801561040e57600080fd5b506102c1610b3a565b34801561042357600080fd5b5060105461029790610100900460ff1681565b34801561044257600080fd5b50610369600f5481565b34801561045857600080fd5b50610318610467366004611a14565b610b47565b34801561047857600080fd5b50610275610487366004611bd9565b610b52565b34801561049857600080fd5b506103696104a7366004611c22565b610b93565b3480156104b857600080fd5b50610275610be2565b3480156104cd57600080fd5b506102756104dc366004611c3d565b610c18565b3480156104ed57600080fd5b50610275610c85565b34801561050257600080fd5b50610516610511366004611c22565b610cc3565b6040516102a39190611c69565b34801561052f57600080fd5b506008546001600160a01b0316610318565b34801561054d57600080fd5b50610369600e5481565b34801561056357600080fd5b506102c1610db5565b34801561057857600080fd5b50610369600c5481565b610275610590366004611a14565b610dc4565b3480156105a157600080fd5b506102756105b0366004611cbd565b610fc8565b3480156105c157600080fd5b506102756105d0366004611bd9565b61105d565b3480156105e157600080fd5b506102756105f0366004611a14565b61109a565b34801561060157600080fd5b50610275610610366004611ce7565b6110c9565b34801561062157600080fd5b506010546102979060ff1681565b34801561063b57600080fd5b506102c161064a366004611a14565b611113565b34801561065b57600080fd5b5061027561066a366004611d63565b61114d565b34801561067b57600080fd5b5061027561068a366004611a14565b61118a565b34801561069b57600080fd5b506102756106aa366004611d63565b6111b9565b3480156106bb57600080fd5b506013546102979060ff1681565b3480156106d557600080fd5b506102976106e4366004611d7e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071e57600080fd5b506102c16111fd565b34801561073357600080fd5b50610275610742366004611c22565b61120a565b34801561075357600080fd5b50610275610762366004611bd9565b6112a5565b6008546001600160a01b0316331461079a5760405162461bcd60e51b815260040161079190611da8565b60405180910390fd5b600d55565b60006301ffc9a760e01b6001600160e01b0319831614806107d057506380ac58cd60e01b6001600160e01b03198316145b806107eb5750635b5e139f60e01b6001600160e01b03198316145b92915050565b601180546107fe90611ddd565b80601f016020809104026020016040519081016040528092919081815260200182805461082a90611ddd565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b505050505081565b60606002805461088e90611ddd565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba90611ddd565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b601280546107fe90611ddd565b6000610929826112e2565b610946576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061096d82611317565b9050806001600160a01b0316836001600160a01b0316036109a15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109d8576109bb81336106e4565b6109d8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610a5e5760405162461bcd60e51b815260040161079190611da8565b600c55565b610a6e83838361138d565b505050565b6008546001600160a01b03163314610a9d5760405162461bcd60e51b815260040161079190611da8565b600260095403610aef5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610791565b600260095560405133904780156108fc02916000818181858888f19350505050610b1857600080fd5b6001600955565b610a6e838383604051806020016040528060008152506110c9565b600b80546107fe90611ddd565b60006107eb82611317565b6008546001600160a01b03163314610b7c5760405162461bcd60e51b815260040161079190611da8565b8051610b8f90601290602084019061197b565b5050565b60006001600160a01b038216610bbc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161079190611da8565b610c166000611534565b565b6008546001600160a01b03163314610c425760405162461bcd60e51b815260040161079190611da8565b600d546001546000548491900360001901610c5d9190611e2d565b1115610c7b5760405162461bcd60e51b815260040161079190611e45565b610b8f8183611586565b6008546001600160a01b03163314610caf5760405162461bcd60e51b815260040161079190611da8565b6013805460ff19811660ff90911615179055565b60606000610cd083610b93565b67ffffffffffffffff811115610ce857610ce8611b4d565b604051908082528060200260200182016040528015610d11578160200160208202803683370190505b5090506000610d1f60005490565b905060008060005b83811015610daa576000610d3a826115a0565b9050806040015115610d4c5750610da2565b80516001600160a01b031615610d6157805192505b876001600160a01b0316836001600160a01b031603610da05781868580600101965081518110610d9357610d93611e73565b6020026020010181815250505b505b600101610d27565b509295945050505050565b60606003805461088e90611ddd565b6000610dd96001546000546000199190030190565b60135490915060ff161515600103610fbe5760105460ff161515600114610e345760405162461bcd60e51b815260206004820152600f60248201526e53616c65206973207061757365642160881b6044820152606401610791565b6103e88111158015610e5b5750600f5482610e4e33610b93565b610e589190611e2d565b11155b15610ef5576103e8610e6d8383611e2d565b1115610e8b5760405162461bcd60e51b815260040161079190611e45565b600f5482610e9833610b93565b610ea29190611e2d565b1115610ef05760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c6574206578636565646564210000006044820152606401610791565b610fbe565b600e54821115610f3e5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610791565b600d54610f4b8383611e2d565b1115610f695760405162461bcd60e51b815260040161079190611e45565b81600c54610f779190611e89565b341015610fbe5760405162461bcd60e51b8152602060048201526015602482015274125b9cdd59999a58da595b9d08115512081cd95b9d605a1b6044820152606401610791565b610b8f3383611586565b336001600160a01b03831603610ff15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146110875760405162461bcd60e51b815260040161079190611da8565b8051610b8f90601190602084019061197b565b6008546001600160a01b031633146110c45760405162461bcd60e51b815260040161079190611da8565b600e55565b6110d484848461138d565b6001600160a01b0383163b1561110d576110f08484848461160b565b61110d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061111d6116f7565b61112683611706565b604051602001611137929190611ea8565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146111775760405162461bcd60e51b815260040161079190611da8565b6010805460ff1916911515919091179055565b6008546001600160a01b031633146111b45760405162461bcd60e51b815260040161079190611da8565b600f55565b6008546001600160a01b031633146111e35760405162461bcd60e51b815260040161079190611da8565b601080549115156101000261ff0019909216919091179055565b600a80546107fe90611ddd565b6008546001600160a01b031633146112345760405162461bcd60e51b815260040161079190611da8565b6001600160a01b0381166112995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610791565b6112a281611534565b50565b6008546001600160a01b031633146112cf5760405162461bcd60e51b815260040161079190611da8565b8051610b8f90600a90602084019061197b565b6000816001111580156112f6575060005482105b80156107eb575050600090815260046020526040902054600160e01b161590565b60008180600111611374576000548110156113745760008181526004602052604081205490600160e01b82169003611372575b8060000361136b57506000190160008181526004602052604090205461134a565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600061139882611317565b9050836001600160a01b0316816001600160a01b0316146113cb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113e957506113e985336106e4565b806114045750336113f98461091e565b6001600160a01b0316145b90508061142457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661144b57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036114ec576001830160008181526004602052604081205490036114ea5760005481146114ea5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b8f828260405180602001604052806000815250611807565b60408051606081018252600080825260208201819052918101919091526000828152600460205260409020546107eb90604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611640903390899088908890600401611ed7565b6020604051808303816000875af192505050801561167b575060408051601f3d908101601f1916820190925261167891810190611f14565b60015b6116d9573d8080156116a9576040519150601f19603f3d011682016040523d82523d6000602084013e6116ae565b606091505b5080516000036116d1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461088e90611ddd565b60608160000361172d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611757578061174181611f31565b91506117509050600a83611f60565b9150611731565b60008167ffffffffffffffff81111561177257611772611b4d565b6040519080825280601f01601f19166020018201604052801561179c576020820181803683370190505b5090505b84156116ef576117b1600183611f74565b91506117be600a86611f8b565b6117c9906030611e2d565b60f81b8183815181106117de576117de611e73565b60200101906001600160f81b031916908160001a905350611800600a86611f60565b94506117a0565b6000546001600160a01b03841661183057604051622e076360e81b815260040160405180910390fd5b826000036118515760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611926575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118ef600087848060010195508761160b565b61190c576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118a457826000541461192157600080fd5b61196b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611927575b50600090815561110d9085838684565b82805461198790611ddd565b90600052602060002090601f0160209004810192826119a957600085556119ef565b82601f106119c257805160ff19168380011785556119ef565b828001600101855582156119ef579182015b828111156119ef5782518255916020019190600101906119d4565b506119fb9291506119ff565b5090565b5b808211156119fb5760008155600101611a00565b600060208284031215611a2657600080fd5b5035919050565b6001600160e01b0319811681146112a257600080fd5b600060208284031215611a5557600080fd5b813561136b81611a2d565b60005b83811015611a7b578181015183820152602001611a63565b8381111561110d5750506000910152565b60008151808452611aa4816020860160208601611a60565b601f01601f19169290920160200192915050565b60208152600061136b6020830184611a8c565b80356001600160a01b0381168114611ae257600080fd5b919050565b60008060408385031215611afa57600080fd5b611b0383611acb565b946020939093013593505050565b600080600060608486031215611b2657600080fd5b611b2f84611acb565b9250611b3d60208501611acb565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b7e57611b7e611b4d565b604051601f8501601f19908116603f01168101908282118183101715611ba657611ba6611b4d565b81604052809350858152868686011115611bbf57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611beb57600080fd5b813567ffffffffffffffff811115611c0257600080fd5b8201601f81018413611c1357600080fd5b6116ef84823560208401611b63565b600060208284031215611c3457600080fd5b61136b82611acb565b60008060408385031215611c5057600080fd5b82359150611c6060208401611acb565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611ca157835183529284019291840191600101611c85565b50909695505050505050565b80358015158114611ae257600080fd5b60008060408385031215611cd057600080fd5b611cd983611acb565b9150611c6060208401611cad565b60008060008060808587031215611cfd57600080fd5b611d0685611acb565b9350611d1460208601611acb565b925060408501359150606085013567ffffffffffffffff811115611d3757600080fd5b8501601f81018713611d4857600080fd5b611d5787823560208401611b63565b91505092959194509250565b600060208284031215611d7557600080fd5b61136b82611cad565b60008060408385031215611d9157600080fd5b611d9a83611acb565b9150611c6060208401611acb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611df157607f821691505b602082108103611e1157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e4057611e40611e17565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615611ea357611ea3611e17565b500290565b60008351611eba818460208801611a60565b835190830190611ece818360208801611a60565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f0a90830184611a8c565b9695505050505050565b600060208284031215611f2657600080fd5b815161136b81611a2d565b600060018201611f4357611f43611e17565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f6f57611f6f611f4a565b500490565b600082821015611f8657611f86611e17565b500390565b600082611f9a57611f9a611f4a565b50069056fea26469706673582212209b41216cbc4f064f739a541ea7752e1e9965225eb35427a5f91d022712ce2d5964736f6c634300080d003368747470733a2f2f7777772e6c75636b7962726174732e78797a2f746f6b656e732fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106102505760003560e01c80637b19290711610139578063b88d4fde116100b6578063e0a808531161007a578063e0a808531461068f578063e35c59d0146106af578063e985e9c5146106c9578063eac989f814610712578063f2fde38b14610727578063f64849801461074757600080fd5b8063b88d4fde146105f5578063b94805a214610615578063c87b56dd1461062f578063d897833e1461064f578063d9f0a6711461066f57600080fd5b80639a1b2885116100fd5780639a1b28851461056c578063a0712d6814610582578063a22cb46514610595578063adec55ad146105b5578063b071401b146105d557600080fd5b80637b192907146104e15780638462151c146104f65780638da5cb5b1461052357806394354fd01461054157806395d89b411461055757600080fd5b806323b872dd116101d25780635a0b8b23116101965780635a0b8b23146104365780636352211e1461044c5780636f3c859f1461046c57806370a082311461048c578063715018a6146104ac5780637871e154146104c157600080fd5b806323b872dd146103ad5780633ccfd60b146103cd57806342842e0e146103e25780634b1e856614610402578063518302271461041757600080fd5b8063081812fc11610219578063081812fc146102f8578063095ea7b31461033057806318160ddd1461035057806319d1997a1461037757806321a3c2481461038d57600080fd5b806275770a1461025557806301ffc9a714610277578063056da048146102ac57806306fdde03146102ce57806307039ff9146102e3575b600080fd5b34801561026157600080fd5b50610275610270366004611a14565b610767565b005b34801561028357600080fd5b50610297610292366004611a43565b61079f565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c16107f1565b6040516102a39190611ab8565b3480156102da57600080fd5b506102c161087f565b3480156102ef57600080fd5b506102c1610911565b34801561030457600080fd5b50610318610313366004611a14565b61091e565b6040516001600160a01b0390911681526020016102a3565b34801561033c57600080fd5b5061027561034b366004611ae7565b610962565b34801561035c57600080fd5b5060015460005403600019015b6040519081526020016102a3565b34801561038357600080fd5b50610369600d5481565b34801561039957600080fd5b506102756103a8366004611a14565b610a34565b3480156103b957600080fd5b506102756103c8366004611b11565b610a63565b3480156103d957600080fd5b50610275610a73565b3480156103ee57600080fd5b506102756103fd366004611b11565b610b1f565b34801561040e57600080fd5b506102c1610b3a565b34801561042357600080fd5b5060105461029790610100900460ff1681565b34801561044257600080fd5b50610369600f5481565b34801561045857600080fd5b50610318610467366004611a14565b610b47565b34801561047857600080fd5b50610275610487366004611bd9565b610b52565b34801561049857600080fd5b506103696104a7366004611c22565b610b93565b3480156104b857600080fd5b50610275610be2565b3480156104cd57600080fd5b506102756104dc366004611c3d565b610c18565b3480156104ed57600080fd5b50610275610c85565b34801561050257600080fd5b50610516610511366004611c22565b610cc3565b6040516102a39190611c69565b34801561052f57600080fd5b506008546001600160a01b0316610318565b34801561054d57600080fd5b50610369600e5481565b34801561056357600080fd5b506102c1610db5565b34801561057857600080fd5b50610369600c5481565b610275610590366004611a14565b610dc4565b3480156105a157600080fd5b506102756105b0366004611cbd565b610fc8565b3480156105c157600080fd5b506102756105d0366004611bd9565b61105d565b3480156105e157600080fd5b506102756105f0366004611a14565b61109a565b34801561060157600080fd5b50610275610610366004611ce7565b6110c9565b34801561062157600080fd5b506010546102979060ff1681565b34801561063b57600080fd5b506102c161064a366004611a14565b611113565b34801561065b57600080fd5b5061027561066a366004611d63565b61114d565b34801561067b57600080fd5b5061027561068a366004611a14565b61118a565b34801561069b57600080fd5b506102756106aa366004611d63565b6111b9565b3480156106bb57600080fd5b506013546102979060ff1681565b3480156106d557600080fd5b506102976106e4366004611d7e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561071e57600080fd5b506102c16111fd565b34801561073357600080fd5b50610275610742366004611c22565b61120a565b34801561075357600080fd5b50610275610762366004611bd9565b6112a5565b6008546001600160a01b0316331461079a5760405162461bcd60e51b815260040161079190611da8565b60405180910390fd5b600d55565b60006301ffc9a760e01b6001600160e01b0319831614806107d057506380ac58cd60e01b6001600160e01b03198316145b806107eb5750635b5e139f60e01b6001600160e01b03198316145b92915050565b601180546107fe90611ddd565b80601f016020809104026020016040519081016040528092919081815260200182805461082a90611ddd565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b505050505081565b60606002805461088e90611ddd565b80601f01602080910402602001604051908101604052809291908181526020018280546108ba90611ddd565b80156109075780601f106108dc57610100808354040283529160200191610907565b820191906000526020600020905b8154815290600101906020018083116108ea57829003601f168201915b5050505050905090565b601280546107fe90611ddd565b6000610929826112e2565b610946576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061096d82611317565b9050806001600160a01b0316836001600160a01b0316036109a15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109d8576109bb81336106e4565b6109d8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610a5e5760405162461bcd60e51b815260040161079190611da8565b600c55565b610a6e83838361138d565b505050565b6008546001600160a01b03163314610a9d5760405162461bcd60e51b815260040161079190611da8565b600260095403610aef5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610791565b600260095560405133904780156108fc02916000818181858888f19350505050610b1857600080fd5b6001600955565b610a6e838383604051806020016040528060008152506110c9565b600b80546107fe90611ddd565b60006107eb82611317565b6008546001600160a01b03163314610b7c5760405162461bcd60e51b815260040161079190611da8565b8051610b8f90601290602084019061197b565b5050565b60006001600160a01b038216610bbc576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161079190611da8565b610c166000611534565b565b6008546001600160a01b03163314610c425760405162461bcd60e51b815260040161079190611da8565b600d546001546000548491900360001901610c5d9190611e2d565b1115610c7b5760405162461bcd60e51b815260040161079190611e45565b610b8f8183611586565b6008546001600160a01b03163314610caf5760405162461bcd60e51b815260040161079190611da8565b6013805460ff19811660ff90911615179055565b60606000610cd083610b93565b67ffffffffffffffff811115610ce857610ce8611b4d565b604051908082528060200260200182016040528015610d11578160200160208202803683370190505b5090506000610d1f60005490565b905060008060005b83811015610daa576000610d3a826115a0565b9050806040015115610d4c5750610da2565b80516001600160a01b031615610d6157805192505b876001600160a01b0316836001600160a01b031603610da05781868580600101965081518110610d9357610d93611e73565b6020026020010181815250505b505b600101610d27565b509295945050505050565b60606003805461088e90611ddd565b6000610dd96001546000546000199190030190565b60135490915060ff161515600103610fbe5760105460ff161515600114610e345760405162461bcd60e51b815260206004820152600f60248201526e53616c65206973207061757365642160881b6044820152606401610791565b6103e88111158015610e5b5750600f5482610e4e33610b93565b610e589190611e2d565b11155b15610ef5576103e8610e6d8383611e2d565b1115610e8b5760405162461bcd60e51b815260040161079190611e45565b600f5482610e9833610b93565b610ea29190611e2d565b1115610ef05760405162461bcd60e51b815260206004820152601d60248201527f4d6178206d696e74207065722077616c6c6574206578636565646564210000006044820152606401610791565b610fbe565b600e54821115610f3e5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610791565b600d54610f4b8383611e2d565b1115610f695760405162461bcd60e51b815260040161079190611e45565b81600c54610f779190611e89565b341015610fbe5760405162461bcd60e51b8152602060048201526015602482015274125b9cdd59999a58da595b9d08115512081cd95b9d605a1b6044820152606401610791565b610b8f3383611586565b336001600160a01b03831603610ff15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146110875760405162461bcd60e51b815260040161079190611da8565b8051610b8f90601190602084019061197b565b6008546001600160a01b031633146110c45760405162461bcd60e51b815260040161079190611da8565b600e55565b6110d484848461138d565b6001600160a01b0383163b1561110d576110f08484848461160b565b61110d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061111d6116f7565b61112683611706565b604051602001611137929190611ea8565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146111775760405162461bcd60e51b815260040161079190611da8565b6010805460ff1916911515919091179055565b6008546001600160a01b031633146111b45760405162461bcd60e51b815260040161079190611da8565b600f55565b6008546001600160a01b031633146111e35760405162461bcd60e51b815260040161079190611da8565b601080549115156101000261ff0019909216919091179055565b600a80546107fe90611ddd565b6008546001600160a01b031633146112345760405162461bcd60e51b815260040161079190611da8565b6001600160a01b0381166112995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610791565b6112a281611534565b50565b6008546001600160a01b031633146112cf5760405162461bcd60e51b815260040161079190611da8565b8051610b8f90600a90602084019061197b565b6000816001111580156112f6575060005482105b80156107eb575050600090815260046020526040902054600160e01b161590565b60008180600111611374576000548110156113745760008181526004602052604081205490600160e01b82169003611372575b8060000361136b57506000190160008181526004602052604090205461134a565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600061139882611317565b9050836001600160a01b0316816001600160a01b0316146113cb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113e957506113e985336106e4565b806114045750336113f98461091e565b6001600160a01b0316145b90508061142457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661144b57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036114ec576001830160008181526004602052604081205490036114ea5760005481146114ea5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b8f828260405180602001604052806000815250611807565b60408051606081018252600080825260208201819052918101919091526000828152600460205260409020546107eb90604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611640903390899088908890600401611ed7565b6020604051808303816000875af192505050801561167b575060408051601f3d908101601f1916820190925261167891810190611f14565b60015b6116d9573d8080156116a9576040519150601f19603f3d011682016040523d82523d6000602084013e6116ae565b606091505b5080516000036116d1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461088e90611ddd565b60608160000361172d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611757578061174181611f31565b91506117509050600a83611f60565b9150611731565b60008167ffffffffffffffff81111561177257611772611b4d565b6040519080825280601f01601f19166020018201604052801561179c576020820181803683370190505b5090505b84156116ef576117b1600183611f74565b91506117be600a86611f8b565b6117c9906030611e2d565b60f81b8183815181106117de576117de611e73565b60200101906001600160f81b031916908160001a905350611800600a86611f60565b94506117a0565b6000546001600160a01b03841661183057604051622e076360e81b815260040160405180910390fd5b826000036118515760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611926575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118ef600087848060010195508761160b565b61190c576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118a457826000541461192157600080fd5b61196b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611927575b50600090815561110d9085838684565b82805461198790611ddd565b90600052602060002090601f0160209004810192826119a957600085556119ef565b82601f106119c257805160ff19168380011785556119ef565b828001600101855582156119ef579182015b828111156119ef5782518255916020019190600101906119d4565b506119fb9291506119ff565b5090565b5b808211156119fb5760008155600101611a00565b600060208284031215611a2657600080fd5b5035919050565b6001600160e01b0319811681146112a257600080fd5b600060208284031215611a5557600080fd5b813561136b81611a2d565b60005b83811015611a7b578181015183820152602001611a63565b8381111561110d5750506000910152565b60008151808452611aa4816020860160208601611a60565b601f01601f19169290920160200192915050565b60208152600061136b6020830184611a8c565b80356001600160a01b0381168114611ae257600080fd5b919050565b60008060408385031215611afa57600080fd5b611b0383611acb565b946020939093013593505050565b600080600060608486031215611b2657600080fd5b611b2f84611acb565b9250611b3d60208501611acb565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b7e57611b7e611b4d565b604051601f8501601f19908116603f01168101908282118183101715611ba657611ba6611b4d565b81604052809350858152868686011115611bbf57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611beb57600080fd5b813567ffffffffffffffff811115611c0257600080fd5b8201601f81018413611c1357600080fd5b6116ef84823560208401611b63565b600060208284031215611c3457600080fd5b61136b82611acb565b60008060408385031215611c5057600080fd5b82359150611c6060208401611acb565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015611ca157835183529284019291840191600101611c85565b50909695505050505050565b80358015158114611ae257600080fd5b60008060408385031215611cd057600080fd5b611cd983611acb565b9150611c6060208401611cad565b60008060008060808587031215611cfd57600080fd5b611d0685611acb565b9350611d1460208601611acb565b925060408501359150606085013567ffffffffffffffff811115611d3757600080fd5b8501601f81018713611d4857600080fd5b611d5787823560208401611b63565b91505092959194509250565b600060208284031215611d7557600080fd5b61136b82611cad565b60008060408385031215611d9157600080fd5b611d9a83611acb565b9150611c6060208401611acb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611df157607f821691505b602082108103611e1157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e4057611e40611e17565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615611ea357611ea3611e17565b500290565b60008351611eba818460208801611a60565b835190830190611ece818360208801611a60565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f0a90830184611a8c565b9695505050505050565b600060208284031215611f2657600080fd5b815161136b81611a2d565b600060018201611f4357611f43611e17565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f6f57611f6f611f4a565b500490565b600082821015611f8657611f86611e17565b500390565b600082611f9a57611f9a611f4a565b50069056fea26469706673582212209b41216cbc4f064f739a541ea7752e1e9965225eb35427a5f91d022712ce2d5964736f6c634300080d0033

Deployed Bytecode Sourcemap

46822:5017:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50071:102;;;;;;;;;;-1:-1:-1;50071:102:0;;;;;:::i;:::-;;:::i;:::-;;18062:615;;;;;;;;;;-1:-1:-1;18062:615:0;;;;;:::i;:::-;;:::i;:::-;;;750:14:1;;743:22;725:41;;713:2;698:18;18062:615:0;;;;;;;;47271:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23075:100::-;;;;;;;;;;;;;:::i;47310:27::-;;;;;;;;;;;;;:::i;25143:204::-;;;;;;;;;;-1:-1:-1;25143:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25143:204:0;1528:203:1;24603:474:0;;;;;;;;;;-1:-1:-1;24603:474:0;;;;;:::i;:::-;;:::i;17116:315::-;;;;;;;;;;-1:-1:-1;51452:1:0;17382:12;17169:7;17366:13;:28;-1:-1:-1;;17366:46:0;17116:315;;;2319:25:1;;;2307:2;2292:18;17116:315:0;2173:177:1;47081:34:0;;;;;;;;;;;;;;;;49968:78;;;;;;;;;;-1:-1:-1;49968:78:0;;;;;:::i;:::-;;:::i;26029:170::-;;;;;;;;;;-1:-1:-1;26029:170:0;;;;;:::i;:::-;;:::i;50321:174::-;;;;;;;;;;;;;:::i;26270:185::-;;;;;;;;;;-1:-1:-1;26270:185:0;;;;;:::i;:::-;;:::i;47009:28::-;;;;;;;;;;;;;:::i;47238:::-;;;;;;;;;;-1:-1:-1;47238:28:0;;;;;;;;;;;47163:36;;;;;;;;;;;;;;;;22864:144;;;;;;;;;;-1:-1:-1;22864:144:0;;;;;:::i;:::-;;:::i;47891:101::-;;;;;;;;;;-1:-1:-1;47891:101:0;;;;;:::i;:::-;;:::i;18741:224::-;;;;;;;;;;-1:-1:-1;18741:224:0;;;;;:::i;:::-;;:::i;45942:103::-;;;;;;;;;;;;;:::i;48979:202::-;;;;;;;;;;-1:-1:-1;48979:202:0;;;;;:::i;:::-;;:::i;48883:76::-;;;;;;;;;;;;;:::i;50646:712::-;;;;;;;;;;-1:-1:-1;50646:712:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45291:87::-;;;;;;;;;;-1:-1:-1;45364:6:0;;-1:-1:-1;;;;;45364:6:0;45291:87;;47120:38;;;;;;;;;;;;;;;;23244:104;;;;;;;;;;;;;:::i;47042:34::-;;;;;;;;;;;;;;;;47996:876;;;;;;:::i;:::-;;:::i;25419:308::-;;;;;;;;;;-1:-1:-1;25419:308:0;;;;;:::i;:::-;;:::i;47786:91::-;;;;;;;;;;-1:-1:-1;47786:91:0;;;;;:::i;:::-;;:::i;49641:130::-;;;;;;;;;;-1:-1:-1;49641:130:0;;;;;:::i;:::-;;:::i;26526:396::-;;;;;;;;;;-1:-1:-1;26526:396:0;;;;;:::i;:::-;;:::i;47204:29::-;;;;;;;;;;-1:-1:-1;47204:29:0;;;;;;;;51470:184;;;;;;;;;;-1:-1:-1;51470:184:0;;;;;:::i;:::-;;:::i;49537:83::-;;;;;;;;;;-1:-1:-1;49537:83:0;;;;;:::i;:::-;;:::i;49796:126::-;;;;;;;;;;-1:-1:-1;49796:126:0;;;;;:::i;:::-;;:::i;49337:81::-;;;;;;;;;;-1:-1:-1;49337:81:0;;;;;:::i;:::-;;:::i;47342:28::-;;;;;;;;;;-1:-1:-1;47342:28:0;;;;;;;;25798:164;;;;;;;;;;-1:-1:-1;25798:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25919:25:0;;;25895:4;25919:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25798:164;46987:17;;;;;;;;;;;;;:::i;46200:201::-;;;;;;;;;;-1:-1:-1;46200:201:0;;;;;:::i;:::-;;:::i;49432:76::-;;;;;;;;;;-1:-1:-1;49432:76:0;;;;;:::i;:::-;;:::i;50071:102::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;;;;;;;;;50141:11:::1;:26:::0;50071:102::o;18062:615::-;18147:4;-1:-1:-1;;;;;;;;;18447:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18524:25:0;;;18447:102;:179;;;-1:-1:-1;;;;;;;;;;18601:25:0;;;18447:179;18427:199;18062:615;-1:-1:-1;;18062:615:0:o;47271:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23075:100::-;23129:13;23162:5;23155:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23075:100;:::o;47310:27::-;;;;;;;:::i;25143:204::-;25211:7;25236:16;25244:7;25236;:16::i;:::-;25231:64;;25261:34;;-1:-1:-1;;;25261:34:0;;;;;;;;;;;25231:64;-1:-1:-1;25315:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25315:24:0;;25143:204::o;24603:474::-;24676:13;24708:27;24727:7;24708:18;:27::i;:::-;24676:61;;24758:5;-1:-1:-1;;;;;24752:11:0;:2;-1:-1:-1;;;;;24752:11:0;;24748:48;;24772:24;;-1:-1:-1;;;24772:24:0;;;;;;;;;;;24748:48;44095:10;-1:-1:-1;;;;;24813:28:0;;;24809:175;;24861:44;24878:5;44095:10;25798:164;:::i;24861:44::-;24856:128;;24933:35;;-1:-1:-1;;;24933:35:0;;;;;;;;;;;24856:128;24996:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24996:29:0;-1:-1:-1;;;;;24996:29:0;;;;;;;;;25041:28;;24996:24;;25041:28;;;;;;;24665:412;24603:474;;:::o;49968:78::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;50026:5:::1;:14:::0;49968:78::o;26029:170::-;26163:28;26173:4;26179:2;26183:7;26163:9;:28::i;:::-;26029:170;;;:::o;50321:174::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;1918:1:::1;2516:7;;:19:::0;2508:63:::1;;;::::0;-1:-1:-1;;;2508:63:0;;7494:2:1;2508:63:0::1;::::0;::::1;7476:21:1::0;7533:2;7513:18;;;7506:30;7572:33;7552:18;;;7545:61;7623:18;;2508:63:0::1;7292:355:1::0;2508:63:0::1;1918:1;2649:7;:18:::0;50420:47:::2;::::0;50428:10:::2;::::0;50445:21:::2;50420:47:::0;::::2;;;::::0;::::2;::::0;;;50445:21;50428:10;50420:47;::::2;;;;;;50412:56;;;::::0;::::2;;1874:1:::1;2828:7;:22:::0;50321:174::o;26270:185::-;26408:39;26425:4;26431:2;26435:7;26408:39;;;;;;;;;;;;:16;:39::i;47009:28::-;;;;;;;:::i;22864:144::-;22928:7;22971:27;22990:7;22971:18;:27::i;47891:101::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;47970:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47891:101:::0;:::o;18741:224::-;18805:7;-1:-1:-1;;;;;18829:19:0;;18825:60;;18857:28;;-1:-1:-1;;;18857:28:0;;;;;;;;;;;18825:60;-1:-1:-1;;;;;;18903:25:0;;;;;:18;:25;;;;;;14080:13;18903:54;;18741:224::o;45942:103::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;46007:30:::1;46034:1;46007:18;:30::i;:::-;45942:103::o:0;48979:202::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;49099:11:::1;::::0;51452:1;17382:12;17169:7;17366:13;49084:11;;17366:28;;-1:-1:-1;;17366:46:0;49068:27:::1;;;;:::i;:::-;:42;;49060:75;;;;-1:-1:-1::0;;;49060:75:0::1;;;;;;;:::i;:::-;49142:33;49152:9;49163:11;49142:9;:33::i;48883:76::-:0;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;48941:10:::1;::::0;;-1:-1:-1;;48929:22:0;::::1;48941:10;::::0;;::::1;48940:11;48929:22;::::0;;48883:76::o;50646:712::-;50707:16;50753:18;50788:16;50798:5;50788:9;:16::i;:::-;50774:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50774:31:0;;50753:52;;50817:11;50831:14;16857:7;16884:13;;16810:95;50831:14;50817:28;;50856:19;50886:25;50927:9;50922:403;50942:3;50938:1;:7;50922:403;;;50967:31;51001:15;51014:1;51001:12;:15::i;:::-;50967:49;;51035:9;:16;;;51031:65;;;51072:8;;;51031:65;51114:14;;-1:-1:-1;;;;;51114:28:0;;51110:103;;51183:14;;;-1:-1:-1;51110:103:0;51252:5;-1:-1:-1;;;;;51231:26:0;:17;-1:-1:-1;;;;;51231:26:0;;51227:87;;51297:1;51278;51280:13;;;;;;51278:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;51227:87;50952:373;50922:403;50947:3;;50922:403;;;-1:-1:-1;51342:1:0;;50646:712;-1:-1:-1;;;;;50646:712:0:o;23244:104::-;23300:13;23333:7;23326:14;;;;;:::i;47996:876::-;48074:14;48091:13;51452:1;17382:12;17169:7;17366:13;-1:-1:-1;;17366:28:0;;;:46;;17116:315;48091:13;48143:10;;48074:30;;-1:-1:-1;48143:10:0;;:16;;:10;:16;48140:725;;48175:10;;;;:16;;:10;:16;48167:44;;;;-1:-1:-1;;;48167:44:0;;8600:2:1;48167:44:0;;;8582:21:1;8639:2;8619:18;;;8612:30;-1:-1:-1;;;8658:18:1;;;8651:45;8713:18;;48167:44:0;8398:339:1;48167:44:0;48231:4;48223:6;:12;;48222:74;;;;;48278:17;;48265:11;48241:21;48251:10;48241:9;:21::i;:::-;:35;;;;:::i;:::-;:54;;48222:74;48219:515;;;48343:4;48319:20;48328:11;48319:6;:20;:::i;:::-;:28;;48311:61;;;;-1:-1:-1;;;48311:61:0;;;;;;;:::i;:::-;48428:17;;48413:11;48389:21;48399:10;48389:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;48381:98;;;;-1:-1:-1;;;48381:98:0;;8944:2:1;48381:98:0;;;8926:21:1;8983:2;8963:18;;;8956:30;9022:31;9002:18;;;8995:59;9071:18;;48381:98:0;8742:353:1;48381:98:0;48219:515;;;48529:18;;48514:11;:33;;48505:67;;;;-1:-1:-1;;;48505:67:0;;9302:2:1;48505:67:0;;;9284:21:1;9341:2;9321:18;;;9314:30;-1:-1:-1;;;9360:18:1;;;9353:50;9420:18;;48505:67:0;9100:344:1;48505:67:0;48614:11;;48590:20;48599:11;48590:6;:20;:::i;:::-;:35;;48582:68;;;;-1:-1:-1;;;48582:68:0;;;;;;;:::i;:::-;48685:11;48679:5;;:17;;;;:::i;:::-;48668:9;:28;;48660:62;;;;-1:-1:-1;;;48660:62:0;;9824:2:1;48660:62:0;;;9806:21:1;9863:2;9843:18;;;9836:30;-1:-1:-1;;;9882:18:1;;;9875:51;9943:18;;48660:62:0;9622:345:1;48660:62:0;48751:36;44095:10;48775:11;48751:9;:36::i;25419:308::-;44095:10;-1:-1:-1;;;;;25518:31:0;;;25514:61;;25558:17;;-1:-1:-1;;;25558:17:0;;;;;;;;;;;25514:61;44095:10;25588:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;25588:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;25588:60:0;;;;;;;;;;25664:55;;725:41:1;;;25588:49:0;;44095:10;25664:55;;698:18:1;25664:55:0;;;;;;;25419:308;;:::o;47786:91::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;47860:11;;::::1;::::0;:5:::1;::::0;:11:::1;::::0;::::1;::::0;::::1;:::i;49641:130::-:0;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;49725:18:::1;:40:::0;49641:130::o;26526:396::-;26693:28;26703:4;26709:2;26713:7;26693:9;:28::i;:::-;-1:-1:-1;;;;;26736:14:0;;;:19;26732:183;;26775:56;26806:4;26812:2;26816:7;26825:5;26775:30;:56::i;:::-;26770:145;;26859:40;;-1:-1:-1;;;26859:40:0;;;;;;;;;;;26770:145;26526:396;;;;:::o;51470:184::-;51535:13;51601:10;:8;:10::i;:::-;51617:27;51625:7;51617:25;:27::i;:::-;51584:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51570:76;;51470:184;;;:::o;49537:83::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;49596:10:::1;:18:::0;;-1:-1:-1;;49596:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49537:83::o;49796:126::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;49878:17:::1;:38:::0;49796:126::o;49337:81::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;49395:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;49395:17:0;;::::1;::::0;;;::::1;::::0;;49337:81::o;46987:17::-;;;;;;;:::i;46200:201::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46289:22:0;::::1;46281:73;;;::::0;-1:-1:-1;;;46281:73:0;;10750:2:1;46281:73:0::1;::::0;::::1;10732:21:1::0;10789:2;10769:18;;;10762:30;10828:34;10808:18;;;10801:62;-1:-1:-1;;;10879:18:1;;;10872:36;10925:19;;46281:73:0::1;10548:402:1::0;46281:73:0::1;46365:28;46384:8;46365:18;:28::i;:::-;46200:201:::0;:::o;49432:76::-;45364:6;;-1:-1:-1;;;;;45364:6:0;44095:10;45511:23;45503:68;;;;-1:-1:-1;;;45503:68:0;;;;;;;:::i;:::-;49492:10;;::::1;::::0;:3:::1;::::0;:10:::1;::::0;::::1;::::0;::::1;:::i;27177:273::-:0;27234:4;27290:7;51452:1;27271:26;;:66;;;;;27324:13;;27314:7;:23;27271:66;:152;;;;-1:-1:-1;;27375:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27375:43:0;:48;;27177:273::o;20379:1129::-;20446:7;20481;;51452:1;20530:23;20526:915;;20583:13;;20576:4;:20;20572:869;;;20621:14;20638:23;;;:17;:23;;;;;;;-1:-1:-1;;;20727:23:0;;:28;;20723:699;;21246:113;21253:6;21263:1;21253:11;21246:113;;-1:-1:-1;;;21324:6:0;21306:25;;;;:17;:25;;;;;;21246:113;;;21392:6;20379:1129;-1:-1:-1;;;20379:1129:0:o;20723:699::-;20598:843;20572:869;21469:31;;-1:-1:-1;;;21469:31:0;;;;;;;;;;;32416:2515;32531:27;32561;32580:7;32561:18;:27::i;:::-;32531:57;;32646:4;-1:-1:-1;;;;;32605:45:0;32621:19;-1:-1:-1;;;;;32605:45:0;;32601:86;;32659:28;;-1:-1:-1;;;32659:28:0;;;;;;;;;;;32601:86;32700:22;44095:10;-1:-1:-1;;;;;32726:27:0;;;;:87;;-1:-1:-1;32770:43:0;32787:4;44095:10;25798:164;:::i;32770:43::-;32726:147;;;-1:-1:-1;44095:10:0;32830:20;32842:7;32830:11;:20::i;:::-;-1:-1:-1;;;;;32830:43:0;;32726:147;32700:174;;32892:17;32887:66;;32918:35;;-1:-1:-1;;;32918:35:0;;;;;;;;;;;32887:66;-1:-1:-1;;;;;32968:16:0;;32964:52;;32993:23;;-1:-1:-1;;;32993:23:0;;;;;;;;;;;32964:52;33145:24;;;;:15;:24;;;;;;;;33138:31;;-1:-1:-1;;;;;;33138:31:0;;;-1:-1:-1;;;;;33537:24:0;;;;;:18;:24;;;;;33535:26;;-1:-1:-1;;33535:26:0;;;33606:22;;;;;;;33604:24;;-1:-1:-1;33604:24:0;;;33899:26;;;:17;:26;;;;;-1:-1:-1;;;33987:15:0;14734:3;33987:41;33945:84;;:128;;33899:174;;;34193:46;;:51;;34189:626;;34297:1;34287:11;;34265:19;34420:30;;;:17;:30;;;;;;:35;;34416:384;;34558:13;;34543:11;:28;34539:242;;34705:30;;;;:17;:30;;;;;:52;;;34539:242;34246:569;34189:626;34862:7;34858:2;-1:-1:-1;;;;;34843:27:0;34852:4;-1:-1:-1;;;;;34843:27:0;;;;;;;;;;;32520:2411;;32416:2515;;;:::o;46561:191::-;46654:6;;;-1:-1:-1;;;;;46671:17:0;;;-1:-1:-1;;;;;;46671:17:0;;;;;;;46704:40;;46654:6;;;46671:17;46654:6;;46704:40;;46635:16;;46704:40;46624:128;46561:191;:::o;27534:104::-;27603:27;27613:2;27617:8;27603:27;;;;;;;;;;;;:9;:27::i;21988:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;22108:24:0;;;;:17;:24;;;;;;22089:44;;-1:-1:-1;;;;;;;;;;;;;21712:41:0;;;;14734:3;21798:32;;;21764:67;;-1:-1:-1;;;21764:67:0;-1:-1:-1;;;21861:23:0;;;:28;;-1:-1:-1;;;21842:47:0;-1:-1:-1;21602:295:0;38628:716;38812:88;;-1:-1:-1;;;38812:88:0;;38791:4;;-1:-1:-1;;;;;38812:45:0;;;;;:88;;44095:10;;38879:4;;38885:7;;38894:5;;38812:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38812:88:0;;;;;;;;-1:-1:-1;;38812:88:0;;;;;;;;;;;;:::i;:::-;;;38808:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39095:6;:13;39112:1;39095:18;39091:235;;39141:40;;-1:-1:-1;;;39141:40:0;;;;;;;;;;;39091:235;39284:6;39278:13;39269:6;39265:2;39261:15;39254:38;38808:529;-1:-1:-1;;;;;;38971:64:0;-1:-1:-1;;;38971:64:0;;-1:-1:-1;38808:529:0;38628:716;;;;;;:::o;51666:98::-;51726:13;51755:3;51748:10;;;;;:::i;3230:723::-;3286:13;3507:5;3516:1;3507:10;3503:53;;-1:-1:-1;;3534:10:0;;;;;;;;;;;;-1:-1:-1;;;3534:10:0;;;;;3230:723::o;3503:53::-;3581:5;3566:12;3622:78;3629:9;;3622:78;;3655:8;;;;:::i;:::-;;-1:-1:-1;3678:10:0;;-1:-1:-1;3686:2:0;3678:10;;:::i;:::-;;;3622:78;;;3710:19;3742:6;3732:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3732:17:0;;3710:39;;3760:154;3767:10;;3760:154;;3794:11;3804:1;3794:11;;:::i;:::-;;-1:-1:-1;3863:10:0;3871:2;3863:5;:10;:::i;:::-;3850:24;;:2;:24;:::i;:::-;3837:39;;3820:6;3827;3820:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3820:56:0;;;;;;;;-1:-1:-1;3891:11:0;3900:2;3891:11;;:::i;:::-;;;3760:154;;28011:2236;28134:20;28157:13;-1:-1:-1;;;;;28185:16:0;;28181:48;;28210:19;;-1:-1:-1;;;28210:19:0;;;;;;;;;;;28181:48;28244:8;28256:1;28244:13;28240:44;;28266:18;;-1:-1:-1;;;28266:18:0;;;;;;;;;;;28240:44;-1:-1:-1;;;;;28833:22:0;;;;;;:18;:22;;;;14217:2;28833:22;;;:70;;28871:31;28859:44;;28833:70;;;29146:31;;;:17;:31;;;;;29239:15;14734:3;29239:41;29197:84;;-1:-1:-1;29317:13:0;;14997:3;29302:56;29197:162;29146:213;;:31;;29440:23;;;;29484:14;:19;29480:635;;29524:313;29555:38;;29580:12;;-1:-1:-1;;;;;29555:38:0;;;29572:1;;29555:38;;29572:1;;29555:38;29621:69;29660:1;29664:2;29668:14;;;;;;29684:5;29621:30;:69::i;:::-;29616:174;;29726:40;;-1:-1:-1;;;29726:40:0;;;;;;;;;;;29616:174;29832:3;29817:12;:18;29524:313;;29918:12;29901:13;;:29;29897:43;;29932:8;;;29897:43;29480:635;;;29981:119;30012:40;;30037:14;;;;;-1:-1:-1;;;;;30012:40:0;;;30029:1;;30012:40;;30029:1;;30012:40;30095:3;30080:12;:18;29981:119;;29480:635;-1:-1:-1;30129:13:0;:28;;;30179:60;;30212:2;30216:12;30230:8;30179: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;1833:70;1736:173;;;:::o;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;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;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;7652:127::-;7713:10;7708:3;7704:20;7701:1;7694:31;7744:4;7741:1;7734:15;7768:4;7765:1;7758:15;7784:128;7824:3;7855:1;7851:6;7848:1;7845:13;7842:39;;;7861:18;;:::i;:::-;-1:-1:-1;7897:9:1;;7784:128::o;7917:344::-;8119:2;8101:21;;;8158:2;8138:18;;;8131:30;-1:-1:-1;;;8192:2:1;8177:18;;8170:50;8252:2;8237:18;;7917:344::o;8266:127::-;8327:10;8322:3;8318:20;8315:1;8308:31;8358:4;8355:1;8348:15;8382:4;8379:1;8372:15;9449:168;9489:7;9555:1;9551;9547:6;9543:14;9540:1;9537:21;9532:1;9525:9;9518:17;9514:45;9511:71;;;9562:18;;:::i;:::-;-1:-1:-1;9602:9:1;;9449:168::o;9972:571::-;10252:3;10290:6;10284:13;10306:53;10352:6;10347:3;10340:4;10332:6;10328:17;10306:53;:::i;:::-;10422:13;;10381:16;;;;10444:57;10422:13;10381:16;10478:4;10466:17;;10444:57;:::i;:::-;10517:20;;9972:571;-1:-1:-1;;;;9972:571:1:o;10955:489::-;-1:-1:-1;;;;;11224:15:1;;;11206:34;;11276:15;;11271:2;11256:18;;11249:43;11323:2;11308:18;;11301:34;;;11371:3;11366:2;11351:18;;11344:31;;;11149:4;;11392:46;;11418:19;;11410:6;11392:46;:::i;:::-;11384:54;10955:489;-1:-1:-1;;;;;;10955:489:1:o;11449:249::-;11518:6;11571:2;11559:9;11550:7;11546:23;11542:32;11539:52;;;11587:1;11584;11577:12;11539:52;11619:9;11613:16;11638:30;11662:5;11638:30;:::i;11703:135::-;11742:3;11763:17;;;11760:43;;11783:18;;:::i;:::-;-1:-1:-1;11830:1:1;11819:13;;11703:135::o;11843:127::-;11904:10;11899:3;11895:20;11892:1;11885:31;11935:4;11932:1;11925:15;11959:4;11956:1;11949:15;11975:120;12015:1;12041;12031:35;;12046:18;;:::i;:::-;-1:-1:-1;12080:9:1;;11975:120::o;12100:125::-;12140:4;12168:1;12165;12162:8;12159:34;;;12173:18;;:::i;:::-;-1:-1:-1;12210:9:1;;12100:125::o;12230:112::-;12262:1;12288;12278:35;;12293:18;;:::i;:::-;-1:-1:-1;12327:9:1;;12230:112::o

Swarm Source

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