ETH Price: $2,400.31 (-1.57%)

Token

Ill MND (ILLMND)
 

Overview

Max Total Supply

4,307 ILLMND

Holders

616

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
35 ILLMND
0x8bf98a67dcdd3efa0aa4379bdd8cfee754a9bb74
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:
IllMND

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
/**
        .;,..         
       .'kx,.         
       .'kk,..        
       .'Ok,..        
       .'kk,..        
       .'kx,.         
        .:;..         
                      
                      
                      
       .;c.           
      ..d0, .         
      ..x0,...        
      ..x0,...        
      ..x0;...        
      ..dK:...        
      ..;ddol'        
        .....         
                      
                      
       .,;.           
      ..d0, ..        
     ...x0;...        
     ...x0;...        
     ...x0;...        
      ..x0;...        
      ..cOxol'        
       ...'''.        
                      
                      
  ......      ....    
 ..ckd;.......'cxo'.  
...xXOOo,....:kO0K:.. 
...x0:ckOc:cx0d;dK:.. 
...x0:',oO00x:''dK:.. 
...x0;...','....d0:.. 
...xO,..     ...o0;.  
 ..,;.         .';.   
                      
                      
   .....              
 ...:l:...    .':.    
 ..,OX0x;......oK:..  
 ..,Ok:xOo'....oK:..  
 ..,Ok,,ckkdc,'oKc..  
 ..,Ox'..'lkOk:oKc..  
 ..,Ox......,xOKKc..  
 ...c:..  ....:ol'.   
              ..      
                      
    ...........       
  ..,::::::::::;..    
 ..'k0xddddddddOk,.   
 ..,Ox'........oKc..  
 ..,Ok'..   ...oK:..  
 ..,Ok'........oK:..  
 ..,OO;,'''''''dK:..  
 ..'okdddddddddxo'.   
  ...............     
     ........              
*/

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

    // The 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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [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 => address) private _tokenApprovals;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev 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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` 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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

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

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

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


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

pragma solidity ^0.8.4;



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

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

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

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

// File: contracts/test.sol



pragma solidity >=0.8.9 <0.9.0;

