ETH Price: $3,419.49 (+2.46%)
Gas: 5 Gwei

Token

Save The Brain (STB)
 

Overview

Max Total Supply

5,678 STB

Holders

1,075

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 STB
0x142465967d1d29df61b2c53b421a31fbf7091da2
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:
SaveTheBrain

Compiler Version
v0.8.7+commit.e28d00a7

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

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

// SPDX-License-Identifier: MIT
// 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: 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/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: contracts/SaveTheBrain.sol


pragma solidity ^0.8.4;




contract SaveTheBrain is ERC721A, Ownable{

    using Strings for uint256;

    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

//Create mint setters and price 

    uint256 public cost = 0.003 ether;
    uint256 public freeSupply = 5000;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmountPerTx = 5;
    uint256 public maxFreeMint = 5;
    uint256 public mintLimit = 25;

//Create Setters for status

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

//Create constructor contract name and symbol

  constructor() ERC721A("Save The Brain", "STB") {
    setHiddenMetadataUri("ipfs://QmX1dwomPwYfD1Mog8RV8kwQhUoC7c7EU1yen1EW79UbpZ/hiddengif.json");
  }

//Mint compliance

  modifier mintCompliance(uint256 quantity) {
    require(totalSupply() + quantity <= maxSupply, "Max supply exceeded!");
    require(tx.origin == msg.sender,"Contracts forbidden from minting!");
    require(numberMinted(msg.sender) + quantity <= mintLimit,"Mint limit exceeded!");
    _;
  }
//Set minting functions

  function freeMint(uint256 quantity) public payable mintCompliance(quantity) {
    require(!paused, "The contract is paused!");
    require(totalSupply() + quantity <= freeSupply,"Not enough free supply!");
    require(numberMinted(msg.sender) + quantity <= maxFreeMint,"Free mint limit exceeded!");
        _safeMint(msg.sender, quantity);
    }

  function devMint(uint256 quantity) external onlyOwner {
    require(totalSupply() + quantity <= maxSupply, "Max supply exceeded!");
        _safeMint(msg.sender, quantity);
    }

  function mint(uint256 quantity) public payable mintCompliance(quantity) {
    require(quantity > 0 && quantity <= maxMintAmountPerTx, "Invalid mint amount!");
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * quantity, "Insufficient funds!");
        _safeMint(msg.sender, quantity);
  
  }
//View wallet owners tokens

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }
///Hidden metadata unless revealed

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

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

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

  }


/////Esential Functions


  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
  function setMintLimit(uint256 _mintLimit) public onlyOwner {
    mintLimit = _mintLimit;
  }
  function setMaxFreeMint(uint256 _maxFreeMint) public onlyOwner {
    maxFreeMint = _maxFreeMint;
  }

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

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }
  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }
  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }


