ETH Price: $3,253.06 (+2.20%)
Gas: 2 Gwei

Token

Lil Bone (LB)
 

Overview

Max Total Supply

7,777 LB

Holders

2,747

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
daodapp.eth
Balance
10 LB
0xbe92f8deb04b44175fa782f8d0bb65b75626bf4b
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:
LilBone

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: LilBone.sol



pragma solidity ^0.8.7;




contract LilBone is ERC721A, Ownable {
    uint public constant maxFree = 2;
    uint256 public constant maxFreeMintNum = 2600;
    uint public supply = 7777;
    uint public price = 0.005 ether;
    uint public alrFreeTotal = 0;
    string public baseURI = "";
    string public constant baseExtension = ".json";

    bool public _live = false;

    constructor() ERC721A("Lil Bone", "LB") {}

    function Mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(_live, "Not live!");
        require(supply >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        

        if(_numberMinted(msg.sender) >= maxFree) {
            require(msg.value >= _amount * price, "Invalid funds provided");
        } else{
            uint count = _numberMinted(msg.sender) + _amount;
            if(count > maxFree){
                require(msg.value >= (count - maxFree) * price , "Insufficient funds");
            }
        }
        if(_numberMinted(msg.sender) == 0) {
            if(alrFreeTotal < maxFreeMintNum){
                alrFreeTotal++;
            }else{
                if(msg.value < _amount  * price){
                    require( msg.value >= _amount * price, "Mint would exceed max supply of free mints" );
                }
            }
        }
        _safeMint(_caller, _amount);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function TeamMint() external onlyOwner {
        _safeMint(_msgSender(), 50);
    }

    function reduceSupply(uint newSupply) external onlyOwner {
        supply = newSupply;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function live(bool _state) external onlyOwner {
        _live = _state;
    }

    function setCost(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
            //   _tokenId.toString(),
              baseExtension
            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alrFreeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"live","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611e616009556611c37937e08000600a556000600b5560405180602001604052806000815250600c9080519060200190620000419291906200021e565b506000600d60006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b506040518060400160405280600881526020017f4c696c20426f6e650000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4c420000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ef9291906200021e565b508060039080519060200190620001089291906200021e565b50620001196200014760201b60201c565b600081905550505062000141620001356200015060201b60201c565b6200015860201b60201c565b62000333565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022c90620002ce565b90600052602060002090601f0160209004810192826200025057600085556200029c565b82601f106200026b57805160ff19168380011785556200029c565b828001600101855582156200029c579182015b828111156200029b5782518255916020019190600101906200027e565b5b509050620002ab9190620002af565b5090565b5b80821115620002ca576000816000905550600101620002b0565b5090565b60006002820490506001821680620002e757607f821691505b60208210811415620002fe57620002fd62000304565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6132f080620003436000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d57806395d89b41116100a0578063c66828621161006f578063c668286214610692578063c87b56dd146106bd578063dc33e681146106fa578063e985e9c514610737578063f2fde38b14610774576101ee565b806395d89b41146105ea578063a035b1fe14610615578063a22cb46514610640578063b88d4fde14610669576101ee565b8063715018a6116100dc578063715018a6146105545780637b460aac1461056b57806380623444146105965780638da5cb5b146105bf576101ee565b80636352211e1461048457806369e5d620146104c15780636c0360eb146104ec57806370a0823114610517576101ee565b80633ccfd60b1161018557806355f804b31161015457806355f804b3146103f057806356e0ec72146104195780635c6e7f60146104445780636242a8a31461046d576101ee565b80633ccfd60b1461035c57806342842e0e1461037357806344a0d68a1461039c578063485a68a3146103c5576101ee565b8063081812fc116101c1578063081812fc146102a2578063095ea7b3146102df57806318160ddd1461030857806323b872dd14610333576101ee565b806301ffc9a7146101f3578063047fc9aa1461023057806306fdde031461025b5780630788370314610286575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612582565b61079d565b60405161022791906129f2565b60405180910390f35b34801561023c57600080fd5b5061024561082f565b6040516102529190612b8f565b60405180910390f35b34801561026757600080fd5b50610270610835565b60405161027d9190612a0d565b60405180910390f35b6102a0600480360381019061029b9190612625565b6108c7565b005b3480156102ae57600080fd5b506102c960048036038101906102c49190612625565b610bbf565b6040516102d6919061298b565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612515565b610c3e565b005b34801561031457600080fd5b5061031d610d82565b60405161032a9190612b8f565b60405180910390f35b34801561033f57600080fd5b5061035a600480360381019061035591906123ff565b610d99565b005b34801561036857600080fd5b506103716110be565b005b34801561037f57600080fd5b5061039a600480360381019061039591906123ff565b611182565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612625565b6111a2565b005b3480156103d157600080fd5b506103da6111b4565b6040516103e79190612b8f565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906125dc565b6111b9565b005b34801561042557600080fd5b5061042e6111db565b60405161043b91906129f2565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190612555565b6111ee565b005b34801561047957600080fd5b50610482611213565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612625565b61122f565b6040516104b8919061298b565b60405180910390f35b3480156104cd57600080fd5b506104d6611241565b6040516104e39190612b8f565b60405180910390f35b3480156104f857600080fd5b50610501611247565b60405161050e9190612a0d565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190612392565b6112d5565b60405161054b9190612b8f565b60405180910390f35b34801561056057600080fd5b5061056961138e565b005b34801561057757600080fd5b506105806113a2565b60405161058d9190612b8f565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612625565b6113a8565b005b3480156105cb57600080fd5b506105d46113ba565b6040516105e1919061298b565b60405180910390f35b3480156105f657600080fd5b506105ff6113e4565b60405161060c9190612a0d565b60405180910390f35b34801561062157600080fd5b5061062a611476565b6040516106379190612b8f565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906124d5565b61147c565b005b34801561067557600080fd5b50610690600480360381019061068b9190612452565b6115f4565b005b34801561069e57600080fd5b506106a7611667565b6040516106b49190612a0d565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612625565b6116a0565b6040516106f19190612a0d565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190612392565b61177f565b60405161072e9190612b8f565b60405180910390f35b34801561074357600080fd5b5061075e600480360381019061075991906123bf565b611791565b60405161076b91906129f2565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190612392565b611825565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108285750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60095481565b60606002805461084490612e5f565b80601f016020809104026020016040519081016040528092919081815260200182805461087090612e5f565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b60006108d16118a9565b9050600d60009054906101000a900460ff16610922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091990612b6f565b60405180910390fd5b8161092b610d82565b6109359190612c94565b6009541015610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090612aaf565b60405180910390fd5b600082116109bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b390612a6f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190612b4f565b60405180910390fd5b6002610a35336118b1565b10610a8f57600a5482610a489190612d1b565b341015610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8190612b0f565b60405180910390fd5b610b0f565b600082610a9b336118b1565b610aa59190612c94565b90506002811115610b0d57600a54600282610ac09190612d75565b610aca9190612d1b565b341015610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390612a8f565b60405180910390fd5b5b505b6000610b1a336118b1565b1415610bb157610a28600b541015610b4957600b6000815480929190610b3f90612ec2565b9190505550610bb0565b600a5482610b579190612d1b565b341015610baf57600a5482610b6c9190612d1b565b341015610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590612a2f565b60405180910390fd5b5b5b5b610bbb8183611908565b5050565b6000610bca82611926565b610c00576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c498261122f565b90508073ffffffffffffffffffffffffffffffffffffffff16610c6a611985565b73ffffffffffffffffffffffffffffffffffffffff1614610ccd57610c9681610c91611985565b611791565b610ccc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610d8c61198d565b6001546000540303905090565b6000610da482611996565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e1784611a64565b91509150610e2d8187610e28611985565b611a8b565b610e7957610e4286610e3d611985565b611791565b610e78576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ee0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eed8686866001611acf565b8015610ef857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fc685610fa2888887611ad5565b7c020000000000000000000000000000000000000000000000000000000017611afd565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561104e57600060018501905060006004600083815260200190815260200160002054141561104c57600054811461104b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110b68686866001611b28565b505050505050565b6110c6611b2e565b600047905060006110d56118a9565b73ffffffffffffffffffffffffffffffffffffffff16826040516110f890612976565b60006040518083038185875af1925050503d8060008114611135576040519150601f19603f3d011682016040523d82523d6000602084013e61113a565b606091505b505090508061117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590612b2f565b60405180910390fd5b5050565b61119d838383604051806020016040528060008152506115f4565b505050565b6111aa611b2e565b80600a8190555050565b600281565b6111c1611b2e565b80600c90805190602001906111d79291906121a6565b5050565b600d60009054906101000a900460ff1681565b6111f6611b2e565b80600d60006101000a81548160ff02191690831515021790555050565b61121b611b2e565b61122d6112266118a9565b6032611908565b565b600061123a82611996565b9050919050565b600b5481565b600c805461125490612e5f565b80601f016020809104026020016040519081016040528092919081815260200182805461128090612e5f565b80156112cd5780601f106112a2576101008083540402835291602001916112cd565b820191906000526020600020905b8154815290600101906020018083116112b057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611396611b2e565b6113a06000611bac565b565b610a2881565b6113b0611b2e565b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546113f390612e5f565b80601f016020809104026020016040519081016040528092919081815260200182805461141f90612e5f565b801561146c5780601f106114415761010080835404028352916020019161146c565b820191906000526020600020905b81548152906001019060200180831161144f57829003601f168201915b5050505050905090565b600a5481565b611484611985565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f6611985565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a3611985565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e891906129f2565b60405180910390a35050565b6115ff848484610d99565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116615761162a84848484611c72565b611660576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116ab82611926565b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190612acf565b60405180910390fd5b6000600c80546116f990612e5f565b9050116117155760405180602001604052806000815250611778565b600c61172083611dd2565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161176893929190612945565b6040516020818303038152906040525b9050919050565b600061178a826118b1565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182d611b2e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490612a4f565b60405180910390fd5b6118a681611bac565b50565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611922828260405180602001604052806000815250611f33565b5050565b60008161193161198d565b11158015611940575060005482105b801561197e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119a561198d565b11611a2d57600054811015611a2c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a2a575b6000811415611a205760046000836001900393508381526020019081526020016000205490506119f5565b8092505050611a5f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611aec868684611fd0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b366118a9565b73ffffffffffffffffffffffffffffffffffffffff16611b546113ba565b73ffffffffffffffffffffffffffffffffffffffff1614611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190612aef565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c98611985565b8786866040518563ffffffff1660e01b8152600401611cba94939291906129a6565b602060405180830381600087803b158015611cd457600080fd5b505af1925050508015611d0557506040513d601f19601f82011682018060405250810190611d0291906125af565b60015b611d7f573d8060008114611d35576040519150601f19603f3d011682016040523d82523d6000602084013e611d3a565b606091505b50600081511415611d77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e1a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f2e565b600082905060005b60008214611e4c578080611e3590612ec2565b915050600a82611e459190612cea565b9150611e22565b60008167ffffffffffffffff811115611e6857611e67612ff8565b5b6040519080825280601f01601f191660200182016040528015611e9a5781602001600182028036833780820191505090505b5090505b60008514611f2757600182611eb39190612d75565b9150600a85611ec29190612f0b565b6030611ece9190612c94565b60f81b818381518110611ee457611ee3612fc9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f209190612cea565b9450611e9e565b8093505050505b919050565b611f3d8383611fd9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fcb57600080549050600083820390505b611f7d6000868380600101945086611c72565b611fb3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f6a578160005414611fc857600080fd5b50505b505050565b60009392505050565b600080549050600082141561201a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120276000848385611acf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061209e8361208f6000866000611ad5565b61209885612196565b17611afd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461213f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612104565b50600082141561217b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121916000848385611b28565b505050565b60006001821460e11b9050919050565b8280546121b290612e5f565b90600052602060002090601f0160209004810192826121d4576000855561221b565b82601f106121ed57805160ff191683800117855561221b565b8280016001018555821561221b579182015b8281111561221a5782518255916020019190600101906121ff565b5b509050612228919061222c565b5090565b5b8082111561224557600081600090555060010161222d565b5090565b600061225c61225784612bcf565b612baa565b9050828152602081018484840111156122785761227761302c565b5b612283848285612e1d565b509392505050565b600061229e61229984612c00565b612baa565b9050828152602081018484840111156122ba576122b961302c565b5b6122c5848285612e1d565b509392505050565b6000813590506122dc8161325e565b92915050565b6000813590506122f181613275565b92915050565b6000813590506123068161328c565b92915050565b60008151905061231b8161328c565b92915050565b600082601f83011261233657612335613027565b5b8135612346848260208601612249565b91505092915050565b600082601f83011261236457612363613027565b5b813561237484826020860161228b565b91505092915050565b60008135905061238c816132a3565b92915050565b6000602082840312156123a8576123a7613036565b5b60006123b6848285016122cd565b91505092915050565b600080604083850312156123d6576123d5613036565b5b60006123e4858286016122cd565b92505060206123f5858286016122cd565b9150509250929050565b60008060006060848603121561241857612417613036565b5b6000612426868287016122cd565b9350506020612437868287016122cd565b92505060406124488682870161237d565b9150509250925092565b6000806000806080858703121561246c5761246b613036565b5b600061247a878288016122cd565b945050602061248b878288016122cd565b935050604061249c8782880161237d565b925050606085013567ffffffffffffffff8111156124bd576124bc613031565b5b6124c987828801612321565b91505092959194509250565b600080604083850312156124ec576124eb613036565b5b60006124fa858286016122cd565b925050602061250b858286016122e2565b9150509250929050565b6000806040838503121561252c5761252b613036565b5b600061253a858286016122cd565b925050602061254b8582860161237d565b9150509250929050565b60006020828403121561256b5761256a613036565b5b6000612579848285016122e2565b91505092915050565b60006020828403121561259857612597613036565b5b60006125a6848285016122f7565b91505092915050565b6000602082840312156125c5576125c4613036565b5b60006125d38482850161230c565b91505092915050565b6000602082840312156125f2576125f1613036565b5b600082013567ffffffffffffffff8111156126105761260f613031565b5b61261c8482850161234f565b91505092915050565b60006020828403121561263b5761263a613036565b5b60006126498482850161237d565b91505092915050565b61265b81612da9565b82525050565b61266a81612dbb565b82525050565b600061267b82612c46565b6126858185612c5c565b9350612695818560208601612e2c565b61269e8161303b565b840191505092915050565b60006126b482612c51565b6126be8185612c78565b93506126ce818560208601612e2c565b6126d78161303b565b840191505092915050565b60006126ed82612c51565b6126f78185612c89565b9350612707818560208601612e2c565b80840191505092915050565b6000815461272081612e5f565b61272a8186612c89565b94506001821660008114612745576001811461275657612789565b60ff19831686528186019350612789565b61275f85612c31565b60005b8381101561278157815481890152600182019150602081019050612762565b838801955050505b50505092915050565b600061279f602a83612c78565b91506127aa8261304c565b604082019050919050565b60006127c2602683612c78565b91506127cd8261309b565b604082019050919050565b60006127e5600a83612c78565b91506127f0826130ea565b602082019050919050565b6000612808601283612c78565b915061281382613113565b602082019050919050565b600061282b601283612c78565b91506128368261313c565b602082019050919050565b600061284e601583612c78565b915061285982613165565b602082019050919050565b6000612871602083612c78565b915061287c8261318e565b602082019050919050565b6000612894601683612c78565b915061289f826131b7565b602082019050919050565b60006128b7600083612c6d565b91506128c2826131e0565b600082019050919050565b60006128da600e83612c78565b91506128e5826131e3565b602082019050919050565b60006128fd600c83612c78565b91506129088261320c565b602082019050919050565b6000612920600983612c78565b915061292b82613235565b602082019050919050565b61293f81612e13565b82525050565b60006129518286612713565b915061295d82856126e2565b915061296982846126e2565b9150819050949350505050565b6000612981826128aa565b9150819050919050565b60006020820190506129a06000830184612652565b92915050565b60006080820190506129bb6000830187612652565b6129c86020830186612652565b6129d56040830185612936565b81810360608301526129e78184612670565b905095945050505050565b6000602082019050612a076000830184612661565b92915050565b60006020820190508181036000830152612a2781846126a9565b905092915050565b60006020820190508181036000830152612a4881612792565b9050919050565b60006020820190508181036000830152612a68816127b5565b9050919050565b60006020820190508181036000830152612a88816127d8565b9050919050565b60006020820190508181036000830152612aa8816127fb565b9050919050565b60006020820190508181036000830152612ac88161281e565b9050919050565b60006020820190508181036000830152612ae881612841565b9050919050565b60006020820190508181036000830152612b0881612864565b9050919050565b60006020820190508181036000830152612b2881612887565b9050919050565b60006020820190508181036000830152612b48816128cd565b9050919050565b60006020820190508181036000830152612b68816128f0565b9050919050565b60006020820190508181036000830152612b8881612913565b9050919050565b6000602082019050612ba46000830184612936565b92915050565b6000612bb4612bc5565b9050612bc08282612e91565b919050565b6000604051905090565b600067ffffffffffffffff821115612bea57612be9612ff8565b5b612bf38261303b565b9050602081019050919050565b600067ffffffffffffffff821115612c1b57612c1a612ff8565b5b612c248261303b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c9f82612e13565b9150612caa83612e13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cdf57612cde612f3c565b5b828201905092915050565b6000612cf582612e13565b9150612d0083612e13565b925082612d1057612d0f612f6b565b5b828204905092915050565b6000612d2682612e13565b9150612d3183612e13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d6a57612d69612f3c565b5b828202905092915050565b6000612d8082612e13565b9150612d8b83612e13565b925082821015612d9e57612d9d612f3c565b5b828203905092915050565b6000612db482612df3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e4a578082015181840152602081019050612e2f565b83811115612e59576000848401525b50505050565b60006002820490506001821680612e7757607f821691505b60208210811415612e8b57612e8a612f9a565b5b50919050565b612e9a8261303b565b810181811067ffffffffffffffff82111715612eb957612eb8612ff8565b5b80604052505050565b6000612ecd82612e13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f0057612eff612f3c565b5b600182019050919050565b6000612f1682612e13565b9150612f2183612e13565b925082612f3157612f30612f6b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e7420776f756c6420657863656564206d617820737570706c79206f662060008201527f66726565206d696e747300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b7f4e6f74206c697665210000000000000000000000000000000000000000000000600082015250565b61326781612da9565b811461327257600080fd5b50565b61327e81612dbb565b811461328957600080fd5b50565b61329581612dc7565b81146132a057600080fd5b50565b6132ac81612e13565b81146132b757600080fd5b5056fea2646970667358221220d54d815faecac8651a294227efd3b93b875845d019a7563eba1ed4cd2225617564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d57806395d89b41116100a0578063c66828621161006f578063c668286214610692578063c87b56dd146106bd578063dc33e681146106fa578063e985e9c514610737578063f2fde38b14610774576101ee565b806395d89b41146105ea578063a035b1fe14610615578063a22cb46514610640578063b88d4fde14610669576101ee565b8063715018a6116100dc578063715018a6146105545780637b460aac1461056b57806380623444146105965780638da5cb5b146105bf576101ee565b80636352211e1461048457806369e5d620146104c15780636c0360eb146104ec57806370a0823114610517576101ee565b80633ccfd60b1161018557806355f804b31161015457806355f804b3146103f057806356e0ec72146104195780635c6e7f60146104445780636242a8a31461046d576101ee565b80633ccfd60b1461035c57806342842e0e1461037357806344a0d68a1461039c578063485a68a3146103c5576101ee565b8063081812fc116101c1578063081812fc146102a2578063095ea7b3146102df57806318160ddd1461030857806323b872dd14610333576101ee565b806301ffc9a7146101f3578063047fc9aa1461023057806306fdde031461025b5780630788370314610286575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612582565b61079d565b60405161022791906129f2565b60405180910390f35b34801561023c57600080fd5b5061024561082f565b6040516102529190612b8f565b60405180910390f35b34801561026757600080fd5b50610270610835565b60405161027d9190612a0d565b60405180910390f35b6102a0600480360381019061029b9190612625565b6108c7565b005b3480156102ae57600080fd5b506102c960048036038101906102c49190612625565b610bbf565b6040516102d6919061298b565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612515565b610c3e565b005b34801561031457600080fd5b5061031d610d82565b60405161032a9190612b8f565b60405180910390f35b34801561033f57600080fd5b5061035a600480360381019061035591906123ff565b610d99565b005b34801561036857600080fd5b506103716110be565b005b34801561037f57600080fd5b5061039a600480360381019061039591906123ff565b611182565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612625565b6111a2565b005b3480156103d157600080fd5b506103da6111b4565b6040516103e79190612b8f565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906125dc565b6111b9565b005b34801561042557600080fd5b5061042e6111db565b60405161043b91906129f2565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190612555565b6111ee565b005b34801561047957600080fd5b50610482611213565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612625565b61122f565b6040516104b8919061298b565b60405180910390f35b3480156104cd57600080fd5b506104d6611241565b6040516104e39190612b8f565b60405180910390f35b3480156104f857600080fd5b50610501611247565b60405161050e9190612a0d565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190612392565b6112d5565b60405161054b9190612b8f565b60405180910390f35b34801561056057600080fd5b5061056961138e565b005b34801561057757600080fd5b506105806113a2565b60405161058d9190612b8f565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190612625565b6113a8565b005b3480156105cb57600080fd5b506105d46113ba565b6040516105e1919061298b565b60405180910390f35b3480156105f657600080fd5b506105ff6113e4565b60405161060c9190612a0d565b60405180910390f35b34801561062157600080fd5b5061062a611476565b6040516106379190612b8f565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906124d5565b61147c565b005b34801561067557600080fd5b50610690600480360381019061068b9190612452565b6115f4565b005b34801561069e57600080fd5b506106a7611667565b6040516106b49190612a0d565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612625565b6116a0565b6040516106f19190612a0d565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190612392565b61177f565b60405161072e9190612b8f565b60405180910390f35b34801561074357600080fd5b5061075e600480360381019061075991906123bf565b611791565b60405161076b91906129f2565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190612392565b611825565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108285750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60095481565b60606002805461084490612e5f565b80601f016020809104026020016040519081016040528092919081815260200182805461087090612e5f565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b60006108d16118a9565b9050600d60009054906101000a900460ff16610922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091990612b6f565b60405180910390fd5b8161092b610d82565b6109359190612c94565b6009541015610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090612aaf565b60405180910390fd5b600082116109bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b390612a6f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190612b4f565b60405180910390fd5b6002610a35336118b1565b10610a8f57600a5482610a489190612d1b565b341015610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8190612b0f565b60405180910390fd5b610b0f565b600082610a9b336118b1565b610aa59190612c94565b90506002811115610b0d57600a54600282610ac09190612d75565b610aca9190612d1b565b341015610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0390612a8f565b60405180910390fd5b5b505b6000610b1a336118b1565b1415610bb157610a28600b541015610b4957600b6000815480929190610b3f90612ec2565b9190505550610bb0565b600a5482610b579190612d1b565b341015610baf57600a5482610b6c9190612d1b565b341015610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590612a2f565b60405180910390fd5b5b5b5b610bbb8183611908565b5050565b6000610bca82611926565b610c00576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c498261122f565b90508073ffffffffffffffffffffffffffffffffffffffff16610c6a611985565b73ffffffffffffffffffffffffffffffffffffffff1614610ccd57610c9681610c91611985565b611791565b610ccc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610d8c61198d565b6001546000540303905090565b6000610da482611996565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e1784611a64565b91509150610e2d8187610e28611985565b611a8b565b610e7957610e4286610e3d611985565b611791565b610e78576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ee0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610eed8686866001611acf565b8015610ef857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fc685610fa2888887611ad5565b7c020000000000000000000000000000000000000000000000000000000017611afd565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561104e57600060018501905060006004600083815260200190815260200160002054141561104c57600054811461104b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110b68686866001611b28565b505050505050565b6110c6611b2e565b600047905060006110d56118a9565b73ffffffffffffffffffffffffffffffffffffffff16826040516110f890612976565b60006040518083038185875af1925050503d8060008114611135576040519150601f19603f3d011682016040523d82523d6000602084013e61113a565b606091505b505090508061117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590612b2f565b60405180910390fd5b5050565b61119d838383604051806020016040528060008152506115f4565b505050565b6111aa611b2e565b80600a8190555050565b600281565b6111c1611b2e565b80600c90805190602001906111d79291906121a6565b5050565b600d60009054906101000a900460ff1681565b6111f6611b2e565b80600d60006101000a81548160ff02191690831515021790555050565b61121b611b2e565b61122d6112266118a9565b6032611908565b565b600061123a82611996565b9050919050565b600b5481565b600c805461125490612e5f565b80601f016020809104026020016040519081016040528092919081815260200182805461128090612e5f565b80156112cd5780601f106112a2576101008083540402835291602001916112cd565b820191906000526020600020905b8154815290600101906020018083116112b057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611396611b2e565b6113a06000611bac565b565b610a2881565b6113b0611b2e565b8060098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546113f390612e5f565b80601f016020809104026020016040519081016040528092919081815260200182805461141f90612e5f565b801561146c5780601f106114415761010080835404028352916020019161146c565b820191906000526020600020905b81548152906001019060200180831161144f57829003601f168201915b5050505050905090565b600a5481565b611484611985565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f6611985565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a3611985565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e891906129f2565b60405180910390a35050565b6115ff848484610d99565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116615761162a84848484611c72565b611660576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606116ab82611926565b6116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e190612acf565b60405180910390fd5b6000600c80546116f990612e5f565b9050116117155760405180602001604052806000815250611778565b600c61172083611dd2565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161176893929190612945565b6040516020818303038152906040525b9050919050565b600061178a826118b1565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182d611b2e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490612a4f565b60405180910390fd5b6118a681611bac565b50565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611922828260405180602001604052806000815250611f33565b5050565b60008161193161198d565b11158015611940575060005482105b801561197e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119a561198d565b11611a2d57600054811015611a2c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a2a575b6000811415611a205760046000836001900393508381526020019081526020016000205490506119f5565b8092505050611a5f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611aec868684611fd0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b366118a9565b73ffffffffffffffffffffffffffffffffffffffff16611b546113ba565b73ffffffffffffffffffffffffffffffffffffffff1614611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190612aef565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c98611985565b8786866040518563ffffffff1660e01b8152600401611cba94939291906129a6565b602060405180830381600087803b158015611cd457600080fd5b505af1925050508015611d0557506040513d601f19601f82011682018060405250810190611d0291906125af565b60015b611d7f573d8060008114611d35576040519150601f19603f3d011682016040523d82523d6000602084013e611d3a565b606091505b50600081511415611d77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e1a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f2e565b600082905060005b60008214611e4c578080611e3590612ec2565b915050600a82611e459190612cea565b9150611e22565b60008167ffffffffffffffff811115611e6857611e67612ff8565b5b6040519080825280601f01601f191660200182016040528015611e9a5781602001600182028036833780820191505090505b5090505b60008514611f2757600182611eb39190612d75565b9150600a85611ec29190612f0b565b6030611ece9190612c94565b60f81b818381518110611ee457611ee3612fc9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f209190612cea565b9450611e9e565b8093505050505b919050565b611f3d8383611fd9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fcb57600080549050600083820390505b611f7d6000868380600101945086611c72565b611fb3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f6a578160005414611fc857600080fd5b50505b505050565b60009392505050565b600080549050600082141561201a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120276000848385611acf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061209e8361208f6000866000611ad5565b61209885612196565b17611afd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461213f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612104565b50600082141561217b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121916000848385611b28565b505050565b60006001821460e11b9050919050565b8280546121b290612e5f565b90600052602060002090601f0160209004810192826121d4576000855561221b565b82601f106121ed57805160ff191683800117855561221b565b8280016001018555821561221b579182015b8281111561221a5782518255916020019190600101906121ff565b5b509050612228919061222c565b5090565b5b8082111561224557600081600090555060010161222d565b5090565b600061225c61225784612bcf565b612baa565b9050828152602081018484840111156122785761227761302c565b5b612283848285612e1d565b509392505050565b600061229e61229984612c00565b612baa565b9050828152602081018484840111156122ba576122b961302c565b5b6122c5848285612e1d565b509392505050565b6000813590506122dc8161325e565b92915050565b6000813590506122f181613275565b92915050565b6000813590506123068161328c565b92915050565b60008151905061231b8161328c565b92915050565b600082601f83011261233657612335613027565b5b8135612346848260208601612249565b91505092915050565b600082601f83011261236457612363613027565b5b813561237484826020860161228b565b91505092915050565b60008135905061238c816132a3565b92915050565b6000602082840312156123a8576123a7613036565b5b60006123b6848285016122cd565b91505092915050565b600080604083850312156123d6576123d5613036565b5b60006123e4858286016122cd565b92505060206123f5858286016122cd565b9150509250929050565b60008060006060848603121561241857612417613036565b5b6000612426868287016122cd565b9350506020612437868287016122cd565b92505060406124488682870161237d565b9150509250925092565b6000806000806080858703121561246c5761246b613036565b5b600061247a878288016122cd565b945050602061248b878288016122cd565b935050604061249c8782880161237d565b925050606085013567ffffffffffffffff8111156124bd576124bc613031565b5b6124c987828801612321565b91505092959194509250565b600080604083850312156124ec576124eb613036565b5b60006124fa858286016122cd565b925050602061250b858286016122e2565b9150509250929050565b6000806040838503121561252c5761252b613036565b5b600061253a858286016122cd565b925050602061254b8582860161237d565b9150509250929050565b60006020828403121561256b5761256a613036565b5b6000612579848285016122e2565b91505092915050565b60006020828403121561259857612597613036565b5b60006125a6848285016122f7565b91505092915050565b6000602082840312156125c5576125c4613036565b5b60006125d38482850161230c565b91505092915050565b6000602082840312156125f2576125f1613036565b5b600082013567ffffffffffffffff8111156126105761260f613031565b5b61261c8482850161234f565b91505092915050565b60006020828403121561263b5761263a613036565b5b60006126498482850161237d565b91505092915050565b61265b81612da9565b82525050565b61266a81612dbb565b82525050565b600061267b82612c46565b6126858185612c5c565b9350612695818560208601612e2c565b61269e8161303b565b840191505092915050565b60006126b482612c51565b6126be8185612c78565b93506126ce818560208601612e2c565b6126d78161303b565b840191505092915050565b60006126ed82612c51565b6126f78185612c89565b9350612707818560208601612e2c565b80840191505092915050565b6000815461272081612e5f565b61272a8186612c89565b94506001821660008114612745576001811461275657612789565b60ff19831686528186019350612789565b61275f85612c31565b60005b8381101561278157815481890152600182019150602081019050612762565b838801955050505b50505092915050565b600061279f602a83612c78565b91506127aa8261304c565b604082019050919050565b60006127c2602683612c78565b91506127cd8261309b565b604082019050919050565b60006127e5600a83612c78565b91506127f0826130ea565b602082019050919050565b6000612808601283612c78565b915061281382613113565b602082019050919050565b600061282b601283612c78565b91506128368261313c565b602082019050919050565b600061284e601583612c78565b915061285982613165565b602082019050919050565b6000612871602083612c78565b915061287c8261318e565b602082019050919050565b6000612894601683612c78565b915061289f826131b7565b602082019050919050565b60006128b7600083612c6d565b91506128c2826131e0565b600082019050919050565b60006128da600e83612c78565b91506128e5826131e3565b602082019050919050565b60006128fd600c83612c78565b91506129088261320c565b602082019050919050565b6000612920600983612c78565b915061292b82613235565b602082019050919050565b61293f81612e13565b82525050565b60006129518286612713565b915061295d82856126e2565b915061296982846126e2565b9150819050949350505050565b6000612981826128aa565b9150819050919050565b60006020820190506129a06000830184612652565b92915050565b60006080820190506129bb6000830187612652565b6129c86020830186612652565b6129d56040830185612936565b81810360608301526129e78184612670565b905095945050505050565b6000602082019050612a076000830184612661565b92915050565b60006020820190508181036000830152612a2781846126a9565b905092915050565b60006020820190508181036000830152612a4881612792565b9050919050565b60006020820190508181036000830152612a68816127b5565b9050919050565b60006020820190508181036000830152612a88816127d8565b9050919050565b60006020820190508181036000830152612aa8816127fb565b9050919050565b60006020820190508181036000830152612ac88161281e565b9050919050565b60006020820190508181036000830152612ae881612841565b9050919050565b60006020820190508181036000830152612b0881612864565b9050919050565b60006020820190508181036000830152612b2881612887565b9050919050565b60006020820190508181036000830152612b48816128cd565b9050919050565b60006020820190508181036000830152612b68816128f0565b9050919050565b60006020820190508181036000830152612b8881612913565b9050919050565b6000602082019050612ba46000830184612936565b92915050565b6000612bb4612bc5565b9050612bc08282612e91565b919050565b6000604051905090565b600067ffffffffffffffff821115612bea57612be9612ff8565b5b612bf38261303b565b9050602081019050919050565b600067ffffffffffffffff821115612c1b57612c1a612ff8565b5b612c248261303b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c9f82612e13565b9150612caa83612e13565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cdf57612cde612f3c565b5b828201905092915050565b6000612cf582612e13565b9150612d0083612e13565b925082612d1057612d0f612f6b565b5b828204905092915050565b6000612d2682612e13565b9150612d3183612e13565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d6a57612d69612f3c565b5b828202905092915050565b6000612d8082612e13565b9150612d8b83612e13565b925082821015612d9e57612d9d612f3c565b5b828203905092915050565b6000612db482612df3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e4a578082015181840152602081019050612e2f565b83811115612e59576000848401525b50505050565b60006002820490506001821680612e7757607f821691505b60208210811415612e8b57612e8a612f9a565b5b50919050565b612e9a8261303b565b810181811067ffffffffffffffff82111715612eb957612eb8612ff8565b5b80604052505050565b6000612ecd82612e13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f0057612eff612f3c565b5b600182019050919050565b6000612f1682612e13565b9150612f2183612e13565b925082612f3157612f30612f6b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e7420776f756c6420657863656564206d617820737570706c79206f662060008201527f66726565206d696e747300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b7f4e6f74206c697665210000000000000000000000000000000000000000000000600082015250565b61326781612da9565b811461327257600080fd5b50565b61327e81612dbb565b811461328957600080fd5b50565b61329581612dc7565b81146132a057600080fd5b50565b6132ac81612e13565b81146132b757600080fd5b5056fea2646970667358221220d54d815faecac8651a294227efd3b93b875845d019a7563eba1ed4cd2225617564736f6c63430008070033

Deployed Bytecode Sourcemap

56977:2827:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24525:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57112:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57389:1071;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31910:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31351:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21178:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35617:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58468:209;;;;;;;;;;;;;:::i;:::-;;38530:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59184:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57021:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58989:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57305:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59097:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58794:85;;;;;;;;;;;;;:::i;:::-;;26820:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57182:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57217:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22362:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;57060:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58887:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25603:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57144:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32468:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39313:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57250:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59400:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59279:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32933:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24525:639;24610:4;24949:10;24934:25;;:11;:25;;;;:102;;;;25026:10;25011:25;;:11;:25;;;;24934:102;:179;;;;25103:10;25088:25;;:11;:25;;;;24934:179;24914:199;;24525:639;;;:::o;57112:25::-;;;;:::o;25427:100::-;25481:13;25514:5;25507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25427:100;:::o;57389:1071::-;57448:15;57466:12;:10;:12::i;:::-;57448:30;;57497:5;;;;;;;;;;;57489:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;57561:7;57545:13;:11;:13::i;:::-;:23;;;;:::i;:::-;57535:6;;:33;;57527:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57620:1;57610:7;:11;57602:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;57668:7;57655:20;;:9;:20;;;57647:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;57052:1;57718:25;57732:10;57718:13;:25::i;:::-;:36;57715:349;;57802:5;;57792:7;:15;;;;:::i;:::-;57779:9;:28;;57771:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;57715:349;;;57866:10;57907:7;57879:25;57893:10;57879:13;:25::i;:::-;:35;;;;:::i;:::-;57866:48;;57052:1;57932:5;:15;57929:124;;;58008:5;;57052:1;57989:5;:15;;;;:::i;:::-;57988:25;;;;:::i;:::-;57975:9;:38;;57967:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;57929:124;57851:213;57715:349;58106:1;58077:25;58091:10;58077:13;:25::i;:::-;:30;58074:341;;;57101:4;58127:12;;:29;58124:280;;;58176:12;;:14;;;;;;;;;:::i;:::-;;;;;;58124:280;;;58255:5;;58244:7;:16;;;;:::i;:::-;58232:9;:28;58229:160;;;58316:5;;58306:7;:15;;;;:::i;:::-;58293:9;:28;;58284:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58229:160;58124:280;58074:341;58425:27;58435:7;58444;58425:9;:27::i;:::-;57437:1023;57389:1071;:::o;31910:218::-;31986:7;32011:16;32019:7;32011;:16::i;:::-;32006:64;;32036:34;;;;;;;;;;;;;;32006:64;32090:15;:24;32106:7;32090:24;;;;;;;;;;;:30;;;;;;;;;;;;32083:37;;31910:218;;;:::o;31351:400::-;31432:13;31448:16;31456:7;31448;:16::i;:::-;31432:32;;31504:5;31481:28;;:19;:17;:19::i;:::-;:28;;;31477:175;;31529:44;31546:5;31553:19;:17;:19::i;:::-;31529:16;:44::i;:::-;31524:128;;31601:35;;;;;;;;;;;;;;31524:128;31477:175;31697:2;31664:15;:24;31680:7;31664:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31735:7;31731:2;31715:28;;31724:5;31715:28;;;;;;;;;;;;31421:330;31351:400;;:::o;21178:323::-;21239:7;21467:15;:13;:15::i;:::-;21452:12;;21436:13;;:28;:46;21429:53;;21178:323;:::o;35617:2817::-;35751:27;35781;35800:7;35781:18;:27::i;:::-;35751:57;;35866:4;35825:45;;35841:19;35825:45;;;35821:86;;35879:28;;;;;;;;;;;;;;35821:86;35921:27;35950:23;35977:35;36004:7;35977:26;:35::i;:::-;35920:92;;;;36112:68;36137:15;36154:4;36160:19;:17;:19::i;:::-;36112:24;:68::i;:::-;36107:180;;36200:43;36217:4;36223:19;:17;:19::i;:::-;36200:16;:43::i;:::-;36195:92;;36252:35;;;;;;;;;;;;;;36195:92;36107:180;36318:1;36304:16;;:2;:16;;;36300:52;;;36329:23;;;;;;;;;;;;;;36300:52;36365:43;36387:4;36393:2;36397:7;36406:1;36365:21;:43::i;:::-;36501:15;36498:160;;;36641:1;36620:19;36613:30;36498:160;37038:18;:24;37057:4;37038:24;;;;;;;;;;;;;;;;37036:26;;;;;;;;;;;;37107:18;:22;37126:2;37107:22;;;;;;;;;;;;;;;;37105:24;;;;;;;;;;;37429:146;37466:2;37515:45;37530:4;37536:2;37540:19;37515:14;:45::i;:::-;17577:8;37487:73;37429:18;:146::i;:::-;37400:17;:26;37418:7;37400:26;;;;;;;;;;;:175;;;;37746:1;17577:8;37695:19;:47;:52;37691:627;;;37768:19;37800:1;37790:7;:11;37768:33;;37957:1;37923:17;:30;37941:11;37923:30;;;;;;;;;;;;:35;37919:384;;;38061:13;;38046:11;:28;38042:242;;38241:19;38208:17;:30;38226:11;38208:30;;;;;;;;;;;:52;;;;38042:242;37919:384;37749:569;37691:627;38365:7;38361:2;38346:27;;38355:4;38346:27;;;;;;;;;;;;38384:42;38405:4;38411:2;38415:7;38424:1;38384:20;:42::i;:::-;35740:2694;;;35617:2817;;;:::o;58468:209::-;4511:13;:11;:13::i;:::-;58518:15:::1;58536:21;58518:39;;58569:12;58587;:10;:12::i;:::-;:17;;58612:7;58587:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58568:56;;;58643:7;58635:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;58507:170;;58468:209::o:0;38530:185::-;38668:39;38685:4;38691:2;38695:7;38668:39;;;;;;;;;;;;:16;:39::i;:::-;38530:185;;;:::o;59184:89::-;4511:13;:11;:13::i;:::-;59257:8:::1;59249:5;:16;;;;59184:89:::0;:::o;57021:32::-;57052:1;57021:32;:::o;58989:100::-;4511:13;:11;:13::i;:::-;59073:8:::1;59063:7;:18;;;;;;;;;;;;:::i;:::-;;58989:100:::0;:::o;57305:25::-;;;;;;;;;;;;;:::o;59097:79::-;4511:13;:11;:13::i;:::-;59162:6:::1;59154:5;;:14;;;;;;;;;;;;;;;;;;59097:79:::0;:::o;58794:85::-;4511:13;:11;:13::i;:::-;58844:27:::1;58854:12;:10;:12::i;:::-;58868:2;58844:9;:27::i;:::-;58794:85::o:0;26820:152::-;26892:7;26935:27;26954:7;26935:18;:27::i;:::-;26912:52;;26820:152;;;:::o;57182:28::-;;;;:::o;57217:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22362:233::-;22434:7;22475:1;22458:19;;:5;:19;;;22454:60;;;22486:28;;;;;;;;;;;;;;22454:60;16521:13;22532:18;:25;22551:5;22532:25;;;;;;;;;;;;;;;;:55;22525:62;;22362:233;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;57060:45::-;57101:4;57060:45;:::o;58887:94::-;4511:13;:11;:13::i;:::-;58964:9:::1;58955:6;:18;;;;58887:94:::0;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;25603:104::-;25659:13;25692:7;25685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25603:104;:::o;57144:31::-;;;;:::o;32468:308::-;32579:19;:17;:19::i;:::-;32567:31;;:8;:31;;;32563:61;;;32607:17;;;;;;;;;;;;;;32563:61;32689:8;32637:18;:39;32656:19;:17;:19::i;:::-;32637:39;;;;;;;;;;;;;;;:49;32677:8;32637:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32749:8;32713:55;;32728:19;:17;:19::i;:::-;32713:55;;;32759:8;32713:55;;;;;;:::i;:::-;;;;;;;;32468:308;;:::o;39313:399::-;39480:31;39493:4;39499:2;39503:7;39480:12;:31::i;:::-;39544:1;39526:2;:14;;;:19;39522:183;;39565:56;39596:4;39602:2;39606:7;39615:5;39565:30;:56::i;:::-;39560:145;;39649:40;;;;;;;;;;;;;;39560:145;39522:183;39313:399;;;;:::o;57250:46::-;;;;;;;;;;;;;;;;;;;:::o;59400:401::-;59466:13;59500:17;59508:8;59500:7;:17::i;:::-;59492:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;59585:1;59567:7;59561:21;;;;;:::i;:::-;;;:25;:232;;;;;;;;;;;;;;;;;59643:7;59667:26;59684:8;59667:16;:26::i;:::-;59749:13;;;;;;;;;;;;;;;;;59610:167;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59561:232;59554:239;;59400:401;;;:::o;59279:113::-;59337:7;59364:20;59378:5;59364:13;:20::i;:::-;59357:27;;59279:113;;;:::o;32933:164::-;33030:4;33054:18;:25;33073:5;33054:25;;;;;;;;;;;;;;;:35;33080:8;33054:35;;;;;;;;;;;;;;;;;;;;;;;;;33047:42;;32933:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;22677:178::-;22738:7;16521:13;16659:2;22766:18;:25;22785:5;22766:25;;;;;;;;;;;;;;;;:50;;22765:82;22758:89;;22677:178;;;:::o;48953:112::-;49030:27;49040:2;49044:8;49030:27;;;;;;;;;;;;:9;:27::i;:::-;48953:112;;:::o;33355:282::-;33420:4;33476:7;33457:15;:13;:15::i;:::-;:26;;:66;;;;;33510:13;;33500:7;:23;33457:66;:153;;;;;33609:1;17297:8;33561:17;:26;33579:7;33561:26;;;;;;;;;;;;:44;:49;33457:153;33437:173;;33355:282;;;:::o;55121:105::-;55181:7;55208:10;55201:17;;55121:105;:::o;58685:101::-;58750:7;58777:1;58770:8;;58685:101;:::o;27975:1275::-;28042:7;28062:12;28077:7;28062:22;;28145:4;28126:15;:13;:15::i;:::-;:23;28122:1061;;28179:13;;28172:4;:20;28168:1015;;;28217:14;28234:17;:23;28252:4;28234:23;;;;;;;;;;;;28217:40;;28351:1;17297:8;28323:6;:24;:29;28319:845;;;28988:113;29005:1;28995:6;:11;28988:113;;;29048:17;:25;29066:6;;;;;;;29048:25;;;;;;;;;;;;29039:34;;28988:113;;;29134:6;29127:13;;;;;;28319:845;28194:989;28168:1015;28122:1061;29211:31;;;;;;;;;;;;;;27975:1275;;;;:::o;34518:479::-;34620:27;34649:23;34690:38;34731:15;:24;34747:7;34731:24;;;;;;;;;;;34690:65;;34902:18;34879:41;;34959:19;34953:26;34934:45;;34864:126;34518:479;;;:::o;33746:659::-;33895:11;34060:16;34053:5;34049:28;34040:37;;34220:16;34209:9;34205:32;34192:45;;34370:15;34359:9;34356:30;34348:5;34337:9;34334:20;34331:56;34321:66;;33746:659;;;;;:::o;40374:159::-;;;;;:::o;54430:311::-;54565:7;54585:16;17701:3;54611:19;:41;;54585:68;;17701:3;54679:31;54690:4;54696:2;54700:9;54679:10;:31::i;:::-;54671:40;;:62;;54664:69;;;54430:311;;;;;:::o;29798:450::-;29878:14;30046:16;30039:5;30035:28;30026:37;;30223:5;30209:11;30184:23;30180:41;30177:52;30170:5;30167:63;30157:73;;29798:450;;;;:::o;41198:158::-;;;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;41796:716::-;41959:4;42005:2;41980:45;;;42026:19;:17;:19::i;:::-;42047:4;42053:7;42062:5;41980:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41976:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42280:1;42263:6;:13;:18;42259:235;;;42309:40;;;;;;;;;;;;;;42259:235;42452:6;42446:13;42437:6;42433:2;42429:15;42422:38;41976:529;42149:54;;;42139:64;;;:6;:64;;;;42132:71;;;41796:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;48180:689::-;48311:19;48317:2;48321:8;48311:5;:19::i;:::-;48390:1;48372:2;:14;;;:19;48368:483;;48412:11;48426:13;;48412:27;;48458:13;48480:8;48474:3;:14;48458:30;;48507:233;48538:62;48577:1;48581:2;48585:7;;;;;;48594:5;48538:30;:62::i;:::-;48533:167;;48636:40;;;;;;;;;;;;;;48533:167;48735:3;48727:5;:11;48507:233;;48822:3;48805:13;;:20;48801:34;;48827:8;;;48801:34;48393:458;;48368:483;48180:689;;;:::o;54131:147::-;54268:6;54131:147;;;;;:::o;42974:2454::-;43047:20;43070:13;;43047:36;;43110:1;43098:8;:13;43094:44;;;43120:18;;;;;;;;;;;;;;43094:44;43151:61;43181:1;43185:2;43189:12;43203:8;43151:21;:61::i;:::-;43695:1;16659:2;43665:1;:26;;43664:32;43652:8;:45;43626:18;:22;43645:2;43626:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43974:139;44011:2;44065:33;44088:1;44092:2;44096:1;44065:14;:33::i;:::-;44032:30;44053:8;44032:20;:30::i;:::-;:66;43974:18;:139::i;:::-;43940:17;:31;43958:12;43940:31;;;;;;;;;;;:173;;;;44130:16;44161:11;44190:8;44175:12;:23;44161:37;;44445:16;44441:2;44437:25;44425:37;;44817:12;44777:8;44736:1;44674:25;44615:1;44554;44527:335;44942:1;44928:12;44924:20;44882:346;44983:3;44974:7;44971:16;44882:346;;45201:7;45191:8;45188:1;45161:25;45158:1;45155;45150:59;45036:1;45027:7;45023:15;45012:26;;44882:346;;;44886:77;45273:1;45261:8;:13;45257:45;;;45283:19;;;;;;;;;;;;;;45257:45;45335:3;45319:13;:19;;;;43400:1950;;45360:60;45389:1;45393:2;45397:12;45411:8;45360:20;:60::i;:::-;43036:2392;42974:2454;;:::o;30350:324::-;30420:14;30653:1;30643:8;30640:15;30614:24;30610:46;30600:56;;30350:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:398::-;12855:3;12876:83;12957:1;12952:3;12876:83;:::i;:::-;12869:90;;12968:93;13057:3;12968:93;:::i;:::-;13086:1;13081:3;13077:11;13070:18;;12696:398;;;:::o;13100:366::-;13242:3;13263:67;13327:2;13322:3;13263:67;:::i;:::-;13256:74;;13339:93;13428:3;13339:93;:::i;:::-;13457:2;13452:3;13448:12;13441:19;;13100:366;;;:::o;13472:::-;13614:3;13635:67;13699:2;13694:3;13635:67;:::i;:::-;13628:74;;13711:93;13800:3;13711:93;:::i;:::-;13829:2;13824:3;13820:12;13813:19;;13472:366;;;:::o;13844:365::-;13986:3;14007:66;14071:1;14066:3;14007:66;:::i;:::-;14000:73;;14082:93;14171:3;14082:93;:::i;:::-;14200:2;14195:3;14191:12;14184:19;;13844:365;;;:::o;14215:118::-;14302:24;14320:5;14302:24;:::i;:::-;14297:3;14290:37;14215:118;;:::o;14339:589::-;14564:3;14586:92;14674:3;14665:6;14586:92;:::i;:::-;14579:99;;14695:95;14786:3;14777:6;14695:95;:::i;:::-;14688:102;;14807:95;14898:3;14889:6;14807:95;:::i;:::-;14800:102;;14919:3;14912:10;;14339:589;;;;;;:::o;14934:379::-;15118:3;15140:147;15283:3;15140:147;:::i;:::-;15133:154;;15304:3;15297:10;;14934:379;;;:::o;15319:222::-;15412:4;15450:2;15439:9;15435:18;15427:26;;15463:71;15531:1;15520:9;15516:17;15507:6;15463:71;:::i;:::-;15319:222;;;;:::o;15547:640::-;15742:4;15780:3;15769:9;15765:19;15757:27;;15794:71;15862:1;15851:9;15847:17;15838:6;15794:71;:::i;:::-;15875:72;15943:2;15932:9;15928:18;15919:6;15875:72;:::i;:::-;15957;16025:2;16014:9;16010:18;16001:6;15957:72;:::i;:::-;16076:9;16070:4;16066:20;16061:2;16050:9;16046:18;16039:48;16104:76;16175:4;16166:6;16104:76;:::i;:::-;16096:84;;15547:640;;;;;;;:::o;16193:210::-;16280:4;16318:2;16307:9;16303:18;16295:26;;16331:65;16393:1;16382:9;16378:17;16369:6;16331:65;:::i;:::-;16193:210;;;;:::o;16409:313::-;16522:4;16560:2;16549:9;16545:18;16537:26;;16609:9;16603:4;16599:20;16595:1;16584:9;16580:17;16573:47;16637:78;16710:4;16701:6;16637:78;:::i;:::-;16629:86;;16409:313;;;;:::o;16728:419::-;16894:4;16932:2;16921:9;16917:18;16909:26;;16981:9;16975:4;16971:20;16967:1;16956:9;16952:17;16945:47;17009:131;17135:4;17009:131;:::i;:::-;17001:139;;16728:419;;;:::o;17153:::-;17319:4;17357:2;17346:9;17342:18;17334:26;;17406:9;17400:4;17396:20;17392:1;17381:9;17377:17;17370:47;17434:131;17560:4;17434:131;:::i;:::-;17426:139;;17153:419;;;:::o;17578:::-;17744:4;17782:2;17771:9;17767:18;17759:26;;17831:9;17825:4;17821:20;17817:1;17806:9;17802:17;17795:47;17859:131;17985:4;17859:131;:::i;:::-;17851:139;;17578:419;;;:::o;18003:::-;18169:4;18207:2;18196:9;18192:18;18184:26;;18256:9;18250:4;18246:20;18242:1;18231:9;18227:17;18220:47;18284:131;18410:4;18284:131;:::i;:::-;18276:139;;18003:419;;;:::o;18428:::-;18594:4;18632:2;18621:9;18617:18;18609:26;;18681:9;18675:4;18671:20;18667:1;18656:9;18652:17;18645:47;18709:131;18835:4;18709:131;:::i;:::-;18701:139;;18428:419;;;:::o;18853:::-;19019:4;19057:2;19046:9;19042:18;19034:26;;19106:9;19100:4;19096:20;19092:1;19081:9;19077:17;19070:47;19134:131;19260:4;19134:131;:::i;:::-;19126:139;;18853:419;;;:::o;19278:::-;19444:4;19482:2;19471:9;19467:18;19459:26;;19531:9;19525:4;19521:20;19517:1;19506:9;19502:17;19495:47;19559:131;19685:4;19559:131;:::i;:::-;19551:139;;19278:419;;;:::o;19703:::-;19869:4;19907:2;19896:9;19892:18;19884:26;;19956:9;19950:4;19946:20;19942:1;19931:9;19927:17;19920:47;19984:131;20110:4;19984:131;:::i;:::-;19976:139;;19703:419;;;:::o;20128:::-;20294:4;20332:2;20321:9;20317:18;20309:26;;20381:9;20375:4;20371:20;20367:1;20356:9;20352:17;20345:47;20409:131;20535:4;20409:131;:::i;:::-;20401:139;;20128:419;;;:::o;20553:::-;20719:4;20757:2;20746:9;20742:18;20734:26;;20806:9;20800:4;20796:20;20792:1;20781:9;20777:17;20770:47;20834:131;20960:4;20834:131;:::i;:::-;20826:139;;20553:419;;;:::o;20978:::-;21144:4;21182:2;21171:9;21167:18;21159:26;;21231:9;21225:4;21221:20;21217:1;21206:9;21202:17;21195:47;21259:131;21385:4;21259:131;:::i;:::-;21251:139;;20978:419;;;:::o;21403:222::-;21496:4;21534:2;21523:9;21519:18;21511:26;;21547:71;21615:1;21604:9;21600:17;21591:6;21547:71;:::i;:::-;21403:222;;;;:::o;21631:129::-;21665:6;21692:20;;:::i;:::-;21682:30;;21721:33;21749:4;21741:6;21721:33;:::i;:::-;21631:129;;;:::o;21766:75::-;21799:6;21832:2;21826:9;21816:19;;21766:75;:::o;21847:307::-;21908:4;21998:18;21990:6;21987:30;21984:56;;;22020:18;;:::i;:::-;21984:56;22058:29;22080:6;22058:29;:::i;:::-;22050:37;;22142:4;22136;22132:15;22124:23;;21847:307;;;:::o;22160:308::-;22222:4;22312:18;22304:6;22301:30;22298:56;;;22334:18;;:::i;:::-;22298:56;22372:29;22394:6;22372:29;:::i;:::-;22364:37;;22456:4;22450;22446:15;22438:23;;22160:308;;;:::o;22474:141::-;22523:4;22546:3;22538:11;;22569:3;22566:1;22559:14;22603:4;22600:1;22590:18;22582:26;;22474:141;;;:::o;22621:98::-;22672:6;22706:5;22700:12;22690:22;;22621:98;;;:::o;22725:99::-;22777:6;22811:5;22805:12;22795:22;;22725:99;;;:::o;22830:168::-;22913:11;22947:6;22942:3;22935:19;22987:4;22982:3;22978:14;22963:29;;22830:168;;;;:::o;23004:147::-;23105:11;23142:3;23127:18;;23004:147;;;;:::o;23157:169::-;23241:11;23275:6;23270:3;23263:19;23315:4;23310:3;23306:14;23291:29;;23157:169;;;;:::o;23332:148::-;23434:11;23471:3;23456:18;;23332:148;;;;:::o;23486:305::-;23526:3;23545:20;23563:1;23545:20;:::i;:::-;23540:25;;23579:20;23597:1;23579:20;:::i;:::-;23574:25;;23733:1;23665:66;23661:74;23658:1;23655:81;23652:107;;;23739:18;;:::i;:::-;23652:107;23783:1;23780;23776:9;23769:16;;23486:305;;;;:::o;23797:185::-;23837:1;23854:20;23872:1;23854:20;:::i;:::-;23849:25;;23888:20;23906:1;23888:20;:::i;:::-;23883:25;;23927:1;23917:35;;23932:18;;:::i;:::-;23917:35;23974:1;23971;23967:9;23962:14;;23797:185;;;;:::o;23988:348::-;24028:7;24051:20;24069:1;24051:20;:::i;:::-;24046:25;;24085:20;24103:1;24085:20;:::i;:::-;24080:25;;24273:1;24205:66;24201:74;24198:1;24195:81;24190:1;24183:9;24176:17;24172:105;24169:131;;;24280:18;;:::i;:::-;24169:131;24328:1;24325;24321:9;24310:20;;23988:348;;;;:::o;24342:191::-;24382:4;24402:20;24420:1;24402:20;:::i;:::-;24397:25;;24436:20;24454:1;24436:20;:::i;:::-;24431:25;;24475:1;24472;24469:8;24466:34;;;24480:18;;:::i;:::-;24466:34;24525:1;24522;24518:9;24510:17;;24342:191;;;;:::o;24539:96::-;24576:7;24605:24;24623:5;24605:24;:::i;:::-;24594:35;;24539:96;;;:::o;24641:90::-;24675:7;24718:5;24711:13;24704:21;24693:32;;24641:90;;;:::o;24737:149::-;24773:7;24813:66;24806:5;24802:78;24791:89;;24737:149;;;:::o;24892:126::-;24929:7;24969:42;24962:5;24958:54;24947:65;;24892:126;;;:::o;25024:77::-;25061:7;25090:5;25079:16;;25024:77;;;:::o;25107:154::-;25191:6;25186:3;25181;25168:30;25253:1;25244:6;25239:3;25235:16;25228:27;25107:154;;;:::o;25267:307::-;25335:1;25345:113;25359:6;25356:1;25353:13;25345:113;;;25444:1;25439:3;25435:11;25429:18;25425:1;25420:3;25416:11;25409:39;25381:2;25378:1;25374:10;25369:15;;25345:113;;;25476:6;25473:1;25470:13;25467:101;;;25556:1;25547:6;25542:3;25538:16;25531:27;25467:101;25316:258;25267:307;;;:::o;25580:320::-;25624:6;25661:1;25655:4;25651:12;25641:22;;25708:1;25702:4;25698:12;25729:18;25719:81;;25785:4;25777:6;25773:17;25763:27;;25719:81;25847:2;25839:6;25836:14;25816:18;25813:38;25810:84;;;25866:18;;:::i;:::-;25810:84;25631:269;25580:320;;;:::o;25906:281::-;25989:27;26011:4;25989:27;:::i;:::-;25981:6;25977:40;26119:6;26107:10;26104:22;26083:18;26071:10;26068:34;26065:62;26062:88;;;26130:18;;:::i;:::-;26062:88;26170:10;26166:2;26159:22;25949:238;25906:281;;:::o;26193:233::-;26232:3;26255:24;26273:5;26255:24;:::i;:::-;26246:33;;26301:66;26294:5;26291:77;26288:103;;;26371:18;;:::i;:::-;26288:103;26418:1;26411:5;26407:13;26400:20;;26193:233;;;:::o;26432:176::-;26464:1;26481:20;26499:1;26481:20;:::i;:::-;26476:25;;26515:20;26533:1;26515:20;:::i;:::-;26510:25;;26554:1;26544:35;;26559:18;;:::i;:::-;26544:35;26600:1;26597;26593:9;26588:14;;26432:176;;;;:::o;26614:180::-;26662:77;26659:1;26652:88;26759:4;26756:1;26749:15;26783:4;26780:1;26773:15;26800:180;26848:77;26845:1;26838:88;26945:4;26942:1;26935:15;26969:4;26966:1;26959:15;26986:180;27034:77;27031:1;27024:88;27131:4;27128:1;27121:15;27155:4;27152:1;27145:15;27172:180;27220:77;27217:1;27210:88;27317:4;27314:1;27307:15;27341:4;27338:1;27331:15;27358:180;27406:77;27403:1;27396:88;27503:4;27500:1;27493:15;27527:4;27524:1;27517:15;27544:117;27653:1;27650;27643:12;27667:117;27776:1;27773;27766:12;27790:117;27899:1;27896;27889:12;27913:117;28022:1;28019;28012:12;28036:102;28077:6;28128:2;28124:7;28119:2;28112:5;28108:14;28104:28;28094:38;;28036:102;;;:::o;28144:229::-;28284:34;28280:1;28272:6;28268:14;28261:58;28353:12;28348:2;28340:6;28336:15;28329:37;28144:229;:::o;28379:225::-;28519:34;28515:1;28507:6;28503:14;28496:58;28588:8;28583:2;28575:6;28571:15;28564:33;28379:225;:::o;28610:160::-;28750:12;28746:1;28738:6;28734:14;28727:36;28610:160;:::o;28776:168::-;28916:20;28912:1;28904:6;28900:14;28893:44;28776:168;:::o;28950:::-;29090:20;29086:1;29078:6;29074:14;29067:44;28950:168;:::o;29124:171::-;29264:23;29260:1;29252:6;29248:14;29241:47;29124:171;:::o;29301:182::-;29441:34;29437:1;29429:6;29425:14;29418:58;29301:182;:::o;29489:172::-;29629:24;29625:1;29617:6;29613:14;29606:48;29489:172;:::o;29667:114::-;;:::o;29787:164::-;29927:16;29923:1;29915:6;29911:14;29904:40;29787:164;:::o;29957:162::-;30097:14;30093:1;30085:6;30081:14;30074:38;29957:162;:::o;30125:159::-;30265:11;30261:1;30253:6;30249:14;30242:35;30125:159;:::o;30290:122::-;30363:24;30381:5;30363:24;:::i;:::-;30356:5;30353:35;30343:63;;30402:1;30399;30392:12;30343:63;30290:122;:::o;30418:116::-;30488:21;30503:5;30488:21;:::i;:::-;30481:5;30478:32;30468:60;;30524:1;30521;30514:12;30468:60;30418:116;:::o;30540:120::-;30612:23;30629:5;30612:23;:::i;:::-;30605:5;30602:34;30592:62;;30650:1;30647;30640:12;30592:62;30540:120;:::o;30666:122::-;30739:24;30757:5;30739:24;:::i;:::-;30732:5;30729:35;30719:63;;30778:1;30775;30768:12;30719:63;30666:122;:::o

Swarm Source

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