contract IllMND is ERC721AQueryable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public maxSupply = 4311;
	uint256 public Ownermint = 20;
    uint256 public maxGuaranteedLegendaries = 6;

    uint256 public guaranteedLegendaryPerAddy = 1;
	uint256 public maxMintAddress = 5;
	mapping(address => bool) public mintClaimed; 

    bool public paused = true;

	string public uriPrefix = '';
    string public uriSuffix = '.json';
	uint256 public cost = 0.002 ether;
    uint256 public priceGuaranteedLegendary = 0.03 ether;

  constructor(string memory baseURI) ERC721A("Ill MND", "ILLMND") {
      setUriPrefix(baseURI); 
      _safeMint(_msgSender(), Ownermint);

  }

  function mint(uint256 _mintAmount) public payable nonReentrant{
        require(!paused, 'The contract is paused!');
	if (totalSupply() >= maxSupply - maxGuaranteedLegendaries){
        require(!mintClaimed[_msgSender()], 'Address already claimed!');
        require(_mintAmount > 0 && _mintAmount <= guaranteedLegendaryPerAddy, 'Invalid mint amount!');
        require(totalSupply() + _mintAmount <= (maxSupply), 'Max supply exceeded!');
        require(msg.value >= priceGuaranteedLegendary * _mintAmount, 'Insufficient funds!');
        mintClaimed[_msgSender()] = true;
    }
    else{
        require(_mintAmount > 0 && _mintAmount <= maxMintAddress, 'Invalid mint amount!');
        require(totalSupply() + _mintAmount <= (maxSupply - maxGuaranteedLegendaries), 'Max supply exceeded!');
		require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
	}

    _safeMint(_msgSender(), _mintAmount);
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

	function setPaused() public onlyOwner {
    paused = !paused;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setPriceGuaranteedLegendary(uint256 _priceGuaranteedLegendary) public onlyOwner {
    priceGuaranteedLegendary = _priceGuaranteedLegendary;
  }

  function setmaxMintAddress(uint256 _maxMintAddress) public onlyOwner {
    maxMintAddress = _maxMintAddress;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

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

  function withdraw() public onlyOwner {
    payable(msg.sender).transfer(address(this).balance);
  }

  // Internal ->
  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":[],"name":"Ownermint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"guaranteedLegendaryPerAddy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGuaranteedLegendaries","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceGuaranteedLegendary","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceGuaranteedLegendary","type":"uint256"}],"name":"setPriceGuaranteedLegendary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAddress","type":"uint256"}],"name":"setmaxMintAddress","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6110d7600a556014600b556006600c556001600d8190556005600e556010805460ff1916909117905560a06040819052600060808190526200004491601191620004ab565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200007391601291620004ab565b5066071afd498d0000601355666a94d74f4300006014553480156200009757600080fd5b5060405162002a7b38038062002a7b833981016040819052620000ba9162000596565b6040805180820182526007815266125b1b0813539160ca1b60208083019182528351808501909452600684526512531313539160d21b9084015281519192916200010791600291620004ab565b5080516200011d906003906020840190620004ab565b5050600160005550620001303362000155565b60016009556200014081620001a7565b6200014e33600b54620001ca565b5062000714565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001b1620001ec565b8051620001c6906011906020840190620004ab565b5050565b620001c68282604051806020016040528060008152506200024d60201b60201c565b6008546001600160a01b031633146200024b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b620002598383620002c4565b6001600160a01b0383163b15620002bf576000548281035b60018101906200028790600090879086620003a4565b620002a5576040516368d2bf6b60e11b815260040160405180910390fd5b81811062000271578160005414620002bc57600080fd5b50505b505050565b6000546001600160a01b038316620002ee57604051622e076360e81b815260040160405180910390fd5b816200030d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620003575760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620003db9033908990889088906004016200064e565b602060405180830381600087803b158015620003f657600080fd5b505af192505050801562000429575060408051601f3d908101601f191682019092526200042691810190620006a4565b60015b62000488573d8080156200045a576040519150601f19603f3d011682016040523d82523d6000602084013e6200045f565b606091505b50805162000480576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b50505050565b828054620004b990620006d7565b90600052602060002090601f016020900481019282620004dd576000855562000528565b82601f10620004f857805160ff191683800117855562000528565b8280016001018555821562000528579182015b82811115620005285782518255916020019190600101906200050b565b50620005369291506200053a565b5090565b5b808211156200053657600081556001016200053b565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620005845781810151838201526020016200056a565b83811115620004a55750506000910152565b600060208284031215620005a957600080fd5b81516001600160401b0380821115620005c157600080fd5b818401915084601f830112620005d657600080fd5b815181811115620005eb57620005eb62000551565b604051601f8201601f19908116603f0116810190838211818310171562000616576200061662000551565b816040528281528760208487010111156200063057600080fd5b6200064383602083016020880162000567565b979650505050505050565b600060018060a01b0380871683528086166020840152508360408301526080606083015282518060808401526200068d8160a085016020870162000567565b601f01601f19169190910160a00195945050505050565b600060208284031215620006b757600080fd5b81516001600160e01b031981168114620006d057600080fd5b9392505050565b600181811c90821680620006ec57607f821691505b602082108114156200070e57634e487b7160e01b600052602260045260246000fd5b50919050565b61235780620007246000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063a7a09868116100ab578063e971ffa71161006f578063e971ffa71461068b578063e985e9c5146106a1578063f2fde38b146106c1578063f4010ea6146106e1578063f8c4dcd2146106f757600080fd5b8063a7a09868146105f2578063b88d4fde14610608578063c23dc68f14610628578063c87b56dd14610655578063d5abeb011461067557600080fd5b806399a2557a116100f257806399a2557a14610569578063a0712d6814610589578063a22cb4651461059c578063a54ef38a146105bc578063a5771985146105dc57600080fd5b8063715018a6146104d45780637ec4a659146104e95780638462151c146105095780638da5cb5b1461053657806395d89b411461055457600080fd5b806337a66d85116101bc5780635bbb2177116101805780635bbb2177146104385780635c975abb1461046557806362b99ad41461047f5780636352211e1461049457806370a08231146104b457600080fd5b806337a66d85146103b95780633ccfd60b146103ce57806342842e0e146103e357806344a0d68a146104035780635503a0e81461042357600080fd5b806313faede61161020357806313faede61461032157806316ba10e01461034557806318160ddd1461036557806323b872dd1461038357806331448007146103a357600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780631237e5e8146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611c46565b610717565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610769565b60405161026c9190611cbb565b3480156102a357600080fd5b506102b76102b2366004611cce565b6107fb565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611d03565b61083f565b005b3480156102fd57600080fd5b5061026061030c366004611d2d565b600f6020526000908152604090205460ff1681565b34801561032d57600080fd5b5061033760135481565b60405190815260200161026c565b34801561035157600080fd5b506102ef610360366004611de7565b6108df565b34801561037157600080fd5b50610337600154600054036000190190565b34801561038f57600080fd5b506102ef61039e366004611e30565b6108fe565b3480156103af57600080fd5b50610337600b5481565b3480156103c557600080fd5b506102ef610a8f565b3480156103da57600080fd5b506102ef610aab565b3480156103ef57600080fd5b506102ef6103fe366004611e30565b610ae2565b34801561040f57600080fd5b506102ef61041e366004611cce565b610b02565b34801561042f57600080fd5b5061028a610b0f565b34801561044457600080fd5b50610458610453366004611e6c565b610b9d565b60405161026c9190611f4f565b34801561047157600080fd5b506010546102609060ff1681565b34801561048b57600080fd5b5061028a610c6b565b3480156104a057600080fd5b506102b76104af366004611cce565b610c78565b3480156104c057600080fd5b506103376104cf366004611d2d565b610c83565b3480156104e057600080fd5b506102ef610cd2565b3480156104f557600080fd5b506102ef610504366004611de7565b610ce6565b34801561051557600080fd5b50610529610524366004611d2d565b610d01565b60405161026c9190611f91565b34801561054257600080fd5b506008546001600160a01b03166102b7565b34801561056057600080fd5b5061028a610e11565b34801561057557600080fd5b50610529610584366004611fc9565b610e20565b6102ef610597366004611cce565b610fac565b3480156105a857600080fd5b506102ef6105b7366004611ffc565b611338565b3480156105c857600080fd5b506102ef6105d7366004611cce565b6113ce565b3480156105e857600080fd5b50610337600c5481565b3480156105fe57600080fd5b50610337600d5481565b34801561061457600080fd5b506102ef610623366004612038565b6113db565b34801561063457600080fd5b50610648610643366004611cce565b611425565b60405161026c91906120b4565b34801561066157600080fd5b5061028a610670366004611cce565b6114ad565b34801561068157600080fd5b50610337600a5481565b34801561069757600080fd5b5061033760145481565b3480156106ad57600080fd5b506102606106bc3660046120c2565b61157a565b3480156106cd57600080fd5b506102ef6106dc366004611d2d565b6115a8565b3480156106ed57600080fd5b50610337600e5481565b34801561070357600080fd5b506102ef610712366004611cce565b61161e565b60006301ffc9a760e01b6001600160e01b03198316148061074857506380ac58cd60e01b6001600160e01b03198316145b806107635750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610778906120f5565b80601f01602080910402602001604051908101604052809291908181526020018280546107a4906120f5565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b5050505050905090565b60006108068261162b565b610823576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084a82610c78565b9050336001600160a01b0382161461088357610866813361157a565b610883576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108e7611660565b80516108fa906012906020840190611b97565b5050565b6000610909826116ba565b9050836001600160a01b0316816001600160a01b03161461093c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109895761096c863361157a565b61098957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109b057604051633a954ecd60e21b815260040160405180910390fd5b80156109bb57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610a465760018401600081815260046020526040902054610a44576000548114610a445760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a97611660565b6010805460ff19811660ff90911615179055565b610ab3611660565b60405133904780156108fc02916000818181858888f19350505050158015610adf573d6000803e3d6000fd5b50565b610afd838383604051806020016040528060008152506113db565b505050565b610b0a611660565b601355565b60128054610b1c906120f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b48906120f5565b8015610b955780601f10610b6a57610100808354040283529160200191610b95565b820191906000526020600020905b815481529060010190602001808311610b7857829003601f168201915b505050505081565b805160609060008167ffffffffffffffff811115610bbd57610bbd611d48565b604051908082528060200260200182016040528015610c0f57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610bdb5790505b50905060005b828114610c6357610c3e858281518110610c3157610c31612130565b6020026020010151611425565b828281518110610c5057610c50612130565b6020908102919091010152600101610c15565b509392505050565b60118054610b1c906120f5565b6000610763826116ba565b60006001600160a01b038216610cac576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610cda611660565b610ce46000611723565b565b610cee611660565b80516108fa906011906020840190611b97565b60606000806000610d1185610c83565b905060008167ffffffffffffffff811115610d2e57610d2e611d48565b604051908082528060200260200182016040528015610d57578160200160208202803683370190505b509050610d8460408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610e0557610d9781611775565b9150816040015115610da857610dfd565b81516001600160a01b031615610dbd57815194505b876001600160a01b0316856001600160a01b03161415610dfd5780838780600101985081518110610df057610df0612130565b6020026020010181815250505b600101610d87565b50909695505050505050565b606060038054610778906120f5565b6060818310610e4257604051631960ccad60e11b815260040160405180910390fd5b600080610e4e60005490565b90506001851015610e5e57600194505b80841115610e6a578093505b6000610e7587610c83565b905084861015610e945785850381811015610e8e578091505b50610e98565b5060005b60008167ffffffffffffffff811115610eb357610eb3611d48565b604051908082528060200260200182016040528015610edc578160200160208202803683370190505b50905081610eef579350610fa592505050565b6000610efa88611425565b905060008160400151610f0b575080515b885b888114158015610f1d5750848714155b15610f9957610f2b81611775565b9250826040015115610f3c57610f91565b82516001600160a01b031615610f5157825191505b8a6001600160a01b0316826001600160a01b03161415610f915780848880600101995081518110610f8457610f84612130565b6020026020010181815250505b600101610f0d565b50505092835250909150505b9392505050565b600260095414156110045760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260095560105460ff161561105c5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610ffb565b600c54600a5461106c919061215c565b61107d600154600054036000190190565b1061120d57336000908152600f602052604090205460ff16156110e25760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610ffb565b6000811180156110f45750600d548111155b6111375760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610ffb565b600a548161114c600154600054036000190190565b6111569190612173565b111561119b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610ffb565b806014546111a9919061218b565b3410156111ee5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ffb565b336000908152600f60205260409020805460ff19166001179055611326565b60008111801561121f5750600e548111155b6112625760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610ffb565b600c54600a54611272919061215c565b81611284600154600054036000190190565b61128e9190612173565b11156112d35760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610ffb565b806013546112e1919061218b565b3410156113265760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ffb565b61133033826117b1565b506001600955565b6001600160a01b0382163314156113625760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113d6611660565b600e55565b6113e68484846108fe565b6001600160a01b0383163b1561141f57611402848484846117cb565b61141f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061147e57506000548310155b156114895792915050565b61149283611775565b90508060400151156114a45792915050565b610fa5836118c3565b60606114b88261162b565b61151c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ffb565b60006115266118f8565b905060008151116115465760405180602001604052806000815250610fa5565b8061155084611907565b6012604051602001611564939291906121aa565b6040516020818303038152906040529392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6115b0611660565b6001600160a01b0381166116155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ffb565b610adf81611723565b611626611660565b601455565b60008160011115801561163f575060005482105b8015610763575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610ce45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ffb565b6000818060011161170a5760005481101561170a57600081815260046020526040902054600160e01b8116611708575b80610fa55750600019016000818152600460205260409020546116ea565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461076390611a05565b6108fa828260405180602001604052806000815250611a4d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061180090339089908890889060040161226e565b602060405180830381600087803b15801561181a57600080fd5b505af192505050801561184a575060408051601f3d908101601f19168201909252611847918101906122ab565b60015b6118a5573d808015611878576040519150601f19603f3d011682016040523d82523d6000602084013e61187d565b606091505b50805161189d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526107636118f3836116ba565b611a05565b606060118054610778906120f5565b60608161192b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611955578061193f816122c8565b915061194e9050600a836122f9565b915061192f565b60008167ffffffffffffffff81111561197057611970611d48565b6040519080825280601f01601f19166020018201604052801561199a576020820181803683370190505b5090505b84156118bb576119af60018361215c565b91506119bc600a8661230d565b6119c7906030612173565b60f81b8183815181106119dc576119dc612130565b60200101906001600160f81b031916908160001a9053506119fe600a866122f9565b945061199e565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b611a578383611aba565b6001600160a01b0383163b15610afd576000548281035b611a8160008683806001019450866117cb565b611a9e576040516368d2bf6b60e11b815260040160405180910390fd5b818110611a6e578160005414611ab357600080fd5b5050505050565b6000546001600160a01b038316611ae357604051622e076360e81b815260040160405180910390fd5b81611b015760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b4b5760005550505050565b828054611ba3906120f5565b90600052602060002090601f016020900481019282611bc55760008555611c0b565b82601f10611bde57805160ff1916838001178555611c0b565b82800160010185558215611c0b579182015b82811115611c0b578251825591602001919060010190611bf0565b50611c17929150611c1b565b5090565b5b80821115611c175760008155600101611c1c565b6001600160e01b031981168114610adf57600080fd5b600060208284031215611c5857600080fd5b8135610fa581611c30565b60005b83811015611c7e578181015183820152602001611c66565b8381111561141f5750506000910152565b60008151808452611ca7816020860160208601611c63565b601f01601f19169290920160200192915050565b602081526000610fa56020830184611c8f565b600060208284031215611ce057600080fd5b5035919050565b80356001600160a01b0381168114611cfe57600080fd5b919050565b60008060408385031215611d1657600080fd5b611d1f83611ce7565b946020939093013593505050565b600060208284031215611d3f57600080fd5b610fa582611ce7565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611d8757611d87611d48565b604052919050565b600067ffffffffffffffff831115611da957611da9611d48565b611dbc601f8401601f1916602001611d5e565b9050828152838383011115611dd057600080fd5b828260208301376000602084830101529392505050565b600060208284031215611df957600080fd5b813567ffffffffffffffff811115611e1057600080fd5b8201601f81018413611e2157600080fd5b6118bb84823560208401611d8f565b600080600060608486031215611e4557600080fd5b611e4e84611ce7565b9250611e5c60208501611ce7565b9150604084013590509250925092565b60006020808385031215611e7f57600080fd5b823567ffffffffffffffff80821115611e9757600080fd5b818501915085601f830112611eab57600080fd5b813581811115611ebd57611ebd611d48565b8060051b9150611ece848301611d5e565b8181529183018401918481019088841115611ee857600080fd5b938501935b83851015611f0657843582529385019390850190611eed565b98975050505050505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610e0557611f7e838551611f12565b9284019260809290920191600101611f6b565b6020808252825182820181905260009190848201906040850190845b81811015610e0557835183529284019291840191600101611fad565b600080600060608486031215611fde57600080fd5b611fe784611ce7565b95602085013595506040909401359392505050565b6000806040838503121561200f57600080fd5b61201883611ce7565b91506020830135801515811461202d57600080fd5b809150509250929050565b6000806000806080858703121561204e57600080fd5b61205785611ce7565b935061206560208601611ce7565b925060408501359150606085013567ffffffffffffffff81111561208857600080fd5b8501601f8101871361209957600080fd5b6120a887823560208401611d8f565b91505092959194509250565b608081016107638284611f12565b600080604083850312156120d557600080fd5b6120de83611ce7565b91506120ec60208401611ce7565b90509250929050565b600181811c9082168061210957607f821691505b6020821081141561212a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561216e5761216e612146565b500390565b6000821982111561218657612186612146565b500190565b60008160001904831182151516156121a5576121a5612146565b500290565b6000845160206121bd8285838a01611c63565b8551918401916121d08184848a01611c63565b8554920191600090600181811c90808316806121ed57607f831692505b85831081141561220b57634e487b7160e01b85526022600452602485fd5b80801561221f57600181146122305761225d565b60ff1985168852838801955061225d565b60008b81526020902060005b858110156122555781548a82015290840190880161223c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122a190830184611c8f565b9695505050505050565b6000602082840312156122bd57600080fd5b8151610fa581611c30565b60006000198214156122dc576122dc612146565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612308576123086122e3565b500490565b60008261231c5761231c6122e3565b50069056fea26469706673582212204d2f5421a8e229a5693677adddca85dc04781763c40d4602cfb8448fb7ff062464736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5564424e506f463177476d7633537a7a4a515a6b7375757a696d506e4a71544b34734b517339487a6e6e57362f00000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063a7a09868116100ab578063e971ffa71161006f578063e971ffa71461068b578063e985e9c5146106a1578063f2fde38b146106c1578063f4010ea6146106e1578063f8c4dcd2146106f757600080fd5b8063a7a09868146105f2578063b88d4fde14610608578063c23dc68f14610628578063c87b56dd14610655578063d5abeb011461067557600080fd5b806399a2557a116100f257806399a2557a14610569578063a0712d6814610589578063a22cb4651461059c578063a54ef38a146105bc578063a5771985146105dc57600080fd5b8063715018a6146104d45780637ec4a659146104e95780638462151c146105095780638da5cb5b1461053657806395d89b411461055457600080fd5b806337a66d85116101bc5780635bbb2177116101805780635bbb2177146104385780635c975abb1461046557806362b99ad41461047f5780636352211e1461049457806370a08231146104b457600080fd5b806337a66d85146103b95780633ccfd60b146103ce57806342842e0e146103e357806344a0d68a146104035780635503a0e81461042357600080fd5b806313faede61161020357806313faede61461032157806316ba10e01461034557806318160ddd1461036557806323b872dd1461038357806331448007146103a357600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780631237e5e8146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611c46565b610717565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610769565b60405161026c9190611cbb565b3480156102a357600080fd5b506102b76102b2366004611cce565b6107fb565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611d03565b61083f565b005b3480156102fd57600080fd5b5061026061030c366004611d2d565b600f6020526000908152604090205460ff1681565b34801561032d57600080fd5b5061033760135481565b60405190815260200161026c565b34801561035157600080fd5b506102ef610360366004611de7565b6108df565b34801561037157600080fd5b50610337600154600054036000190190565b34801561038f57600080fd5b506102ef61039e366004611e30565b6108fe565b3480156103af57600080fd5b50610337600b5481565b3480156103c557600080fd5b506102ef610a8f565b3480156103da57600080fd5b506102ef610aab565b3480156103ef57600080fd5b506102ef6103fe366004611e30565b610ae2565b34801561040f57600080fd5b506102ef61041e366004611cce565b610b02565b34801561042f57600080fd5b5061028a610b0f565b34801561044457600080fd5b50610458610453366004611e6c565b610b9d565b60405161026c9190611f4f565b34801561047157600080fd5b506010546102609060ff1681565b34801561048b57600080fd5b5061028a610c6b565b3480156104a057600080fd5b506102b76104af366004611cce565b610c78565b3480156104c057600080fd5b506103376104cf366004611d2d565b610c83565b3480156104e057600080fd5b506102ef610cd2565b3480156104f557600080fd5b506102ef610504366004611de7565b610ce6565b34801561051557600080fd5b50610529610524366004611d2d565b610d01565b60405161026c9190611f91565b34801561054257600080fd5b506008546001600160a01b03166102b7565b34801561056057600080fd5b5061028a610e11565b34801561057557600080fd5b50610529610584366004611fc9565b610e20565b6102ef610597366004611cce565b610fac565b3480156105a857600080fd5b506102ef6105b7366004611ffc565b611338565b3480156105c857600080fd5b506102ef6105d7366004611cce565b6113ce565b3480156105e857600080fd5b50610337600c5481565b3480156105fe57600080fd5b50610337600d5481565b34801561061457600080fd5b506102ef610623366004612038565b6113db565b34801561063457600080fd5b50610648610643366004611cce565b611425565b60405161026c91906120b4565b34801561066157600080fd5b5061028a610670366004611cce565b6114ad565b34801561068157600080fd5b50610337600a5481565b34801561069757600080fd5b5061033760145481565b3480156106ad57600080fd5b506102606106bc3660046120c2565b61157a565b3480156106cd57600080fd5b506102ef6106dc366004611d2d565b6115a8565b3480156106ed57600080fd5b50610337600e5481565b34801561070357600080fd5b506102ef610712366004611cce565b61161e565b60006301ffc9a760e01b6001600160e01b03198316148061074857506380ac58cd60e01b6001600160e01b03198316145b806107635750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610778906120f5565b80601f01602080910402602001604051908101604052809291908181526020018280546107a4906120f5565b80156107f15780601f106107c6576101008083540402835291602001916107f1565b820191906000526020600020905b8154815290600101906020018083116107d457829003601f168201915b5050505050905090565b60006108068261162b565b610823576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084a82610c78565b9050336001600160a01b0382161461088357610866813361157a565b610883576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108e7611660565b80516108fa906012906020840190611b97565b5050565b6000610909826116ba565b9050836001600160a01b0316816001600160a01b03161461093c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176109895761096c863361157a565b61098957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109b057604051633a954ecd60e21b815260040160405180910390fd5b80156109bb57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610a465760018401600081815260046020526040902054610a44576000548114610a445760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610a97611660565b6010805460ff19811660ff90911615179055565b610ab3611660565b60405133904780156108fc02916000818181858888f19350505050158015610adf573d6000803e3d6000fd5b50565b610afd838383604051806020016040528060008152506113db565b505050565b610b0a611660565b601355565b60128054610b1c906120f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b48906120f5565b8015610b955780601f10610b6a57610100808354040283529160200191610b95565b820191906000526020600020905b815481529060010190602001808311610b7857829003601f168201915b505050505081565b805160609060008167ffffffffffffffff811115610bbd57610bbd611d48565b604051908082528060200260200182016040528015610c0f57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610bdb5790505b50905060005b828114610c6357610c3e858281518110610c3157610c31612130565b6020026020010151611425565b828281518110610c5057610c50612130565b6020908102919091010152600101610c15565b509392505050565b60118054610b1c906120f5565b6000610763826116ba565b60006001600160a01b038216610cac576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610cda611660565b610ce46000611723565b565b610cee611660565b80516108fa906011906020840190611b97565b60606000806000610d1185610c83565b905060008167ffffffffffffffff811115610d2e57610d2e611d48565b604051908082528060200260200182016040528015610d57578160200160208202803683370190505b509050610d8460408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610e0557610d9781611775565b9150816040015115610da857610dfd565b81516001600160a01b031615610dbd57815194505b876001600160a01b0316856001600160a01b03161415610dfd5780838780600101985081518110610df057610df0612130565b6020026020010181815250505b600101610d87565b50909695505050505050565b606060038054610778906120f5565b6060818310610e4257604051631960ccad60e11b815260040160405180910390fd5b600080610e4e60005490565b90506001851015610e5e57600194505b80841115610e6a578093505b6000610e7587610c83565b905084861015610e945785850381811015610e8e578091505b50610e98565b5060005b60008167ffffffffffffffff811115610eb357610eb3611d48565b604051908082528060200260200182016040528015610edc578160200160208202803683370190505b50905081610eef579350610fa592505050565b6000610efa88611425565b905060008160400151610f0b575080515b885b888114158015610f1d5750848714155b15610f9957610f2b81611775565b9250826040015115610f3c57610f91565b82516001600160a01b031615610f5157825191505b8a6001600160a01b0316826001600160a01b03161415610f915780848880600101995081518110610f8457610f84612130565b6020026020010181815250505b600101610f0d565b50505092835250909150505b9392505050565b600260095414156110045760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260095560105460ff161561105c5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610ffb565b600c54600a5461106c919061215c565b61107d600154600054036000190190565b1061120d57336000908152600f602052604090205460ff16156110e25760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610ffb565b6000811180156110f45750600d548111155b6111375760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610ffb565b600a548161114c600154600054036000190190565b6111569190612173565b111561119b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610ffb565b806014546111a9919061218b565b3410156111ee5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ffb565b336000908152600f60205260409020805460ff19166001179055611326565b60008111801561121f5750600e548111155b6112625760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610ffb565b600c54600a54611272919061215c565b81611284600154600054036000190190565b61128e9190612173565b11156112d35760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610ffb565b806013546112e1919061218b565b3410156113265760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610ffb565b61133033826117b1565b506001600955565b6001600160a01b0382163314156113625760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113d6611660565b600e55565b6113e68484846108fe565b6001600160a01b0383163b1561141f57611402848484846117cb565b61141f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061147e57506000548310155b156114895792915050565b61149283611775565b90508060400151156114a45792915050565b610fa5836118c3565b60606114b88261162b565b61151c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ffb565b60006115266118f8565b905060008151116115465760405180602001604052806000815250610fa5565b8061155084611907565b6012604051602001611564939291906121aa565b6040516020818303038152906040529392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6115b0611660565b6001600160a01b0381166116155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ffb565b610adf81611723565b611626611660565b601455565b60008160011115801561163f575060005482105b8015610763575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610ce45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ffb565b6000818060011161170a5760005481101561170a57600081815260046020526040902054600160e01b8116611708575b80610fa55750600019016000818152600460205260409020546116ea565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461076390611a05565b6108fa828260405180602001604052806000815250611a4d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061180090339089908890889060040161226e565b602060405180830381600087803b15801561181a57600080fd5b505af192505050801561184a575060408051601f3d908101601f19168201909252611847918101906122ab565b60015b6118a5573d808015611878576040519150601f19603f3d011682016040523d82523d6000602084013e61187d565b606091505b50805161189d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526107636118f3836116ba565b611a05565b606060118054610778906120f5565b60608161192b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611955578061193f816122c8565b915061194e9050600a836122f9565b915061192f565b60008167ffffffffffffffff81111561197057611970611d48565b6040519080825280601f01601f19166020018201604052801561199a576020820181803683370190505b5090505b84156118bb576119af60018361215c565b91506119bc600a8661230d565b6119c7906030612173565b60f81b8183815181106119dc576119dc612130565b60200101906001600160f81b031916908160001a9053506119fe600a866122f9565b945061199e565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b611a578383611aba565b6001600160a01b0383163b15610afd576000548281035b611a8160008683806001019450866117cb565b611a9e576040516368d2bf6b60e11b815260040160405180910390fd5b818110611a6e578160005414611ab357600080fd5b5050505050565b6000546001600160a01b038316611ae357604051622e076360e81b815260040160405180910390fd5b81611b015760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b4b5760005550505050565b828054611ba3906120f5565b90600052602060002090601f016020900481019282611bc55760008555611c0b565b82601f10611bde57805160ff1916838001178555611c0b565b82800160010185558215611c0b579182015b82811115611c0b578251825591602001919060010190611bf0565b50611c17929150611c1b565b5090565b5b80821115611c175760008155600101611c1c565b6001600160e01b031981168114610adf57600080fd5b600060208284031215611c5857600080fd5b8135610fa581611c30565b60005b83811015611c7e578181015183820152602001611c66565b8381111561141f5750506000910152565b60008151808452611ca7816020860160208601611c63565b601f01601f19169290920160200192915050565b602081526000610fa56020830184611c8f565b600060208284031215611ce057600080fd5b5035919050565b80356001600160a01b0381168114611cfe57600080fd5b919050565b60008060408385031215611d1657600080fd5b611d1f83611ce7565b946020939093013593505050565b600060208284031215611d3f57600080fd5b610fa582611ce7565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611d8757611d87611d48565b604052919050565b600067ffffffffffffffff831115611da957611da9611d48565b611dbc601f8401601f1916602001611d5e565b9050828152838383011115611dd057600080fd5b828260208301376000602084830101529392505050565b600060208284031215611df957600080fd5b813567ffffffffffffffff811115611e1057600080fd5b8201601f81018413611e2157600080fd5b6118bb84823560208401611d8f565b600080600060608486031215611e4557600080fd5b611e4e84611ce7565b9250611e5c60208501611ce7565b9150604084013590509250925092565b60006020808385031215611e7f57600080fd5b823567ffffffffffffffff80821115611e9757600080fd5b818501915085601f830112611eab57600080fd5b813581811115611ebd57611ebd611d48565b8060051b9150611ece848301611d5e565b8181529183018401918481019088841115611ee857600080fd5b938501935b83851015611f0657843582529385019390850190611eed565b98975050505050505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610e0557611f7e838551611f12565b9284019260809290920191600101611f6b565b6020808252825182820181905260009190848201906040850190845b81811015610e0557835183529284019291840191600101611fad565b600080600060608486031215611fde57600080fd5b611fe784611ce7565b95602085013595506040909401359392505050565b6000806040838503121561200f57600080fd5b61201883611ce7565b91506020830135801515811461202d57600080fd5b809150509250929050565b6000806000806080858703121561204e57600080fd5b61205785611ce7565b935061206560208601611ce7565b925060408501359150606085013567ffffffffffffffff81111561208857600080fd5b8501601f8101871361209957600080fd5b6120a887823560208401611d8f565b91505092959194509250565b608081016107638284611f12565b600080604083850312156120d557600080fd5b6120de83611ce7565b91506120ec60208401611ce7565b90509250929050565b600181811c9082168061210957607f821691505b6020821081141561212a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008282101561216e5761216e612146565b500390565b6000821982111561218657612186612146565b500190565b60008160001904831182151516156121a5576121a5612146565b500290565b6000845160206121bd8285838a01611c63565b8551918401916121d08184848a01611c63565b8554920191600090600181811c90808316806121ed57607f831692505b85831081141561220b57634e487b7160e01b85526022600452602485fd5b80801561221f57600181146122305761225d565b60ff1985168852838801955061225d565b60008b81526020902060005b858110156122555781548a82015290840190880161223c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122a190830184611c8f565b9695505050505050565b6000602082840312156122bd57600080fd5b8151610fa581611c30565b60006000198214156122dc576122dc612146565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612308576123086122e3565b500490565b60008261231c5761231c6122e3565b50069056fea26469706673582212204d2f5421a8e229a5693677adddca85dc04781763c40d4602cfb8448fb7ff062464736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5564424e506f463177476d7633537a7a4a515a6b7375757a696d506e4a71544b34734b517339487a6e6e57362f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmUdBNPoF1wGmv3SzzJQZksuuzimPnJqTK4sKQs9HznnW6/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5564424e506f463177476d7633537a7a4a515a6b737575
