ETH Price: $3,059.27 (+1.82%)
Gas: 5 Gwei

Token

Pixel Space Collection (PSC)
 

Overview

Max Total Supply

2,510 PSC

Holders

168

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jelykim.eth
Balance
10 PSC
0xbc810a177aca168f4574ea75eedee8289bde76e0
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:
PSC

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: 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: contracts/planets.sol


pragma solidity ^0.8.4;



contract PSC is ERC721A, Ownable {
    uint256 public PER_TX = 10;
    uint256 public MAX_MINTS = 50;
    uint256 public FREE_MINT = 1500;
    uint256 public MAX_SUPPLY = 5000;
    uint256 public mintRate = 0.005 ether;
    bool locked = false;
    bool pause = true;

    string private _customBaseURI;

    constructor() ERC721A("Pixel Space Collection", "PSC") {}

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(pause == false, "Mint on pause");
        require(quantity <= PER_TX, "Max 10 NFT per tx");
        if (totalSupply() + quantity <= FREE_MINT && msg.value == 0) {
            _safeMint(msg.sender, quantity);
        } else {
            require(msg.value >= (mintRate * quantity), "Not enough ether sent");
            _safeMint(msg.sender, quantity);
        }
        
        
    }

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

    function setBaseURI(string memory customBaseURI_) public onlyOwner  {
        require(locked == false, "Metadata locked");
        _customBaseURI = customBaseURI_;
    }

    function _baseURI() internal view override returns (string memory) {
        return _customBaseURI;
    }
    
    function changeStatus() public onlyOwner {
        pause = !pause;
    }

    function lockMetadata() public onlyOwner {
        locked = true;
    }

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }

    function setLimit(uint256 _MAX_MINTS) public onlyOwner {
        MAX_MINTS = _MAX_MINTS;
    }
    function setLimitPerTX(uint256 _PER_TX) public onlyOwner {
        PER_TX = _PER_TX;
    }
}

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":[],"name":"FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_MINTS","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PER_TX","type":"uint256"}],"name":"setLimitPerTX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a6009819055603290556105dc600b55611388600c556611c37937e08000600d55600e805461ffff19166101001790553480156200004257600080fd5b50604080518082018252601681527f506978656c20537061636520436f6c6c656374696f6e0000000000000000000060208083019182528351808501909452600384526250534360e81b908401528151919291620000a39160029162000123565b508051620000b990600390602084019062000123565b50506000805550620000cb33620000d1565b62000206565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013190620001c9565b90600052602060002090601f016020900481019282620001555760008555620001a0565b82601f106200017057805160ff1916838001178555620001a0565b82800160010185558215620001a0579182015b82811115620001a057825182559160200191906001019062000183565b50620001ae929150620001b2565b5090565b5b80821115620001ae5760008155600101620001b3565b600181811c90821680620001de57607f821691505b602082108114156200020057634e487b7160e01b600052602260045260246000fd5b50919050565b61189880620002166000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c87b56dd11610095578063db065b1d11610064578063db065b1d146104cb578063dbe2193f146104e1578063e985e9c514610501578063f2fde38b1461054a57600080fd5b8063c87b56dd1461045f578063ca0dcf161461047f578063cce132d114610495578063d6c43775146104ab57600080fd5b8063989bdbb6116100d1578063989bdbb6146103f7578063a0712d681461040c578063a22cb4651461041f578063b88d4fde1461043f57600080fd5b8063715018a6146103af5780638da5cb5b146103c457806395d89b41146103e257600080fd5b806327ea6f2b1161016f57806342842e0e1161013e57806342842e0e1461032f57806355f804b31461034f5780636352211e1461036f57806370a082311461038f57600080fd5b806327ea6f2b146102db57806332cb6b0c146102fb57806335b0454f146103115780633ccfd60b1461032757600080fd5b8063085634ec116101ab578063085634ec14610261578063095ea7b31461027857806318160ddd1461029857806323b872dd146102bb57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461160c565b61056a565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105bc565b6040516101fe919061173a565b34801561023557600080fd5b5061024961024436600461168a565b61064e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b50610276610692565b005b34801561028457600080fd5b506102766102933660046115e3565b6106e2565b3480156102a457600080fd5b50600154600054035b6040519081526020016101fe565b3480156102c757600080fd5b506102766102d63660046114f5565b6107b5565b3480156102e757600080fd5b506102766102f636600461168a565b6107c5565b34801561030757600080fd5b506102ad600c5481565b34801561031d57600080fd5b506102ad60095481565b6102766107f4565b34801561033b57600080fd5b5061027661034a3660046114f5565b61085a565b34801561035b57600080fd5b5061027661036a366004611644565b610875565b34801561037b57600080fd5b5061024961038a36600461168a565b6108fb565b34801561039b57600080fd5b506102ad6103aa3660046114a9565b610906565b3480156103bb57600080fd5b50610276610955565b3480156103d057600080fd5b506008546001600160a01b0316610249565b3480156103ee57600080fd5b5061021c61098b565b34801561040357600080fd5b5061027661099a565b61027661041a36600461168a565b6109d3565b34801561042b57600080fd5b5061027661043a3660046115a9565b610bc5565b34801561044b57600080fd5b5061027661045a366004611530565b610c5b565b34801561046b57600080fd5b5061021c61047a36600461168a565b610ca5565b34801561048b57600080fd5b506102ad600d5481565b3480156104a157600080fd5b506102ad600a5481565b3480156104b757600080fd5b506102766104c636600461168a565b610d2a565b3480156104d757600080fd5b506102ad600b5481565b3480156104ed57600080fd5b506102766104fc36600461168a565b610d59565b34801561050d57600080fd5b506101f261051c3660046114c3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561055657600080fd5b506102766105653660046114a9565b610d88565b60006301ffc9a760e01b6001600160e01b03198316148061059b57506380ac58cd60e01b6001600160e01b03198316145b806105b65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105cb906117e5565b80601f01602080910402602001604051908101604052809291908181526020018280546105f7906117e5565b80156106445780601f1061061957610100808354040283529160200191610644565b820191906000526020600020905b81548152906001019060200180831161062757829003601f168201915b5050505050905090565b600061065982610e20565b610676576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146106c55760405162461bcd60e51b81526004016106bc9061174d565b60405180910390fd5b600e805461ff001981166101009182900460ff1615909102179055565b60006106ed82610e47565b9050806001600160a01b0316836001600160a01b031614156107225760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107595761073c813361051c565b610759576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107c0838383610ea8565b505050565b6008546001600160a01b031633146107ef5760405162461bcd60e51b81526004016106bc9061174d565b600a55565b6008546001600160a01b0316331461081e5760405162461bcd60e51b81526004016106bc9061174d565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610857573d6000803e3d6000fd5b50565b6107c083838360405180602001604052806000815250610c5b565b6008546001600160a01b0316331461089f5760405162461bcd60e51b81526004016106bc9061174d565b600e5460ff16156108e45760405162461bcd60e51b815260206004820152600f60248201526e13595d1859185d18481b1bd8dad959608a1b60448201526064016106bc565b80516108f790600f90602084019061137e565b5050565b60006105b682610e47565b60006001600160a01b03821661092f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461097f5760405162461bcd60e51b81526004016106bc9061174d565b610989600061104b565b565b6060600380546105cb906117e5565b6008546001600160a01b031633146109c45760405162461bcd60e51b81526004016106bc9061174d565b600e805460ff19166001179055565b600c54816109e46001546000540390565b6109ee9190611782565b1115610a355760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106bc565b600a54336000908152600560205260409081902054610a5f911c67ffffffffffffffff1683611782565b1115610aa25760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016106bc565b600e54610100900460ff1615610aea5760405162461bcd60e51b815260206004820152600d60248201526c4d696e74206f6e20706175736560981b60448201526064016106bc565b600954811115610b305760405162461bcd60e51b815260206004820152601160248201527009ac2f0406260409c8ca840e0cae440e8f607b1b60448201526064016106bc565b600b5481610b416001546000540390565b610b4b9190611782565b11158015610b57575034155b15610b6657610857338261109d565b80600d54610b74919061179a565b341015610bbb5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016106bc565b610857338261109d565b6001600160a01b038216331415610bef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c66848484610ea8565b6001600160a01b0383163b15610c9f57610c82848484846110b7565b610c9f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cb082610e20565b610ccd57604051630a14c4b560e41b815260040160405180910390fd5b6000610cd76111af565b9050805160001415610cf85760405180602001604052806000815250610d23565b80610d02846111be565b604051602001610d139291906116ce565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d545760405162461bcd60e51b81526004016106bc9061174d565b600955565b6008546001600160a01b03163314610d835760405162461bcd60e51b81526004016106bc9061174d565b600d55565b6008546001600160a01b03163314610db25760405162461bcd60e51b81526004016106bc9061174d565b6001600160a01b038116610e175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bc565b6108578161104b565b60008054821080156105b6575050600090815260046020526040902054600160e01b161590565b600081600054811015610e8f57600081815260046020526040902054600160e01b8116610e8d575b80610d23575060001901600081815260046020526040902054610e6f565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610eb382610e47565b9050836001600160a01b0316816001600160a01b031614610ee65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f045750610f04853361051c565b80610f1f575033610f148461064e565b6001600160a01b0316145b905080610f3f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f6657604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661100357600183016000818152600460205260409020546110015760005481146110015760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108f782826040518060200160405280600081525061120d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110ec9033908990889088906004016116fd565b602060405180830381600087803b15801561110657600080fd5b505af1925050508015611136575060408051601f3d908101601f1916820190925261113391810190611628565b60015b611191573d808015611164576040519150601f19603f3d011682016040523d82523d6000602084013e611169565b606091505b508051611189576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f80546105cb906117e5565b604080516080810191829052607f0190826030600a8206018353600a90045b80156111fb57600183039250600a81066030018353600a90046111dd565b50819003601f19909101908152919050565b6000546001600160a01b03841661123657604051622e076360e81b815260040160405180910390fd5b826112545760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611329575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112f260008784806001019550876110b7565b61130f576040516368d2bf6b60e11b815260040160405180910390fd5b8082106112a757826000541461132457600080fd5b61136e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061132a575b506000908155610c9f9085838684565b82805461138a906117e5565b90600052602060002090601f0160209004810192826113ac57600085556113f2565b82601f106113c557805160ff19168380011785556113f2565b828001600101855582156113f2579182015b828111156113f25782518255916020019190600101906113d7565b506113fe929150611402565b5090565b5b808211156113fe5760008155600101611403565b600067ffffffffffffffff8084111561143257611432611836565b604051601f8501601f19908116603f0116810190828211818310171561145a5761145a611836565b8160405280935085815286868601111561147357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146114a457600080fd5b919050565b6000602082840312156114ba578081fd5b610d238261148d565b600080604083850312156114d5578081fd5b6114de8361148d565b91506114ec6020840161148d565b90509250929050565b600080600060608486031215611509578081fd5b6115128461148d565b92506115206020850161148d565b9150604084013590509250925092565b60008060008060808587031215611545578081fd5b61154e8561148d565b935061155c6020860161148d565b925060408501359150606085013567ffffffffffffffff81111561157e578182fd5b8501601f8101871361158e578182fd5b61159d87823560208401611417565b91505092959194509250565b600080604083850312156115bb578182fd5b6115c48361148d565b9150602083013580151581146115d8578182fd5b809150509250929050565b600080604083850312156115f5578182fd5b6115fe8361148d565b946020939093013593505050565b60006020828403121561161d578081fd5b8135610d238161184c565b600060208284031215611639578081fd5b8151610d238161184c565b600060208284031215611655578081fd5b813567ffffffffffffffff81111561166b578182fd5b8201601f8101841361167b578182fd5b6111a784823560208401611417565b60006020828403121561169b578081fd5b5035919050565b600081518084526116ba8160208601602086016117b9565b601f01601f19169290920160200192915050565b600083516116e08184602088016117b9565b8351908301906116f48183602088016117b9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611730908301846116a2565b9695505050505050565b602081526000610d2360208301846116a2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561179557611795611820565b500190565b60008160001904831182151516156117b4576117b4611820565b500290565b60005b838110156117d45781810151838201526020016117bc565b83811115610c9f5750506000910152565b600181811c908216806117f957607f821691505b6020821081141561181a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461085757600080fdfea264697066735822122020ab0efaa80182586d84135d8452924ca897a31caf579105ddcf174cb0d239e864736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063c87b56dd11610095578063db065b1d11610064578063db065b1d146104cb578063dbe2193f146104e1578063e985e9c514610501578063f2fde38b1461054a57600080fd5b8063c87b56dd1461045f578063ca0dcf161461047f578063cce132d114610495578063d6c43775146104ab57600080fd5b8063989bdbb6116100d1578063989bdbb6146103f7578063a0712d681461040c578063a22cb4651461041f578063b88d4fde1461043f57600080fd5b8063715018a6146103af5780638da5cb5b146103c457806395d89b41146103e257600080fd5b806327ea6f2b1161016f57806342842e0e1161013e57806342842e0e1461032f57806355f804b31461034f5780636352211e1461036f57806370a082311461038f57600080fd5b806327ea6f2b146102db57806332cb6b0c146102fb57806335b0454f146103115780633ccfd60b1461032757600080fd5b8063085634ec116101ab578063085634ec14610261578063095ea7b31461027857806318160ddd1461029857806323b872dd146102bb57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461160c565b61056a565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105bc565b6040516101fe919061173a565b34801561023557600080fd5b5061024961024436600461168a565b61064e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b50610276610692565b005b34801561028457600080fd5b506102766102933660046115e3565b6106e2565b3480156102a457600080fd5b50600154600054035b6040519081526020016101fe565b3480156102c757600080fd5b506102766102d63660046114f5565b6107b5565b3480156102e757600080fd5b506102766102f636600461168a565b6107c5565b34801561030757600080fd5b506102ad600c5481565b34801561031d57600080fd5b506102ad60095481565b6102766107f4565b34801561033b57600080fd5b5061027661034a3660046114f5565b61085a565b34801561035b57600080fd5b5061027661036a366004611644565b610875565b34801561037b57600080fd5b5061024961038a36600461168a565b6108fb565b34801561039b57600080fd5b506102ad6103aa3660046114a9565b610906565b3480156103bb57600080fd5b50610276610955565b3480156103d057600080fd5b506008546001600160a01b0316610249565b3480156103ee57600080fd5b5061021c61098b565b34801561040357600080fd5b5061027661099a565b61027661041a36600461168a565b6109d3565b34801561042b57600080fd5b5061027661043a3660046115a9565b610bc5565b34801561044b57600080fd5b5061027661045a366004611530565b610c5b565b34801561046b57600080fd5b5061021c61047a36600461168a565b610ca5565b34801561048b57600080fd5b506102ad600d5481565b3480156104a157600080fd5b506102ad600a5481565b3480156104b757600080fd5b506102766104c636600461168a565b610d2a565b3480156104d757600080fd5b506102ad600b5481565b3480156104ed57600080fd5b506102766104fc36600461168a565b610d59565b34801561050d57600080fd5b506101f261051c3660046114c3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561055657600080fd5b506102766105653660046114a9565b610d88565b60006301ffc9a760e01b6001600160e01b03198316148061059b57506380ac58cd60e01b6001600160e01b03198316145b806105b65750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105cb906117e5565b80601f01602080910402602001604051908101604052809291908181526020018280546105f7906117e5565b80156106445780601f1061061957610100808354040283529160200191610644565b820191906000526020600020905b81548152906001019060200180831161062757829003601f168201915b5050505050905090565b600061065982610e20565b610676576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146106c55760405162461bcd60e51b81526004016106bc9061174d565b60405180910390fd5b600e805461ff001981166101009182900460ff1615909102179055565b60006106ed82610e47565b9050806001600160a01b0316836001600160a01b031614156107225760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107595761073c813361051c565b610759576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107c0838383610ea8565b505050565b6008546001600160a01b031633146107ef5760405162461bcd60e51b81526004016106bc9061174d565b600a55565b6008546001600160a01b0316331461081e5760405162461bcd60e51b81526004016106bc9061174d565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610857573d6000803e3d6000fd5b50565b6107c083838360405180602001604052806000815250610c5b565b6008546001600160a01b0316331461089f5760405162461bcd60e51b81526004016106bc9061174d565b600e5460ff16156108e45760405162461bcd60e51b815260206004820152600f60248201526e13595d1859185d18481b1bd8dad959608a1b60448201526064016106bc565b80516108f790600f90602084019061137e565b5050565b60006105b682610e47565b60006001600160a01b03821661092f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461097f5760405162461bcd60e51b81526004016106bc9061174d565b610989600061104b565b565b6060600380546105cb906117e5565b6008546001600160a01b031633146109c45760405162461bcd60e51b81526004016106bc9061174d565b600e805460ff19166001179055565b600c54816109e46001546000540390565b6109ee9190611782565b1115610a355760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106bc565b600a54336000908152600560205260409081902054610a5f911c67ffffffffffffffff1683611782565b1115610aa25760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016106bc565b600e54610100900460ff1615610aea5760405162461bcd60e51b815260206004820152600d60248201526c4d696e74206f6e20706175736560981b60448201526064016106bc565b600954811115610b305760405162461bcd60e51b815260206004820152601160248201527009ac2f0406260409c8ca840e0cae440e8f607b1b60448201526064016106bc565b600b5481610b416001546000540390565b610b4b9190611782565b11158015610b57575034155b15610b6657610857338261109d565b80600d54610b74919061179a565b341015610bbb5760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016106bc565b610857338261109d565b6001600160a01b038216331415610bef5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c66848484610ea8565b6001600160a01b0383163b15610c9f57610c82848484846110b7565b610c9f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cb082610e20565b610ccd57604051630a14c4b560e41b815260040160405180910390fd5b6000610cd76111af565b9050805160001415610cf85760405180602001604052806000815250610d23565b80610d02846111be565b604051602001610d139291906116ce565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d545760405162461bcd60e51b81526004016106bc9061174d565b600955565b6008546001600160a01b03163314610d835760405162461bcd60e51b81526004016106bc9061174d565b600d55565b6008546001600160a01b03163314610db25760405162461bcd60e51b81526004016106bc9061174d565b6001600160a01b038116610e175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bc565b6108578161104b565b60008054821080156105b6575050600090815260046020526040902054600160e01b161590565b600081600054811015610e8f57600081815260046020526040902054600160e01b8116610e8d575b80610d23575060001901600081815260046020526040902054610e6f565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610eb382610e47565b9050836001600160a01b0316816001600160a01b031614610ee65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f045750610f04853361051c565b80610f1f575033610f148461064e565b6001600160a01b0316145b905080610f3f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f6657604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661100357600183016000818152600460205260409020546110015760005481146110015760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108f782826040518060200160405280600081525061120d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110ec9033908990889088906004016116fd565b602060405180830381600087803b15801561110657600080fd5b505af1925050508015611136575060408051601f3d908101601f1916820190925261113391810190611628565b60015b611191573d808015611164576040519150601f19603f3d011682016040523d82523d6000602084013e611169565b606091505b508051611189576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f80546105cb906117e5565b604080516080810191829052607f0190826030600a8206018353600a90045b80156111fb57600183039250600a81066030018353600a90046111dd565b50819003601f19909101908152919050565b6000546001600160a01b03841661123657604051622e076360e81b815260040160405180910390fd5b826112545760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611329575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112f260008784806001019550876110b7565b61130f576040516368d2bf6b60e11b815260040160405180910390fd5b8082106112a757826000541461132457600080fd5b61136e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061132a575b506000908155610c9f9085838684565b82805461138a906117e5565b90600052602060002090601f0160209004810192826113ac57600085556113f2565b82601f106113c557805160ff19168380011785556113f2565b828001600101855582156113f2579182015b828111156113f25782518255916020019190600101906113d7565b506113fe929150611402565b5090565b5b808211156113fe5760008155600101611403565b600067ffffffffffffffff8084111561143257611432611836565b604051601f8501601f19908116603f0116810190828211818310171561145a5761145a611836565b8160405280935085815286868601111561147357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146114a457600080fd5b919050565b6000602082840312156114ba578081fd5b610d238261148d565b600080604083850312156114d5578081fd5b6114de8361148d565b91506114ec6020840161148d565b90509250929050565b600080600060608486031215611509578081fd5b6115128461148d565b92506115206020850161148d565b9150604084013590509250925092565b60008060008060808587031215611545578081fd5b61154e8561148d565b935061155c6020860161148d565b925060408501359150606085013567ffffffffffffffff81111561157e578182fd5b8501601f8101871361158e578182fd5b61159d87823560208401611417565b91505092959194509250565b600080604083850312156115bb578182fd5b6115c48361148d565b9150602083013580151581146115d8578182fd5b809150509250929050565b600080604083850312156115f5578182fd5b6115fe8361148d565b946020939093013593505050565b60006020828403121561161d578081fd5b8135610d238161184c565b600060208284031215611639578081fd5b8151610d238161184c565b600060208284031215611655578081fd5b813567ffffffffffffffff81111561166b578182fd5b8201601f8101841361167b578182fd5b6111a784823560208401611417565b60006020828403121561169b578081fd5b5035919050565b600081518084526116ba8160208601602086016117b9565b601f01601f19169290920160200192915050565b600083516116e08184602088016117b9565b8351908301906116f48183602088016117b9565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611730908301846116a2565b9695505050505050565b602081526000610d2360208301846116a2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561179557611795611820565b500190565b60008160001904831182151516156117b4576117b4611820565b500290565b60005b838110156117d45781810151838201526020016117bc565b83811115610c9f5750506000910152565b600181811c908216806117f957607f821691505b6020821081141561181a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461085757600080fdfea264697066735822122020ab0efaa80182586d84135d8452924ca897a31caf579105ddcf174cb0d239e864736f6c63430008040033

