ETH Price: $3,522.59 (+1.02%)
Gas: 2 Gwei

Token

LeaveMeNever (LMN)
 

Overview

Max Total Supply

1,983 LMN

Holders

892

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 LMN
0xA086c3Bbf195aA18bEe2805d568072b8aF58fbd6
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:
LeaveMeNever

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

// SPDX-License-Identifier: MIT

// ,--.                                      ,--.   ,--.           ,--.  ,--.                              
// |  |    ,---.  ,--,--.,--.  ,--.,---.     |   `.'   | ,---.     |  ,'.|  | ,---.,--.  ,--.,---. ,--.--. 
// |  |   | .-. :' ,-.  | \  `'  /| .-. :    |  |'.'|  || .-. :    |  |' '  || .-. :\  `'  /| .-. :|  .--' 
// |  '--.\   --.\ '-'  |  \    / \   --.    |  |   |  |\   --.    |  | `   |\   --. \    / \   --.|  |    
// `-----' `----' `--`--'   `--'   `----'    `--'   `--' `----'    `--'  `--' `----'  `--'   `----'`--'    

// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

// File: contracts/LeaveMeNever.sol
pragma solidity ^0.8.0;

contract LeaveMeNever is ERC721A, Ownable, ReentrancyGuard {
    using Address for address;
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 5000;
    uint256 public constant MAX_FREE_SUPPLY = 2000;
    uint256 public constant MAX_MINT_PER_TX = 20;
    uint256 public constant MAX_FREE_MINT_PER_WALLET = 2;

    uint256 public freeMinted;
    uint256 public salePrice = .005 ether;

    bool public mintActive;

    mapping(address => uint256) public totalFreeMint;

    // metadata URI
    string private _baseTokenURI;

    constructor() ERC721A("LeaveMeNever", "LMN") {}

    function mint(uint256 _quantity) external payable nonReentrant {
        require(tx.origin == msg.sender, "Cannot be called by a contract");
        require(mintActive, "Mint Not Active");
        require(_quantity > 0 && _quantity <= MAX_MINT_PER_TX, "Incorrect Mint Quantity");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Beyond Max Supply");

        uint256 cost = salePrice * _quantity;

        if (freeMinted < MAX_FREE_SUPPLY) {
            uint256 remainingFreeMints = MAX_FREE_MINT_PER_WALLET - totalFreeMint[msg.sender];
            if (remainingFreeMints > 0) {
                if (_quantity <= remainingFreeMints) {
                    cost = 0;
                    require(msg.value >= cost, "Not enough payment sent");
                    totalFreeMint[msg.sender] += _quantity;
                    freeMinted = freeMinted + _quantity;
                } else {
                    cost = salePrice * (_quantity - remainingFreeMints);
                    require(msg.value >= cost, "Not enough payment sent");
                    totalFreeMint[msg.sender] += remainingFreeMints;
                    freeMinted = freeMinted + remainingFreeMints;
                }
            } else {
                require(msg.value >= cost, "Not enough payment sent");
            }
        } else {
            require(msg.value >= cost, "Not enough payment sent");
        }

        _safeMint(msg.sender, _quantity);
    }

    function devMint(uint256 _quantity, address _receiver) external onlyOwner {
        require(_quantity > 0, "Quantity must be greater than 0");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Beyond Max Supply");
        _safeMint(_receiver, _quantity);
    }

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

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

    function changeMintPrice(uint256 _newPrice) external onlyOwner {
        salePrice = _newPrice;
    }

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

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return _ownershipOf(tokenId);
    }

    function toggleMintActive() external onlyOwner {
        mintActive = !mintActive;
    }

    function withdraw() external onlyOwner nonReentrant {
        Address.sendValue(payable(msg.sender), address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"toggleMintActive","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"totalFreeMint","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526611c37937e08000600b553480156200001c57600080fd5b50604080518082018252600c81526b2632b0bb32a6b2a732bb32b960a11b6020808301918252835180850190945260038452622626a760e91b9084015281519192916200006c91600291620000f1565b50805162000082906003906020840190620000f1565b5050600080555062000094336200009f565b6001600955620001d4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ff9062000197565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b600181811c90821680620001ac57607f821691505b60208210811415620001ce57634e487b7160e01b600052602260045260246000fd5b50919050565b611ce980620001e46000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063a6eb27e2116100a0578063d10a1a2b1161006f578063d10a1a2b14610584578063dc33e6811461059a578063e985e9c5146105ba578063f2fde38b14610603578063f51f96dd1461062357600080fd5b8063a6eb27e21461051a578063b88d4fde1461052f578063c87b56dd1461054f578063d02c2bf21461056f57600080fd5b80639231ab2a116100dc5780639231ab2a1461047b57806395d89b41146104d2578063a0712d68146104e7578063a22cb465146104fa57600080fd5b8063715018a614610406578063891084a31461041b5780638da5cb5b146104485780638ecad7211461046657600080fd5b80632d1a12f61161018557806342842e0e1161015457806342842e0e1461038657806355f804b3146103a65780636352211e146103c657806370a08231146103e657600080fd5b80632d1a12f61461031b57806332cb6b0c1461033b5780633ccfd60b146103515780633fd173661461036657600080fd5b8063095ea7b3116101c1578063095ea7b3146102a657806318160ddd146102c857806323b872dd146102e157806325fd90f31461030157600080fd5b806301ffc9a7146101f357806302ddb65b1461022857806306fdde031461024c578063081812fc1461026e575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046117eb565b610639565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023e6107d081565b60405190815260200161021f565b34801561025857600080fd5b5061026161068b565b60405161021f9190611860565b34801561027a57600080fd5b5061028e610289366004611873565b61071d565b6040516001600160a01b03909116815260200161021f565b3480156102b257600080fd5b506102c66102c13660046118a8565b610761565b005b3480156102d457600080fd5b506001546000540361023e565b3480156102ed57600080fd5b506102c66102fc3660046118d2565b610834565b34801561030d57600080fd5b50600c546102139060ff1681565b34801561032757600080fd5b506102c661033636600461190e565b610844565b34801561034757600080fd5b5061023e61138881565b34801561035d57600080fd5b506102c6610932565b34801561037257600080fd5b506102c6610381366004611873565b6109c5565b34801561039257600080fd5b506102c66103a13660046118d2565b6109f4565b3480156103b257600080fd5b506102c66103c136600461193a565b610a0f565b3480156103d257600080fd5b5061028e6103e1366004611873565b610a45565b3480156103f257600080fd5b5061023e6104013660046119ac565b610a50565b34801561041257600080fd5b506102c6610a9f565b34801561042757600080fd5b5061023e6104363660046119ac565b600d6020526000908152604090205481565b34801561045457600080fd5b506008546001600160a01b031661028e565b34801561047257600080fd5b5061023e601481565b34801561048757600080fd5b5061049b610496366004611873565b610ad5565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff16908201529181015115159082015260600161021f565b3480156104de57600080fd5b50610261610afb565b6102c66104f5366004611873565b610b0a565b34801561050657600080fd5b506102c66105153660046119c7565b610df9565b34801561052657600080fd5b5061023e600281565b34801561053b57600080fd5b506102c661054a366004611a19565b610e8f565b34801561055b57600080fd5b5061026161056a366004611873565b610ed9565b34801561057b57600080fd5b506102c6610f5e565b34801561059057600080fd5b5061023e600a5481565b3480156105a657600080fd5b5061023e6105b53660046119ac565b610f9c565b3480156105c657600080fd5b506102136105d5366004611af5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060f57600080fd5b506102c661061e3660046119ac565b610fc7565b34801561062f57600080fd5b5061023e600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061066a57506380ac58cd60e01b6001600160e01b03198316145b806106855750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461069a90611b1f565b80601f01602080910402602001604051908101604052809291908181526020018280546106c690611b1f565b80156107135780601f106106e857610100808354040283529160200191610713565b820191906000526020600020905b8154815290600101906020018083116106f657829003601f168201915b5050505050905090565b600061072882611062565b610745576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076c82611089565b9050806001600160a01b0316836001600160a01b031614156107a15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107d8576107bb81336105d5565b6107d8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61083f8383836110ea565b505050565b6008546001600160a01b031633146108775760405162461bcd60e51b815260040161086e90611b5a565b60405180910390fd5b600082116108c75760405162461bcd60e51b815260206004820152601f60248201527f5175616e74697479206d7573742062652067726561746572207468616e203000604482015260640161086e565b611388826108d86001546000540390565b6108e29190611ba5565b11156109245760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b604482015260640161086e565b61092e818361128d565b5050565b6008546001600160a01b0316331461095c5760405162461bcd60e51b815260040161086e90611b5a565b600260095414156109af5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086e565b60026009556109be33476112a7565b6001600955565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161086e90611b5a565b600b55565b61083f83838360405180602001604052806000815250610e8f565b6008546001600160a01b03163314610a395760405162461bcd60e51b815260040161086e90611b5a565b61083f600e838361173c565b600061068582611089565b60006001600160a01b038216610a79576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ac95760405162461bcd60e51b815260040161086e90611b5a565b610ad360006113c0565b565b604080516060810182526000808252602082018190529181019190915261068582611412565b60606003805461069a90611b1f565b60026009541415610b5d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086e565b6002600955323314610bb15760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000604482015260640161086e565b600c5460ff16610bf55760405162461bcd60e51b815260206004820152600f60248201526e4d696e74204e6f742041637469766560881b604482015260640161086e565b600081118015610c06575060148111155b610c525760405162461bcd60e51b815260206004820152601760248201527f496e636f7272656374204d696e74205175616e74697479000000000000000000604482015260640161086e565b61138881610c636001546000540390565b610c6d9190611ba5565b1115610caf5760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b604482015260640161086e565b600081600b54610cbf9190611bbd565b90506107d0600a541015610dc657336000908152600d6020526040812054610ce8906002611bdc565b90508015610da057808311610d355760009150336000908152600d602052604081208054859290610d1a908490611ba5565b9091555050600a54610d2d908490611ba5565b600a55610dc0565b610d3f8184611bdc565b600b54610d4c9190611bbd565b915081341015610d6e5760405162461bcd60e51b815260040161086e90611bf3565b336000908152600d602052604081208054839290610d8d908490611ba5565b9091555050600a54610d2d908290611ba5565b81341015610dc05760405162461bcd60e51b815260040161086e90611bf3565b50610de6565b80341015610de65760405162461bcd60e51b815260040161086e90611bf3565b610df0338361128d565b50506001600955565b6001600160a01b038216331415610e235760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e9a8484846110ea565b6001600160a01b0383163b15610ed357610eb684848484611476565b610ed3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ee482611062565b610f0157604051630a14c4b560e41b815260040160405180910390fd5b6000610f0b61156d565b9050805160001415610f2c5760405180602001604052806000815250610f57565b80610f368461157c565b604051602001610f47929190611c2a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f885760405162461bcd60e51b815260040161086e90611b5a565b600c805460ff19811660ff90911615179055565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610685565b6008546001600160a01b03163314610ff15760405162461bcd60e51b815260040161086e90611b5a565b6001600160a01b0381166110565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086e565b61105f816113c0565b50565b6000805482108015610685575050600090815260046020526040902054600160e01b161590565b6000816000548110156110d157600081815260046020526040902054600160e01b81166110cf575b80610f575750600019016000818152600460205260409020546110b1565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110f582611089565b9050836001600160a01b0316816001600160a01b0316146111285760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611146575061114685336105d5565b806111615750336111568461071d565b6001600160a01b0316145b90508061118157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111a857604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661124557600183016000818152600460205260409020546112435760005481146112435760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61092e8282604051806020016040528060008152506115cb565b804710156112f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161086e565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611344576040519150601f19603f3d011682016040523d82523d6000602084013e611349565b606091505b505090508061083f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161086e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915261068561143b83611089565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114ab903390899088908890600401611c59565b602060405180830381600087803b1580156114c557600080fd5b505af19250505080156114f5575060408051601f3d908101601f191682019092526114f291810190611c96565b60015b611550573d808015611523576040519150601f19603f3d011682016040523d82523d6000602084013e611528565b606091505b508051611548576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600e805461069a90611b1f565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115b957600183039250600a81066030018353600a900461159b565b50819003601f19909101908152919050565b6000546001600160a01b0384166115f457604051622e076360e81b815260040160405180910390fd5b826116125760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156116e7575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116b06000878480600101955087611476565b6116cd576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116655782600054146116e257600080fd5b61172c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116e8575b506000908155610ed39085838684565b82805461174890611b1f565b90600052602060002090601f01602090048101928261176a57600085556117b0565b82601f106117835782800160ff198235161785556117b0565b828001600101855582156117b0579182015b828111156117b0578235825591602001919060010190611795565b506117bc9291506117c0565b5090565b5b808211156117bc57600081556001016117c1565b6001600160e01b03198116811461105f57600080fd5b6000602082840312156117fd57600080fd5b8135610f57816117d5565b60005b8381101561182357818101518382015260200161180b565b83811115610ed35750506000910152565b6000815180845261184c816020860160208601611808565b601f01601f19169290920160200192915050565b602081526000610f576020830184611834565b60006020828403121561188557600080fd5b5035919050565b80356001600160a01b03811681146118a357600080fd5b919050565b600080604083850312156118bb57600080fd5b6118c48361188c565b946020939093013593505050565b6000806000606084860312156118e757600080fd5b6118f08461188c565b92506118fe6020850161188c565b9150604084013590509250925092565b6000806040838503121561192157600080fd5b823591506119316020840161188c565b90509250929050565b6000806020838503121561194d57600080fd5b823567ffffffffffffffff8082111561196557600080fd5b818501915085601f83011261197957600080fd5b81358181111561198857600080fd5b86602082850101111561199a57600080fd5b60209290920196919550909350505050565b6000602082840312156119be57600080fd5b610f578261188c565b600080604083850312156119da57600080fd5b6119e38361188c565b9150602083013580151581146119f857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a2f57600080fd5b611a388561188c565b9350611a466020860161188c565b925060408501359150606085013567ffffffffffffffff80821115611a6a57600080fd5b818701915087601f830112611a7e57600080fd5b813581811115611a9057611a90611a03565b604051601f8201601f19908116603f01168101908382118183101715611ab857611ab8611a03565b816040528281528a6020848701011115611ad157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b0857600080fd5b611b118361188c565b91506119316020840161188c565b600181811c90821680611b3357607f821691505b60208210811415611b5457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611bb857611bb8611b8f565b500190565b6000816000190483118215151615611bd757611bd7611b8f565b500290565b600082821015611bee57611bee611b8f565b500390565b60208082526017908201527f4e6f7420656e6f756768207061796d656e742073656e74000000000000000000604082015260600190565b60008351611c3c818460208801611808565b835190830190611c50818360208801611808565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8c90830184611834565b9695505050505050565b600060208284031215611ca857600080fd5b8151610f57816117d556fea26469706673582212208083870b13e12bef8ff52efd6def519f6b430215cd2d39b49047168c5339bb9564736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063a6eb27e2116100a0578063d10a1a2b1161006f578063d10a1a2b14610584578063dc33e6811461059a578063e985e9c5146105ba578063f2fde38b14610603578063f51f96dd1461062357600080fd5b8063a6eb27e21461051a578063b88d4fde1461052f578063c87b56dd1461054f578063d02c2bf21461056f57600080fd5b80639231ab2a116100dc5780639231ab2a1461047b57806395d89b41146104d2578063a0712d68146104e7578063a22cb465146104fa57600080fd5b8063715018a614610406578063891084a31461041b5780638da5cb5b146104485780638ecad7211461046657600080fd5b80632d1a12f61161018557806342842e0e1161015457806342842e0e1461038657806355f804b3146103a65780636352211e146103c657806370a08231146103e657600080fd5b80632d1a12f61461031b57806332cb6b0c1461033b5780633ccfd60b146103515780633fd173661461036657600080fd5b8063095ea7b3116101c1578063095ea7b3146102a657806318160ddd146102c857806323b872dd146102e157806325fd90f31461030157600080fd5b806301ffc9a7146101f357806302ddb65b1461022857806306fdde031461024c578063081812fc1461026e575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046117eb565b610639565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023e6107d081565b60405190815260200161021f565b34801561025857600080fd5b5061026161068b565b60405161021f9190611860565b34801561027a57600080fd5b5061028e610289366004611873565b61071d565b6040516001600160a01b03909116815260200161021f565b3480156102b257600080fd5b506102c66102c13660046118a8565b610761565b005b3480156102d457600080fd5b506001546000540361023e565b3480156102ed57600080fd5b506102c66102fc3660046118d2565b610834565b34801561030d57600080fd5b50600c546102139060ff1681565b34801561032757600080fd5b506102c661033636600461190e565b610844565b34801561034757600080fd5b5061023e61138881565b34801561035d57600080fd5b506102c6610932565b34801561037257600080fd5b506102c6610381366004611873565b6109c5565b34801561039257600080fd5b506102c66103a13660046118d2565b6109f4565b3480156103b257600080fd5b506102c66103c136600461193a565b610a0f565b3480156103d257600080fd5b5061028e6103e1366004611873565b610a45565b3480156103f257600080fd5b5061023e6104013660046119ac565b610a50565b34801561041257600080fd5b506102c6610a9f565b34801561042757600080fd5b5061023e6104363660046119ac565b600d6020526000908152604090205481565b34801561045457600080fd5b506008546001600160a01b031661028e565b34801561047257600080fd5b5061023e601481565b34801561048757600080fd5b5061049b610496366004611873565b610ad5565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff16908201529181015115159082015260600161021f565b3480156104de57600080fd5b50610261610afb565b6102c66104f5366004611873565b610b0a565b34801561050657600080fd5b506102c66105153660046119c7565b610df9565b34801561052657600080fd5b5061023e600281565b34801561053b57600080fd5b506102c661054a366004611a19565b610e8f565b34801561055b57600080fd5b5061026161056a366004611873565b610ed9565b34801561057b57600080fd5b506102c6610f5e565b34801561059057600080fd5b5061023e600a5481565b3480156105a657600080fd5b5061023e6105b53660046119ac565b610f9c565b3480156105c657600080fd5b506102136105d5366004611af5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060f57600080fd5b506102c661061e3660046119ac565b610fc7565b34801561062f57600080fd5b5061023e600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061066a57506380ac58cd60e01b6001600160e01b03198316145b806106855750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461069a90611b1f565b80601f01602080910402602001604051908101604052809291908181526020018280546106c690611b1f565b80156107135780601f106106e857610100808354040283529160200191610713565b820191906000526020600020905b8154815290600101906020018083116106f657829003601f168201915b5050505050905090565b600061072882611062565b610745576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076c82611089565b9050806001600160a01b0316836001600160a01b031614156107a15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107d8576107bb81336105d5565b6107d8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61083f8383836110ea565b505050565b6008546001600160a01b031633146108775760405162461bcd60e51b815260040161086e90611b5a565b60405180910390fd5b600082116108c75760405162461bcd60e51b815260206004820152601f60248201527f5175616e74697479206d7573742062652067726561746572207468616e203000604482015260640161086e565b611388826108d86001546000540390565b6108e29190611ba5565b11156109245760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b604482015260640161086e565b61092e818361128d565b5050565b6008546001600160a01b0316331461095c5760405162461bcd60e51b815260040161086e90611b5a565b600260095414156109af5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086e565b60026009556109be33476112a7565b6001600955565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161086e90611b5a565b600b55565b61083f83838360405180602001604052806000815250610e8f565b6008546001600160a01b03163314610a395760405162461bcd60e51b815260040161086e90611b5a565b61083f600e838361173c565b600061068582611089565b60006001600160a01b038216610a79576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ac95760405162461bcd60e51b815260040161086e90611b5a565b610ad360006113c0565b565b604080516060810182526000808252602082018190529181019190915261068582611412565b60606003805461069a90611b1f565b60026009541415610b5d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161086e565b6002600955323314610bb15760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f742062652063616c6c6564206279206120636f6e74726163740000604482015260640161086e565b600c5460ff16610bf55760405162461bcd60e51b815260206004820152600f60248201526e4d696e74204e6f742041637469766560881b604482015260640161086e565b600081118015610c06575060148111155b610c525760405162461bcd60e51b815260206004820152601760248201527f496e636f7272656374204d696e74205175616e74697479000000000000000000604482015260640161086e565b61138881610c636001546000540390565b610c6d9190611ba5565b1115610caf5760405162461bcd60e51b81526020600482015260116024820152704265796f6e64204d617820537570706c7960781b604482015260640161086e565b600081600b54610cbf9190611bbd565b90506107d0600a541015610dc657336000908152600d6020526040812054610ce8906002611bdc565b90508015610da057808311610d355760009150336000908152600d602052604081208054859290610d1a908490611ba5565b9091555050600a54610d2d908490611ba5565b600a55610dc0565b610d3f8184611bdc565b600b54610d4c9190611bbd565b915081341015610d6e5760405162461bcd60e51b815260040161086e90611bf3565b336000908152600d602052604081208054839290610d8d908490611ba5565b9091555050600a54610d2d908290611ba5565b81341015610dc05760405162461bcd60e51b815260040161086e90611bf3565b50610de6565b80341015610de65760405162461bcd60e51b815260040161086e90611bf3565b610df0338361128d565b50506001600955565b6001600160a01b038216331415610e235760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e9a8484846110ea565b6001600160a01b0383163b15610ed357610eb684848484611476565b610ed3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ee482611062565b610f0157604051630a14c4b560e41b815260040160405180910390fd5b6000610f0b61156d565b9050805160001415610f2c5760405180602001604052806000815250610f57565b80610f368461157c565b604051602001610f47929190611c2a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f885760405162461bcd60e51b815260040161086e90611b5a565b600c805460ff19811660ff90911615179055565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610685565b6008546001600160a01b03163314610ff15760405162461bcd60e51b815260040161086e90611b5a565b6001600160a01b0381166110565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086e565b61105f816113c0565b50565b6000805482108015610685575050600090815260046020526040902054600160e01b161590565b6000816000548110156110d157600081815260046020526040902054600160e01b81166110cf575b80610f575750600019016000818152600460205260409020546110b1565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110f582611089565b9050836001600160a01b0316816001600160a01b0316146111285760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611146575061114685336105d5565b806111615750336111568461071d565b6001600160a01b0316145b90508061118157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111a857604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661124557600183016000818152600460205260409020546112435760005481146112435760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61092e8282604051806020016040528060008152506115cb565b804710156112f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161086e565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611344576040519150601f19603f3d011682016040523d82523d6000602084013e611349565b606091505b505090508061083f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161086e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516060810182526000808252602082018190529181019190915261068561143b83611089565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b90921615159082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114ab903390899088908890600401611c59565b602060405180830381600087803b1580156114c557600080fd5b505af19250505080156114f5575060408051601f3d908101601f191682019092526114f291810190611c96565b60015b611550573d808015611523576040519150601f19603f3d011682016040523d82523d6000602084013e611528565b606091505b508051611548576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600e805461069a90611b1f565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115b957600183039250600a81066030018353600a900461159b565b50819003601f19909101908152919050565b6000546001600160a01b0384166115f457604051622e076360e81b815260040160405180910390fd5b826116125760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156116e7575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46116b06000878480600101955087611476565b6116cd576040516368d2bf6b60e11b815260040160405180910390fd5b8082106116655782600054146116e257600080fd5b61172c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106116e8575b506000908155610ed39085838684565b82805461174890611b1f565b90600052602060002090601f01602090048101928261176a57600085556117b0565b82601f106117835782800160ff198235161785556117b0565b828001600101855582156117b0579182015b828111156117b0578235825591602001919060010190611795565b506117bc9291506117c0565b5090565b5b808211156117bc57600081556001016117c1565b6001600160e01b03198116811461105f57600080fd5b6000602082840312156117fd57600080fd5b8135610f57816117d5565b60005b8381101561182357818101518382015260200161180b565b83811115610ed35750506000910152565b6000815180845261184c816020860160208601611808565b601f01601f19169290920160200192915050565b602081526000610f576020830184611834565b60006020828403121561188557600080fd5b5035919050565b80356001600160a01b03811681146118a357600080fd5b919050565b600080604083850312156118bb57600080fd5b6118c48361188c565b946020939093013593505050565b6000806000606084860312156118e757600080fd5b6118f08461188c565b92506118fe6020850161188c565b9150604084013590509250925092565b6000806040838503121561192157600080fd5b823591506119316020840161188c565b90509250929050565b6000806020838503121561194d57600080fd5b823567ffffffffffffffff8082111561196557600080fd5b818501915085601f83011261197957600080fd5b81358181111561198857600080fd5b86602082850101111561199a57600080fd5b60209290920196919550909350505050565b6000602082840312156119be57600080fd5b610f578261188c565b600080604083850312156119da57600080fd5b6119e38361188c565b9150602083013580151581146119f857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611a2f57600080fd5b611a388561188c565b9350611a466020860161188c565b925060408501359150606085013567ffffffffffffffff80821115611a6a57600080fd5b818701915087601f830112611a7e57600080fd5b813581811115611a9057611a90611a03565b604051601f8201601f19908116603f01168101908382118183101715611ab857611ab8611a03565b816040528281528a6020848701011115611ad157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611b0857600080fd5b611b118361188c565b91506119316020840161188c565b600181811c90821680611b3357607f821691505b60208210811415611b5457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611bb857611bb8611b8f565b500190565b6000816000190483118215151615611bd757611bd7611b8f565b500290565b600082821015611bee57611bee611b8f565b500390565b60208082526017908201527f4e6f7420656e6f756768207061796d656e742073656e74000000000000000000604082015260600190565b60008351611c3c818460208801611808565b835190830190611c50818360208801611808565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c8c90830184611834565b9695505050505050565b600060208284031215611ca857600080fd5b8151610f57816117d556fea26469706673582212208083870b13e12bef8ff52efd6def519f6b430215cd2d39b49047168c5339bb9564736f6c63430008090033

Deployed Bytecode Sourcemap

55798:3230:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30460:615;;;;;;;;;;-1:-1:-1;30460:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30460:615:0;;;;;;;;55978:46;;;;;;;;;;;;56020:4;55978:46;;;;;738:25:1;;;726:2;711:18;55978:46:0;592:177:1;35473:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37541:204::-;;;;;;;;;;-1:-1:-1;37541:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;37541:204:0;1710:203:1;37001:474:0;;;;;;;;;;-1:-1:-1;37001:474:0;;;;;:::i;:::-;;:::i;:::-;;29514:315;;;;;;;;;;-1:-1:-1;29780:12:0;;29567:7;29764:13;:28;29514:315;;38427:170;;;;;;;;;;-1:-1:-1;38427:170:0;;;;;:::i;:::-;;:::i;56221:22::-;;;;;;;;;;-1:-1:-1;56221:22:0;;;;;;;;57901:274;;;;;;;;;;-1:-1:-1;57901:274:0;;;;;:::i;:::-;;:::i;55930:41::-;;;;;;;;;;;;55967:4;55930:41;;58893:132;;;;;;;;;;;;;:::i;58419:103::-;;;;;;;;;;-1:-1:-1;58419:103:0;;;;;:::i;:::-;;:::i;38668:185::-;;;;;;;;;;-1:-1:-1;38668:185:0;;;;;:::i;:::-;;:::i;58305:106::-;;;;;;;;;;-1:-1:-1;58305:106:0;;;;;:::i;:::-;;:::i;35262:144::-;;;;;;;;;;-1:-1:-1;35262:144:0;;;;;:::i;:::-;;:::i;31139:224::-;;;;;;;;;;-1:-1:-1;31139:224:0;;;;;:::i;:::-;;:::i;16570:103::-;;;;;;;;;;;;;:::i;56252:48::-;;;;;;;;;;-1:-1:-1;56252:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;15919:87;;;;;;;;;;-1:-1:-1;15992:6:0;;-1:-1:-1;;;;;15992:6:0;15919:87;;56031:44;;;;;;;;;;;;56073:2;56031:44;;58651:136;;;;;;;;;;-1:-1:-1;58651:136:0;;;;;:::i;:::-;;:::i;:::-;;;;3965:13:1;;-1:-1:-1;;;;;3961:39:1;3943:58;;4061:4;4049:17;;;4043:24;4069:18;4039:49;4017:20;;;4010:79;4147:17;;;4141:24;4134:32;4127:40;4105:20;;;4098:70;3931:2;3916:18;58651:136:0;3735:439:1;35642:104:0;;;;;;;;;;;;;:::i;56422:1471::-;;;;;;:::i;:::-;;:::i;37817:308::-;;;;;;;;;;-1:-1:-1;37817:308:0;;;;;:::i;:::-;;:::i;56082:52::-;;;;;;;;;;;;56133:1;56082:52;;38924:396;;;;;;;;;;-1:-1:-1;38924:396:0;;;;;:::i;:::-;;:::i;35817:318::-;;;;;;;;;;-1:-1:-1;35817:318:0;;;;;:::i;:::-;;:::i;58795:90::-;;;;;;;;;;;;;:::i;56143:25::-;;;;;;;;;;;;;;;;58530:113;;;;;;;;;;-1:-1:-1;58530:113:0;;;;;:::i;:::-;;:::i;38196:164::-;;;;;;;;;;-1:-1:-1;38196:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38317:25:0;;;38293:4;38317:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38196:164;16828:201;;;;;;;;;;-1:-1:-1;16828:201:0;;;;;:::i;:::-;;:::i;56175:37::-;;;;;;;;;;;;;;;;30460:615;30545:4;-1:-1:-1;;;;;;;;;30845:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;30922:25:0;;;30845:102;:179;;;-1:-1:-1;;;;;;;;;;30999:25:0;;;30845:179;30825:199;30460:615;-1:-1:-1;;30460:615:0:o;35473:100::-;35527:13;35560:5;35553:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35473:100;:::o;37541:204::-;37609:7;37634:16;37642:7;37634;:16::i;:::-;37629:64;;37659:34;;-1:-1:-1;;;37659:34:0;;;;;;;;;;;37629:64;-1:-1:-1;37713:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37713:24:0;;37541:204::o;37001:474::-;37074:13;37106:27;37125:7;37106:18;:27::i;:::-;37074:61;;37156:5;-1:-1:-1;;;;;37150:11:0;:2;-1:-1:-1;;;;;37150:11:0;;37146:48;;;37170:24;;-1:-1:-1;;;37170:24:0;;;;;;;;;;;37146:48;53644:10;-1:-1:-1;;;;;37211:28:0;;;37207:175;;37259:44;37276:5;53644:10;38196:164;:::i;37259:44::-;37254:128;;37331:35;;-1:-1:-1;;;37331:35:0;;;;;;;;;;;37254:128;37394:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37394:29:0;-1:-1:-1;;;;;37394:29:0;;;;;;;;;37439:28;;37394:24;;37439:28;;;;;;;37063:412;37001:474;;:::o;38427:170::-;38561:28;38571:4;38577:2;38581:7;38561:9;:28::i;:::-;38427:170;;;:::o;57901:274::-;15992:6;;-1:-1:-1;;;;;15992:6:0;53644:10;16139:23;16131:68;;;;-1:-1:-1;;;16131:68:0;;;;;;;:::i;:::-;;;;;;;;;58006:1:::1;57994:9;:13;57986:57;;;::::0;-1:-1:-1;;;57986:57:0;;7019:2:1;57986:57:0::1;::::0;::::1;7001:21:1::0;7058:2;7038:18;;;7031:30;7097:33;7077:18;;;7070:61;7148:18;;57986:57:0::1;6817:355:1::0;57986:57:0::1;55967:4;58079:9;58063:13;29780:12:::0;;29567:7;29764:13;:28;;29514:315;58063:13:::1;:25;;;;:::i;:::-;58062:41;;58054:71;;;::::0;-1:-1:-1;;;58054:71:0;;7644:2:1;58054:71:0::1;::::0;::::1;7626:21:1::0;7683:2;7663:18;;;7656:30;-1:-1:-1;;;7702:18:1;;;7695:47;7759:18;;58054:71:0::1;7442:341:1::0;58054:71:0::1;58136:31;58146:9;58157;58136;:31::i;:::-;57901:274:::0;;:::o;58893:132::-;15992:6;;-1:-1:-1;;;;;15992:6:0;53644:10;16139:23;16131:68;;;;-1:-1:-1;;;16131:68:0;;;;;;;:::i;:::-;13017:1:::1;13615:7;;:19;;13607:63;;;::::0;-1:-1:-1;;;13607:63:0;;7990:2:1;13607:63:0::1;::::0;::::1;7972:21:1::0;8029:2;8009:18;;;8002:30;8068:33;8048:18;;;8041:61;8119:18;;13607:63:0::1;7788:355:1::0;13607:63:0::1;13017:1;13748:7;:18:::0;58956:61:::2;58982:10;58995:21;58956:17;:61::i;:::-;12973:1:::1;13927:7;:22:::0;58893:132::o;58419:103::-;15992:6;;-1:-1:-1;;;;;15992:6:0;53644:10;16139:23;16131:68;;;;-1:-1:-1;;;16131:68:0;;;;;;;:::i;:::-;58493:9:::1;:21:::0;58419:103::o;38668:185::-;38806:39;38823:4;38829:2;38833:7;38806:39;;;;;;;;;;;;:16;:39::i;58305:106::-;15992:6;;-1:-1:-1;;;;;15992:6:0;53644:10;16139:23;16131:68;;;;-1:-1:-1;;;16131:68:0;;;;;;;:::i;:::-;58380:23:::1;:13;58396:7:::0;;58380:23:::1;:::i;35262:144::-:0;35326:7;35369:27;35388:7;35369:18;:27::i;31139:224::-;31203:7;-1:-1:-1;;;;;31227:19:0;;31223:60;;31255:28;;-1:-1:-1;;;31255:28:0;;;;;;;;;;;31223:60;-1:-1:-1;;;;;;31301:25:0;;;;;:18;:25;;;;;;26478:13;31301:54;;31139:224::o;16570:103::-;15992:6;;-1:-1:-1;;;;;15992:6:0;53644:10;16139:23;16131:68;;;;-1:-1:-1;;;16131:68:0;;;;;;;:::i;:::-;16635:30:::1;16662:1;16635:18;:30::i;:::-;16570:103::o:0;58651:136::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;58758:21:0;58771:7;58758:12;:21::i;35642:104::-;35698:13;35731:7;35724:14;;;;;:::i;56422:1471::-;13017:1;13615:7;;:19;;13607:63;;;;-1:-1:-1;;;13607:63:0;;7990:2:1;13607:63:0;;;7972:21:1;8029:2;8009:18;;;8002:30;8068:33;8048:18;;;8041:61;8119:18;;13607:63:0;7788:355:1;13607:63:0;13017:1;13748:7;:18;56504:9:::1;56517:10;56504:23;56496:66;;;::::0;-1:-1:-1;;;56496:66:0;;8350:2:1;56496:66:0::1;::::0;::::1;8332:21:1::0;8389:2;8369:18;;;8362:30;8428:32;8408:18;;;8401:60;8478:18;;56496:66:0::1;8148:354:1::0;56496:66:0::1;56581:10;::::0;::::1;;56573:38;;;::::0;-1:-1:-1;;;56573:38:0;;8709:2:1;56573:38:0::1;::::0;::::1;8691:21:1::0;8748:2;8728:18;;;8721:30;-1:-1:-1;;;8767:18:1;;;8760:45;8822:18;;56573:38:0::1;8507:339:1::0;56573:38:0::1;56642:1;56630:9;:13;:45;;;;;56073:2;56647:9;:28;;56630:45;56622:81;;;::::0;-1:-1:-1;;;56622:81:0;;9053:2:1;56622:81:0::1;::::0;::::1;9035:21:1::0;9092:2;9072:18;;;9065:30;9131:25;9111:18;;;9104:53;9174:18;;56622:81:0::1;8851:347:1::0;56622:81:0::1;55967:4;56739:9;56723:13;29780:12:::0;;29567:7;29764:13;:28;;29514:315;56723:13:::1;:25;;;;:::i;:::-;56722:41;;56714:71;;;::::0;-1:-1:-1;;;56714:71:0;;7644:2:1;56714:71:0::1;::::0;::::1;7626:21:1::0;7683:2;7663:18;;;7656:30;-1:-1:-1;;;7702:18:1;;;7695:47;7759:18;;56714:71:0::1;7442:341:1::0;56714:71:0::1;56798:12;56825:9;56813;;:21;;;;:::i;:::-;56798:36;;56020:4;56851:10;;:28;56847:994;;;56966:10;56896:26;56952:25:::0;;;:13:::1;:25;::::0;;;;;56925:52:::1;::::0;56133:1:::1;56925:52;:::i;:::-;56896:81:::0;-1:-1:-1;56996:22:0;;56992:752:::1;;57056:18;57043:9;:31;57039:596;;57106:1;::::0;-1:-1:-1;57220:10:0::1;57206:25;::::0;;;:13:::1;:25;::::0;;;;:38;;57235:9;;57206:25;:38:::1;::::0;57235:9;;57206:38:::1;:::i;:::-;::::0;;;-1:-1:-1;;57280:10:0::1;::::0;:22:::1;::::0;57293:9;;57280:22:::1;:::i;:::-;57267:10;:35:::0;56992:752:::1;;57039:596;57371:30;57383:18:::0;57371:9;:30:::1;:::i;:::-;57358:9;;:44;;;;:::i;:::-;57351:51;;57446:4;57433:9;:17;;57425:53;;;;-1:-1:-1::0;;;57425:53:0::1;;;;;;;:::i;:::-;57515:10;57501:25;::::0;;;:13:::1;:25;::::0;;;;:47;;57530:18;;57501:25;:47:::1;::::0;57530:18;;57501:47:::1;:::i;:::-;::::0;;;-1:-1:-1;;57584:10:0::1;::::0;:31:::1;::::0;57597:18;;57584:31:::1;:::i;56992:752::-;57696:4;57683:9;:17;;57675:53;;;;-1:-1:-1::0;;;57675:53:0::1;;;;;;;:::i;:::-;56881:874;56847:994;;;57797:4;57784:9;:17;;57776:53;;;;-1:-1:-1::0;;;57776:53:0::1;;;;;;;:::i;:::-;57853:32;57863:10;57875:9;57853;:32::i;:::-;-1:-1:-1::0;;12973:1:0;13927:7;:22;56422:1471::o;37817:308::-;-1:-1:-1;;;;;37916:31:0;;53644:10;37916:31;37912:61;;;37956:17;;-1:-1:-1;;;37956:17:0;;;;;;;;;;;37912:61;53644:10;37986:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;37986:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;37986:60:0;;;;;;;;;;38062:55;;540:41:1;;;37986:49:0;;53644:10;38062:55;;513:18:1;38062:55:0;;;;;;;37817:308;;:::o;38924:396::-;39091:28;39101:4;39107:2;39111:7;39091:9;:28::i;:::-;-1:-1:-1;;;;;39134:14:0;;;:19;39130:183;;39173:56;39204:4;39210:2;39214:7;39223:5;39173:30;:56::i;:::-;39168:145;;39257:40;;-1:-1:-1;;;39257:40:0;;;;;;;;;;;39168:145;38924:396;;;;:::o;35817:318::-;35890:13;35921:16;35929:7;35921;:16::i;:::-;35916:59;;35946:29;;-1:-1:-1;;;35946:29:0;;;;;;;;;;;35916:59;35988:21;36012:10;:8;:10::i;:::-;35988:34;;36046:7;36040:21;36065:1;36040:26;;:87;;;;;;;;;;;;;;;;;36093:7;36102:18;36112:7;36102:9;:18::i;:::-;36076:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36040:87;36033:94;35817:318;-1:-1:-1;;;35817:318:0:o;58795:90::-;15992:6;;-1:-1:-1;;;;;15992:6:0;53644:10;16139:23;16131:68;;;;-1:-1:-1;;;16131:68:0;;;;;;;:::i;:::-;58867:10:::1;::::0;;-1:-1:-1;;58853:24:0;::::1;58867:10;::::0;;::::1;58866:11;58853:24;::::0;;58795:90::o;58530:113::-;-1:-1:-1;;;;;31534:25:0;;58588:7;31534:25;;;:18;:25;;26615:2;31534:25;;;;26478:13;31534:49;;31533:80;58615:20;31445:176;16828:201;15992:6;;-1:-1:-1;;;;;15992:6:0;53644:10;16139:23;16131:68;;;;-1:-1:-1;;;16131:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16917:22:0;::::1;16909:73;;;::::0;-1:-1:-1;;;16909:73:0;;10535:2:1;16909:73:0::1;::::0;::::1;10517:21:1::0;10574:2;10554:18;;;10547:30;10613:34;10593:18;;;10586:62;-1:-1:-1;;;10664:18:1;;;10657:36;10710:19;;16909:73:0::1;10333:402:1::0;16909:73:0::1;16993:28;17012:8;16993:18;:28::i;:::-;16828:201:::0;:::o;39575:273::-;39632:4;39722:13;;39712:7;:23;39669:152;;;;-1:-1:-1;;39773:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;39773:43:0;:48;;39575:273::o;32777:1129::-;32844:7;32879;32981:13;;32974:4;:20;32970:869;;;33019:14;33036:23;;;:17;:23;;;;;;-1:-1:-1;;;33125:23:0;;33121:699;;33644:113;33651:11;33644:113;;-1:-1:-1;;;33722:6:0;33704:25;;;;:17;:25;;;;;;33644:113;;33121:699;32996:843;32970:869;33867:31;;-1:-1:-1;;;33867:31:0;;;;;;;;;;;44814:2515;44929:27;44959;44978:7;44959:18;:27::i;:::-;44929:57;;45044:4;-1:-1:-1;;;;;45003:45:0;45019:19;-1:-1:-1;;;;;45003:45:0;;44999:86;;45057:28;;-1:-1:-1;;;45057:28:0;;;;;;;;;;;44999:86;45098:22;53644:10;-1:-1:-1;;;;;45124:27:0;;;;:87;;-1:-1:-1;45168:43:0;45185:4;53644:10;38196:164;:::i;45168:43::-;45124:147;;;-1:-1:-1;53644:10:0;45228:20;45240:7;45228:11;:20::i;:::-;-1:-1:-1;;;;;45228:43:0;;45124:147;45098:174;;45290:17;45285:66;;45316:35;;-1:-1:-1;;;45316:35:0;;;;;;;;;;;45285:66;-1:-1:-1;;;;;45366:16:0;;45362:52;;45391:23;;-1:-1:-1;;;45391:23:0;;;;;;;;;;;45362:52;45543:24;;;;:15;:24;;;;;;;;45536:31;;-1:-1:-1;;;;;;45536:31:0;;;-1:-1:-1;;;;;45935:24:0;;;;;:18;:24;;;;;45933:26;;-1:-1:-1;;45933:26:0;;;46004:22;;;;;;;46002:24;;-1:-1:-1;46002:24:0;;;46297:26;;;:17;:26;;;;;-1:-1:-1;;;46385:15:0;27132:3;46385:41;46343:84;;:128;;46297:174;;;46591:46;;46587:626;;46695:1;46685:11;;46663:19;46818:30;;;:17;:30;;;;;;46814:384;;46956:13;;46941:11;:28;46937:242;;47103:30;;;;:17;:30;;;;;:52;;;46937:242;46644:569;46587:626;47260:7;47256:2;-1:-1:-1;;;;;47241:27:0;47250:4;-1:-1:-1;;;;;47241:27:0;;;;;;;;;;;44918:2411;;44814:2515;;;:::o;39932:104::-;40001:27;40011:2;40015:8;40001:27;;;;;;;;;;;;:9;:27::i;5196:317::-;5311:6;5286:21;:31;;5278:73;;;;-1:-1:-1;;;5278:73:0;;10942:2:1;5278:73:0;;;10924:21:1;10981:2;10961:18;;;10954:30;11020:31;11000:18;;;10993:59;11069:18;;5278:73:0;10740:353:1;5278:73:0;5365:12;5383:9;-1:-1:-1;;;;;5383:14:0;5405:6;5383:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5364:52;;;5435:7;5427:78;;;;-1:-1:-1;;;5427:78:0;;11510:2:1;5427:78:0;;;11492:21:1;11549:2;11529:18;;;11522:30;11588:34;11568:18;;;11561:62;11659:28;11639:18;;;11632:56;11705:19;;5427:78:0;11308:422:1;17189:191:0;17282:6;;;-1:-1:-1;;;;;17299:17:0;;;-1:-1:-1;;;;;;17299:17:0;;;;;;;17332:40;;17282:6;;;17299:17;17282:6;;17332:40;;17263:16;;17332:40;17252:128;17189:191;:::o;35042:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;35145:47:0;35164:27;35183:7;35164:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;34110:41:0;;;;27132:3;34196:32;;;34162:67;;-1:-1:-1;;;34162:67:0;-1:-1:-1;;;34259:23:0;;;:28;;-1:-1:-1;;;34240:47:0;-1:-1:-1;34000:295:0;51026:716;51210:88;;-1:-1:-1;;;51210:88:0;;51189:4;;-1:-1:-1;;;;;51210:45:0;;;;;:88;;53644:10;;51277:4;;51283:7;;51292:5;;51210:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51210:88:0;;;;;;;;-1:-1:-1;;51210:88:0;;;;;;;;;;;;:::i;:::-;;;51206:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51493:13:0;;51489:235;;51539:40;;-1:-1:-1;;;51539:40:0;;;;;;;;;;;51489:235;51682:6;51676:13;51667:6;51663:2;51659:15;51652:38;51206:529;-1:-1:-1;;;;;;51369:64:0;-1:-1:-1;;;51369:64:0;;-1:-1:-1;51026:716:0;;;;;;:::o;58183:114::-;58243:13;58276;58269:20;;;;;:::i;53768:1959::-;54239:4;54233:11;;54246:3;54229:21;;54324:17;;;;55021:11;;;54900:5;55153:2;55167;55157:13;;55149:22;55021:11;55136:36;55208:2;55198:13;;54791:682;55227:4;54791:682;;;55402:1;55397:3;55393:11;55386:18;;55453:2;55447:4;55443:13;55439:2;55435:22;55430:3;55422:36;55323:2;55313:13;;54791:682;;;-1:-1:-1;55515:13:0;;;-1:-1:-1;;55630:12:0;;;55690:19;;;55630:12;53768:1959;-1:-1:-1;53768:1959:0:o;40409:2236::-;40532:20;40555:13;-1:-1:-1;;;;;40583:16:0;;40579:48;;40608:19;;-1:-1:-1;;;40608:19:0;;;;;;;;;;;40579:48;40642:13;40638:44;;40664:18;;-1:-1:-1;;;40664:18:0;;;;;;;;;;;40638:44;-1:-1:-1;;;;;41231:22:0;;;;;;:18;:22;;;;26615:2;41231:22;;;:70;;41269:31;41257:44;;41231:70;;;41544:31;;;:17;:31;;;;;41637:15;27132:3;41637:41;41595:84;;-1:-1:-1;41715:13:0;;27395:3;41700:56;41595:162;41544:213;;:31;;41838:23;;;;41882:14;:19;41878:635;;41922:313;41953:38;;41978:12;;-1:-1:-1;;;;;41953:38:0;;;41970:1;;41953:38;;41970:1;;41953:38;42019:69;42058:1;42062:2;42066:14;;;;;;42082:5;42019:30;:69::i;:::-;42014:174;;42124:40;;-1:-1:-1;;;42124:40:0;;;;;;;;;;;42014:174;42230:3;42215:12;:18;41922:313;;42316:12;42299:13;;:29;42295:43;;42330:8;;;42295:43;41878:635;;;42379:119;42410:40;;42435:14;;;;;-1:-1:-1;;;;;42410:40:0;;;42427:1;;42410:40;;42427:1;;42410:40;42493:3;42478:12;:18;42379:119;;41878:635;-1:-1:-1;42527:13:0;:28;;;42577:60;;42610:2;42614:12;42628:8;42577:60;:::i;-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;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:254::-;2756:6;2764;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2869:9;2856:23;2846:33;;2898:38;2932:2;2921:9;2917:18;2898:38;:::i;:::-;2888:48;;2688:254;;;;;:::o;2947:592::-;3018:6;3026;3079:2;3067:9;3058:7;3054:23;3050:32;3047:52;;;3095:1;3092;3085:12;3047:52;3135:9;3122:23;3164:18;3205:2;3197:6;3194:14;3191:34;;;3221:1;3218;3211:12;3191:34;3259:6;3248:9;3244:22;3234:32;;3304:7;3297:4;3293:2;3289:13;3285:27;3275:55;;3326:1;3323;3316:12;3275:55;3366:2;3353:16;3392:2;3384:6;3381:14;3378:34;;;3408:1;3405;3398:12;3378:34;3453:7;3448:2;3439:6;3435:2;3431:15;3427:24;3424:37;3421:57;;;3474:1;3471;3464:12;3421:57;3505:2;3497:11;;;;;3527:6;;-1:-1:-1;2947:592:1;;-1:-1:-1;;;;2947:592:1:o;3544:186::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3695:29;3714:9;3695:29;:::i;4179:347::-;4244:6;4252;4305:2;4293:9;4284:7;4280:23;4276:32;4273:52;;;4321:1;4318;4311:12;4273:52;4344:29;4363:9;4344:29;:::i;:::-;4334:39;;4423:2;4412:9;4408:18;4395:32;4470:5;4463:13;4456:21;4449:5;4446:32;4436:60;;4492:1;4489;4482:12;4436:60;4515:5;4505:15;;;4179:347;;;;;:::o;4531:127::-;4592:10;4587:3;4583:20;4580:1;4573:31;4623:4;4620:1;4613:15;4647:4;4644:1;4637:15;4663:1138;4758:6;4766;4774;4782;4835:3;4823:9;4814:7;4810:23;4806:33;4803:53;;;4852:1;4849;4842:12;4803:53;4875:29;4894:9;4875:29;:::i;:::-;4865:39;;4923:38;4957:2;4946:9;4942:18;4923:38;:::i;:::-;4913:48;;5008:2;4997:9;4993:18;4980:32;4970:42;;5063:2;5052:9;5048:18;5035:32;5086:18;5127:2;5119:6;5116:14;5113:34;;;5143:1;5140;5133:12;5113:34;5181:6;5170:9;5166:22;5156:32;;5226:7;5219:4;5215:2;5211:13;5207:27;5197:55;;5248:1;5245;5238:12;5197:55;5284:2;5271:16;5306:2;5302;5299:10;5296:36;;;5312:18;;:::i;:::-;5387:2;5381:9;5355:2;5441:13;;-1:-1:-1;;5437:22:1;;;5461:2;5433:31;5429:40;5417:53;;;5485:18;;;5505:22;;;5482:46;5479:72;;;5531:18;;:::i;:::-;5571:10;5567:2;5560:22;5606:2;5598:6;5591:18;5646:7;5641:2;5636;5632;5628:11;5624:20;5621:33;5618:53;;;5667:1;5664;5657:12;5618:53;5723:2;5718;5714;5710:11;5705:2;5697:6;5693:15;5680:46;5768:1;5763:2;5758;5750:6;5746:15;5742:24;5735:35;5789:6;5779:16;;;;;;;4663:1138;;;;;;;:::o;5806:260::-;5874:6;5882;5935:2;5923:9;5914:7;5910:23;5906:32;5903:52;;;5951:1;5948;5941:12;5903:52;5974:29;5993:9;5974:29;:::i;:::-;5964:39;;6022:38;6056:2;6045:9;6041:18;6022:38;:::i;6071:380::-;6150:1;6146:12;;;;6193;;;6214:61;;6268:4;6260:6;6256:17;6246:27;;6214:61;6321:2;6313:6;6310:14;6290:18;6287:38;6284:161;;;6367:10;6362:3;6358:20;6355:1;6348:31;6402:4;6399:1;6392:15;6430:4;6427:1;6420:15;6284:161;;6071:380;;;:::o;6456:356::-;6658:2;6640:21;;;6677:18;;;6670:30;6736:34;6731:2;6716:18;;6709:62;6803:2;6788:18;;6456:356::o;7177:127::-;7238:10;7233:3;7229:20;7226:1;7219:31;7269:4;7266:1;7259:15;7293:4;7290:1;7283:15;7309:128;7349:3;7380:1;7376:6;7373:1;7370:13;7367:39;;;7386:18;;:::i;:::-;-1:-1:-1;7422:9:1;;7309:128::o;9203:168::-;9243:7;9309:1;9305;9301:6;9297:14;9294:1;9291:21;9286:1;9279:9;9272:17;9268:45;9265:71;;;9316:18;;:::i;:::-;-1:-1:-1;9356:9:1;;9203:168::o;9376:125::-;9416:4;9444:1;9441;9438:8;9435:34;;;9449:18;;:::i;:::-;-1:-1:-1;9486:9:1;;9376:125::o;9506:347::-;9708:2;9690:21;;;9747:2;9727:18;;;9720:30;9786:25;9781:2;9766:18;;9759:53;9844:2;9829:18;;9506:347::o;9858:470::-;10037:3;10075:6;10069:13;10091:53;10137:6;10132:3;10125:4;10117:6;10113:17;10091:53;:::i;:::-;10207:13;;10166:16;;;;10229:57;10207:13;10166:16;10263:4;10251:17;;10229:57;:::i;:::-;10302:20;;9858:470;-1:-1:-1;;;;9858:470:1:o;11735:489::-;-1:-1:-1;;;;;12004:15:1;;;11986:34;;12056:15;;12051:2;12036:18;;12029:43;12103:2;12088:18;;12081:34;;;12151:3;12146:2;12131:18;;12124:31;;;11929:4;;12172:46;;12198:19;;12190:6;12172:46;:::i;:::-;12164:54;11735:489;-1:-1:-1;;;;;;11735:489:1:o;12229:249::-;12298:6;12351:2;12339:9;12330:7;12326:23;12322:32;12319:52;;;12367:1;12364;12357:12;12319:52;12399:9;12393:16;12418:30;12442:5;12418:30;:::i

Swarm Source

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