Arg [3] : 7a696d506e4a71544b34734b517339487a6e6e57362f00000000000000000000


Deployed Bytecode Sourcemap

63935:3004:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24928:615;;;;;;;;;;-1:-1:-1;24928:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24928:615:0;;;;;;;;30575:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32521:204::-;;;;;;;;;;-1:-1:-1;32521:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;32521:204:0;1528:203:1;32069:386:0;;;;;;;;;;-1:-1:-1;32069:386:0;;;;;:::i;:::-;;:::i;:::-;;64247:43;;;;;;;;;;-1:-1:-1;64247:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;64403:33;;;;;;;;;;;;;;;;;;;2510:25:1;;;2498:2;2483:18;64403:33:0;2364:177:1;66500:100:0;;;;;;;;;;-1:-1:-1;66500:100:0;;;;;:::i;:::-;;:::i;23982:315::-;;;;;;;;;;;;66819:1;24248:12;24035:7;24232:13;:28;-1:-1:-1;;24232:46:0;;23982:315;41786:2800;;;;;;;;;;-1:-1:-1;41786:2800:0;;;;;:::i;:::-;;:::i;64073:29::-;;;;;;;;;;;;;;;;65961:67;;;;;;;;;;;;;:::i;66606:101::-;;;;;;;;;;;;;:::i;33411:185::-;;;;;;;;;;-1:-1:-1;33411:185:0;;;;;:::i;:::-;;:::i;66034:74::-;;;;;;;;;;-1:-1:-1;66034:74:0;;;;;:::i;:::-;;:::i;64366:33::-;;;;;;;;;;;;;:::i;59154:468::-;;;;;;;;;;-1:-1:-1;59154:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;64300:25::-;;;;;;;;;;-1:-1:-1;64300:25:0;;;;;;;;64331:28;;;;;;;;;;;;;:::i;30364:144::-;;;;;;;;;;-1:-1:-1;30364:144:0;;;;;:::i;:::-;;:::i;25607:224::-;;;;;;;;;;-1:-1:-1;25607:224:0;;;;;:::i;:::-;;:::i;9519:103::-;;;;;;;;;;;;;:::i;66394:100::-;;;;;;;;;;-1:-1:-1;66394:100:0;;;;;:::i;:::-;;:::i;62966:892::-;;;;;;;;;;-1:-1:-1;62966:892:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8871:87::-;;;;;;;;;;-1:-1:-1;8944:6:0;;-1:-1:-1;;;;;8944:6:0;8871:87;;30744:104;;;;;;;;;;;;;:::i;60012:2505::-;;;;;;;;;;-1:-1:-1;60012:2505:0;;;;;:::i;:::-;;:::i;64654:925::-;;;;;;:::i;:::-;;:::i;32797:308::-;;;;;;;;;;-1:-1:-1;32797:308:0;;;;;:::i;:::-;;:::i;66274:114::-;;;;;;;;;;-1:-1:-1;66274:114:0;;;;;:::i;:::-;;:::i;64109:43::-;;;;;;;;;;;;;;;;64161:45;;;;;;;;;;;;;;;;33667:399;;;;;;;;;;-1:-1:-1;33667:399:0;;;;;:::i;:::-;;:::i;58575:420::-;;;;;;;;;;-1:-1:-1;58575:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65585:371::-;;;;;;;;;;-1:-1:-1;65585:371:0;;;;;:::i;:::-;;:::i;64038:31::-;;;;;;;;;;;;;;;;64443:52;;;;;;;;;;;;;;;;33176:164;;;;;;;;;;-1:-1:-1;33176:164:0;;;;;:::i;:::-;;:::i;9777:201::-;;;;;;;;;;-1:-1:-1;9777:201:0;;;;;:::i;:::-;;:::i;64210:33::-;;;;;;;;;;;;;;;;66114:154;;;;;;;;;;-1:-1:-1;66114:154:0;;;;;:::i;:::-;;:::i;24928:615::-;25013:4;-1:-1:-1;;;;;;;;;25313:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;25390:25:0;;;25313:102;:179;;;-1:-1:-1;;;;;;;;;;25467:25:0;;;25313:179;25293:199;24928:615;-1:-1:-1;;24928:615:0:o;30575:100::-;30629:13;30662:5;30655:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30575:100;:::o;32521:204::-;32589:7;32614:16;32622:7;32614;:16::i;:::-;32609:64;;32639:34;;-1:-1:-1;;;32639:34:0;;;;;;;;;;;32609:64;-1:-1:-1;32693:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32693:24:0;;32521:204::o;32069:386::-;32142:13;32158:16;32166:7;32158;:16::i;:::-;32142:32;-1:-1:-1;52969:10:0;-1:-1:-1;;;;;32191:28:0;;;32187:175;;32239:44;32256:5;52969:10;33176:164;:::i;32239:44::-;32234:128;;32311:35;;-1:-1:-1;;;32311:35:0;;;;;;;;;;;32234:128;32374:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32374:29:0;-1:-1:-1;;;;;32374:29:0;;;;;;;;;32419:28;;32374:24;;32419:28;;;;;;;32131:324;32069:386;;:::o;66500:100::-;8757:13;:11;:13::i;:::-;66572:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;66500:100:::0;:::o;41786:2800::-;41920:27;41950;41969:7;41950:18;:27::i;:::-;41920:57;;42035:4;-1:-1:-1;;;;;41994:45:0;42010:19;-1:-1:-1;;;;;41994:45:0;;41990:86;;42048:28;;-1:-1:-1;;;42048:28:0;;;;;;;;;;;41990:86;42090:27;40516:21;;;40343:15;40558:4;40551:36;40640:4;40624:21;;40730:26;;52969:10;41483:30;;;-1:-1:-1;;;;;41181:26:0;;41462:19;;;41459:55;42269:174;;42356:43;42373:4;52969:10;33176:164;:::i;42356:43::-;42351:92;;42408:35;;-1:-1:-1;;;42408:35:0;;;;;;;;;;;42351:92;-1:-1:-1;;;;;42460:16:0;;42456:52;;42485:23;;-1:-1:-1;;;42485:23:0;;;;;;;;;;;42456:52;42657:15;42654:160;;;42797:1;42776:19;42769:30;42654:160;-1:-1:-1;;;;;43192:24:0;;;;;;;:18;:24;;;;;;43190:26;;-1:-1:-1;;43190:26:0;;;43261:22;;;;;;;;;43259:24;;-1:-1:-1;43259:24:0;;;30263:11;30239:22;30235:40;30222:62;-1:-1:-1;;;30222:62:0;43554:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;43848:46:0;;43844:626;;43952:1;43942:11;;43920:19;44075:30;;;:17;:30;;;;;;44071:384;;44213:13;;44198:11;:28;44194:242;;44360:30;;;;:17;:30;;;;;:52;;;44194:242;43901:569;43844:626;44517:7;44513:2;-1:-1:-1;;;;;44498:27:0;44507:4;-1:-1:-1;;;;;44498:27:0;;;;;;;;;;;41909:2677;;;41786:2800;;;:::o;65961:67::-;8757:13;:11;:13::i;:::-;66016:6:::1;::::0;;-1:-1:-1;;66006:16:0;::::1;66016:6;::::0;;::::1;66015:7;66006:16;::::0;;65961:67::o;66606:101::-;8757:13;:11;:13::i;:::-;66650:51:::1;::::0;66658:10:::1;::::0;66679:21:::1;66650:51:::0;::::1;;;::::0;::::1;::::0;;;66679:21;66658:10;66650:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;66606:101::o:0;33411:185::-;33549:39;33566:4;33572:2;33576:7;33549:39;;;;;;;;;;;;:16;:39::i;:::-;33411:185;;;:::o;66034:74::-;8757:13;:11;:13::i;:::-;66090:4:::1;:12:::0;66034:74::o;64366:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59154:468::-;59329:15;;59243:23;;59304:22;59329:15;59396:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59396:36:0;;-1:-1:-1;;59396:36:0;;;;;;;;;;;;59359:73;;59452:9;59447:125;59468:14;59463:1;:19;59447:125;;59524:32;59544:8;59553:1;59544:11;;;;;;;;:::i;:::-;;;;;;;59524:19;:32::i;:::-;59508:10;59519:1;59508:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;59484:3;;59447:125;;;-1:-1:-1;59593:10:0;59154:468;-1:-1:-1;;;59154:468:0:o;64331:28::-;;;;;;;:::i;30364:144::-;30428:7;30471:27;30490:7;30471:18;:27::i;25607:224::-;25671:7;-1:-1:-1;;;;;25695:19:0;;25691:60;;25723:28;;-1:-1:-1;;;25723:28:0;;;;;;;;;;;25691:60;-1:-1:-1;;;;;;25769:25:0;;;;;:18;:25;;;;;;20162:13;25769:54;;25607:224::o;9519:103::-;8757:13;:11;:13::i;:::-;9584:30:::1;9611:1;9584:18;:30::i;:::-;9519:103::o:0;66394:100::-;8757:13;:11;:13::i;:::-;66466:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;62966:892::-:0;63036:16;63090:19;63124:25;63164:22;63189:16;63199:5;63189:9;:16::i;:::-;63164:41;;63220:25;63262:14;63248:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63248:29:0;;63220:57;;63292:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63292:31:0;66819:1;63338:472;63387:14;63372:11;:29;63338:472;;63439:15;63452:1;63439:12;:15::i;:::-;63427:27;;63477:9;:16;;;63473:73;;;63518:8;;63473:73;63568:14;;-1:-1:-1;;;;;63568:28:0;;63564:111;;63641:14;;;-1:-1:-1;63564:111:0;63718:5;-1:-1:-1;;;;;63697:26:0;:17;-1:-1:-1;;;;;63697:26:0;;63693:102;;;63774:1;63748:8;63757:13;;;;;;63748:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;63693:102;63403:3;;63338:472;;;-1:-1:-1;63831:8:0;;62966:892;-1:-1:-1;;;;;;62966:892:0:o;30744:104::-;30800:13;30833:7;30826:14;;;;;:::i;60012:2505::-;60147:16;60214:4;60205:5;:13;60201:45;;60227:19;;-1:-1:-1;;;60227:19:0;;;;;;;;;;;60201:45;60261:19;60295:17;60315:14;23724:7;23751:13;;23677:95;60315:14;60295:34;-1:-1:-1;66819:1:0;60407:5;:23;60403:87;;;66819:1;60451:23;;60403:87;60566:9;60559:4;:16;60555:73;;;60603:9;60596:16;;60555:73;60642:25;60670:16;60680:5;60670:9;:16::i;:::-;60642:44;;60864:4;60856:5;:12;60852:278;;;60911:12;;;60946:31;;;60942:111;;;61022:11;61002:31;;60942:111;60870:198;60852:278;;;-1:-1:-1;61113:1:0;60852:278;61144:25;61186:17;61172:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61172:32:0;-1:-1:-1;61144:60:0;-1:-1:-1;61223:22:0;61219:78;;61273:8;-1:-1:-1;61266:15:0;;-1:-1:-1;;;61266:15:0;61219:78;61441:31;61475:26;61495:5;61475:19;:26::i;:::-;61441:60;;61516:25;61761:9;:16;;;61756:92;;-1:-1:-1;61818:14:0;;61756:92;61879:5;61862:478;61891:4;61886:1;:9;;:45;;;;;61914:17;61899:11;:32;;61886:45;61862:478;;;61969:15;61982:1;61969:12;:15::i;:::-;61957:27;;62007:9;:16;;;62003:73;;;62048:8;;62003:73;62098:14;;-1:-1:-1;;;;;62098:28:0;;62094:111;;62171:14;;;-1:-1:-1;62094:111:0;62248:5;-1:-1:-1;;;;;62227:26:0;:17;-1:-1:-1;;;;;62227:26:0;;62223:102;;;62304:1;62278:8;62287:13;;;;;;62278:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;62223:102;61933:3;;61862:478;;;-1:-1:-1;;;62425:29:0;;;-1:-1:-1;62432:8:0;;-1:-1:-1;;60012:2505:0;;;;;;:::o;64654:925::-;3297:1;3895:7;;:19;;3887:63;;;;-1:-1:-1;;;3887:63:0;;9434:2:1;3887:63:0;;;9416:21:1;9473:2;9453:18;;;9446:30;9512:33;9492:18;;;9485:61;9563:18;;3887:63:0;;;;;;;;;3297:1;4028:7;:18;64736:6:::1;::::0;::::1;;64735:7;64727:43;;;::::0;-1:-1:-1;;;64727:43:0;;9794:2:1;64727:43:0::1;::::0;::::1;9776:21:1::0;9833:2;9813:18;;;9806:30;9872:25;9852:18;;;9845:53;9915:18;;64727:43:0::1;9592:347:1::0;64727:43:0::1;64807:24;;64795:9;;:36;;;;:::i;:::-;64778:13;66819:1:::0;24248:12;24035:7;24232:13;:28;-1:-1:-1;;24232:46:0;;23982:315;64778:13:::1;:53;64774:755;;52969:10:::0;64852:25:::1;::::0;;;:11:::1;:25;::::0;;;;;::::1;;64851:26;64843:63;;;::::0;-1:-1:-1;;;64843:63:0;;10408:2:1;64843:63:0::1;::::0;::::1;10390:21:1::0;10447:2;10427:18;;;10420:30;10486:26;10466:18;;;10459:54;10530:18;;64843:63:0::1;10206:348:1::0;64843:63:0::1;64939:1;64925:11;:15;:60;;;;;64959:26;;64944:11;:41;;64925:60;64917:93;;;::::0;-1:-1:-1;;;64917:93:0;;10761:2:1;64917:93:0::1;::::0;::::1;10743:21:1::0;10800:2;10780:18;;;10773:30;-1:-1:-1;;;10819:18:1;;;10812:50;10879:18;;64917:93:0::1;10559:344:1::0;64917:93:0::1;65061:9;;65045:11;65029:13;66819:1:::0;24248:12;24035:7;24232:13;:28;-1:-1:-1;;24232:46:0;;23982:315;65029:13:::1;:27;;;;:::i;:::-;:42;;65021:75;;;::::0;-1:-1:-1;;;65021:75:0;;11243:2:1;65021:75:0::1;::::0;::::1;11225:21:1::0;11282:2;11262:18;;;11255:30;-1:-1:-1;;;11301:18:1;;;11294:50;11361:18;;65021:75:0::1;11041:344:1::0;65021:75:0::1;65155:11;65128:24;;:38;;;;:::i;:::-;65115:9;:51;;65107:83;;;::::0;-1:-1:-1;;;65107:83:0;;11765:2:1;65107:83:0::1;::::0;::::1;11747:21:1::0;11804:2;11784:18;;;11777:30;-1:-1:-1;;;11823:18:1;;;11816:49;11882:18;;65107:83:0::1;11563:343:1::0;65107:83:0::1;52969:10:::0;65201:25:::1;::::0;;;:11:::1;:25;::::0;;;;:32;;-1:-1:-1;;65201:32:0::1;65229:4;65201:32;::::0;;64774:755:::1;;;65284:1;65270:11;:15;:48;;;;;65304:14;;65289:11;:29;;65270:48;65262:81;;;::::0;-1:-1:-1;;;65262:81:0;;10761:2:1;65262:81:0::1;::::0;::::1;10743:21:1::0;10800:2;10780:18;;;10773:30;-1:-1:-1;;;10819:18:1;;;10812:50;10879:18;;65262:81:0::1;10559:344:1::0;65262:81:0::1;65406:24;;65394:9;;:36;;;;:::i;:::-;65378:11;65362:13;66819:1:::0;24248:12;24035:7;24232:13;:28;-1:-1:-1;;24232:46:0;;23982:315;65362:13:::1;:27;;;;:::i;:::-;:69;;65354:102;;;::::0;-1:-1:-1;;;65354:102:0;;11243:2:1;65354:102:0::1;::::0;::::1;11225:21:1::0;11282:2;11262:18;;;11255:30;-1:-1:-1;;;11301:18:1;;;11294:50;11361:18;;65354:102:0::1;11041:344:1::0;65354:102:0::1;65489:11;65482:4;;:18;;;;:::i;:::-;65469:9;:31;;65461:63;;;::::0;-1:-1:-1;;;65461:63:0;;11765:2:1;65461:63:0::1;::::0;::::1;11747:21:1::0;11804:2;11784:18;;;11777:30;-1:-1:-1;;;11823:18:1;;;11816:49;11882:18;;65461:63:0::1;11563:343:1::0;65461:63:0::1;65537:36;52969:10:::0;65561:11:::1;65537:9;:36::i;:::-;-1:-1:-1::0;3253:1:0;4207:7;:22;64654:925::o;32797:308::-;-1:-1:-1;;;;;32896:31:0;;52969:10;32896:31;32892:61;;;32936:17;;-1:-1:-1;;;32936:17:0;;;;;;;;;;;32892:61;52969:10;32966:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32966:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32966:60:0;;;;;;;;;;33042:55;;540:41:1;;;32966:49:0;;52969:10;33042:55;;513:18:1;33042:55:0;;;;;;;32797:308;;:::o;66274:114::-;8757:13;:11;:13::i;:::-;66350:14:::1;:32:::0;66274:114::o;33667:399::-;33834:31;33847:4;33853:2;33857:7;33834:12;:31::i;:::-;-1:-1:-1;;;;;33880:14:0;;;:19;33876:183;;33919:56;33950:4;33956:2;33960:7;33969:5;33919:30;:56::i;:::-;33914:145;;34003:40;;-1:-1:-1;;;34003:40:0;;;;;;;;;;;33914:145;33667:399;;;;:::o;58575:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66819:1:0;58731:7;:25;:54;;;-1:-1:-1;23724:7:0;23751:13;58760:7;:25;;58731:54;58727:103;;;58809:9;58575:420;-1:-1:-1;;58575:420:0:o;58727:103::-;58852:21;58865:7;58852:12;:21::i;:::-;58840:33;;58888:9;:16;;;58884:65;;;58928:9;58575:420;-1:-1:-1;;58575:420:0:o;58884:65::-;58966:21;58979:7;58966:12;:21::i;65585:371::-;65659:13;65689:17;65697:8;65689:7;:17::i;:::-;65681:77;;;;-1:-1:-1;;;65681:77:0;;12113:2:1;65681:77:0;;;12095:21:1;12152:2;12132:18;;;12125:30;12191:34;12171:18;;;12164:62;-1:-1:-1;;;12242:18:1;;;12235:45;12297:19;;65681:77:0;11911:411:1;65681:77:0;65765:28;65796:10;:8;:10::i;:::-;65765:41;;65851:1;65826:14;65820:28;:32;:130;;;;;;;;;;;;;;;;;65888:14;65904:19;:8;:17;:19::i;:::-;65925:9;65871:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65813:137;65585:371;-1:-1:-1;;;65585:371:0:o;33176:164::-;-1:-1:-1;;;;;33297:25:0;;;33273:4;33297:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33176:164::o;9777:201::-;8757:13;:11;:13::i;:::-;-1:-1:-1;;;;;9866:22:0;::::1;9858:73;;;::::0;-1:-1:-1;;;9858:73:0;;14187:2:1;9858:73:0::1;::::0;::::1;14169:21:1::0;14226:2;14206:18;;;14199:30;14265:34;14245:18;;;14238:62;-1:-1:-1;;;14316:18:1;;;14309:36;14362:19;;9858:73:0::1;13985:402:1::0;9858:73:0::1;9942:28;9961:8;9942:18;:28::i;66114:154::-:0;8757:13;:11;:13::i;:::-;66210:24:::1;:52:::0;66114:154::o;34321:273::-;34378:4;34434:7;66819:1;34415:26;;:66;;;;;34468:13;;34458:7;:23;34415:66;:152;;;;-1:-1:-1;;34519:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;34519:43:0;:48;;34321:273::o;9036:132::-;8944:6;;-1:-1:-1;;;;;8944:6:0;52969:10;9100:23;9092:68;;;;-1:-1:-1;;;9092:68:0;;14594:2:1;9092:68:0;;;14576:21:1;;;14613:18;;;14606:30;14672:34;14652:18;;;14645:62;14724:18;;9092:68:0;14392:356:1;27281:1129:0;27348:7;27383;;66819:1;27432:23;27428:915;;27485:13;;27478:4;:20;27474:869;;;27523:14;27540:23;;;:17;:23;;;;;;-1:-1:-1;;;27629:23:0;;27625:699;;28148:113;28155:11;28148:113;;-1:-1:-1;;;28226:6:0;28208:25;;;;:17;:25;;;;;;28148:113;;27625:699;27500:843;27474:869;28371:31;;-1:-1:-1;;;28371:31:0;;;;;;;;;;;10138:191;10231:6;;;-1:-1:-1;;;;;10248:17:0;;;-1:-1:-1;;;;;;10248:17:0;;;;;;;10281:40;;10231:6;;;10248:17;10231:6;;10281:40;;10212:16;;10281:40;10201:128;10138:191;:::o;28958:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29078:24:0;;;;:17;:24;;;;;;29059:44;;:18;:44::i;34678:104::-;34747:27;34757:2;34761:8;34747:27;;;;;;;;;;;;:9;:27::i;48537:716::-;48721:88;;-1:-1:-1;;;48721:88:0;;48700:4;;-1:-1:-1;;;;;48721:45:0;;;;;:88;;52969:10;;48788:4;;48794:7;;48803:5;;48721:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48721:88:0;;;;;;;;-1:-1:-1;;48721:88:0;;;;;;;;;;;;:::i;:::-;;;48717:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49004:13:0;;49000:235;;49050:40;;-1:-1:-1;;;49050:40:0;;;;;;;;;;;49000:235;49193:6;49187:13;49178:6;49174:2;49170:15;49163:38;48717:529;-1:-1:-1;;;;;;48880:64:0;-1:-1:-1;;;48880:64:0;;-1:-1:-1;48717:529:0;48537:716;;;;;;:::o;29614:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29717:47:0;29736:27;29755:7;29736:18;:27::i;:::-;29717:18;:47::i;66832:104::-;66892:13;66921:9;66914:16;;;;;:::i;4674:723::-;4730:13;4951:10;4947:53;;-1:-1:-1;;4978:10:0;;;;;;;;;;;;-1:-1:-1;;;4978:10:0;;;;;4674:723::o;4947:53::-;5025:5;5010:12;5066:78;5073:9;;5066:78;;5099:8;;;;:::i;:::-;;-1:-1:-1;5122:10:0;;-1:-1:-1;5130:2:0;5122:10;;:::i;:::-;;;5066:78;;;5154:19;5186:6;5176:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5176:17:0;;5154:39;;5204:154;5211:10;;5204:154;;5238:11;5248:1;5238:11;;:::i;:::-;;-1:-1:-1;5307:10:0;5315:2;5307:5;:10;:::i;:::-;5294:24;;:2;:24;:::i;:::-;5281:39;;5264:6;5271;5264:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5264:56:0;;;;;;;;-1:-1:-1;5335:11:0;5344:2;5335:11;;:::i;:::-;;;5204:154;;28504:363;-1:-1:-1;;;;;;;;;;;;;28614:41:0;;;;20816:3;28700:32;;;28666:67;;-1:-1:-1;;;28666:67:0;-1:-1:-1;;;28763:23:0;;:28;;-1:-1:-1;;;28744:47:0;;;;21333:3;28831:27;;;;-1:-1:-1;;;28802:57:0;-1:-1:-1;28504:363:0:o;35198:681::-;35321:19;35327:2;35331:8;35321:5;:19::i;:::-;-1:-1:-1;;;;;35382:14:0;;;:19;35378:483;;35422:11;35436:13;35484:14;;;35517:233;35548:62;35587:1;35591:2;35595:7;;;;;;35604:5;35548:30;:62::i;:::-;35543:167;;35646:40;;-1:-1:-1;;;35646:40:0;;;;;;;;;;;35543:167;35745:3;35737:5;:11;35517:233;;35832:3;35815:13;;:20;35811:34;;35837:8;;;35811:34;35403:458;;35198:681;;;:::o;36152:1529::-;36217:20;36240:13;-1:-1:-1;;;;;36268:16:0;;36264:48;;36293:19;;-1:-1:-1;;;36293:19:0;;;;;;;;;;;36264:48;36327:13;36323:44;;36349:18;;-1:-1:-1;;;36349:18:0;;;;;;;;;;;36323:44;-1:-1:-1;;;;;36855:22:0;;;;;;:18;:22;;20299:2;36855:22;;:70;;36893:31;36881:44;;36855:70;;;30263:11;30239:22;30235:40;-1:-1:-1;31973:15:0;;31948:23;31944:45;30232:51;30222:62;37168:31;;;;:17;:31;;;;;:173;37186:12;37417:23;;;37455:101;37482:35;;37507:9;;;;;-1:-1:-1;;;;;37482:35:0;;;37499:1;;37482:35;;37499:1;;37482:35;37551:3;37541:7;:13;37455:101;;37572:13;:19;-1:-1:-1;33411:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:127::-;2607:10;2602:3;2598:20;2595:1;2588:31;2638:4;2635:1;2628:15;2662:4;2659:1;2652:15;2678:275;2749:2;2743:9;2814:2;2795:13;;-1:-1:-1;;2791:27:1;2779:40;;2849:18;2834:34;;2870:22;;;2831:62;2828:88;;;2896:18;;:::i;:::-;2932:2;2925:22;2678:275;;-1:-1:-1;2678:275:1:o;2958:407::-;3023:5;3057:18;3049:6;3046:30;3043:56;;;3079:18;;:::i;:::-;3117:57;3162:2;3141:15;;-1:-1:-1;;3137:29:1;3168:4;3133:40;3117:57;:::i;:::-;3108:66;;3197:6;3190:5;3183:21;3237:3;3228:6;3223:3;3219:16;3216:25;3213:45;;;3254:1;3251;3244:12;3213:45;3303:6;3298:3;3291:4;3284:5;3280:16;3267:43;3357:1;3350:4;3341:6;3334:5;3330:18;3326:29;3319:40;2958:407;;;;;:::o;3370:451::-;3439:6;3492:2;3480:9;3471:7;3467:23;3463:32;3460:52;;;3508:1;3505;3498:12;3460:52;3548:9;3535:23;3581:18;3573:6;3570:30;3567:50;;;3613:1;3610;3603:12;3567:50;3636:22;;3689:4;3681:13;;3677:27;-1:-1:-1;3667:55:1;;3718:1;3715;3708:12;3667:55;3741:74;3807:7;3802:2;3789:16;3784:2;3780;3776:11;3741:74;:::i;3826:328::-;3903:6;3911;3919;3972:2;3960:9;3951:7;3947:23;3943:32;3940:52;;;3988:1;3985;3978:12;3940:52;4011:29;4030:9;4011:29;:::i;:::-;4001:39;;4059:38;4093:2;4082:9;4078:18;4059:38;:::i;:::-;4049:48;;4144:2;4133:9;4129:18;4116:32;4106:42;;3826:328;;;;;:::o;4159:946::-;4243:6;4274:2;4317;4305:9;4296:7;4292:23;4288:32;4285:52;;;4333:1;4330;4323:12;4285:52;4373:9;4360:23;4402:18;4443:2;4435:6;4432:14;4429:34;;;4459:1;4456;4449:12;4429:34;4497:6;4486:9;4482:22;4472:32;;4542:7;4535:4;4531:2;4527:13;4523:27;4513:55;;4564:1;4561;4554:12;4513:55;4600:2;4587:16;4622:2;4618;4615:10;4612:36;;;4628:18;;:::i;:::-;4674:2;4671:1;4667:10;4657:20;;4697:28;4721:2;4717;4713:11;4697:28;:::i;:::-;4759:15;;;4829:11;;;4825:20;;;4790:12;;;;4857:19;;;4854:39;;;4889:1;4886;4879:12;4854:39;4913:11;;;;4933:142;4949:6;4944:3;4941:15;4933:142;;;5015:17;;5003:30;;4966:12;;;;5053;;;;4933:142;;;5094:5;4159:946;-1:-1:-1;;;;;;;;4159:946:1:o;5110:349::-;5194:12;;-1:-1:-1;;;;;5190:38:1;5178:51;;5282:4;5271:16;;;5265:23;5290:18;5261:48;5245:14;;;5238:72;5373:4;5362:16;;;5356:23;5349:31;5342:39;5326:14;;;5319:63;5435:4;5424:16;;;5418:23;5443:8;5414:38;5398:14;;5391:62;5110:349::o;5464:722::-;5697:2;5749:21;;;5819:13;;5722:18;;;5841:22;;;5668:4;;5697:2;5920:15;;;;5894:2;5879:18;;;5668:4;5963:197;5977:6;5974:1;5971:13;5963:197;;;6026:52;6074:3;6065:6;6059:13;6026:52;:::i;:::-;6135:15;;;;6107:4;6098:14;;;;;5999:1;5992:9;5963:197;;6191:632;6362:2;6414:21;;;6484:13;;6387:18;;;6506:22;;;6333:4;;6362:2;6585:15;;;;6559:2;6544:18;;;6333:4;6628:169;6642:6;6639:1;6636:13;6628:169;;;6703:13;;6691:26;;6772:15;;;;6737:12;;;;6664:1;6657:9;6628:169;;6828:322;6905:6;6913;6921;6974:2;6962:9;6953:7;6949:23;6945:32;6942:52;;;6990:1;6987;6980:12;6942:52;7013:29;7032:9;7013:29;:::i;:::-;7003:39;7089:2;7074:18;;7061:32;;-1:-1:-1;7140:2:1;7125:18;;;7112:32;;6828:322;-1:-1:-1;;;6828:322:1:o;7155:347::-;7220:6;7228;7281:2;7269:9;7260:7;7256:23;7252:32;7249:52;;;7297:1;7294;7287:12;7249:52;7320:29;7339:9;7320:29;:::i;:::-;7310:39;;7399:2;7388:9;7384:18;7371:32;7446:5;7439:13;7432:21;7425:5;7422:32;7412:60;;7468:1;7465;7458:12;7412:60;7491:5;7481:15;;;7155:347;;;;;:::o;7507:667::-;7602:6;7610;7618;7626;7679:3;7667:9;7658:7;7654:23;7650:33;7647:53;;;7696:1;7693;7686:12;7647:53;7719:29;7738:9;7719:29;:::i;:::-;7709:39;;7767:38;7801:2;7790:9;7786:18;7767:38;:::i;:::-;7757:48;;7852:2;7841:9;7837:18;7824:32;7814:42;;7907:2;7896:9;7892:18;7879:32;7934:18;7926:6;7923:30;7920:50;;;7966:1;7963;7956:12;7920:50;7989:22;;8042:4;8034:13;;8030:27;-1:-1:-1;8020:55:1;;8071:1;8068;8061:12;8020:55;8094:74;8160:7;8155:2;8142:16;8137:2;8133;8129:11;8094:74;:::i;:::-;8084:84;;;7507:667;;;;;;;:::o;8179:266::-;8375:3;8360:19;;8388:51;8364:9;8421:6;8388:51;:::i;8450:260::-;8518:6;8526;8579:2;8567:9;8558:7;8554:23;8550:32;8547:52;;;8595:1;8592;8585:12;8547:52;8618:29;8637:9;8618:29;:::i;:::-;8608:39;;8666:38;8700:2;8689:9;8685:18;8666:38;:::i;:::-;8656:48;;8450:260;;;;;:::o;8715:380::-;8794:1;8790:12;;;;8837;;;8858:61;;8912:4;8904:6;8900:17;8890:27;;8858:61;8965:2;8957:6;8954:14;8934:18;8931:38;8928:161;;;9011:10;9006:3;9002:20;8999:1;8992:31;9046:4;9043:1;9036:15;9074:4;9071:1;9064:15;8928:161;;8715:380;;;:::o;9100:127::-;9161:10;9156:3;9152:20;9149:1;9142:31;9192:4;9189:1;9182:15;9216:4;9213:1;9206:15;9944:127;10005:10;10000:3;9996:20;9993:1;9986:31;10036:4;10033:1;10026:15;10060:4;10057:1;10050:15;10076:125;10116:4;10144:1;10141;10138:8;10135:34;;;10149:18;;:::i;:::-;-1:-1:-1;10186:9:1;;10076:125::o;10908:128::-;10948:3;10979:1;10975:6;10972:1;10969:13;10966:39;;;10985:18;;:::i;:::-;-1:-1:-1;11021:9:1;;10908:128::o;11390:168::-;11430:7;11496:1;11492;11488:6;11484:14;11481:1;11478:21;11473:1;11466:9;11459:17;11455:45;11452:71;;;11503:18;;:::i;:::-;-1:-1:-1;11543:9:1;;11390:168::o;12453:1527::-;12677:3;12715:6;12709:13;12741:4;12754:51;12798:6;12793:3;12788:2;12780:6;12776:15;12754:51;:::i;:::-;12868:13;;12827:16;;;;12890:55;12868:13;12827:16;12912:15;;;12890:55;:::i;:::-;13034:13;;12967:20;;;13007:1;;13094;13116:18;;;;13169;;;;13196:93;;13274:4;13264:8;13260:19;13248:31;;13196:93;13337:2;13327:8;13324:16;13304:18;13301:40;13298:167;;;-1:-1:-1;;;13364:33:1;;13420:4;13417:1;13410:15;13450:4;13371:3;13438:17;13298:167;13481:18;13508:110;;;;13632:1;13627:328;;;;13474:481;;13508:110;-1:-1:-1;;13543:24:1;;13529:39;;13588:20;;;;-1:-1:-1;13508:110:1;;13627:328;12400:1;12393:14;;;12437:4;12424:18;;13722:1;13736:169;13750:8;13747:1;13744:15;13736:169;;;13832:14;;13817:13;;;13810:37;13875:16;;;;13767:10;;13736:169;;;13740:3;;13936:8;13929:5;13925:20;13918:27;;13474:481;-1:-1:-1;13971:3:1;;12453:1527;-1:-1:-1;;;;;;;;;;;12453:1527:1:o;14753:489::-;-1:-1:-1;;;;;15022:15:1;;;15004:34;;15074:15;;15069:2;15054:18;;15047:43;15121:2;15106:18;;15099:34;;;15169:3;15164:2;15149:18;;15142:31;;;14947:4;;15190:46;;15216:19;;15208:6;15190:46;:::i;:::-;15182:54;14753:489;-1:-1:-1;;;;;;14753:489:1:o;15247:249::-;15316:6;15369:2;15357:9;15348:7;15344:23;15340:32;15337:52;;;15385:1;15382;15375:12;15337:52;15417:9;15411:16;15436:30;15460:5;15436:30;:::i;15501:135::-;15540:3;-1:-1:-1;;15561:17:1;;15558:43;;;15581:18;;:::i;:::-;-1:-1:-1;15628:1:1;15617:13;;15501:135::o;15641:127::-;15702:10;15697:3;15693:20;15690:1;15683:31;15733:4;15730:1;15723:15;15757:4;15754:1;15747:15;15773:120;15813:1;15839;15829:35;;15844:18;;:::i;:::-;-1:-1:-1;15878:9:1;;15773:120::o;15898:112::-;15930:1;15956;15946:35;;15961:18;;:::i;:::-;-1:-1:-1;15995:9:1;;15898:112::o

Swarm Source

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