ETH Price: $2,275.99 (+1.92%)

Token

Satanic_Skulls (SaSk)
 

Overview

Max Total Supply

1,700 SaSk

Holders

99

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
baharr.eth
Balance
3 SaSk
0xab51f2a73aec0bec2b194ed4f89604c83a14ba61
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:
Satanic_Skulls

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: contracts/lastcode.sol


pragma solidity >=0.7.0 <0.9.0;




contract Satanic_Skulls is ERC721A, Ownable, ReentrancyGuard {
    uint256 MAX_MINTS = 5000;
    uint256 MAX_SUPPLY = 5000;
    uint256 public mintRate = 0.000 ether;

    constructor() ERC721A ("Satanic_Skulls", "SaSk") {}

    function mint(uint256 quantity) external payable onlyOwner {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

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

  // // metadata URI
    string private _baseTokenURI;
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052611388600a55611388600b556000600c553480156200002257600080fd5b506040518060400160405280600e81526020017f536174616e69635f536b756c6c730000000000000000000000000000000000008152506040518060400160405280600481526020017f5361536b000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000a7929190620001da565b508060039080519060200190620000c0929190620001da565b50620000d16200010760201b60201c565b6000819055505050620000f9620000ed6200010c60201b60201c565b6200011460201b60201c565b6001600981905550620002ef565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e8906200028a565b90600052602060002090601f0160209004810192826200020c576000855562000258565b82601f106200022757805160ff191683800117855562000258565b8280016001018555821562000258579182015b82811115620002575782518255916020019190600101906200023a565b5b5090506200026791906200026b565b5090565b5b80821115620002865760008160009055506001016200026c565b5090565b60006002820490506001821680620002a357607f821691505b60208210811415620002ba57620002b9620002c0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6126d880620002ff6000396000f3fe6080604052600436106101355760003560e01c8063715018a6116100ab578063b88d4fde1161006f578063b88d4fde146103bd578063c87b56dd146103d9578063ca0dcf1614610416578063dbe2193f14610441578063e985e9c51461046a578063f2fde38b146104a757610135565b8063715018a61461030b5780638da5cb5b1461032257806395d89b411461034d578063a0712d6814610378578063a22cb4651461039457610135565b806323b872dd116100fd57806323b872dd146102265780633ccfd60b1461024257806342842e0e1461024c57806355f804b3146102685780636352211e1461029157806370a08231146102ce57610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd146101fb575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611df3565b6104d0565b60405161016e91906120f4565b60405180910390f35b34801561018357600080fd5b5061018c610562565b604051610199919061210f565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190611e9a565b6105f4565b6040516101d6919061208d565b60405180910390f35b6101f960048036038101906101f49190611db3565b610673565b005b34801561020757600080fd5b506102106107b7565b60405161021d91906121f1565b60405180910390f35b610240600480360381019061023b9190611c9d565b6107ce565b005b61024a610af3565b005b61026660048036038101906102619190611c9d565b610ba1565b005b34801561027457600080fd5b5061028f600480360381019061028a9190611e4d565b610bc1565b005b34801561029d57600080fd5b506102b860048036038101906102b39190611e9a565b610bdf565b6040516102c5919061208d565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190611c30565b610bf1565b60405161030291906121f1565b60405180910390f35b34801561031757600080fd5b50610320610caa565b005b34801561032e57600080fd5b50610337610cbe565b604051610344919061208d565b60405180910390f35b34801561035957600080fd5b50610362610ce8565b60405161036f919061210f565b60405180910390f35b610392600480360381019061038d9190611e9a565b610d7a565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190611d73565b610e8e565b005b6103d760048036038101906103d29190611cf0565b610f99565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190611e9a565b61100c565b60405161040d919061210f565b60405180910390f35b34801561042257600080fd5b5061042b6110ab565b60405161043891906121f1565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190611e9a565b6110b1565b005b34801561047657600080fd5b50610491600480360381019061048c9190611c5d565b6110c3565b60405161049e91906120f4565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190611c30565b611157565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061055b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105719061240b565b80601f016020809104026020016040519081016040528092919081815260200182805461059d9061240b565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b60006105ff826111db565b610635576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061067e82610bdf565b90508073ffffffffffffffffffffffffffffffffffffffff1661069f61123a565b73ffffffffffffffffffffffffffffffffffffffff1614610702576106cb816106c661123a565b6110c3565b610701576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006107c1611242565b6001546000540303905090565b60006107d982611247565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610840576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061084c84611315565b91509150610862818761085d61123a565b61133c565b6108ae576108778661087261123a565b6110c3565b6108ad576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610915576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109228686866001611380565b801561092d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506109fb856109d7888887611386565b7c0200000000000000000000000000000000000000000000000000000000176113ae565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610a83576000600185019050600060046000838152602001908152602001600020541415610a81576000548114610a80578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610aeb86868660016113d9565b505050505050565b610afb6113df565b60026009541415610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b38906121d1565b60405180910390fd5b6002600981905550610b51610cbe565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b96573d6000803e3d6000fd5b506001600981905550565b610bbc83838360405180602001604052806000815250610f99565b505050565b610bc96113df565b8181600d9190610bda929190611a5e565b505050565b6000610bea82611247565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c59576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cb26113df565b610cbc600061145d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cf79061240b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d239061240b565b8015610d705780601f10610d4557610100808354040283529160200191610d70565b820191906000526020600020905b815481529060010190602001808311610d5357829003601f168201915b5050505050905090565b610d826113df565b600a54610d8e33611523565b82610d9991906122a5565b1115610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190612151565b60405180910390fd5b600b5481610de66107b7565b610df091906122a5565b1115610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890612171565b60405180910390fd5b80600c54610e3f91906122fb565b341015610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906121b1565b60405180910390fd5b610e8b338261157a565b50565b8060076000610e9b61123a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f4861123a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f8d91906120f4565b60405180910390a35050565b610fa48484846107ce565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461100657610fcf84848484611598565b611005576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611017826111db565b61104d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110576116f8565b905060008151141561107857604051806020016040528060008152506110a3565b806110828461178a565b604051602001611093929190612069565b6040516020818303038152906040525b915050919050565b600c5481565b6110b96113df565b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115f6113df565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690612131565b60405180910390fd5b6111d88161145d565b50565b6000816111e6611242565b111580156111f5575060005482105b8015611233575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611256611242565b116112de576000548110156112dd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156112db575b60008114156112d15760046000836001900393508381526020019081526020016000205490506112a6565b8092505050611310565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861139d8686846117e3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6113e76117ec565b73ffffffffffffffffffffffffffffffffffffffff16611405610cbe565b73ffffffffffffffffffffffffffffffffffffffff161461145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290612191565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6115948282604051806020016040528060008152506117f4565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026115be61123a565b8786866040518563ffffffff1660e01b81526004016115e094939291906120a8565b602060405180830381600087803b1580156115fa57600080fd5b505af192505050801561162b57506040513d601f19601f820116820180604052508101906116289190611e20565b60015b6116a5573d806000811461165b576040519150601f19603f3d011682016040523d82523d6000602084013e611660565b606091505b5060008151141561169d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d80546117079061240b565b80601f01602080910402602001604051908101604052809291908181526020018280546117339061240b565b80156117805780601f1061175557610100808354040283529160200191611780565b820191906000526020600020905b81548152906001019060200180831161176357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156117ce57600184039350600a81066030018453600a81049050806117c9576117ce565b6117a3565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b6117fe8383611891565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461188c57600080549050600083820390505b61183e6000868380600101945086611598565b611874576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061182b57816000541461188957600080fd5b50505b505050565b60008054905060008214156118d2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118df6000848385611380565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611956836119476000866000611386565b61195085611a4e565b176113ae565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146119f757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506119bc565b506000821415611a33576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611a4960008483856113d9565b505050565b60006001821460e11b9050919050565b828054611a6a9061240b565b90600052602060002090601f016020900481019282611a8c5760008555611ad3565b82601f10611aa557803560ff1916838001178555611ad3565b82800160010185558215611ad3579182015b82811115611ad2578235825591602001919060010190611ab7565b5b509050611ae09190611ae4565b5090565b5b80821115611afd576000816000905550600101611ae5565b5090565b6000611b14611b0f84612231565b61220c565b905082815260208101848484011115611b3057611b2f61250a565b5b611b3b8482856123c9565b509392505050565b600081359050611b5281612646565b92915050565b600081359050611b678161265d565b92915050565b600081359050611b7c81612674565b92915050565b600081519050611b9181612674565b92915050565b600082601f830112611bac57611bab612500565b5b8135611bbc848260208601611b01565b91505092915050565b60008083601f840112611bdb57611bda612500565b5b8235905067ffffffffffffffff811115611bf857611bf76124fb565b5b602083019150836001820283011115611c1457611c13612505565b5b9250929050565b600081359050611c2a8161268b565b92915050565b600060208284031215611c4657611c45612514565b5b6000611c5484828501611b43565b91505092915050565b60008060408385031215611c7457611c73612514565b5b6000611c8285828601611b43565b9250506020611c9385828601611b43565b9150509250929050565b600080600060608486031215611cb657611cb5612514565b5b6000611cc486828701611b43565b9350506020611cd586828701611b43565b9250506040611ce686828701611c1b565b9150509250925092565b60008060008060808587031215611d0a57611d09612514565b5b6000611d1887828801611b43565b9450506020611d2987828801611b43565b9350506040611d3a87828801611c1b565b925050606085013567ffffffffffffffff811115611d5b57611d5a61250f565b5b611d6787828801611b97565b91505092959194509250565b60008060408385031215611d8a57611d89612514565b5b6000611d9885828601611b43565b9250506020611da985828601611b58565b9150509250929050565b60008060408385031215611dca57611dc9612514565b5b6000611dd885828601611b43565b9250506020611de985828601611c1b565b9150509250929050565b600060208284031215611e0957611e08612514565b5b6000611e1784828501611b6d565b91505092915050565b600060208284031215611e3657611e35612514565b5b6000611e4484828501611b82565b91505092915050565b60008060208385031215611e6457611e63612514565b5b600083013567ffffffffffffffff811115611e8257611e8161250f565b5b611e8e85828601611bc5565b92509250509250929050565b600060208284031215611eb057611eaf612514565b5b6000611ebe84828501611c1b565b91505092915050565b611ed081612355565b82525050565b611edf81612367565b82525050565b6000611ef082612262565b611efa8185612278565b9350611f0a8185602086016123d8565b611f1381612519565b840191505092915050565b6000611f298261226d565b611f338185612289565b9350611f438185602086016123d8565b611f4c81612519565b840191505092915050565b6000611f628261226d565b611f6c818561229a565b9350611f7c8185602086016123d8565b80840191505092915050565b6000611f95602683612289565b9150611fa08261252a565b604082019050919050565b6000611fb8601283612289565b9150611fc382612579565b602082019050919050565b6000611fdb601683612289565b9150611fe6826125a2565b602082019050919050565b6000611ffe602083612289565b9150612009826125cb565b602082019050919050565b6000612021601583612289565b915061202c826125f4565b602082019050919050565b6000612044601f83612289565b915061204f8261261d565b602082019050919050565b612063816123bf565b82525050565b60006120758285611f57565b91506120818284611f57565b91508190509392505050565b60006020820190506120a26000830184611ec7565b92915050565b60006080820190506120bd6000830187611ec7565b6120ca6020830186611ec7565b6120d7604083018561205a565b81810360608301526120e98184611ee5565b905095945050505050565b60006020820190506121096000830184611ed6565b92915050565b600060208201905081810360008301526121298184611f1e565b905092915050565b6000602082019050818103600083015261214a81611f88565b9050919050565b6000602082019050818103600083015261216a81611fab565b9050919050565b6000602082019050818103600083015261218a81611fce565b9050919050565b600060208201905081810360008301526121aa81611ff1565b9050919050565b600060208201905081810360008301526121ca81612014565b9050919050565b600060208201905081810360008301526121ea81612037565b9050919050565b6000602082019050612206600083018461205a565b92915050565b6000612216612227565b9050612222828261243d565b919050565b6000604051905090565b600067ffffffffffffffff82111561224c5761224b6124cc565b5b61225582612519565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006122b0826123bf565b91506122bb836123bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122f0576122ef61246e565b5b828201905092915050565b6000612306826123bf565b9150612311836123bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561234a5761234961246e565b5b828202905092915050565b60006123608261239f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156123f65780820151818401526020810190506123db565b83811115612405576000848401525b50505050565b6000600282049050600182168061242357607f821691505b602082108114156124375761243661249d565b5b50919050565b61244682612519565b810181811067ffffffffffffffff82111715612465576124646124cc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61264f81612355565b811461265a57600080fd5b50565b61266681612367565b811461267157600080fd5b50565b61267d81612373565b811461268857600080fd5b50565b612694816123bf565b811461269f57600080fd5b5056fea26469706673582212209690833f962964740228f857e36f87ec6f13cfdd3fd33548285c6b8c9e01e4a564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101355760003560e01c8063715018a6116100ab578063b88d4fde1161006f578063b88d4fde146103bd578063c87b56dd146103d9578063ca0dcf1614610416578063dbe2193f14610441578063e985e9c51461046a578063f2fde38b146104a757610135565b8063715018a61461030b5780638da5cb5b1461032257806395d89b411461034d578063a0712d6814610378578063a22cb4651461039457610135565b806323b872dd116100fd57806323b872dd146102265780633ccfd60b1461024257806342842e0e1461024c57806355f804b3146102685780636352211e1461029157806370a08231146102ce57610135565b806301ffc9a71461013a57806306fdde0314610177578063081812fc146101a2578063095ea7b3146101df57806318160ddd146101fb575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611df3565b6104d0565b60405161016e91906120f4565b60405180910390f35b34801561018357600080fd5b5061018c610562565b604051610199919061210f565b60405180910390f35b3480156101ae57600080fd5b506101c960048036038101906101c49190611e9a565b6105f4565b6040516101d6919061208d565b60405180910390f35b6101f960048036038101906101f49190611db3565b610673565b005b34801561020757600080fd5b506102106107b7565b60405161021d91906121f1565b60405180910390f35b610240600480360381019061023b9190611c9d565b6107ce565b005b61024a610af3565b005b61026660048036038101906102619190611c9d565b610ba1565b005b34801561027457600080fd5b5061028f600480360381019061028a9190611e4d565b610bc1565b005b34801561029d57600080fd5b506102b860048036038101906102b39190611e9a565b610bdf565b6040516102c5919061208d565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190611c30565b610bf1565b60405161030291906121f1565b60405180910390f35b34801561031757600080fd5b50610320610caa565b005b34801561032e57600080fd5b50610337610cbe565b604051610344919061208d565b60405180910390f35b34801561035957600080fd5b50610362610ce8565b60405161036f919061210f565b60405180910390f35b610392600480360381019061038d9190611e9a565b610d7a565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190611d73565b610e8e565b005b6103d760048036038101906103d29190611cf0565b610f99565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190611e9a565b61100c565b60405161040d919061210f565b60405180910390f35b34801561042257600080fd5b5061042b6110ab565b60405161043891906121f1565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190611e9a565b6110b1565b005b34801561047657600080fd5b50610491600480360381019061048c9190611c5d565b6110c3565b60405161049e91906120f4565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190611c30565b611157565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061055b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105719061240b565b80601f016020809104026020016040519081016040528092919081815260200182805461059d9061240b565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b60006105ff826111db565b610635576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061067e82610bdf565b90508073ffffffffffffffffffffffffffffffffffffffff1661069f61123a565b73ffffffffffffffffffffffffffffffffffffffff1614610702576106cb816106c661123a565b6110c3565b610701576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006107c1611242565b6001546000540303905090565b60006107d982611247565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610840576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061084c84611315565b91509150610862818761085d61123a565b61133c565b6108ae576108778661087261123a565b6110c3565b6108ad576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610915576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109228686866001611380565b801561092d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506109fb856109d7888887611386565b7c0200000000000000000000000000000000000000000000000000000000176113ae565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610a83576000600185019050600060046000838152602001908152602001600020541415610a81576000548114610a80578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610aeb86868660016113d9565b505050505050565b610afb6113df565b60026009541415610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b38906121d1565b60405180910390fd5b6002600981905550610b51610cbe565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b96573d6000803e3d6000fd5b506001600981905550565b610bbc83838360405180602001604052806000815250610f99565b505050565b610bc96113df565b8181600d9190610bda929190611a5e565b505050565b6000610bea82611247565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c59576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cb26113df565b610cbc600061145d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cf79061240b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d239061240b565b8015610d705780601f10610d4557610100808354040283529160200191610d70565b820191906000526020600020905b815481529060010190602001808311610d5357829003601f168201915b5050505050905090565b610d826113df565b600a54610d8e33611523565b82610d9991906122a5565b1115610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190612151565b60405180910390fd5b600b5481610de66107b7565b610df091906122a5565b1115610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890612171565b60405180910390fd5b80600c54610e3f91906122fb565b341015610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e78906121b1565b60405180910390fd5b610e8b338261157a565b50565b8060076000610e9b61123a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f4861123a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f8d91906120f4565b60405180910390a35050565b610fa48484846107ce565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461100657610fcf84848484611598565b611005576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611017826111db565b61104d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110576116f8565b905060008151141561107857604051806020016040528060008152506110a3565b806110828461178a565b604051602001611093929190612069565b6040516020818303038152906040525b915050919050565b600c5481565b6110b96113df565b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61115f6113df565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690612131565b60405180910390fd5b6111d88161145d565b50565b6000816111e6611242565b111580156111f5575060005482105b8015611233575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611256611242565b116112de576000548110156112dd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156112db575b60008114156112d15760046000836001900393508381526020019081526020016000205490506112a6565b8092505050611310565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861139d8686846117e3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6113e76117ec565b73ffffffffffffffffffffffffffffffffffffffff16611405610cbe565b73ffffffffffffffffffffffffffffffffffffffff161461145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290612191565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6115948282604051806020016040528060008152506117f4565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026115be61123a565b8786866040518563ffffffff1660e01b81526004016115e094939291906120a8565b602060405180830381600087803b1580156115fa57600080fd5b505af192505050801561162b57506040513d601f19601f820116820180604052508101906116289190611e20565b60015b6116a5573d806000811461165b576040519150601f19603f3d011682016040523d82523d6000602084013e611660565b606091505b5060008151141561169d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d80546117079061240b565b80601f01602080910402602001604051908101604052809291908181526020018280546117339061240b565b80156117805780601f1061175557610100808354040283529160200191611780565b820191906000526020600020905b81548152906001019060200180831161176357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156117ce57600184039350600a81066030018453600a81049050806117c9576117ce565b6117a3565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b6117fe8383611891565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461188c57600080549050600083820390505b61183e6000868380600101945086611598565b611874576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061182b57816000541461188957600080fd5b50505b505050565b60008054905060008214156118d2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118df6000848385611380565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611956836119476000866000611386565b61195085611a4e565b176113ae565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146119f757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506119bc565b506000821415611a33576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611a4960008483856113d9565b505050565b60006001821460e11b9050919050565b828054611a6a9061240b565b90600052602060002090601f016020900481019282611a8c5760008555611ad3565b82601f10611aa557803560ff1916838001178555611ad3565b82800160010185558215611ad3579182015b82811115611ad2578235825591602001919060010190611ab7565b5b509050611ae09190611ae4565b5090565b5b80821115611afd576000816000905550600101611ae5565b5090565b6000611b14611b0f84612231565b61220c565b905082815260208101848484011115611b3057611b2f61250a565b5b611b3b8482856123c9565b509392505050565b600081359050611b5281612646565b92915050565b600081359050611b678161265d565b92915050565b600081359050611b7c81612674565b92915050565b600081519050611b9181612674565b92915050565b600082601f830112611bac57611bab612500565b5b8135611bbc848260208601611b01565b91505092915050565b60008083601f840112611bdb57611bda612500565b5b8235905067ffffffffffffffff811115611bf857611bf76124fb565b5b602083019150836001820283011115611c1457611c13612505565b5b9250929050565b600081359050611c2a8161268b565b92915050565b600060208284031215611c4657611c45612514565b5b6000611c5484828501611b43565b91505092915050565b60008060408385031215611c7457611c73612514565b5b6000611c8285828601611b43565b9250506020611c9385828601611b43565b9150509250929050565b600080600060608486031215611cb657611cb5612514565b5b6000611cc486828701611b43565b9350506020611cd586828701611b43565b9250506040611ce686828701611c1b565b9150509250925092565b60008060008060808587031215611d0a57611d09612514565b5b6000611d1887828801611b43565b9450506020611d2987828801611b43565b9350506040611d3a87828801611c1b565b925050606085013567ffffffffffffffff811115611d5b57611d5a61250f565b5b611d6787828801611b97565b91505092959194509250565b60008060408385031215611d8a57611d89612514565b5b6000611d9885828601611b43565b9250506020611da985828601611b58565b9150509250929050565b60008060408385031215611dca57611dc9612514565b5b6000611dd885828601611b43565b9250506020611de985828601611c1b565b9150509250929050565b600060208284031215611e0957611e08612514565b5b6000611e1784828501611b6d565b91505092915050565b600060208284031215611e3657611e35612514565b5b6000611e4484828501611b82565b91505092915050565b60008060208385031215611e6457611e63612514565b5b600083013567ffffffffffffffff811115611e8257611e8161250f565b5b611e8e85828601611bc5565b92509250509250929050565b600060208284031215611eb057611eaf612514565b5b6000611ebe84828501611c1b565b91505092915050565b611ed081612355565b82525050565b611edf81612367565b82525050565b6000611ef082612262565b611efa8185612278565b9350611f0a8185602086016123d8565b611f1381612519565b840191505092915050565b6000611f298261226d565b611f338185612289565b9350611f438185602086016123d8565b611f4c81612519565b840191505092915050565b6000611f628261226d565b611f6c818561229a565b9350611f7c8185602086016123d8565b80840191505092915050565b6000611f95602683612289565b9150611fa08261252a565b604082019050919050565b6000611fb8601283612289565b9150611fc382612579565b602082019050919050565b6000611fdb601683612289565b9150611fe6826125a2565b602082019050919050565b6000611ffe602083612289565b9150612009826125cb565b602082019050919050565b6000612021601583612289565b915061202c826125f4565b602082019050919050565b6000612044601f83612289565b915061204f8261261d565b602082019050919050565b612063816123bf565b82525050565b60006120758285611f57565b91506120818284611f57565b91508190509392505050565b60006020820190506120a26000830184611ec7565b92915050565b60006080820190506120bd6000830187611ec7565b6120ca6020830186611ec7565b6120d7604083018561205a565b81810360608301526120e98184611ee5565b905095945050505050565b60006020820190506121096000830184611ed6565b92915050565b600060208201905081810360008301526121298184611f1e565b905092915050565b6000602082019050818103600083015261214a81611f88565b9050919050565b6000602082019050818103600083015261216a81611fab565b9050919050565b6000602082019050818103600083015261218a81611fce565b9050919050565b600060208201905081810360008301526121aa81611ff1565b9050919050565b600060208201905081810360008301526121ca81612014565b9050919050565b600060208201905081810360008301526121ea81612037565b9050919050565b6000602082019050612206600083018461205a565b92915050565b6000612216612227565b9050612222828261243d565b919050565b6000604051905090565b600067ffffffffffffffff82111561224c5761224b6124cc565b5b61225582612519565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006122b0826123bf565b91506122bb836123bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122f0576122ef61246e565b5b828201905092915050565b6000612306826123bf565b9150612311836123bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561234a5761234961246e565b5b828202905092915050565b60006123608261239f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156123f65780820151818401526020810190506123db565b83811115612405576000848401525b50505050565b6000600282049050600182168061242357607f821691505b602082108114156124375761243661249d565b5b50919050565b61244682612519565b810181811067ffffffffffffffff82111715612465576124646124cc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61264f81612355565b811461265a57600080fd5b50565b61266681612367565b811461267157600080fd5b50565b61267d81612373565b811461268857600080fd5b50565b612694816123bf565b811461269f57600080fd5b5056fea26469706673582212209690833f962964740228f857e36f87ec6f13cfdd3fd33548285c6b8c9e01e4a564736f6c63430008070033

Deployed Bytecode Sourcemap

57898:1210:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24789:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25691:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32182:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31615:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21442:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35821:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58585:127;;;:::i;:::-;;38742:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58899:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27084:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22626:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5568:103;;;;;;;;;;;;;:::i;:::-;;4920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25867:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58134:443;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32740:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39533:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26077:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58029:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59009:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33131:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5826:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24789:639;24874:4;25213:10;25198:25;;:11;:25;;;;:102;;;;25290:10;25275:25;;:11;:25;;;;25198:102;:179;;;;25367:10;25352:25;;:11;:25;;;;25198:179;25178:199;;24789:639;;;:::o;25691:100::-;25745:13;25778:5;25771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25691:100;:::o;32182:218::-;32258:7;32283:16;32291:7;32283;:16::i;:::-;32278:64;;32308:34;;;;;;;;;;;;;;32278:64;32362:15;:24;32378:7;32362:24;;;;;;;;;;;:30;;;;;;;;;;;;32355:37;;32182:218;;;:::o;31615:408::-;31704:13;31720:16;31728:7;31720;:16::i;:::-;31704:32;;31776:5;31753:28;;:19;:17;:19::i;:::-;:28;;;31749:175;;31801:44;31818:5;31825:19;:17;:19::i;:::-;31801:16;:44::i;:::-;31796:128;;31873:35;;;;;;;;;;;;;;31796:128;31749:175;31969:2;31936:15;:24;31952:7;31936:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32007:7;32003:2;31987:28;;31996:5;31987:28;;;;;;;;;;;;31693:330;31615:408;;:::o;21442:323::-;21503:7;21731:15;:13;:15::i;:::-;21716:12;;21700:13;;:28;:46;21693:53;;21442:323;:::o;35821:2825::-;35963:27;35993;36012:7;35993:18;:27::i;:::-;35963:57;;36078:4;36037:45;;36053:19;36037:45;;;36033:86;;36091:28;;;;;;;;;;;;;;36033:86;36133:27;36162:23;36189:35;36216:7;36189:26;:35::i;:::-;36132:92;;;;36324:68;36349:15;36366:4;36372:19;:17;:19::i;:::-;36324:24;:68::i;:::-;36319:180;;36412:43;36429:4;36435:19;:17;:19::i;:::-;36412:16;:43::i;:::-;36407:92;;36464:35;;;;;;;;;;;;;;36407:92;36319:180;36530:1;36516:16;;:2;:16;;;36512:52;;;36541:23;;;;;;;;;;;;;;36512:52;36577:43;36599:4;36605:2;36609:7;36618:1;36577:21;:43::i;:::-;36713:15;36710:160;;;36853:1;36832:19;36825:30;36710:160;37250:18;:24;37269:4;37250:24;;;;;;;;;;;;;;;;37248:26;;;;;;;;;;;;37319:18;:22;37338:2;37319:22;;;;;;;;;;;;;;;;37317:24;;;;;;;;;;;37641:146;37678:2;37727:45;37742:4;37748:2;37752:19;37727:14;:45::i;:::-;17841:8;37699:73;37641:18;:146::i;:::-;37612:17;:26;37630:7;37612:26;;;;;;;;;;;:175;;;;37958:1;17841:8;37907:19;:47;:52;37903:627;;;37980:19;38012:1;38002:7;:11;37980:33;;38169:1;38135:17;:30;38153:11;38135:30;;;;;;;;;;;;:35;38131:384;;;38273:13;;38258:11;:28;38254:242;;38453:19;38420:17;:30;38438:11;38420:30;;;;;;;;;;;:52;;;;38254:242;38131:384;37961:569;37903:627;38577:7;38573:2;38558:27;;38567:4;38558:27;;;;;;;;;;;;38596:42;38617:4;38623:2;38627:7;38636:1;38596:20;:42::i;:::-;35952:2694;;;35821:2825;;;:::o;58585:127::-;4806:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;58664:7:::2;:5;:7::i;:::-;58656:25;;:48;58682:21;58656:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;1801:1:::1;2755:7;:22;;;;58585:127::o:0;38742:193::-;38888:39;38905:4;38911:2;38915:7;38888:39;;;;;;;;;;;;:16;:39::i;:::-;38742:193;;;:::o;58899:102::-;4806:13;:11;:13::i;:::-;58986:7:::1;;58970:13;:23;;;;;;;:::i;:::-;;58899:102:::0;;:::o;27084:152::-;27156:7;27199:27;27218:7;27199:18;:27::i;:::-;27176:52;;27084:152;;;:::o;22626:233::-;22698:7;22739:1;22722:19;;:5;:19;;;22718:60;;;22750:28;;;;;;;;;;;;;;22718:60;16785:13;22796:18;:25;22815:5;22796:25;;;;;;;;;;;;;;;;:55;22789:62;;22626:233;;;:::o;5568:103::-;4806:13;:11;:13::i;:::-;5633:30:::1;5660:1;5633:18;:30::i;:::-;5568:103::o:0;4920:87::-;4966:7;4993:6;;;;;;;;;;;4986:13;;4920:87;:::o;25867:104::-;25923:13;25956:7;25949:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25867:104;:::o;58134:443::-;4806:13;:11;:13::i;:::-;58332:9:::1;;58303:25;58317:10;58303:13;:25::i;:::-;58292:8;:36;;;;:::i;:::-;:49;;58284:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;58411:10;;58399:8;58383:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;58375:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58492:8;58481;;:19;;;;:::i;:::-;58467:9;:34;;58459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58538:31;58548:10;58560:8;58538:9;:31::i;:::-;58134:443:::0;:::o;32740:234::-;32887:8;32835:18;:39;32854:19;:17;:19::i;:::-;32835:39;;;;;;;;;;;;;;;:49;32875:8;32835:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32947:8;32911:55;;32926:19;:17;:19::i;:::-;32911:55;;;32957:8;32911:55;;;;;;:::i;:::-;;;;;;;;32740:234;;:::o;39533:407::-;39708:31;39721:4;39727:2;39731:7;39708:12;:31::i;:::-;39772:1;39754:2;:14;;;:19;39750:183;;39793:56;39824:4;39830:2;39834:7;39843:5;39793:30;:56::i;:::-;39788:145;;39877:40;;;;;;;;;;;;;;39788:145;39750:183;39533:407;;;;:::o;26077:318::-;26150:13;26181:16;26189:7;26181;:16::i;:::-;26176:59;;26206:29;;;;;;;;;;;;;;26176:59;26248:21;26272:10;:8;:10::i;:::-;26248:34;;26325:1;26306:7;26300:21;:26;;:87;;;;;;;;;;;;;;;;;26353:7;26362:18;26372:7;26362:9;:18::i;:::-;26336:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26300:87;26293:94;;;26077:318;;;:::o;58029:37::-;;;;:::o;59009:96::-;4806:13;:11;:13::i;:::-;59088:9:::1;59077:8;:20;;;;59009:96:::0;:::o;33131:164::-;33228:4;33252:18;:25;33271:5;33252:25;;;;;;;;;;;;;;;:35;33278:8;33252:35;;;;;;;;;;;;;;;;;;;;;;;;;33245:42;;33131:164;;;;:::o;5826:201::-;4806:13;:11;:13::i;:::-;5935:1:::1;5915:22;;:8;:22;;;;5907:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5991:28;6010:8;5991:18;:28::i;:::-;5826:201:::0;:::o;33553:282::-;33618:4;33674:7;33655:15;:13;:15::i;:::-;:26;;:66;;;;;33708:13;;33698:7;:23;33655:66;:153;;;;;33807:1;17561:8;33759:17;:26;33777:7;33759:26;;;;;;;;;;;;:44;:49;33655:153;33635:173;;33553:282;;;:::o;55861:105::-;55921:7;55948:10;55941:17;;55861:105;:::o;20958:92::-;21014:7;20958:92;:::o;28239:1275::-;28306:7;28326:12;28341:7;28326:22;;28409:4;28390:15;:13;:15::i;:::-;:23;28386:1061;;28443:13;;28436:4;:20;28432:1015;;;28481:14;28498:17;:23;28516:4;28498:23;;;;;;;;;;;;28481:40;;28615:1;17561:8;28587:6;:24;:29;28583:845;;;29252:113;29269:1;29259:6;:11;29252:113;;;29312:17;:25;29330:6;;;;;;;29312:25;;;;;;;;;;;;29303:34;;29252:113;;;29398:6;29391:13;;;;;;28583:845;28458:989;28432:1015;28386:1061;29475:31;;;;;;;;;;;;;;28239:1275;;;;:::o;34716:485::-;34818:27;34847:23;34888:38;34929:15;:24;34945:7;34929:24;;;;;;;;;;;34888:65;;35106:18;35083:41;;35163:19;35157:26;35138:45;;35068:126;34716:485;;;:::o;33944:659::-;34093:11;34258:16;34251:5;34247:28;34238:37;;34418:16;34407:9;34403:32;34390:45;;34568:15;34557:9;34554:30;34546:5;34535:9;34532:20;34529:56;34519:66;;33944:659;;;;;:::o;40602:159::-;;;;;:::o;55170:311::-;55305:7;55325:16;17965:3;55351:19;:41;;55325:68;;17965:3;55419:31;55430:4;55436:2;55440:9;55419:10;:31::i;:::-;55411:40;;:62;;55404:69;;;55170:311;;;;;:::o;30062:450::-;30142:14;30310:16;30303:5;30299:28;30290:37;;30487:5;30473:11;30448:23;30444:41;30441:52;30434:5;30431:63;30421:73;;30062:450;;;;:::o;41426:158::-;;;;;:::o;5085:132::-;5160:12;:10;:12::i;:::-;5149:23;;:7;:5;:7::i;:::-;:23;;;5141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5085:132::o;6187:191::-;6261:16;6280:6;;;;;;;;;;;6261:25;;6306:8;6297:6;;:17;;;;;;;;;;;;;;;;;;6361:8;6330:40;;6351:8;6330:40;;;;;;;;;;;;6250:128;6187:191;:::o;22941:178::-;23002:7;16785:13;16923:2;23030:18;:25;23049:5;23030:25;;;;;;;;;;;;;;;;:50;;23029:82;23022:89;;22941:178;;;:::o;49693:112::-;49770:27;49780:2;49784:8;49770:27;;;;;;;;;;;;:9;:27::i;:::-;49693:112;;:::o;42024:716::-;42187:4;42233:2;42208:45;;;42254:19;:17;:19::i;:::-;42275:4;42281:7;42290:5;42208:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42204:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42508:1;42491:6;:13;:18;42487:235;;;42537:40;;;;;;;;;;;;;;42487:235;42680:6;42674:13;42665:6;42661:2;42657:15;42650:38;42204:529;42377:54;;;42367:64;;;:6;:64;;;;42360:71;;;42024:716;;;;;;:::o;58777:114::-;58837:13;58870;58863:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58777:114;:::o;56068:1745::-;56133:17;56567:4;56560;56554:11;56550:22;56659:1;56653:4;56646:15;56734:4;56731:1;56727:12;56720:19;;56816:1;56811:3;56804:14;56920:3;57159:5;57141:428;57167:1;57141:428;;;57207:1;57202:3;57198:11;57191:18;;57378:2;57372:4;57368:13;57364:2;57360:22;57355:3;57347:36;57472:2;57466:4;57462:13;57454:21;;57539:4;57529:25;;57547:5;;57529:25;57141:428;;;57145:21;57608:3;57603;57599:13;57723:4;57718:3;57714:14;57707:21;;57788:6;57783:3;57776:19;56172:1634;;;56068:1745;;;:::o;54871:147::-;55008:6;54871:147;;;;;:::o;3471:98::-;3524:7;3551:10;3544:17;;3471:98;:::o;48920:689::-;49051:19;49057:2;49061:8;49051:5;:19::i;:::-;49130:1;49112:2;:14;;;:19;49108:483;;49152:11;49166:13;;49152:27;;49198:13;49220:8;49214:3;:14;49198:30;;49247:233;49278:62;49317:1;49321:2;49325:7;;;;;;49334:5;49278:30;:62::i;:::-;49273:167;;49376:40;;;;;;;;;;;;;;49273:167;49475:3;49467:5;:11;49247:233;;49562:3;49545:13;;:20;49541:34;;49567:8;;;49541:34;49133:458;;49108:483;48920:689;;;:::o;43202:2966::-;43275:20;43298:13;;43275:36;;43338:1;43326:8;:13;43322:44;;;43348:18;;;;;;;;;;;;;;43322:44;43379:61;43409:1;43413:2;43417:12;43431:8;43379:21;:61::i;:::-;43923:1;16923:2;43893:1;:26;;43892:32;43880:8;:45;43854:18;:22;43873:2;43854:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44202:139;44239:2;44293:33;44316:1;44320:2;44324:1;44293:14;:33::i;:::-;44260:30;44281:8;44260:20;:30::i;:::-;:66;44202:18;:139::i;:::-;44168:17;:31;44186:12;44168:31;;;;;;;;;;;:173;;;;44358:16;44389:11;44418:8;44403:12;:23;44389:37;;44939:16;44935:2;44931:25;44919:37;;45311:12;45271:8;45230:1;45168:25;45109:1;45048;45021:335;45682:1;45668:12;45664:20;45622:346;45723:3;45714:7;45711:16;45622:346;;45941:7;45931:8;45928:1;45901:25;45898:1;45895;45890:59;45776:1;45767:7;45763:15;45752:26;;45622:346;;;45626:77;46013:1;46001:8;:13;45997:45;;;46023:19;;;;;;;;;;;;;;45997:45;46075:3;46059:13;:19;;;;43628:2462;;46100:60;46129:1;46133:2;46137:12;46151:8;46100:20;:60::i;:::-;43264:2904;43202:2966;;:::o;30614:324::-;30684:14;30917:1;30907:8;30904:15;30878:24;30874:46;30864:56;;30614:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:118::-;10650:24;10668:5;10650:24;:::i;:::-;10645:3;10638:37;10563:118;;:::o;10687:435::-;10867:3;10889:95;10980:3;10971:6;10889:95;:::i;:::-;10882:102;;11001:95;11092:3;11083:6;11001:95;:::i;:::-;10994:102;;11113:3;11106:10;;10687:435;;;;;:::o;11128:222::-;11221:4;11259:2;11248:9;11244:18;11236:26;;11272:71;11340:1;11329:9;11325:17;11316:6;11272:71;:::i;:::-;11128:222;;;;:::o;11356:640::-;11551:4;11589:3;11578:9;11574:19;11566:27;;11603:71;11671:1;11660:9;11656:17;11647:6;11603:71;:::i;:::-;11684:72;11752:2;11741:9;11737:18;11728:6;11684:72;:::i;:::-;11766;11834:2;11823:9;11819:18;11810:6;11766:72;:::i;:::-;11885:9;11879:4;11875:20;11870:2;11859:9;11855:18;11848:48;11913:76;11984:4;11975:6;11913:76;:::i;:::-;11905:84;;11356:640;;;;;;;:::o;12002:210::-;12089:4;12127:2;12116:9;12112:18;12104:26;;12140:65;12202:1;12191:9;12187:17;12178:6;12140:65;:::i;:::-;12002:210;;;;:::o;12218:313::-;12331:4;12369:2;12358:9;12354:18;12346:26;;12418:9;12412:4;12408:20;12404:1;12393:9;12389:17;12382:47;12446:78;12519:4;12510:6;12446:78;:::i;:::-;12438:86;;12218:313;;;;:::o;12537:419::-;12703:4;12741:2;12730:9;12726:18;12718:26;;12790:9;12784:4;12780:20;12776:1;12765:9;12761:17;12754:47;12818:131;12944:4;12818:131;:::i;:::-;12810:139;;12537:419;;;:::o;12962:::-;13128:4;13166:2;13155:9;13151:18;13143:26;;13215:9;13209:4;13205:20;13201:1;13190:9;13186:17;13179:47;13243:131;13369:4;13243:131;:::i;:::-;13235:139;;12962:419;;;:::o;13387:::-;13553:4;13591:2;13580:9;13576:18;13568:26;;13640:9;13634:4;13630:20;13626:1;13615:9;13611:17;13604:47;13668:131;13794:4;13668:131;:::i;:::-;13660:139;;13387:419;;;:::o;13812:::-;13978:4;14016:2;14005:9;14001:18;13993:26;;14065:9;14059:4;14055:20;14051:1;14040:9;14036:17;14029:47;14093:131;14219:4;14093:131;:::i;:::-;14085:139;;13812:419;;;:::o;14237:::-;14403:4;14441:2;14430:9;14426:18;14418:26;;14490:9;14484:4;14480:20;14476:1;14465:9;14461:17;14454:47;14518:131;14644:4;14518:131;:::i;:::-;14510:139;;14237:419;;;:::o;14662:::-;14828:4;14866:2;14855:9;14851:18;14843:26;;14915:9;14909:4;14905:20;14901:1;14890:9;14886:17;14879:47;14943:131;15069:4;14943:131;:::i;:::-;14935:139;;14662:419;;;:::o;15087:222::-;15180:4;15218:2;15207:9;15203:18;15195:26;;15231:71;15299:1;15288:9;15284:17;15275:6;15231:71;:::i;:::-;15087:222;;;;:::o;15315:129::-;15349:6;15376:20;;:::i;:::-;15366:30;;15405:33;15433:4;15425:6;15405:33;:::i;:::-;15315:129;;;:::o;15450:75::-;15483:6;15516:2;15510:9;15500:19;;15450:75;:::o;15531:307::-;15592:4;15682:18;15674:6;15671:30;15668:56;;;15704:18;;:::i;:::-;15668:56;15742:29;15764:6;15742:29;:::i;:::-;15734:37;;15826:4;15820;15816:15;15808:23;;15531:307;;;:::o;15844:98::-;15895:6;15929:5;15923:12;15913:22;;15844:98;;;:::o;15948:99::-;16000:6;16034:5;16028:12;16018:22;;15948:99;;;:::o;16053:168::-;16136:11;16170:6;16165:3;16158:19;16210:4;16205:3;16201:14;16186:29;;16053:168;;;;:::o;16227:169::-;16311:11;16345:6;16340:3;16333:19;16385:4;16380:3;16376:14;16361:29;;16227:169;;;;:::o;16402:148::-;16504:11;16541:3;16526:18;;16402:148;;;;:::o;16556:305::-;16596:3;16615:20;16633:1;16615:20;:::i;:::-;16610:25;;16649:20;16667:1;16649:20;:::i;:::-;16644:25;;16803:1;16735:66;16731:74;16728:1;16725:81;16722:107;;;16809:18;;:::i;:::-;16722:107;16853:1;16850;16846:9;16839:16;;16556:305;;;;:::o;16867:348::-;16907:7;16930:20;16948:1;16930:20;:::i;:::-;16925:25;;16964:20;16982:1;16964:20;:::i;:::-;16959:25;;17152:1;17084:66;17080:74;17077:1;17074:81;17069:1;17062:9;17055:17;17051:105;17048:131;;;17159:18;;:::i;:::-;17048:131;17207:1;17204;17200:9;17189:20;;16867:348;;;;:::o;17221:96::-;17258:7;17287:24;17305:5;17287:24;:::i;:::-;17276:35;;17221:96;;;:::o;17323:90::-;17357:7;17400:5;17393:13;17386:21;17375:32;;17323:90;;;:::o;17419:149::-;17455:7;17495:66;17488:5;17484:78;17473:89;;17419:149;;;:::o;17574:126::-;17611:7;17651:42;17644:5;17640:54;17629:65;;17574:126;;;:::o;17706:77::-;17743:7;17772:5;17761:16;;17706:77;;;:::o;17789:154::-;17873:6;17868:3;17863;17850:30;17935:1;17926:6;17921:3;17917:16;17910:27;17789:154;;;:::o;17949:307::-;18017:1;18027:113;18041:6;18038:1;18035:13;18027:113;;;18126:1;18121:3;18117:11;18111:18;18107:1;18102:3;18098:11;18091:39;18063:2;18060:1;18056:10;18051:15;;18027:113;;;18158:6;18155:1;18152:13;18149:101;;;18238:1;18229:6;18224:3;18220:16;18213:27;18149:101;17998:258;17949:307;;;:::o;18262:320::-;18306:6;18343:1;18337:4;18333:12;18323:22;;18390:1;18384:4;18380:12;18411:18;18401:81;;18467:4;18459:6;18455:17;18445:27;;18401:81;18529:2;18521:6;18518:14;18498:18;18495:38;18492:84;;;18548:18;;:::i;:::-;18492:84;18313:269;18262:320;;;:::o;18588:281::-;18671:27;18693:4;18671:27;:::i;:::-;18663:6;18659:40;18801:6;18789:10;18786:22;18765:18;18753:10;18750:34;18747:62;18744:88;;;18812:18;;:::i;:::-;18744:88;18852:10;18848:2;18841:22;18631:238;18588:281;;:::o;18875:180::-;18923:77;18920:1;18913:88;19020:4;19017:1;19010:15;19044:4;19041:1;19034:15;19061:180;19109:77;19106:1;19099:88;19206:4;19203:1;19196:15;19230:4;19227:1;19220:15;19247:180;19295:77;19292:1;19285:88;19392:4;19389:1;19382:15;19416:4;19413:1;19406:15;19433:117;19542:1;19539;19532:12;19556:117;19665:1;19662;19655:12;19679:117;19788:1;19785;19778:12;19802:117;19911:1;19908;19901:12;19925:117;20034:1;20031;20024:12;20048:117;20157:1;20154;20147:12;20171:102;20212:6;20263:2;20259:7;20254:2;20247:5;20243:14;20239:28;20229:38;;20171:102;;;:::o;20279:225::-;20419:34;20415:1;20407:6;20403:14;20396:58;20488:8;20483:2;20475:6;20471:15;20464:33;20279:225;:::o;20510:168::-;20650:20;20646:1;20638:6;20634:14;20627:44;20510:168;:::o;20684:172::-;20824:24;20820:1;20812:6;20808:14;20801:48;20684:172;:::o;20862:182::-;21002:34;20998:1;20990:6;20986:14;20979:58;20862:182;:::o;21050:171::-;21190:23;21186:1;21178:6;21174:14;21167:47;21050:171;:::o;21227:181::-;21367:33;21363:1;21355:6;21351:14;21344:57;21227:181;:::o;21414:122::-;21487:24;21505:5;21487:24;:::i;:::-;21480:5;21477:35;21467:63;;21526:1;21523;21516:12;21467:63;21414:122;:::o;21542:116::-;21612:21;21627:5;21612:21;:::i;:::-;21605:5;21602:32;21592:60;;21648:1;21645;21638:12;21592:60;21542:116;:::o;21664:120::-;21736:23;21753:5;21736:23;:::i;:::-;21729:5;21726:34;21716:62;;21774:1;21771;21764:12;21716:62;21664:120;:::o;21790:122::-;21863:24;21881:5;21863:24;:::i;:::-;21856:5;21853:35;21843:63;;21902:1;21899;21892:12;21843:63;21790:122;:::o

Swarm Source

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