Deployed Bytecode Sourcemap

41837:1996:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16496:615;;;;;;;;;;-1:-1:-1;16496:615:0;;;;;:::i;:::-;;:::i;:::-;;;5796:14:1;;5789:22;5771:41;;5759:2;5744:18;16496:615:0;;;;;;;;21509:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23577:204::-;;;;;;;;;;-1:-1:-1;23577:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5094:32:1;;;5076:51;;5064:2;5049:18;23577:204:0;5031:102:1;43369:74:0;;;;;;;;;;;;;:::i;:::-;;23037:474;;;;;;;;;;-1:-1:-1;23037:474:0;;;;;:::i;:::-;;:::i;15550:315::-;;;;;;;;;;-1:-1:-1;15816:12:0;;15603:7;15800:13;:28;15550:315;;;9041:25:1;;;9029:2;9014:18;15550:315:0;8996:76:1;24463:170:0;;;;;;;;;;-1:-1:-1;24463:170:0;;;;;:::i;:::-;;:::i;43636:96::-;;;;;;;;;;-1:-1:-1;43636:96:0;;;;;:::i;:::-;;:::i;41984:32::-;;;;;;;;;;;;;;;;41877:26;;;;;;;;;;;;;;;;42948:114;;;:::i;24704:185::-;;;;;;;;;;-1:-1:-1;24704:185:0;;;;;:::i;:::-;;:::i;43070:172::-;;;;;;;;;;-1:-1:-1;43070:172:0;;;;;:::i;:::-;;:::i;21298:144::-;;;;;;;;;;-1:-1:-1;21298:144:0;;;;;:::i;:::-;;:::i;17175:224::-;;;;;;;;;;-1:-1:-1;17175:224:0;;;;;:::i;:::-;;:::i;2606:103::-;;;;;;;;;;;;;:::i;1955:87::-;;;;;;;;;;-1:-1:-1;2028:6:0;;-1:-1:-1;;;;;2028:6:0;1955:87;;21678:104;;;;;;;;;;;;;:::i;43451:73::-;;;;;;;;;;;;;:::i;42222:718::-;;;;;;:::i;:::-;;:::i;23853:308::-;;;;;;;;;;-1:-1:-1;23853:308:0;;;;;:::i;:::-;;:::i;24960:396::-;;;;;;;;;;-1:-1:-1;24960:396:0;;;;;:::i;:::-;;:::i;21853:318::-;;;;;;;;;;-1:-1:-1;21853:318:0;;;;;:::i;:::-;;:::i;42023:37::-;;;;;;;;;;;;;;;;41910:29;;;;;;;;;;;;;;;;43738:92;;;;;;;;;;-1:-1:-1;43738:92:0;;;;;:::i;:::-;;:::i;41946:31::-;;;;;;;;;;;;;;;;43532:96;;;;;;;;;;-1:-1:-1;43532:96:0;;;;;:::i;:::-;;:::i;24232:164::-;;;;;;;;;;-1:-1:-1;24232:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24353:25:0;;;24329:4;24353:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24232:164;2864:201;;;;;;;;;;-1:-1:-1;2864:201:0;;;;;:::i;:::-;;:::i;16496:615::-;16581:4;-1:-1:-1;;;;;;;;;16881:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16958:25:0;;;16881:102;:179;;;-1:-1:-1;;;;;;;;;;17035:25:0;;;16881:179;16861:199;16496:615;-1:-1:-1;;16496:615:0:o;21509:100::-;21563:13;21596:5;21589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21509:100;:::o;23577:204::-;23645:7;23670:16;23678:7;23670;:16::i;:::-;23665:64;;23695:34;;-1:-1:-1;;;23695:34:0;;;;;;;;;;;23665:64;-1:-1:-1;23749:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23749:24:0;;23577:204::o;43369:74::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;;;;;;;;;43430:5:::1;::::0;;-1:-1:-1;;43421:14:0;::::1;43430:5;::::0;;;::::1;;;43429:6;43421:14:::0;;::::1;;::::0;;43369:74::o;23037:474::-;23110:13;23142:27;23161:7;23142:18;:27::i;:::-;23110:61;;23192:5;-1:-1:-1;;;;;23186:11:0;:2;-1:-1:-1;;;;;23186:11:0;;23182:48;;;23206:24;;-1:-1:-1;;;23206:24:0;;;;;;;;;;;23182:48;759:10;-1:-1:-1;;;;;23247:28:0;;;23243:175;;23295:44;23312:5;759:10;24232:164;:::i;23295:44::-;23290:128;;23367:35;;-1:-1:-1;;;23367:35:0;;;;;;;;;;;23290:128;23430:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23430:29:0;-1:-1:-1;;;;;23430:29:0;;;;;;;;;23475:28;;23430:24;;23475:28;;;;;;;23037:474;;;:::o;24463:170::-;24597:28;24607:4;24613:2;24617:7;24597:9;:28::i;:::-;24463:170;;;:::o;43636:96::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;43702:9:::1;:22:::0;43636:96::o;42948:114::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2028:6;;43006:48:::1;::::0;-1:-1:-1;;;;;2028:6:0;;;;43032:21:::1;43006:48:::0;::::1;;;::::0;::::1;::::0;;;43032:21;2028:6;43006:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42948:114::o:0;24704:185::-;24842:39;24859:4;24865:2;24869:7;24842:39;;;;;;;;;;;;:16;:39::i;43070:172::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;43157:6:::1;::::0;::::1;;:15;43149:43;;;::::0;-1:-1:-1;;;43149:43:0;;8057:2:1;43149:43:0::1;::::0;::::1;8039:21:1::0;8096:2;8076:18;;;8069:30;-1:-1:-1;;;8115:18:1;;;8108:45;8170:18;;43149:43:0::1;8029:165:1::0;43149:43:0::1;43203:31:::0;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43070:172:::0;:::o;21298:144::-;21362:7;21405:27;21424:7;21405:18;:27::i;17175:224::-;17239:7;-1:-1:-1;;;;;17263:19:0;;17259:60;;17291:28;;-1:-1:-1;;;17291:28:0;;;;;;;;;;;17259:60;-1:-1:-1;;;;;;17337:25:0;;;;;:18;:25;;;;;;12514:13;17337:54;;17175:224::o;2606:103::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;21678:104::-;21734:13;21767:7;21760:14;;;;;:::i;43451:73::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;43503:6:::1;:13:::0;;-1:-1:-1;;43503:13:0::1;43512:4;43503:13;::::0;;43451:73::o;42222:718::-;42398:10;;42386:8;42370:13;15816:12;;15603:7;15800:13;:28;;15550:315;42370:13;:24;;;;:::i;:::-;:38;;42362:73;;;;-1:-1:-1;;;42362:73:0;;7345:2:1;42362:73:0;;;7327:21:1;7384:2;7364:18;;;7357:30;-1:-1:-1;;;7403:18:1;;;7396:52;7465:18;;42362:73:0;7317:172:1;42362:73:0;42494:9;;42479:10;17542:7;17570:25;;;:18;:25;;12651:2;17570:25;;;;;42454:36;;17570:49;12514:13;17569:80;42454:8;:36;:::i;:::-;:49;;42446:80;;;;-1:-1:-1;;;42446:80:0;;6998:2:1;42446:80:0;;;6980:21:1;7037:2;7017:18;;;7010:30;-1:-1:-1;;;7056:18:1;;;7049:48;7114:18;;42446:80:0;6970:168:1;42446:80:0;42545:5;;;;;;;:14;42537:40;;;;-1:-1:-1;;;42537:40:0;;6656:2:1;42537:40:0;;;6638:21:1;6695:2;6675:18;;;6668:30;-1:-1:-1;;;6714:18:1;;;6707:43;6767:18;;42537:40:0;6628:163:1;42537:40:0;42608:6;;42596:8;:18;;42588:48;;;;-1:-1:-1;;;42588:48:0;;8751:2:1;42588:48:0;;;8733:21:1;8790:2;8770:18;;;8763:30;-1:-1:-1;;;8809:18:1;;;8802:47;8866:18;;42588:48:0;8723:167:1;42588:48:0;42679:9;;42667:8;42651:13;15816:12;;15603:7;15800:13;:28;;15550:315;42651:13;:24;;;;:::i;:::-;:37;;:55;;;;-1:-1:-1;42692:9:0;:14;42651:55;42647:266;;;42723:31;42733:10;42745:8;42723:9;:31::i;42647:266::-;42820:8;42809;;:19;;;;:::i;:::-;42795:9;:34;;42787:68;;;;-1:-1:-1;;;42787:68:0;;8401:2:1;42787:68:0;;;8383:21:1;8440:2;8420:18;;;8413:30;-1:-1:-1;;;8459:18:1;;;8452:51;8520:18;;42787:68:0;8373:171:1;42787:68:0;42870:31;42880:10;42892:8;42870:9;:31::i;23853:308::-;-1:-1:-1;;;;;23952:31:0;;759:10;23952:31;23948:61;;;23992:17;;-1:-1:-1;;;23992:17:0;;;;;;;;;;;23948:61;759:10;24022:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24022:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24022:60:0;;;;;;;;;;24098:55;;5771:41:1;;;24022:49:0;;759:10;24098:55;;5744:18:1;24098:55:0;;;;;;;23853:308;;:::o;24960:396::-;25127:28;25137:4;25143:2;25147:7;25127:9;:28::i;:::-;-1:-1:-1;;;;;25170:14:0;;;:19;25166:183;;25209:56;25240:4;25246:2;25250:7;25259:5;25209:30;:56::i;:::-;25204:145;;25293:40;;-1:-1:-1;;;25293:40:0;;;;;;;;;;;25204:145;24960:396;;;;:::o;21853:318::-;21926:13;21957:16;21965:7;21957;:16::i;:::-;21952:59;;21982:29;;-1:-1:-1;;;21982:29:0;;;;;;;;;;;21952:59;22024:21;22048:10;:8;:10::i;:::-;22024:34;;22082:7;22076:21;22101:1;22076:26;;:87;;;;;;;;;;;;;;;;;22129:7;22138:18;22148:7;22138:9;:18::i;:::-;22112:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22076:87;22069:94;21853:318;-1:-1:-1;;;21853:318:0:o;43738:92::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;43806:6:::1;:16:::0;43738:92::o;43532:96::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;43600:8:::1;:20:::0;43532:96::o;2864:201::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;6249:2:1;2945:73:0::1;::::0;::::1;6231:21:1::0;6288:2;6268:18;;;6261:30;6327:34;6307:18;;;6300:62;-1:-1:-1;;;6378:18:1;;;6371:36;6424:19;;2945:73:0::1;6221:228:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;25611:273::-:0;25668:4;25758:13;;25748:7;:23;25705:152;;;;-1:-1:-1;;25809:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25809:43:0;:48;;25611:273::o;18813:1129::-;18880:7;18915;19017:13;;19010:4;:20;19006:869;;;19055:14;19072:23;;;:17;:23;;;;;;-1:-1:-1;;;19161:23:0;;19157:699;;19680:113;19687:11;19680:113;;-1:-1:-1;;;19758:6:0;19740:25;;;;:17;:25;;;;;;19680:113;;19157:699;19006:869;;19903:31;;-1:-1:-1;;;19903:31:0;;;;;;;;;;;30850:2515;30965:27;30995;31014:7;30995:18;:27::i;:::-;30965:57;;31080:4;-1:-1:-1;;;;;31039:45:0;31055:19;-1:-1:-1;;;;;31039:45:0;;31035:86;;31093:28;;-1:-1:-1;;;31093:28:0;;;;;;;;;;;31035:86;31134:22;759:10;-1:-1:-1;;;;;31160:27:0;;;;:87;;-1:-1:-1;31204:43:0;31221:4;759:10;24232:164;:::i;31204:43::-;31160:147;;;-1:-1:-1;759:10:0;31264:20;31276:7;31264:11;:20::i;:::-;-1:-1:-1;;;;;31264:43:0;;31160:147;31134:174;;31326:17;31321:66;;31352:35;;-1:-1:-1;;;31352:35:0;;;;;;;;;;;31321:66;-1:-1:-1;;;;;31402:16:0;;31398:52;;31427:23;;-1:-1:-1;;;31427:23:0;;;;;;;;;;;31398:52;31579:24;;;;:15;:24;;;;;;;;31572:31;;-1:-1:-1;;;;;;31572:31:0;;;-1:-1:-1;;;;;31971:24:0;;;;;:18;:24;;;;;31969:26;;-1:-1:-1;;31969:26:0;;;32040:22;;;;;;;32038:24;;-1:-1:-1;32038:24:0;;;32333:26;;;:17;:26;;;;;-1:-1:-1;;;32421:15:0;13168:3;32421:41;32379:84;;:128;;32333:174;;;32627:46;;32623:626;;32731:1;32721:11;;32699:19;32854:30;;;:17;:30;;;;;;32850:384;;32992:13;;32977:11;:28;32973:242;;33139:30;;;;:17;:30;;;;;:52;;;32973:242;32623:626;;33296:7;33292:2;-1:-1:-1;;;;;33277:27:0;33286:4;-1:-1:-1;;;;;33277:27:0;;;;;;;;;;;30850:2515;;;;;:::o;3225:191::-;3318:6;;;-1:-1:-1;;;;;3335:17:0;;;-1:-1:-1;;;;;;3335:17:0;;;;;;;3368:40;;3318:6;;;3335:17;3318:6;;3368:40;;3299:16;;3368:40;3225:191;;:::o;25968:104::-;26037:27;26047:2;26051:8;26037:27;;;;;;;;;;;;:9;:27::i;37062:716::-;37246:88;;-1:-1:-1;;;37246:88:0;;37225:4;;-1:-1:-1;;;;;37246:45:0;;;;;:88;;759:10;;37313:4;;37319:7;;37328:5;;37246:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37246:88:0;;;;;;;;-1:-1:-1;;37246:88:0;;;;;;;;;;;;:::i;:::-;;;37242:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37529:13:0;;37525:235;;37575:40;;-1:-1:-1;;;37575:40:0;;;;;;;;;;;37525:235;37718:6;37712:13;37703:6;37699:2;37695:15;37688:38;37242:529;-1:-1:-1;;;;;;37405:64:0;-1:-1:-1;;;37405:64:0;;-1:-1:-1;37242:529:0;37062:716;;;;;;:::o;43250:107::-;43302:13;43335:14;43328:21;;;;;:::i;39804:1959::-;40275:4;40269:11;;40282:3;40265:21;;40360:17;;;;41057:11;;;40936:5;41189:2;41203;41193:13;;41185:22;41057:11;41172:36;41244:2;41234:13;;40827:682;41263:4;40827:682;;;41438:1;41433:3;41429:11;41422:18;;41489:2;41483:4;41479:13;41475:2;41471:22;41466:3;41458:36;41359:2;41349:13;;40827:682;;;-1:-1:-1;41551:13:0;;;-1:-1:-1;;41666:12:0;;;41726:19;;;41666:12;39900:1856;-1:-1:-1;39900:1856:0:o;26445:2236::-;26568:20;26591:13;-1:-1:-1;;;;;26619:16:0;;26615:48;;26644:19;;-1:-1:-1;;;26644:19:0;;;;;;;;;;;26615:48;26678:13;26674:44;;26700:18;;-1:-1:-1;;;26700:18:0;;;;;;;;;;;26674:44;-1:-1:-1;;;;;27267:22:0;;;;;;:18;:22;;;;12651:2;27267:22;;;:70;;27305:31;27293:44;;27267:70;;;27580:31;;;:17;:31;;;;;27673:15;13168:3;27673:41;27631:84;;-1:-1:-1;27751:13:0;;13431:3;27736:56;27631:162;27580:213;;:31;;27874:23;;;;27918:14;:19;27914:635;;27958:313;27989:38;;28014:12;;-1:-1:-1;;;;;27989:38:0;;;28006:1;;27989:38;;28006:1;;27989:38;28055:69;28094:1;28098:2;28102:14;;;;;;28118:5;28055:30;:69::i;:::-;28050:174;;28160:40;;-1:-1:-1;;;28160:40:0;;;;;;;;;;;28050:174;28266:3;28251:12;:18;27958:313;;28352:12;28335:13;;:29;28331:43;;28366:8;;;28331:43;27914:635;;;28415:119;28446:40;;28471:14;;;;;-1:-1:-1;;;;;28446:40:0;;;28463:1;;28446:40;;28463:1;;28446:40;28529:3;28514:12;:18;28415:119;;27914:635;-1:-1:-1;28563:13:0;:28;;;28613:60;;28646:2;28650:12;28664:8;28613:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;4634:3;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5138:488::-;-1:-1:-1;;;;;5407:15:1;;;5389:34;;5459:15;;5454:2;5439:18;;5432:43;5506:2;5491:18;;5484:34;;;5554:3;5549:2;5534:18;;5527:31;;;5332:4;;5575:45;;5600:19;;5592:6;5575:45;:::i;:::-;5567:53;5341:285;-1:-1:-1;;;;;;5341:285:1:o;5823:219::-;5972:2;5961:9;5954:21;5935:4;5992:44;6032:2;6021:9;6017:18;6009:6;5992:44;:::i;7494:356::-;7696:2;7678:21;;;7715:18;;;7708:30;7774:34;7769:2;7754:18;;7747:62;7841:2;7826:18;;7668:182::o;9077:128::-;9117:3;9148:1;9144:6;9141:1;9138:13;9135:2;;;9154:18;;:::i;:::-;-1:-1:-1;9190:9:1;;9125:80::o;9210:168::-;9250:7;9316:1;9312;9308:6;9304:14;9301:1;9298:21;9293:1;9286:9;9279:17;9275:45;9272:2;;;9323:18;;:::i;:::-;-1:-1:-1;9363:9:1;;9262:116::o;9383:258::-;9455:1;9465:113;9479:6;9476:1;9473:13;9465:113;;;9555:11;;;9549:18;9536:11;;;9529:39;9501:2;9494:10;9465:113;;;9596:6;9593:1;9590:13;9587:2;;;-1:-1:-1;;9631:1:1;9613:16;;9606:27;9436:205::o;9646:380::-;9725:1;9721:12;;;;9768;;;9789:2;;9843:4;9835:6;9831:17;9821:27;;9789:2;9896;9888:6;9885:14;9865:18;9862:38;9859:2;;;9942:10;9937:3;9933:20;9930:1;9923:31;9977:4;9974:1;9967:15;10005:4;10002:1;9995:15;9859:2;;9701:325;;;:::o;10031:127::-;10092:10;10087:3;10083:20;10080:1;10073:31;10123:4;10120:1;10113:15;10147:4;10144:1;10137:15;10163:127;10224:10;10219:3;10215:20;10212:1;10205:31;10255:4;10252:1;10245:15;10279:4;10276:1;10269:15;10295:131;-1:-1:-1;;;;;;10369:32:1;;10359:43;;10349:2;;10416:1;10413;10406:12

Swarm Source

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