//Withdraw functions

  function withdraw() public onlyOwner {
    // =============================================================================
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

//Virtual memory string returned

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

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":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMint","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600991620001fa565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a91620001fa565b50660aa87bee538000600c55611388600d55612710600e556005600f81905560105560196011556012805461ffff191660011790553480156200008c57600080fd5b50604080518082018252600e81526d29b0bb32902a343290213930b4b760911b60208083019182528351808501909452600384526229aa2160e91b908401528151919291620000de91600291620001fa565b508051620000f4906003906020840190620001fa565b50506000805550620001063362000130565b6200012a604051806080016040528060448152602001620025886044913962000182565b620002dd565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001f690600b906020840190620001fa565b5050565b8280546200020890620002a0565b90600052602060002090601f0160209004810192826200022c576000855562000277565b82601f106200024757805160ff191683800117855562000277565b8280016001018555821562000277579182015b82811115620002775782518255916020019190600101906200025a565b506200028592915062000289565b5090565b5b808211156200028557600081556001016200028a565b600181811c90821680620002b557607f821691505b60208210811415620002d757634e487b7160e01b600052602260045260246000fd5b50919050565b61229b80620002ed6000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd146106af578063d5abeb01146106cf578063dc33e681146106e5578063e0a8085314610705578063e985e9c514610725578063f2fde38b1461076e57600080fd5b8063a22cb46514610624578063a45ba8e714610644578063a591252d14610659578063b071401b1461066f578063b88d4fde1461068f57600080fd5b80638da5cb5b116101085780638da5cb5b1461059257806394354fd0146105b057806395d89b41146105c6578063996517cf146105db5780639e6a1d7d146105f1578063a0712d681461061157600080fd5b806370a082311461050a578063715018a61461052a578063742a4c9b1461053f5780637c928fe91461055f5780637ec4a6591461057257600080fd5b8063375a069a116101dd5780634fdd43cb116101a15780634fdd43cb1461046757806351830227146104875780635503a0e8146104a65780635c975abb146104bb57806362b99ad4146104d55780636352211e146104ea57600080fd5b8063375a069a146103c55780633ccfd60b146103e557806342842e0e146103fa578063438b63001461041a57806344a0d68a1461044757600080fd5b806316ba10e01161022457806316ba10e01461033657806316c38b3c1461035657806318160ddd1461037657806323b872dd1461038f57806324a6ab0c146103af57600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806313faede614610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611e3b565b61078e565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107e0565b60405161028d9190612048565b3480156102c457600080fd5b506102d86102d3366004611ebe565b610872565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611df6565b6108b6565b005b34801561031e57600080fd5b50610328600c5481565b60405190815260200161028d565b34801561034257600080fd5b50610310610351366004611e75565b610989565b34801561036257600080fd5b50610310610371366004611e20565b6109d3565b34801561038257600080fd5b5060015460005403610328565b34801561039b57600080fd5b506103106103aa366004611d14565b610a10565b3480156103bb57600080fd5b50610328600d5481565b3480156103d157600080fd5b506103106103e0366004611ebe565b610a20565b3480156103f157600080fd5b50610310610a90565b34801561040657600080fd5b50610310610415366004611d14565b610b2b565b34801561042657600080fd5b5061043a610435366004611cc6565b610b46565b60405161028d9190612004565b34801561045357600080fd5b50610310610462366004611ebe565b610c27565b34801561047357600080fd5b50610310610482366004611e75565b610c56565b34801561049357600080fd5b5060125461028190610100900460ff1681565b3480156104b257600080fd5b506102ab610c93565b3480156104c757600080fd5b506012546102819060ff1681565b3480156104e157600080fd5b506102ab610d21565b3480156104f657600080fd5b506102d8610505366004611ebe565b610d2e565b34801561051657600080fd5b50610328610525366004611cc6565b610d39565b34801561053657600080fd5b50610310610d88565b34801561054b57600080fd5b5061031061055a366004611ebe565b610dbe565b61031061056d366004611ebe565b610ded565b34801561057e57600080fd5b5061031061058d366004611e75565b610fc7565b34801561059e57600080fd5b506008546001600160a01b03166102d8565b3480156105bc57600080fd5b50610328600f5481565b3480156105d257600080fd5b506102ab611004565b3480156105e757600080fd5b5061032860115481565b3480156105fd57600080fd5b5061031061060c366004611ebe565b611013565b61031061061f366004611ebe565b611042565b34801561063057600080fd5b5061031061063f366004611dcc565b6111ec565b34801561065057600080fd5b506102ab611282565b34801561066557600080fd5b5061032860105481565b34801561067b57600080fd5b5061031061068a366004611ebe565b61128f565b34801561069b57600080fd5b506103106106aa366004611d50565b6112be565b3480156106bb57600080fd5b506102ab6106ca366004611ebe565b611308565b3480156106db57600080fd5b50610328600e5481565b3480156106f157600080fd5b50610328610700366004611cc6565b611477565b34801561071157600080fd5b50610310610720366004611e20565b6114a2565b34801561073157600080fd5b50610281610740366004611ce1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561077a57600080fd5b50610310610789366004611cc6565b6114e6565b60006301ffc9a760e01b6001600160e01b0319831614806107bf57506380ac58cd60e01b6001600160e01b03198316145b806107da5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107ef9061218d565b80601f016020809104026020016040519081016040528092919081815260200182805461081b9061218d565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d8261157e565b61089a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108c1826115a5565b9050806001600160a01b0316836001600160a01b031614156108f65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461092d576109108133610740565b61092d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146109bc5760405162461bcd60e51b81526004016109b39061209c565b60405180910390fd5b80516109cf90600a906020840190611b8b565b5050565b6008546001600160a01b031633146109fd5760405162461bcd60e51b81526004016109b39061209c565b6012805460ff1916911515919091179055565b610a1b838383611606565b505050565b6008546001600160a01b03163314610a4a5760405162461bcd60e51b81526004016109b39061209c565b600e5481610a5b6001546000540390565b610a6591906120ff565b1115610a835760405162461bcd60e51b81526004016109b3906120d1565b610a8d33826117a9565b50565b6008546001600160a01b03163314610aba5760405162461bcd60e51b81526004016109b39061209c565b6000610ace6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b18576040519150601f19603f3d011682016040523d82523d6000602084013e610b1d565b606091505b5050905080610a8d57600080fd5b610a1b838383604051806020016040528060008152506112be565b60606000610b5383610d39565b905060008167ffffffffffffffff811115610b7057610b70612239565b604051908082528060200260200182016040528015610b99578160200160208202803683370190505b509050600160005b8381108015610bb25750600e548211155b15610c1d576000610bc283610d2e565b9050866001600160a01b0316816001600160a01b03161415610c0a5782848381518110610bf157610bf1612223565b602090810291909101015281610c06816121c8565b9250505b82610c14816121c8565b93505050610ba1565b5090949350505050565b6008546001600160a01b03163314610c515760405162461bcd60e51b81526004016109b39061209c565b600c55565b6008546001600160a01b03163314610c805760405162461bcd60e51b81526004016109b39061209c565b80516109cf90600b906020840190611b8b565b600a8054610ca09061218d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccc9061218d565b8015610d195780601f10610cee57610100808354040283529160200191610d19565b820191906000526020600020905b815481529060010190602001808311610cfc57829003601f168201915b505050505081565b60098054610ca09061218d565b60006107da826115a5565b60006001600160a01b038216610d62576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610db25760405162461bcd60e51b81526004016109b39061209c565b610dbc60006117c3565b565b6008546001600160a01b03163314610de85760405162461bcd60e51b81526004016109b39061209c565b601055565b80600e5481610dff6001546000540390565b610e0991906120ff565b1115610e275760405162461bcd60e51b81526004016109b3906120d1565b323314610e465760405162461bcd60e51b81526004016109b39061205b565b60115481610e5333611477565b610e5d91906120ff565b1115610ea25760405162461bcd60e51b81526020600482015260146024820152734d696e74206c696d69742065786365656465642160601b60448201526064016109b3565b60125460ff1615610eef5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109b3565b600d5482610f006001546000540390565b610f0a91906120ff565b1115610f585760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768206672656520737570706c792100000000000000000060448201526064016109b3565b60105482610f6533611477565b610f6f91906120ff565b1115610fbd5760405162461bcd60e51b815260206004820152601960248201527f46726565206d696e74206c696d6974206578636565646564210000000000000060448201526064016109b3565b6109cf33836117a9565b6008546001600160a01b03163314610ff15760405162461bcd60e51b81526004016109b39061209c565b80516109cf906009906020840190611b8b565b6060600380546107ef9061218d565b6008546001600160a01b0316331461103d5760405162461bcd60e51b81526004016109b39061209c565b601155565b80600e54816110546001546000540390565b61105e91906120ff565b111561107c5760405162461bcd60e51b81526004016109b3906120d1565b32331461109b5760405162461bcd60e51b81526004016109b39061205b565b601154816110a833611477565b6110b291906120ff565b11156110f75760405162461bcd60e51b81526020600482015260146024820152734d696e74206c696d69742065786365656465642160601b60448201526064016109b3565b6000821180156111095750600f548211155b61114c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109b3565b60125460ff16156111995760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109b3565b81600c546111a7919061212b565b341015610fbd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109b3565b6001600160a01b0382163314156112165760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610ca09061218d565b6008546001600160a01b031633146112b95760405162461bcd60e51b81526004016109b39061209c565b600f55565b6112c9848484611606565b6001600160a01b0383163b15611302576112e584848484611815565b611302576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606113138261157e565b6113775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109b3565b601254610100900460ff1661141857600b80546113939061218d565b80601f01602080910402602001604051908101604052809291908181526020018280546113bf9061218d565b801561140c5780601f106113e15761010080835404028352916020019161140c565b820191906000526020600020905b8154815290600101906020018083116113ef57829003601f168201915b50505050509050919050565b600061142261190d565b905060008151116114425760405180602001604052806000815250611470565b8061144c8461191c565b600a60405160200161146093929190611f03565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166107da565b6008546001600160a01b031633146114cc5760405162461bcd60e51b81526004016109b39061209c565b601280549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146115105760405162461bcd60e51b81526004016109b39061209c565b6001600160a01b0381166115755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b3565b610a8d816117c3565b60008054821080156107da575050600090815260046020526040902054600160e01b161590565b6000816000548110156115ed57600081815260046020526040902054600160e01b81166115eb575b806114705750600019016000818152600460205260409020546115cd565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611611826115a5565b9050836001600160a01b0316816001600160a01b0316146116445760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061166257506116628533610740565b8061167d57503361167284610872565b6001600160a01b0316145b90508061169d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116c457604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216611761576001830160008181526004602052604090205461175f57600054811461175f5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109cf828260405180602001604052806000815250611a1a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061184a903390899088908890600401611fc7565b602060405180830381600087803b15801561186457600080fd5b505af1925050508015611894575060408051601f3d908101601f1916820190925261189191810190611e58565b60015b6118ef573d8080156118c2576040519150601f19603f3d011682016040523d82523d6000602084013e6118c7565b606091505b5080516118e7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107ef9061218d565b6060816119405750506040805180820190915260018152600360fc1b602082015290565b8160005b811561196a5780611954816121c8565b91506119639050600a83612117565b9150611944565b60008167ffffffffffffffff81111561198557611985612239565b6040519080825280601f01601f1916602001820160405280156119af576020820181803683370190505b5090505b8415611905576119c460018361214a565b91506119d1600a866121e3565b6119dc9060306120ff565b60f81b8183815181106119f1576119f1612223565b60200101906001600160f81b031916908160001a905350611a13600a86612117565b94506119b3565b6000546001600160a01b038416611a4357604051622e076360e81b815260040160405180910390fd5b82611a615760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611b36575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aff6000878480600101955087611815565b611b1c576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ab4578260005414611b3157600080fd5b611b7b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b37575b5060009081556113029085838684565b828054611b979061218d565b90600052602060002090601f016020900481019282611bb95760008555611bff565b82601f10611bd257805160ff1916838001178555611bff565b82800160010185558215611bff579182015b82811115611bff578251825591602001919060010190611be4565b50611c0b929150611c0f565b5090565b5b80821115611c0b5760008155600101611c10565b600067ffffffffffffffff80841115611c3f57611c3f612239565b604051601f8501601f19908116603f01168101908282118183101715611c6757611c67612239565b81604052809350858152868686011115611c8057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cb157600080fd5b919050565b80358015158114611cb157600080fd5b600060208284031215611cd857600080fd5b61147082611c9a565b60008060408385031215611cf457600080fd5b611cfd83611c9a565b9150611d0b60208401611c9a565b90509250929050565b600080600060608486031215611d2957600080fd5b611d3284611c9a565b9250611d4060208501611c9a565b9150604084013590509250925092565b60008060008060808587031215611d6657600080fd5b611d6f85611c9a565b9350611d7d60208601611c9a565b925060408501359150606085013567ffffffffffffffff811115611da057600080fd5b8501601f81018713611db157600080fd5b611dc087823560208401611c24565b91505092959194509250565b60008060408385031215611ddf57600080fd5b611de883611c9a565b9150611d0b60208401611cb6565b60008060408385031215611e0957600080fd5b611e1283611c9a565b946020939093013593505050565b600060208284031215611e3257600080fd5b61147082611cb6565b600060208284031215611e4d57600080fd5b81356114708161224f565b600060208284031215611e6a57600080fd5b81516114708161224f565b600060208284031215611e8757600080fd5b813567ffffffffffffffff811115611e9e57600080fd5b8201601f81018413611eaf57600080fd5b61190584823560208401611c24565b600060208284031215611ed057600080fd5b5035919050565b60008151808452611eef816020860160208601612161565b601f01601f19169290920160200192915050565b600084516020611f168285838a01612161565b855191840191611f298184848a01612161565b8554920191600090600181811c9080831680611f4657607f831692505b858310811415611f6457634e487b7160e01b85526022600452602485fd5b808015611f785760018114611f8957611fb6565b60ff19851688528388019550611fb6565b60008b81526020902060005b85811015611fae5781548a820152908401908801611f95565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ffa90830184611ed7565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561203c57835183529284019291840191600101612020565b50909695505050505050565b6020815260006114706020830184611ed7565b60208082526021908201527f436f6e74726163747320666f7262696464656e2066726f6d206d696e74696e676040820152602160f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60008219821115612112576121126121f7565b500190565b6000826121265761212661220d565b500490565b6000816000190483118215151615612145576121456121f7565b500290565b60008282101561215c5761215c6121f7565b500390565b60005b8381101561217c578181015183820152602001612164565b838111156113025750506000910152565b600181811c908216806121a157607f821691505b602082108114156121c257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121dc576121dc6121f7565b5060010190565b6000826121f2576121f261220d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8d57600080fdfea2646970667358221220b91b8a03cbea7c981ecba44973d35cce761f3401d9403af82a63df4b9177d59d64736f6c63430008070033697066733a2f2f516d583164776f6d5077596644314d6f67385256386b775168556f4337633745553179656e31455737395562705a2f68696464656e6769662e6a736f6e

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806370a0823111610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd146106af578063d5abeb01146106cf578063dc33e681146106e5578063e0a8085314610705578063e985e9c514610725578063f2fde38b1461076e57600080fd5b8063a22cb46514610624578063a45ba8e714610644578063a591252d14610659578063b071401b1461066f578063b88d4fde1461068f57600080fd5b80638da5cb5b116101085780638da5cb5b1461059257806394354fd0146105b057806395d89b41146105c6578063996517cf146105db5780639e6a1d7d146105f1578063a0712d681461061157600080fd5b806370a082311461050a578063715018a61461052a578063742a4c9b1461053f5780637c928fe91461055f5780637ec4a6591461057257600080fd5b8063375a069a116101dd5780634fdd43cb116101a15780634fdd43cb1461046757806351830227146104875780635503a0e8146104a65780635c975abb146104bb57806362b99ad4146104d55780636352211e146104ea57600080fd5b8063375a069a146103c55780633ccfd60b146103e557806342842e0e146103fa578063438b63001461041a57806344a0d68a1461044757600080fd5b806316ba10e01161022457806316ba10e01461033657806316c38b3c1461035657806318160ddd1461037657806323b872dd1461038f57806324a6ab0c146103af57600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806313faede614610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004611e3b565b61078e565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107e0565b60405161028d9190612048565b3480156102c457600080fd5b506102d86102d3366004611ebe565b610872565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611df6565b6108b6565b005b34801561031e57600080fd5b50610328600c5481565b60405190815260200161028d565b34801561034257600080fd5b50610310610351366004611e75565b610989565b34801561036257600080fd5b50610310610371366004611e20565b6109d3565b34801561038257600080fd5b5060015460005403610328565b34801561039b57600080fd5b506103106103aa366004611d14565b610a10565b3480156103bb57600080fd5b50610328600d5481565b3480156103d157600080fd5b506103106103e0366004611ebe565b610a20565b3480156103f157600080fd5b50610310610a90565b34801561040657600080fd5b50610310610415366004611d14565b610b2b565b34801561042657600080fd5b5061043a610435366004611cc6565b610b46565b60405161028d9190612004565b34801561045357600080fd5b50610310610462366004611ebe565b610c27565b34801561047357600080fd5b50610310610482366004611e75565b610c56565b34801561049357600080fd5b5060125461028190610100900460ff1681565b3480156104b257600080fd5b506102ab610c93565b3480156104c757600080fd5b506012546102819060ff1681565b3480156104e157600080fd5b506102ab610d21565b3480156104f657600080fd5b506102d8610505366004611ebe565b610d2e565b34801561051657600080fd5b50610328610525366004611cc6565b610d39565b34801561053657600080fd5b50610310610d88565b34801561054b57600080fd5b5061031061055a366004611ebe565b610dbe565b61031061056d366004611ebe565b610ded565b34801561057e57600080fd5b5061031061058d366004611e75565b610fc7565b34801561059e57600080fd5b506008546001600160a01b03166102d8565b3480156105bc57600080fd5b50610328600f5481565b3480156105d257600080fd5b506102ab611004565b3480156105e757600080fd5b5061032860115481565b3480156105fd57600080fd5b5061031061060c366004611ebe565b611013565b61031061061f366004611ebe565b611042565b34801561063057600080fd5b5061031061063f366004611dcc565b6111ec565b34801561065057600080fd5b506102ab611282565b34801561066557600080fd5b5061032860105481565b34801561067b57600080fd5b5061031061068a366004611ebe565b61128f565b34801561069b57600080fd5b506103106106aa366004611d50565b6112be565b3480156106bb57600080fd5b506102ab6106ca366004611ebe565b611308565b3480156106db57600080fd5b50610328600e5481565b3480156106f157600080fd5b50610328610700366004611cc6565b611477565b34801561071157600080fd5b50610310610720366004611e20565b6114a2565b34801561073157600080fd5b50610281610740366004611ce1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561077a57600080fd5b50610310610789366004611cc6565b6114e6565b60006301ffc9a760e01b6001600160e01b0319831614806107bf57506380ac58cd60e01b6001600160e01b03198316145b806107da5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546107ef9061218d565b80601f016020809104026020016040519081016040528092919081815260200182805461081b9061218d565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d8261157e565b61089a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108c1826115a5565b9050806001600160a01b0316836001600160a01b031614156108f65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461092d576109108133610740565b61092d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146109bc5760405162461bcd60e51b81526004016109b39061209c565b60405180910390fd5b80516109cf90600a906020840190611b8b565b5050565b6008546001600160a01b031633146109fd5760405162461bcd60e51b81526004016109b39061209c565b6012805460ff1916911515919091179055565b610a1b838383611606565b505050565b6008546001600160a01b03163314610a4a5760405162461bcd60e51b81526004016109b39061209c565b600e5481610a5b6001546000540390565b610a6591906120ff565b1115610a835760405162461bcd60e51b81526004016109b3906120d1565b610a8d33826117a9565b50565b6008546001600160a01b03163314610aba5760405162461bcd60e51b81526004016109b39061209c565b6000610ace6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b18576040519150601f19603f3d011682016040523d82523d6000602084013e610b1d565b606091505b5050905080610a8d57600080fd5b610a1b838383604051806020016040528060008152506112be565b60606000610b5383610d39565b905060008167ffffffffffffffff811115610b7057610b70612239565b604051908082528060200260200182016040528015610b99578160200160208202803683370190505b509050600160005b8381108015610bb25750600e548211155b15610c1d576000610bc283610d2e565b9050866001600160a01b0316816001600160a01b03161415610c0a5782848381518110610bf157610bf1612223565b602090810291909101015281610c06816121c8565b9250505b82610c14816121c8565b93505050610ba1565b5090949350505050565b6008546001600160a01b03163314610c515760405162461bcd60e51b81526004016109b39061209c565b600c55565b6008546001600160a01b03163314610c805760405162461bcd60e51b81526004016109b39061209c565b80516109cf90600b906020840190611b8b565b600a8054610ca09061218d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccc9061218d565b8015610d195780601f10610cee57610100808354040283529160200191610d19565b820191906000526020600020905b815481529060010190602001808311610cfc57829003601f168201915b505050505081565b60098054610ca09061218d565b60006107da826115a5565b60006001600160a01b038216610d62576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610db25760405162461bcd60e51b81526004016109b39061209c565b610dbc60006117c3565b565b6008546001600160a01b03163314610de85760405162461bcd60e51b81526004016109b39061209c565b601055565b80600e5481610dff6001546000540390565b610e0991906120ff565b1115610e275760405162461bcd60e51b81526004016109b3906120d1565b323314610e465760405162461bcd60e51b81526004016109b39061205b565b60115481610e5333611477565b610e5d91906120ff565b1115610ea25760405162461bcd60e51b81526020600482015260146024820152734d696e74206c696d69742065786365656465642160601b60448201526064016109b3565b60125460ff1615610eef5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109b3565b600d5482610f006001546000540390565b610f0a91906120ff565b1115610f585760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768206672656520737570706c792100000000000000000060448201526064016109b3565b60105482610f6533611477565b610f6f91906120ff565b1115610fbd5760405162461bcd60e51b815260206004820152601960248201527f46726565206d696e74206c696d6974206578636565646564210000000000000060448201526064016109b3565b6109cf33836117a9565b6008546001600160a01b03163314610ff15760405162461bcd60e51b81526004016109b39061209c565b80516109cf906009906020840190611b8b565b6060600380546107ef9061218d565b6008546001600160a01b0316331461103d5760405162461bcd60e51b81526004016109b39061209c565b601155565b80600e54816110546001546000540390565b61105e91906120ff565b111561107c5760405162461bcd60e51b81526004016109b3906120d1565b32331461109b5760405162461bcd60e51b81526004016109b39061205b565b601154816110a833611477565b6110b291906120ff565b11156110f75760405162461bcd60e51b81526020600482015260146024820152734d696e74206c696d69742065786365656465642160601b60448201526064016109b3565b6000821180156111095750600f548211155b61114c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109b3565b60125460ff16156111995760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109b3565b81600c546111a7919061212b565b341015610fbd5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109b3565b6001600160a01b0382163314156112165760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610ca09061218d565b6008546001600160a01b031633146112b95760405162461bcd60e51b81526004016109b39061209c565b600f55565b6112c9848484611606565b6001600160a01b0383163b15611302576112e584848484611815565b611302576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606113138261157e565b6113775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109b3565b601254610100900460ff1661141857600b80546113939061218d565b80601f01602080910402602001604051908101604052809291908181526020018280546113bf9061218d565b801561140c5780601f106113e15761010080835404028352916020019161140c565b820191906000526020600020905b8154815290600101906020018083116113ef57829003601f168201915b50505050509050919050565b600061142261190d565b905060008151116114425760405180602001604052806000815250611470565b8061144c8461191c565b600a60405160200161146093929190611f03565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166107da565b6008546001600160a01b031633146114cc5760405162461bcd60e51b81526004016109b39061209c565b601280549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146115105760405162461bcd60e51b81526004016109b39061209c565b6001600160a01b0381166115755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b3565b610a8d816117c3565b60008054821080156107da575050600090815260046020526040902054600160e01b161590565b6000816000548110156115ed57600081815260046020526040902054600160e01b81166115eb575b806114705750600019016000818152600460205260409020546115cd565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611611826115a5565b9050836001600160a01b0316816001600160a01b0316146116445760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061166257506116628533610740565b8061167d57503361167284610872565b6001600160a01b0316145b90508061169d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116c457604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216611761576001830160008181526004602052604090205461175f57600054811461175f5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109cf828260405180602001604052806000815250611a1a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061184a903390899088908890600401611fc7565b602060405180830381600087803b15801561186457600080fd5b505af1925050508015611894575060408051601f3d908101601f1916820190925261189191810190611e58565b60015b6118ef573d8080156118c2576040519150601f19603f3d011682016040523d82523d6000602084013e6118c7565b606091505b5080516118e7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546107ef9061218d565b6060816119405750506040805180820190915260018152600360fc1b602082015290565b8160005b811561196a5780611954816121c8565b91506119639050600a83612117565b9150611944565b60008167ffffffffffffffff81111561198557611985612239565b6040519080825280601f01601f1916602001820160405280156119af576020820181803683370190505b5090505b8415611905576119c460018361214a565b91506119d1600a866121e3565b6119dc9060306120ff565b60f81b8183815181106119f1576119f1612223565b60200101906001600160f81b031916908160001a905350611a13600a86612117565b94506119b3565b6000546001600160a01b038416611a4357604051622e076360e81b815260040160405180910390fd5b82611a615760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611b36575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aff6000878480600101955087611815565b611b1c576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ab4578260005414611b3157600080fd5b611b7b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b37575b5060009081556113029085838684565b828054611b979061218d565b90600052602060002090601f016020900481019282611bb95760008555611bff565b82601f10611bd257805160ff1916838001178555611bff565b82800160010185558215611bff579182015b82811115611bff578251825591602001919060010190611be4565b50611c0b929150611c0f565b5090565b5b80821115611c0b5760008155600101611c10565b600067ffffffffffffffff80841115611c3f57611c3f612239565b604051601f8501601f19908116603f01168101908282118183101715611c6757611c67612239565b81604052809350858152868686011115611c8057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cb157600080fd5b919050565b80358015158114611cb157600080fd5b600060208284031215611cd857600080fd5b61147082611c9a565b60008060408385031215611cf457600080fd5b611cfd83611c9a565b9150611d0b60208401611c9a565b90509250929050565b600080600060608486031215611d2957600080fd5b611d3284611c9a565b9250611d4060208501611c9a565b9150604084013590509250925092565b60008060008060808587031215611d6657600080fd5b611d6f85611c9a565b9350611d7d60208601611c9a565b925060408501359150606085013567ffffffffffffffff811115611da057600080fd5b8501601f81018713611db157600080fd5b611dc087823560208401611c24565b91505092959194509250565b60008060408385031215611ddf57600080fd5b611de883611c9a565b9150611d0b60208401611cb6565b60008060408385031215611e0957600080fd5b611e1283611c9a565b946020939093013593505050565b600060208284031215611e3257600080fd5b61147082611cb6565b600060208284031215611e4d57600080fd5b81356114708161224f565b600060208284031215611e6a57600080fd5b81516114708161224f565b600060208284031215611e8757600080fd5b813567ffffffffffffffff811115611e9e57600080fd5b8201601f81018413611eaf57600080fd5b61190584823560208401611c24565b600060208284031215611ed057600080fd5b5035919050565b60008151808452611eef816020860160208601612161565b601f01601f19169290920160200192915050565b600084516020611f168285838a01612161565b855191840191611f298184848a01612161565b8554920191600090600181811c9080831680611f4657607f831692505b858310811415611f6457634e487b7160e01b85526022600452602485fd5b808015611f785760018114611f8957611fb6565b60ff19851688528388019550611fb6565b60008b81526020902060005b85811015611fae5781548a820152908401908801611f95565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ffa90830184611ed7565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561203c57835183529284019291840191600101612020565b50909695505050505050565b6020815260006114706020830184611ed7565b60208082526021908201527f436f6e74726163747320666f7262696464656e2066726f6d206d696e74696e676040820152602160f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60008219821115612112576121126121f7565b500190565b6000826121265761212661220d565b500490565b6000816000190483118215151615612145576121456121f7565b500290565b60008282101561215c5761215c6121f7565b500390565b60005b8381101561217c578181015183820152602001612164565b838111156113025750506000910152565b600181811c908216806121a157607f821691505b602082108114156121c257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121dc576121dc6121f7565b5060010190565b6000826121f2576121f261220d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8d57600080fdfea2646970667358221220b91b8a03cbea7c981ecba44973d35cce761f3401d9403af82a63df4b9177d59d64736f6c63430008070033

Deployed Bytecode Sourcemap

43999:5009:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16527:615;;;;;;;;;;-1:-1:-1;16527:615:0;;;;;:::i;:::-;;:::i;:::-;;;7807:14:1;;7800:22;7782:41;;7770:2;7755:18;16527:615:0;;;;;;;;21540:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23608:204::-;;;;;;;;;;-1:-1:-1;23608:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;23608:204:0;6304:203:1;23068:474:0;;;;;;;;;;-1:-1:-1;23068:474:0;;;;;:::i;:::-;;:::i;:::-;;44234:33;;;;;;;;;;;;;;;;;;;12243:25:1;;;12231:2;12216:18;44234:33:0;12097:177:1;48098:100:0;;;;;;;;;;-1:-1:-1;48098:100:0;;;;;:::i;:::-;;:::i;48202:77::-;;;;;;;;;;-1:-1:-1;48202:77:0;;;;;:::i;:::-;;:::i;15581:315::-;;;;;;;;;;-1:-1:-1;15847:12:0;;15634:7;15831:13;:28;15581:315;;24494:170;;;;;;;;;;-1:-1:-1;24494:170:0;;;;;:::i;:::-;;:::i;44274:32::-;;;;;;;;;;;;;;;;45479:181;;;;;;;;;;-1:-1:-1;45479:181:0;;;;;:::i;:::-;;:::i;48311:548::-;;;;;;;;;;;;;:::i;24735:185::-;;;;;;;;;;-1:-1:-1;24735:185:0;;;;;:::i;:::-;;:::i;46028:635::-;;;;;;;;;;-1:-1:-1;46028:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47438:74::-;;;;;;;;;;-1:-1:-1;47438:74:0;;;;;:::i;:::-;;:::i;47856:132::-;;;;;;;;;;-1:-1:-1;47856:132:0;;;;;:::i;:::-;;:::i;44534:28::-;;;;;;;;;;-1:-1:-1;44534:28:0;;;;;;;;;;;44118:33;;;;;;;;;;;;;:::i;44502:25::-;;;;;;;;;;-1:-1:-1;44502:25:0;;;;;;;;44083:28;;;;;;;;;;;;;:::i;21329:144::-;;;;;;;;;;-1:-1:-1;21329:144:0;;;;;:::i;:::-;;:::i;17206:224::-;;;;;;;;;;-1:-1:-1;17206:224:0;;;;;:::i;:::-;;:::i;2637:103::-;;;;;;;;;;;;;:::i;47748:102::-;;;;;;;;;;-1:-1:-1;47748:102:0;;;;;:::i;:::-;;:::i;45123:350::-;;;;;;:::i;:::-;;:::i;47994:100::-;;;;;;;;;;-1:-1:-1;47994:100:0;;;;;:::i;:::-;;:::i;1986:87::-;;;;;;;;;;-1:-1:-1;2059:6:0;;-1:-1:-1;;;;;2059:6:0;1986:87;;44352:37;;;;;;;;;;;;;;;;21709:104;;;;;;;;;;;;;:::i;44433:29::-;;;;;;;;;;;;;;;;47650:94;;;;;;;;;;-1:-1:-1;47650:94:0;;;;;:::i;:::-;;:::i;45666:327::-;;;;;;:::i;:::-;;:::i;23884:308::-;;;;;;;;;;-1:-1:-1;23884:308:0;;;;;:::i;:::-;;:::i;44158:31::-;;;;;;;;;;;;;:::i;44396:30::-;;;;;;;;;;;;;;;;47516:130;;;;;;;;;;-1:-1:-1;47516:130:0;;;;;:::i;:::-;;:::i;24991:396::-;;;;;;;;;;-1:-1:-1;24991:396:0;;;;;:::i;:::-;;:::i;46705:496::-;;;;;;;;;;-1:-1:-1;46705:496:0;;;;;:::i;:::-;;:::i;44313:32::-;;;;;;;;;;;;;;;;47238:107;;;;;;;;;;-1:-1:-1;47238:107:0;;;;;:::i;:::-;;:::i;47351:81::-;;;;;;;;;;-1:-1:-1;47351:81:0;;;;;:::i;:::-;;:::i;24263:164::-;;;;;;;;;;-1:-1:-1;24263:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24384:25:0;;;24360:4;24384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24263:164;2895:201;;;;;;;;;;-1:-1:-1;2895:201:0;;;;;:::i;:::-;;:::i;16527:615::-;16612:4;-1:-1:-1;;;;;;;;;16912:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16989:25:0;;;16912:102;:179;;;-1:-1:-1;;;;;;;;;;17066:25:0;;;16912:179;16892:199;16527:615;-1:-1:-1;;16527:615:0:o;21540:100::-;21594:13;21627:5;21620:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21540:100;:::o;23608:204::-;23676:7;23701:16;23709:7;23701;:16::i;:::-;23696:64;;23726:34;;-1:-1:-1;;;23726:34:0;;;;;;;;;;;23696:64;-1:-1:-1;23780:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23780:24:0;;23608:204::o;23068:474::-;23141:13;23173:27;23192:7;23173:18;:27::i;:::-;23141:61;;23223:5;-1:-1:-1;;;;;23217:11:0;:2;-1:-1:-1;;;;;23217:11:0;;23213:48;;;23237:24;;-1:-1:-1;;;23237:24:0;;;;;;;;;;;23213:48;39711:10;-1:-1:-1;;;;;23278:28:0;;;23274:175;;23326:44;23343:5;39711:10;24263:164;:::i;23326:44::-;23321:128;;23398:35;;-1:-1:-1;;;23398:35:0;;;;;;;;;;;23321:128;23461:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23461:29:0;-1:-1:-1;;;;;23461:29:0;;;;;;;;;23506:28;;23461:24;;23506:28;;;;;;;23130:412;23068:474;;:::o;48098:100::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;;;;;;;;;48170:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48098:100:::0;:::o;48202:77::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48258:6:::1;:15:::0;;-1:-1:-1;;48258:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48202:77::o;24494:170::-;24628:28;24638:4;24644:2;24648:7;24628:9;:28::i;:::-;24494:170;;;:::o;45479:181::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;45576:9:::1;;45564:8;45548:13;15847:12:::0;;15634:7;15831:13;:28;;15581:315;45548:13:::1;:24;;;;:::i;:::-;:37;;45540:70;;;;-1:-1:-1::0;;;45540:70:0::1;;;;;;;:::i;:::-;45621:31;45631:10;45643:8;45621:9;:31::i;:::-;45479:181:::0;:::o;48311:548::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48681:7:::1;48702;2059:6:::0;;-1:-1:-1;;;;;2059:6:0;;1986:87;48702:7:::1;-1:-1:-1::0;;;;;48694:21:0::1;48723;48694:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48680:69;;;48764:2;48756:11;;;::::0;::::1;24735:185:::0;24873:39;24890:4;24896:2;24900:7;24873:39;;;;;;;;;;;;:16;:39::i;46028:635::-;46103:16;46131:23;46157:17;46167:6;46157:9;:17::i;:::-;46131:43;;46181:30;46228:15;46214:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46214:30:0;-1:-1:-1;46181:63:0;-1:-1:-1;46276:1:0;46251:22;46320:309;46345:15;46327;:33;:64;;;;;46382:9;;46364:14;:27;;46327:64;46320:309;;;46402:25;46430:23;46438:14;46430:7;:23::i;:::-;46402:51;;46489:6;-1:-1:-1;;;;;46468:27:0;:17;-1:-1:-1;;;;;46468:27:0;;46464:131;;;46541:14;46508:13;46522:15;46508:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;46568:17;;;;:::i;:::-;;;;46464:131;46605:16;;;;:::i;:::-;;;;46393:236;46320:309;;;-1:-1:-1;46644:13:0;;46028:635;-1:-1:-1;;;;46028:635:0:o;47438:74::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;47494:4:::1;:12:::0;47438:74::o;47856:132::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;47944:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;44118:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44083:28::-;;;;;;;:::i;21329:144::-;21393:7;21436:27;21455:7;21436:18;:27::i;17206:224::-;17270:7;-1:-1:-1;;;;;17294:19:0;;17290:60;;17322:28;;-1:-1:-1;;;17322:28:0;;;;;;;;;;;17290:60;-1:-1:-1;;;;;;17368:25:0;;;;;:18;:25;;;;;;12545:13;17368:54;;17206:224::o;2637:103::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;2702:30:::1;2729:1;2702:18;:30::i;:::-;2637:103::o:0;47748:102::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;47818:11:::1;:26:::0;47748:102::o;45123:350::-;45189:8;44882:9;;44870:8;44854:13;15847:12;;15634:7;15831:13;:28;;15581:315;44854:13;:24;;;;:::i;:::-;:37;;44846:70;;;;-1:-1:-1;;;44846:70:0;;;;;;;:::i;:::-;44931:9;44944:10;44931:23;44923:68;;;;-1:-1:-1;;;44923:68:0;;;;;;;:::i;:::-;45045:9;;45033:8;45006:24;45019:10;45006:12;:24::i;:::-;:35;;;;:::i;:::-;:48;;44998:80;;;;-1:-1:-1;;;44998:80:0;;9770:2:1;44998:80:0;;;9752:21:1;9809:2;9789:18;;;9782:30;-1:-1:-1;;;9828:18:1;;;9821:50;9888:18;;44998:80:0;9568:344:1;44998:80:0;45215:6:::1;::::0;::::1;;45214:7;45206:43;;;::::0;-1:-1:-1;;;45206:43:0;;10834:2:1;45206:43:0::1;::::0;::::1;10816:21:1::0;10873:2;10853:18;;;10846:30;-1:-1:-1;;;10892:18:1;;;10885:53;10955:18;;45206:43:0::1;10632:347:1::0;45206:43:0::1;45292:10;;45280:8;45264:13;15847:12:::0;;15634:7;15831:13;:28;;15581:315;45264:13:::1;:24;;;;:::i;:::-;:38;;45256:73;;;::::0;-1:-1:-1;;;45256:73:0;;9418:2:1;45256:73:0::1;::::0;::::1;9400:21:1::0;9457:2;9437:18;;;9430:30;9496:25;9476:18;;;9469:53;9539:18;;45256:73:0::1;9216:347:1::0;45256:73:0::1;45383:11;;45371:8;45344:24;45357:10;45344:12;:24::i;:::-;:35;;;;:::i;:::-;:50;;45336:87;;;::::0;-1:-1:-1;;;45336:87:0;;10119:2:1;45336:87:0::1;::::0;::::1;10101:21:1::0;10158:2;10138:18;;;10131:30;10197:27;10177:18;;;10170:55;10242:18;;45336:87:0::1;9917:349:1::0;45336:87:0::1;45434:31;45444:10;45456:8;45434:9;:31::i;47994:100::-:0;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;48066:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;21709:104::-:0;21765:13;21798:7;21791:14;;;;;:::i;47650:94::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;47716:9:::1;:22:::0;47650:94::o;45666:327::-;45728:8;44882:9;;44870:8;44854:13;15847:12;;15634:7;15831:13;:28;;15581:315;44854:13;:24;;;;:::i;:::-;:37;;44846:70;;;;-1:-1:-1;;;44846:70:0;;;;;;;:::i;:::-;44931:9;44944:10;44931:23;44923:68;;;;-1:-1:-1;;;44923:68:0;;;;;;;:::i;:::-;45045:9;;45033:8;45006:24;45019:10;45006:12;:24::i;:::-;:35;;;;:::i;:::-;:48;;44998:80;;;;-1:-1:-1;;;44998:80:0;;9770:2:1;44998:80:0;;;9752:21:1;9809:2;9789:18;;;9782:30;-1:-1:-1;;;9828:18:1;;;9821:50;9888:18;;44998:80:0;9568:344:1;44998:80:0;45764:1:::1;45753:8;:12;:46;;;;;45781:18;;45769:8;:30;;45753:46;45745:79;;;::::0;-1:-1:-1;;;45745:79:0;;9069:2:1;45745:79:0::1;::::0;::::1;9051:21:1::0;9108:2;9088:18;;;9081:30;-1:-1:-1;;;9127:18:1;;;9120:50;9187:18;;45745:79:0::1;8867:344:1::0;45745:79:0::1;45840:6;::::0;::::1;;45839:7;45831:43;;;::::0;-1:-1:-1;;;45831:43:0;;10834:2:1;45831:43:0::1;::::0;::::1;10816:21:1::0;10873:2;10853:18;;;10846:30;-1:-1:-1;;;10892:18:1;;;10885:53;10955:18;;45831:43:0::1;10632:347:1::0;45831:43:0::1;45909:8;45902:4;;:15;;;;:::i;:::-;45889:9;:28;;45881:60;;;::::0;-1:-1:-1;;;45881:60:0;;11951:2:1;45881:60:0::1;::::0;::::1;11933:21:1::0;11990:2;11970:18;;;11963:30;-1:-1:-1;;;12009:18:1;;;12002:49;12068:18;;45881:60:0::1;11749:343:1::0;23884:308:0;-1:-1:-1;;;;;23983:31:0;;39711:10;23983:31;23979:61;;;24023:17;;-1:-1:-1;;;24023:17:0;;;;;;;;;;;23979:61;39711:10;24053:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24053:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24053:60:0;;;;;;;;;;24129:55;;7782:41:1;;;24053:49:0;;39711:10;24129:55;;7755:18:1;24129:55:0;;;;;;;23884:308;;:::o;44158:31::-;;;;;;;:::i;47516:130::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;47600:18:::1;:40:::0;47516:130::o;24991:396::-;25158:28;25168:4;25174:2;25178:7;25158:9;:28::i;:::-;-1:-1:-1;;;;;25201:14:0;;;:19;25197:183;;25240:56;25271:4;25277:2;25281:7;25290:5;25240:30;:56::i;:::-;25235:145;;25324:40;;-1:-1:-1;;;25324:40:0;;;;;;;;;;;25235:145;24991:396;;;;:::o;46705:496::-;46804:13;46845:17;46853:8;46845:7;:17::i;:::-;46829:98;;;;-1:-1:-1;;;46829:98:0;;11186:2:1;46829:98:0;;;11168:21:1;11225:2;11205:18;;;11198:30;11264:34;11244:18;;;11237:62;-1:-1:-1;;;11315:18:1;;;11308:45;11370:19;;46829:98:0;10984:411:1;46829:98:0;46940:8;;;;;;;46936:64;;46975:17;46968:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46705:496;;;:::o;46936:64::-;47008:28;47039:10;:8;:10::i;:::-;47008:41;;47094:1;47069:14;47063:28;:32;:130;;;;;;;;;;;;;;;;;47131:14;47147:19;:8;:17;:19::i;:::-;47168:9;47114:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47063:130;47056:137;46705:496;-1:-1:-1;;;46705:496:0:o;47238:107::-;-1:-1:-1;;;;;17601:25:0;;47296:7;17601:25;;;:18;:25;;12682:2;17601:25;;;;12545:13;17601:49;;17600:80;47319:20;17512:176;47351:81;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;47409:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;47409:17:0;;::::1;::::0;;;::::1;::::0;;47351:81::o;2895:201::-;2059:6;;-1:-1:-1;;;;;2059:6:0;39711:10;2206:23;2198:68;;;;-1:-1:-1;;;2198:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2984:22:0;::::1;2976:73;;;::::0;-1:-1:-1;;;2976:73:0;;8662:2:1;2976:73:0::1;::::0;::::1;8644:21:1::0;8701:2;8681:18;;;8674:30;8740:34;8720:18;;;8713:62;-1:-1:-1;;;8791:18:1;;;8784:36;8837:19;;2976:73:0::1;8460:402:1::0;2976:73:0::1;3060:28;3079:8;3060:18;:28::i;25642:273::-:0;25699:4;25789:13;;25779:7;:23;25736:152;;;;-1:-1:-1;;25840:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25840:43:0;:48;;25642:273::o;18844:1129::-;18911:7;18946;19048:13;;19041:4;:20;19037:869;;;19086:14;19103:23;;;:17;:23;;;;;;-1:-1:-1;;;19192:23:0;;19188:699;;19711:113;19718:11;19711:113;;-1:-1:-1;;;19789:6:0;19771:25;;;;:17;:25;;;;;;19711:113;;19188:699;19063:843;19037:869;19934:31;;-1:-1:-1;;;19934:31:0;;;;;;;;;;;30881:2515;30996:27;31026;31045:7;31026:18;:27::i;:::-;30996:57;;31111:4;-1:-1:-1;;;;;31070:45:0;31086:19;-1:-1:-1;;;;;31070:45:0;;31066:86;;31124:28;;-1:-1:-1;;;31124:28:0;;;;;;;;;;;31066:86;31165:22;39711:10;-1:-1:-1;;;;;31191:27:0;;;;:87;;-1:-1:-1;31235:43:0;31252:4;39711:10;24263:164;:::i;31235:43::-;31191:147;;;-1:-1:-1;39711:10:0;31295:20;31307:7;31295:11;:20::i;:::-;-1:-1:-1;;;;;31295:43:0;;31191:147;31165:174;;31357:17;31352:66;;31383:35;;-1:-1:-1;;;31383:35:0;;;;;;;;;;;31352:66;-1:-1:-1;;;;;31433:16:0;;31429:52;;31458:23;;-1:-1:-1;;;31458:23:0;;;;;;;;;;;31429:52;31610:24;;;;:15;:24;;;;;;;;31603:31;;-1:-1:-1;;;;;;31603:31:0;;;-1:-1:-1;;;;;32002:24:0;;;;;:18;:24;;;;;32000:26;;-1:-1:-1;;32000:26:0;;;32071:22;;;;;;;32069:24;;-1:-1:-1;32069:24:0;;;32364:26;;;:17;:26;;;;;-1:-1:-1;;;32452:15:0;13199:3;32452:41;32410:84;;:128;;32364:174;;;32658:46;;32654:626;;32762:1;32752:11;;32730:19;32885:30;;;:17;:30;;;;;;32881:384;;33023:13;;33008:11;:28;33004:242;;33170:30;;;;:17;:30;;;;;:52;;;33004:242;32711:569;32654:626;33327:7;33323:2;-1:-1:-1;;;;;33308:27:0;33317:4;-1:-1:-1;;;;;33308:27:0;;;;;;;;;;;30985:2411;;30881:2515;;;:::o;25999:104::-;26068:27;26078:2;26082:8;26068:27;;;;;;;;;;;;:9;:27::i;3256:191::-;3349:6;;;-1:-1:-1;;;;;3366:17:0;;;-1:-1:-1;;;;;;3366:17:0;;;;;;;3399:40;;3349:6;;;3366:17;3349:6;;3399:40;;3330:16;;3399:40;3319:128;3256:191;:::o;37093:716::-;37277:88;;-1:-1:-1;;;37277:88:0;;37256:4;;-1:-1:-1;;;;;37277:45:0;;;;;:88;;39711:10;;37344:4;;37350:7;;37359:5;;37277:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37277:88:0;;;;;;;;-1:-1:-1;;37277:88:0;;;;;;;;;;;;:::i;:::-;;;37273:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37560:13:0;;37556:235;;37606:40;;-1:-1:-1;;;37606:40:0;;;;;;;;;;;37556:235;37749:6;37743:13;37734:6;37730:2;37726:15;37719:38;37273:529;-1:-1:-1;;;;;;37436:64:0;-1:-1:-1;;;37436:64:0;;-1:-1:-1;37273:529:0;37093:716;;;;;;:::o;48901:104::-;48961:13;48990:9;48983:16;;;;;:::i;42166:723::-;42222:13;42443:10;42439:53;;-1:-1:-1;;42470:10:0;;;;;;;;;;;;-1:-1:-1;;;42470:10:0;;;;;42166:723::o;42439:53::-;42517:5;42502:12;42558:78;42565:9;;42558:78;;42591:8;;;;:::i;:::-;;-1:-1:-1;42614:10:0;;-1:-1:-1;42622:2:0;42614:10;;:::i;:::-;;;42558:78;;;42646:19;42678:6;42668:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42668:17:0;;42646:39;;42696:154;42703:10;;42696:154;;42730:11;42740:1;42730:11;;:::i;:::-;;-1:-1:-1;42799:10:0;42807:2;42799:5;:10;:::i;:::-;42786:24;;:2;:24;:::i;:::-;42773:39;;42756:6;42763;42756:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;42756:56:0;;;;;;;;-1:-1:-1;42827:11:0;42836:2;42827:11;;:::i;:::-;;;42696:154;;26476:2236;26599:20;26622:13;-1:-1:-1;;;;;26650:16:0;;26646:48;;26675:19;;-1:-1:-1;;;26675:19:0;;;;;;;;;;;26646:48;26709:13;26705:44;;26731:18;;-1:-1:-1;;;26731:18:0;;;;;;;;;;;26705:44;-1:-1:-1;;;;;27298:22:0;;;;;;:18;:22;;;;12682:2;27298:22;;;:70;;27336:31;27324:44;;27298:70;;;27611:31;;;:17;:31;;;;;27704:15;13199:3;27704:41;27662:84;;-1:-1:-1;27782:13:0;;13462:3;27767:56;27662:162;27611:213;;:31;;27905:23;;;;27949:14;:19;27945:635;;27989:313;28020:38;;28045:12;;-1:-1:-1;;;;;28020:38:0;;;28037:1;;28020:38;;28037:1;;28020:38;28086:69;28125:1;28129:2;28133:14;;;;;;28149:5;28086:30;:69::i;:::-;28081:174;;28191:40;;-1:-1:-1;;;28191:40:0;;;;;;;;;;;28081:174;28297:3;28282:12;:18;27989:313;;28383:12;28366:13;;:29;28362:43;;28397:8;;;28362:43;27945:635;;;28446:119;28477:40;;28502:14;;;;;-1:-1:-1;;;;;28477:40:0;;;28494:1;;28477:40;;28494:1;;28477:40;28560:3;28545:12;:18;28446:119;;27945:635;-1:-1:-1;28594:13:0;:28;;;28644:60;;28677:2;28681:12;28695:8;28644:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;12352:1;12345:14;;;12389:4;12376:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7005:632::-;7176:2;7228:21;;;7298:13;;7201:18;;;7320:22;;;7147:4;;7176:2;7399:15;;;;7373:2;7358:18;;;7147:4;7442:169;7456:6;7453:1;7450:13;7442:169;;;7517:13;;7505:26;;7586:15;;;;7551:12;;;;7478:1;7471:9;7442:169;;;-1:-1:-1;7628:3:1;;7005:632;-1:-1:-1;;;;;;7005:632:1:o;7834:219::-;7983:2;7972:9;7965:21;7946:4;8003:44;8043:2;8032:9;8028:18;8020:6;8003:44;:::i;8058:397::-;8260:2;8242:21;;;8299:2;8279:18;;;8272:30;8338:34;8333:2;8318:18;;8311:62;-1:-1:-1;;;8404:2:1;8389:18;;8382:31;8445:3;8430:19;;8058:397::o;10271:356::-;10473:2;10455:21;;;10492:18;;;10485:30;10551:34;10546:2;10531:18;;10524:62;10618:2;10603:18;;10271:356::o;11400:344::-;11602:2;11584:21;;;11641:2;11621:18;;;11614:30;-1:-1:-1;;;11675:2:1;11660:18;;11653:50;11735:2;11720:18;;11400:344::o;12405:128::-;12445:3;12476:1;12472:6;12469:1;12466:13;12463:39;;;12482:18;;:::i;:::-;-1:-1:-1;12518:9:1;;12405:128::o;12538:120::-;12578:1;12604;12594:35;;12609:18;;:::i;:::-;-1:-1:-1;12643:9:1;;12538:120::o;12663:168::-;12703:7;12769:1;12765;12761:6;12757:14;12754:1;12751:21;12746:1;12739:9;12732:17;12728:45;12725:71;;;12776:18;;:::i;:::-;-1:-1:-1;12816:9:1;;12663:168::o;12836:125::-;12876:4;12904:1;12901;12898:8;12895:34;;;12909:18;;:::i;:::-;-1:-1:-1;12946:9:1;;12836:125::o;12966:258::-;13038:1;13048:113;13062:6;13059:1;13056:13;13048:113;;;13138:11;;;13132:18;13119:11;;;13112:39;13084:2;13077:10;13048:113;;;13179:6;13176:1;13173:13;13170:48;;;-1:-1:-1;;13214:1:1;13196:16;;13189:27;12966:258::o;13229:380::-;13308:1;13304:12;;;;13351;;;13372:61;;13426:4;13418:6;13414:17;13404:27;;13372:61;13479:2;13471:6;13468:14;13448:18;13445:38;13442:161;;;13525:10;13520:3;13516:20;13513:1;13506:31;13560:4;13557:1;13550:15;13588:4;13585:1;13578:15;13442:161;;13229:380;;;:::o;13614:135::-;13653:3;-1:-1:-1;;13674:17:1;;13671:43;;;13694:18;;:::i;:::-;-1:-1:-1;13741:1:1;13730:13;;13614:135::o;13754:112::-;13786:1;13812;13802:35;;13817:18;;:::i;:::-;-1:-1:-1;13851:9:1;;13754:112::o;13871:127::-;13932:10;13927:3;13923:20;13920:1;13913:31;13963:4;13960:1;13953:15;13987:4;13984:1;13977:15;14003:127;14064:10;14059:3;14055:20;14052:1;14045:31;14095:4;14092:1;14085:15;14119:4;14116:1;14109:15;14135:127;14196:10;14191:3;14187:20;14184:1;14177:31;14227:4;14224:1;14217:15;14251:4;14248:1;14241:15;14267:127;14328:10;14323:3;14319:20;14316:1;14309:31;14359:4;14356:1;14349:15;14383:4;14380:1;14373:15;14399:131;-1:-1:-1;;;;;;14473:32:1;;14463:43;;14453:71;;14520:1;14517;14510:12

Swarm Source

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