ETH Price: $3,135.40 (-1.87%)
 

Overview

TokenID

27

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
StupidFaces

Compiler Version
v0.8.9+commit.e5eed63a

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

// Sources flattened with hardhat v2.10.1 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// 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/[email protected]

// 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 @openzeppelin/contracts/utils/[email protected]

// 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 erc721a/contracts/[email protected]

// ERC721A Contracts v4.2.0
// 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/[email protected]

// ERC721A Contracts v4.2.0
// 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 ptr)
    {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

// File contracts/StupidFaces.sol

pragma solidity ^0.8.9;

contract StupidFaces is ERC721A, Ownable {
    enum Step {
        Prologue,
        Sale,
        Epilogue
    }

    Step public currentStep;

    string public baseURI;

    uint256 private constant MAX_SUPPLY = 1000;

    uint256 public salePrice = 0.001 ether;
    uint256 public individualLimit = 10;
    uint256 public totalMinted = 0;

    mapping(address => uint256) public amountNFTsPerWallet;

    constructor() ERC721A("Stupid Faces", "STF") {}

    // Mint

    function mint(uint256 _quantity) external payable {
        address addr = msg.sender;
        uint256 price = salePrice;
        require(currentStep == Step.Sale, "Public sale is not active");
        require(
            amountNFTsPerWallet[addr] + _quantity <= individualLimit,
            string(
                abi.encodePacked(
                    "You can only get ",
                    Strings.toString(individualLimit),
                    " NFTs on the public sale"
                )
            )
        );
        require(
            totalMinted + _quantity <= MAX_SUPPLY,
            "Maximum supply exceeded"
        );
        require(msg.value >= price * _quantity, "Not enough funds");
        totalMinted += _quantity;
        amountNFTsPerWallet[addr] += _quantity;
        _safeMint(addr, _quantity);
    }

    function airdrop(address _addr, uint256 _quantity) external onlyOwner {
        require(
            amountNFTsPerWallet[_addr] + _quantity <= individualLimit,
            string(
                abi.encodePacked(
                    "You can only get ",
                    Strings.toString(individualLimit),
                    " NFTs on the public sale"
                )
            )
        );
        require(
            totalMinted + _quantity <= MAX_SUPPLY,
            "Maximum supply exceeded"
        );
        totalMinted += _quantity;
        amountNFTsPerWallet[_addr] += _quantity;
        _safeMint(_addr, _quantity);
    }

    // Utils

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "URI query for nonexistent token");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
    }

    // Getters and setters

    function setBaseURI(string memory _baseURI) external onlyOwner {
        require(
            bytes(baseURI).length == 0,
            "You can only set the base URI once"
        );
        baseURI = _baseURI;
    }

    function getBaseURI() public view returns (string memory) {
        return baseURI;
    }

    function setSalePrice(uint256 _salePrice) external onlyOwner {
        salePrice = _salePrice;
    }

    function getSalePrice() public view returns (uint256) {
        return salePrice;
    }

    function setIndividualLimit(uint256 _individualLimit) external onlyOwner {
        individualLimit = _individualLimit;
    }

    function getIndividualLimit() public view returns (uint256) {
        return individualLimit;
    }

    function setCurrentStep(uint256 _currentStep) external onlyOwner {
        require(_currentStep > uint256(currentStep), "You can only go forward");
        currentStep = Step(_currentStep);
    }

    function getCurrentStep() public view returns (uint256) {
        return uint256(currentStep);
    }

    // Withdraw

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

    // Overrides

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

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":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsPerWallet","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStep","outputs":[{"internalType":"enum StupidFaces.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentStep","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIndividualLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"individualLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentStep","type":"uint256"}],"name":"setCurrentStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_individualLimit","type":"uint256"}],"name":"setIndividualLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266038d7ea4c68000600a55600a600b556000600c553480156200002657600080fd5b506040518060400160405280600c81526020017f53747570696420466163657300000000000000000000000000000000000000008152506040518060400160405280600381526020017f53544600000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ab929190620001da565b508060039080519060200190620000c4929190620001da565b50620000d56200010360201b60201c565b6000819055505050620000fd620000f16200010c60201b60201c565b6200011460201b60201c565b620002ef565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e890620002b9565b90600052602060002090601f0160209004810192826200020c576000855562000258565b82601f106200022757805160ff191683800117855562000258565b8280016001018555821562000258579182015b82811115620002575782518255916020019190600101906200023a565b5b5090506200026791906200026b565b5090565b5b80821115620002865760008160009055506001016200026c565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d257607f821691505b60208210811415620002e957620002e86200028a565b5b50919050565b6133e780620002ff6000396000f3fe6080604052600436106101f95760003560e01c8063714c53981161010d578063a2309ff8116100a0578063d829f73a1161006f578063d829f73a146106ee578063df3a458614610717578063e985e9c514610754578063f2fde38b14610791578063f51f96dd146107ba576101f9565b8063a2309ff814610632578063b88d4fde1461065d578063ba5375a514610686578063c87b56dd146106b1576101f9565b806395d89b41116100dc57806395d89b411461059957806397e87fdb146105c4578063a0712d68146105ed578063a22cb46514610609576101f9565b8063714c539814610503578063715018a61461052e5780638ba4cc3c146105455780638da5cb5b1461056e576101f9565b80632fbc0bf11161019057806355f804b31161015f57806355f804b31461040a5780635bc34f71146104335780636352211e1461045e5780636c0360eb1461049b57806370a08231146104c6576101f9565b80632fbc0bf1146103745780633ccfd60b1461039f57806342842e0e146103b65780634f30f9dc146103df576101f9565b806318160ddd116101cc57806318160ddd146102cc5780631919fed7146102f75780631d3824ea1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612419565b6107e5565b6040516102329190612461565b60405180910390f35b34801561024757600080fd5b50610250610877565b60405161025d9190612515565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061256d565b610909565b60405161029a91906125db565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612622565b610988565b005b3480156102d857600080fd5b506102e1610acc565b6040516102ee9190612671565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061256d565b610ae3565b005b34801561032c57600080fd5b50610335610af5565b6040516103429190612671565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061268c565b610b1e565b005b34801561038057600080fd5b50610389610e43565b6040516103969190612671565b60405180910390f35b3480156103ab57600080fd5b506103b4610e4d565b005b3480156103c257600080fd5b506103dd60048036038101906103d8919061268c565b610ea5565b005b3480156103eb57600080fd5b506103f4610ec5565b6040516104019190612671565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190612814565b610ecf565b005b34801561043f57600080fd5b50610448610f42565b60405161045591906128d4565b60405180910390f35b34801561046a57600080fd5b506104856004803603810190610480919061256d565b610f55565b60405161049291906125db565b60405180910390f35b3480156104a757600080fd5b506104b0610f67565b6040516104bd9190612515565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906128ef565b610ff5565b6040516104fa9190612671565b60405180910390f35b34801561050f57600080fd5b506105186110ae565b6040516105259190612515565b60405180910390f35b34801561053a57600080fd5b50610543611140565b005b34801561055157600080fd5b5061056c60048036038101906105679190612622565b611154565b005b34801561057a57600080fd5b506105836112e7565b60405161059091906125db565b60405180910390f35b3480156105a557600080fd5b506105ae611311565b6040516105bb9190612515565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e6919061256d565b6113a3565b005b6106076004803603810190610602919061256d565b61144d565b005b34801561061557600080fd5b50610630600480360381019061062b9190612948565b6116a9565b005b34801561063e57600080fd5b50610647611821565b6040516106549190612671565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612a29565b611827565b005b34801561069257600080fd5b5061069b61189a565b6040516106a89190612671565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d3919061256d565b6118a0565b6040516106e59190612515565b60405180910390f35b3480156106fa57600080fd5b506107156004803603810190610710919061256d565b61191c565b005b34801561072357600080fd5b5061073e600480360381019061073991906128ef565b61192e565b60405161074b9190612671565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190612aac565b611946565b6040516107889190612461565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b391906128ef565b6119da565b005b3480156107c657600080fd5b506107cf611a5e565b6040516107dc9190612671565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108705750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088690612b1b565b80601f01602080910402602001604051908101604052809291908181526020018280546108b290612b1b565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b5050505050905090565b600061091482611a64565b61094a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099382610f55565b90508073ffffffffffffffffffffffffffffffffffffffff166109b4611ac3565b73ffffffffffffffffffffffffffffffffffffffff1614610a17576109e0816109db611ac3565b611946565b610a16576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ad6611acb565b6001546000540303905090565b610aeb611ad4565b80600a8190555050565b6000600860149054906101000a900460ff166002811115610b1957610b1861285d565b5b905090565b6000610b2982611b52565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b90576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b9c84611c20565b91509150610bb28187610bad611ac3565b611c47565b610bfe57610bc786610bc2611ac3565b611946565b610bfd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c65576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c728686866001611c8b565b8015610c7d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d4b85610d27888887611c91565b7c020000000000000000000000000000000000000000000000000000000017611cb9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dd3576000600185019050600060046000838152602001908152602001600020541415610dd1576000548114610dd0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e3b8686866001611ce4565b505050505050565b6000600a54905090565b610e55611ad4565b610e5d6112e7565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ea2573d6000803e3d6000fd5b50565b610ec083838360405180602001604052806000815250611827565b505050565b6000600b54905090565b610ed7611ad4565b600060098054610ee690612b1b565b905014610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90612bbf565b60405180910390fd5b8060099080519060200190610f3e92919061230a565b5050565b600860149054906101000a900460ff1681565b6000610f6082611b52565b9050919050565b60098054610f7490612b1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa090612b1b565b8015610fed5780601f10610fc257610100808354040283529160200191610fed565b820191906000526020600020905b815481529060010190602001808311610fd057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6060600980546110bd90612b1b565b80601f01602080910402602001604051908101604052809291908181526020018280546110e990612b1b565b80156111365780601f1061110b57610100808354040283529160200191611136565b820191906000526020600020905b81548152906001019060200180831161111957829003601f168201915b5050505050905090565b611148611ad4565b6111526000611cea565b565b61115c611ad4565b600b5481600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111aa9190612c0e565b11156111b7600b54611db0565b6040516020016111c79190612d38565b60405160208183030381529060405290611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e9190612515565b60405180910390fd5b506103e881600c546112299190612c0e565b111561126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190612db1565b60405180910390fd5b80600c600082825461127c9190612c0e565b9250508190555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d29190612c0e565b925050819055506112e38282611f11565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461132090612b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461134c90612b1b565b80156113995780601f1061136e57610100808354040283529160200191611399565b820191906000526020600020905b81548152906001019060200180831161137c57829003601f168201915b5050505050905090565b6113ab611ad4565b600860149054906101000a900460ff1660028111156113cd576113cc61285d565b5b811161140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590612e1d565b60405180910390fd5b8060028111156114215761142061285d565b5b600860146101000a81548160ff021916908360028111156114455761144461285d565b5b021790555050565b60003390506000600a5490506001600281111561146d5761146c61285d565b5b600860149054906101000a900460ff16600281111561148f5761148e61285d565b5b146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690612e89565b60405180910390fd5b600b5483600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461151d9190612c0e565b111561152a600b54611db0565b60405160200161153a9190612d38565b6040516020818303038152906040529061158a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115819190612515565b60405180910390fd5b506103e883600c5461159c9190612c0e565b11156115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490612db1565b60405180910390fd5b82816115e99190612ea9565b34101561162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290612f4f565b60405180910390fd5b82600c600082825461163d9190612c0e565b9250508190555082600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116939190612c0e565b925050819055506116a48284611f11565b505050565b6116b1611ac3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611716576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611723611ac3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d0611ac3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118159190612461565b60405180910390a35050565b600c5481565b611832848484610b1e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118945761185d84848484611f2f565b611893576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b60606118ab82611a64565b6118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190612fbb565b60405180910390fd5b60096118f583611db0565b60405160200161190692919061306f565b6040516020818303038152906040529050919050565b611924611ad4565b80600b8190555050565b600d6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e2611ad4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990613105565b60405180910390fd5b611a5b81611cea565b50565b600a5481565b600081611a6f611acb565b11158015611a7e575060005482105b8015611abc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b611adc61208f565b73ffffffffffffffffffffffffffffffffffffffff16611afa6112e7565b73ffffffffffffffffffffffffffffffffffffffff1614611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790613171565b60405180910390fd5b565b60008082905080611b61611acb565b11611be957600054811015611be85760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611be6575b6000811415611bdc576004600083600190039350838152602001908152602001600020549050611bb1565b8092505050611c1b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ca8868684612097565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415611df8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f0c565b600082905060005b60008214611e2a578080611e1390613191565b915050600a82611e239190613209565b9150611e00565b60008167ffffffffffffffff811115611e4657611e456126e9565b5b6040519080825280601f01601f191660200182016040528015611e785781602001600182028036833780820191505090505b5090505b60008514611f0557600182611e91919061323a565b9150600a85611ea0919061326e565b6030611eac9190612c0e565b60f81b818381518110611ec257611ec161329f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611efe9190613209565b9450611e7c565b8093505050505b919050565b611f2b8282604051806020016040528060008152506120a0565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f55611ac3565b8786866040518563ffffffff1660e01b8152600401611f779493929190613323565b602060405180830381600087803b158015611f9157600080fd5b505af1925050508015611fc257506040513d601f19601f82011682018060405250810190611fbf9190613384565b60015b61203c573d8060008114611ff2576040519150601f19603f3d011682016040523d82523d6000602084013e611ff7565b606091505b50600081511415612034576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600033905090565b60009392505050565b6120aa838361213d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461213857600080549050600083820390505b6120ea6000868380600101945086611f2f565b612120576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120d757816000541461213557600080fd5b50505b505050565b600080549050600082141561217e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61218b6000848385611c8b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612202836121f36000866000611c91565b6121fc856122fa565b17611cb9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122a357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612268565b5060008214156122df576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122f56000848385611ce4565b505050565b60006001821460e11b9050919050565b82805461231690612b1b565b90600052602060002090601f016020900481019282612338576000855561237f565b82601f1061235157805160ff191683800117855561237f565b8280016001018555821561237f579182015b8281111561237e578251825591602001919060010190612363565b5b50905061238c9190612390565b5090565b5b808211156123a9576000816000905550600101612391565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123f6816123c1565b811461240157600080fd5b50565b600081359050612413816123ed565b92915050565b60006020828403121561242f5761242e6123b7565b5b600061243d84828501612404565b91505092915050565b60008115159050919050565b61245b81612446565b82525050565b60006020820190506124766000830184612452565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124b657808201518184015260208101905061249b565b838111156124c5576000848401525b50505050565b6000601f19601f8301169050919050565b60006124e78261247c565b6124f18185612487565b9350612501818560208601612498565b61250a816124cb565b840191505092915050565b6000602082019050818103600083015261252f81846124dc565b905092915050565b6000819050919050565b61254a81612537565b811461255557600080fd5b50565b60008135905061256781612541565b92915050565b600060208284031215612583576125826123b7565b5b600061259184828501612558565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125c58261259a565b9050919050565b6125d5816125ba565b82525050565b60006020820190506125f060008301846125cc565b92915050565b6125ff816125ba565b811461260a57600080fd5b50565b60008135905061261c816125f6565b92915050565b60008060408385031215612639576126386123b7565b5b60006126478582860161260d565b925050602061265885828601612558565b9150509250929050565b61266b81612537565b82525050565b60006020820190506126866000830184612662565b92915050565b6000806000606084860312156126a5576126a46123b7565b5b60006126b38682870161260d565b93505060206126c48682870161260d565b92505060406126d586828701612558565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612721826124cb565b810181811067ffffffffffffffff821117156127405761273f6126e9565b5b80604052505050565b60006127536123ad565b905061275f8282612718565b919050565b600067ffffffffffffffff82111561277f5761277e6126e9565b5b612788826124cb565b9050602081019050919050565b82818337600083830152505050565b60006127b76127b284612764565b612749565b9050828152602081018484840111156127d3576127d26126e4565b5b6127de848285612795565b509392505050565b600082601f8301126127fb576127fa6126df565b5b813561280b8482602086016127a4565b91505092915050565b60006020828403121561282a576128296123b7565b5b600082013567ffffffffffffffff811115612848576128476123bc565b5b612854848285016127e6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061289d5761289c61285d565b5b50565b60008190506128ae8261288c565b919050565b60006128be826128a0565b9050919050565b6128ce816128b3565b82525050565b60006020820190506128e960008301846128c5565b92915050565b600060208284031215612905576129046123b7565b5b60006129138482850161260d565b91505092915050565b61292581612446565b811461293057600080fd5b50565b6000813590506129428161291c565b92915050565b6000806040838503121561295f5761295e6123b7565b5b600061296d8582860161260d565b925050602061297e85828601612933565b9150509250929050565b600067ffffffffffffffff8211156129a3576129a26126e9565b5b6129ac826124cb565b9050602081019050919050565b60006129cc6129c784612988565b612749565b9050828152602081018484840111156129e8576129e76126e4565b5b6129f3848285612795565b509392505050565b600082601f830112612a1057612a0f6126df565b5b8135612a208482602086016129b9565b91505092915050565b60008060008060808587031215612a4357612a426123b7565b5b6000612a518782880161260d565b9450506020612a628782880161260d565b9350506040612a7387828801612558565b925050606085013567ffffffffffffffff811115612a9457612a936123bc565b5b612aa0878288016129fb565b91505092959194509250565b60008060408385031215612ac357612ac26123b7565b5b6000612ad18582860161260d565b9250506020612ae28582860161260d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b3357607f821691505b60208210811415612b4757612b46612aec565b5b50919050565b7f596f752063616e206f6e6c792073657420746865206261736520555249206f6e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ba9602283612487565b9150612bb482612b4d565b604082019050919050565b60006020820190508181036000830152612bd881612b9c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c1982612537565b9150612c2483612537565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c5957612c58612bdf565b5b828201905092915050565b600081905092915050565b7f596f752063616e206f6e6c792067657420000000000000000000000000000000600082015250565b6000612ca5601183612c64565b9150612cb082612c6f565b601182019050919050565b6000612cc68261247c565b612cd08185612c64565b9350612ce0818560208601612498565b80840191505092915050565b7f204e465473206f6e20746865207075626c69632073616c650000000000000000600082015250565b6000612d22601883612c64565b9150612d2d82612cec565b601882019050919050565b6000612d4382612c98565b9150612d4f8284612cbb565b9150612d5a82612d15565b915081905092915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000612d9b601783612487565b9150612da682612d65565b602082019050919050565b60006020820190508181036000830152612dca81612d8e565b9050919050565b7f596f752063616e206f6e6c7920676f20666f7277617264000000000000000000600082015250565b6000612e07601783612487565b9150612e1282612dd1565b602082019050919050565b60006020820190508181036000830152612e3681612dfa565b9050919050565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b6000612e73601983612487565b9150612e7e82612e3d565b602082019050919050565b60006020820190508181036000830152612ea281612e66565b9050919050565b6000612eb482612537565b9150612ebf83612537565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ef857612ef7612bdf565b5b828202905092915050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b6000612f39601083612487565b9150612f4482612f03565b602082019050919050565b60006020820190508181036000830152612f6881612f2c565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000612fa5601f83612487565b9150612fb082612f6f565b602082019050919050565b60006020820190508181036000830152612fd481612f98565b9050919050565b60008190508160005260206000209050919050565b60008154612ffd81612b1b565b6130078186612c64565b94506001821660008114613022576001811461303357613066565b60ff19831686528186019350613066565b61303c85612fdb565b60005b8381101561305e5781548189015260018201915060208101905061303f565b838801955050505b50505092915050565b600061307b8285612ff0565b91506130878284612cbb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130ef602683612487565b91506130fa82613093565b604082019050919050565b6000602082019050818103600083015261311e816130e2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061315b602083612487565b915061316682613125565b602082019050919050565b6000602082019050818103600083015261318a8161314e565b9050919050565b600061319c82612537565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131cf576131ce612bdf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061321482612537565b915061321f83612537565b92508261322f5761322e6131da565b5b828204905092915050565b600061324582612537565b915061325083612537565b92508282101561326357613262612bdf565b5b828203905092915050565b600061327982612537565b915061328483612537565b925082613294576132936131da565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006132f5826132ce565b6132ff81856132d9565b935061330f818560208601612498565b613318816124cb565b840191505092915050565b600060808201905061333860008301876125cc565b61334560208301866125cc565b6133526040830185612662565b818103606083015261336481846132ea565b905095945050505050565b60008151905061337e816123ed565b92915050565b60006020828403121561339a576133996123b7565b5b60006133a88482850161336f565b9150509291505056fea26469706673582212202f991386f38d8bd1066c68ec47b6d503060fa957bedc60d1f56772bb7d32b28964736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063714c53981161010d578063a2309ff8116100a0578063d829f73a1161006f578063d829f73a146106ee578063df3a458614610717578063e985e9c514610754578063f2fde38b14610791578063f51f96dd146107ba576101f9565b8063a2309ff814610632578063b88d4fde1461065d578063ba5375a514610686578063c87b56dd146106b1576101f9565b806395d89b41116100dc57806395d89b411461059957806397e87fdb146105c4578063a0712d68146105ed578063a22cb46514610609576101f9565b8063714c539814610503578063715018a61461052e5780638ba4cc3c146105455780638da5cb5b1461056e576101f9565b80632fbc0bf11161019057806355f804b31161015f57806355f804b31461040a5780635bc34f71146104335780636352211e1461045e5780636c0360eb1461049b57806370a08231146104c6576101f9565b80632fbc0bf1146103745780633ccfd60b1461039f57806342842e0e146103b65780634f30f9dc146103df576101f9565b806318160ddd116101cc57806318160ddd146102cc5780631919fed7146102f75780631d3824ea1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612419565b6107e5565b6040516102329190612461565b60405180910390f35b34801561024757600080fd5b50610250610877565b60405161025d9190612515565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061256d565b610909565b60405161029a91906125db565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612622565b610988565b005b3480156102d857600080fd5b506102e1610acc565b6040516102ee9190612671565b60405180910390f35b34801561030357600080fd5b5061031e6004803603810190610319919061256d565b610ae3565b005b34801561032c57600080fd5b50610335610af5565b6040516103429190612671565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061268c565b610b1e565b005b34801561038057600080fd5b50610389610e43565b6040516103969190612671565b60405180910390f35b3480156103ab57600080fd5b506103b4610e4d565b005b3480156103c257600080fd5b506103dd60048036038101906103d8919061268c565b610ea5565b005b3480156103eb57600080fd5b506103f4610ec5565b6040516104019190612671565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190612814565b610ecf565b005b34801561043f57600080fd5b50610448610f42565b60405161045591906128d4565b60405180910390f35b34801561046a57600080fd5b506104856004803603810190610480919061256d565b610f55565b60405161049291906125db565b60405180910390f35b3480156104a757600080fd5b506104b0610f67565b6040516104bd9190612515565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906128ef565b610ff5565b6040516104fa9190612671565b60405180910390f35b34801561050f57600080fd5b506105186110ae565b6040516105259190612515565b60405180910390f35b34801561053a57600080fd5b50610543611140565b005b34801561055157600080fd5b5061056c60048036038101906105679190612622565b611154565b005b34801561057a57600080fd5b506105836112e7565b60405161059091906125db565b60405180910390f35b3480156105a557600080fd5b506105ae611311565b6040516105bb9190612515565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e6919061256d565b6113a3565b005b6106076004803603810190610602919061256d565b61144d565b005b34801561061557600080fd5b50610630600480360381019061062b9190612948565b6116a9565b005b34801561063e57600080fd5b50610647611821565b6040516106549190612671565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190612a29565b611827565b005b34801561069257600080fd5b5061069b61189a565b6040516106a89190612671565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d3919061256d565b6118a0565b6040516106e59190612515565b60405180910390f35b3480156106fa57600080fd5b506107156004803603810190610710919061256d565b61191c565b005b34801561072357600080fd5b5061073e600480360381019061073991906128ef565b61192e565b60405161074b9190612671565b60405180910390f35b34801561076057600080fd5b5061077b60048036038101906107769190612aac565b611946565b6040516107889190612461565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b391906128ef565b6119da565b005b3480156107c657600080fd5b506107cf611a5e565b6040516107dc9190612671565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108705750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088690612b1b565b80601f01602080910402602001604051908101604052809291908181526020018280546108b290612b1b565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b5050505050905090565b600061091482611a64565b61094a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099382610f55565b90508073ffffffffffffffffffffffffffffffffffffffff166109b4611ac3565b73ffffffffffffffffffffffffffffffffffffffff1614610a17576109e0816109db611ac3565b611946565b610a16576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ad6611acb565b6001546000540303905090565b610aeb611ad4565b80600a8190555050565b6000600860149054906101000a900460ff166002811115610b1957610b1861285d565b5b905090565b6000610b2982611b52565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b90576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b9c84611c20565b91509150610bb28187610bad611ac3565b611c47565b610bfe57610bc786610bc2611ac3565b611946565b610bfd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c65576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c728686866001611c8b565b8015610c7d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d4b85610d27888887611c91565b7c020000000000000000000000000000000000000000000000000000000017611cb9565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dd3576000600185019050600060046000838152602001908152602001600020541415610dd1576000548114610dd0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e3b8686866001611ce4565b505050505050565b6000600a54905090565b610e55611ad4565b610e5d6112e7565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ea2573d6000803e3d6000fd5b50565b610ec083838360405180602001604052806000815250611827565b505050565b6000600b54905090565b610ed7611ad4565b600060098054610ee690612b1b565b905014610f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1f90612bbf565b60405180910390fd5b8060099080519060200190610f3e92919061230a565b5050565b600860149054906101000a900460ff1681565b6000610f6082611b52565b9050919050565b60098054610f7490612b1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa090612b1b565b8015610fed5780601f10610fc257610100808354040283529160200191610fed565b820191906000526020600020905b815481529060010190602001808311610fd057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6060600980546110bd90612b1b565b80601f01602080910402602001604051908101604052809291908181526020018280546110e990612b1b565b80156111365780601f1061110b57610100808354040283529160200191611136565b820191906000526020600020905b81548152906001019060200180831161111957829003601f168201915b5050505050905090565b611148611ad4565b6111526000611cea565b565b61115c611ad4565b600b5481600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111aa9190612c0e565b11156111b7600b54611db0565b6040516020016111c79190612d38565b60405160208183030381529060405290611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e9190612515565b60405180910390fd5b506103e881600c546112299190612c0e565b111561126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190612db1565b60405180910390fd5b80600c600082825461127c9190612c0e565b9250508190555080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d29190612c0e565b925050819055506112e38282611f11565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461132090612b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461134c90612b1b565b80156113995780601f1061136e57610100808354040283529160200191611399565b820191906000526020600020905b81548152906001019060200180831161137c57829003601f168201915b5050505050905090565b6113ab611ad4565b600860149054906101000a900460ff1660028111156113cd576113cc61285d565b5b811161140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590612e1d565b60405180910390fd5b8060028111156114215761142061285d565b5b600860146101000a81548160ff021916908360028111156114455761144461285d565b5b021790555050565b60003390506000600a5490506001600281111561146d5761146c61285d565b5b600860149054906101000a900460ff16600281111561148f5761148e61285d565b5b146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690612e89565b60405180910390fd5b600b5483600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461151d9190612c0e565b111561152a600b54611db0565b60405160200161153a9190612d38565b6040516020818303038152906040529061158a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115819190612515565b60405180910390fd5b506103e883600c5461159c9190612c0e565b11156115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490612db1565b60405180910390fd5b82816115e99190612ea9565b34101561162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290612f4f565b60405180910390fd5b82600c600082825461163d9190612c0e565b9250508190555082600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116939190612c0e565b925050819055506116a48284611f11565b505050565b6116b1611ac3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611716576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611723611ac3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d0611ac3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118159190612461565b60405180910390a35050565b600c5481565b611832848484610b1e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118945761185d84848484611f2f565b611893576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b60606118ab82611a64565b6118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190612fbb565b60405180910390fd5b60096118f583611db0565b60405160200161190692919061306f565b6040516020818303038152906040529050919050565b611924611ad4565b80600b8190555050565b600d6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e2611ad4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990613105565b60405180910390fd5b611a5b81611cea565b50565b600a5481565b600081611a6f611acb565b11158015611a7e575060005482105b8015611abc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b611adc61208f565b73ffffffffffffffffffffffffffffffffffffffff16611afa6112e7565b73ffffffffffffffffffffffffffffffffffffffff1614611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4790613171565b60405180910390fd5b565b60008082905080611b61611acb565b11611be957600054811015611be85760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611be6575b6000811415611bdc576004600083600190039350838152602001908152602001600020549050611bb1565b8092505050611c1b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ca8868684612097565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415611df8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f0c565b600082905060005b60008214611e2a578080611e1390613191565b915050600a82611e239190613209565b9150611e00565b60008167ffffffffffffffff811115611e4657611e456126e9565b5b6040519080825280601f01601f191660200182016040528015611e785781602001600182028036833780820191505090505b5090505b60008514611f0557600182611e91919061323a565b9150600a85611ea0919061326e565b6030611eac9190612c0e565b60f81b818381518110611ec257611ec161329f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611efe9190613209565b9450611e7c565b8093505050505b919050565b611f2b8282604051806020016040528060008152506120a0565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f55611ac3565b8786866040518563ffffffff1660e01b8152600401611f779493929190613323565b602060405180830381600087803b158015611f9157600080fd5b505af1925050508015611fc257506040513d601f19601f82011682018060405250810190611fbf9190613384565b60015b61203c573d8060008114611ff2576040519150601f19603f3d011682016040523d82523d6000602084013e611ff7565b606091505b50600081511415612034576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600033905090565b60009392505050565b6120aa838361213d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461213857600080549050600083820390505b6120ea6000868380600101945086611f2f565b612120576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120d757816000541461213557600080fd5b50505b505050565b600080549050600082141561217e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61218b6000848385611c8b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612202836121f36000866000611c91565b6121fc856122fa565b17611cb9565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122a357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612268565b5060008214156122df576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122f56000848385611ce4565b505050565b60006001821460e11b9050919050565b82805461231690612b1b565b90600052602060002090601f016020900481019282612338576000855561237f565b82601f1061235157805160ff191683800117855561237f565b8280016001018555821561237f579182015b8281111561237e578251825591602001919060010190612363565b5b50905061238c9190612390565b5090565b5b808211156123a9576000816000905550600101612391565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123f6816123c1565b811461240157600080fd5b50565b600081359050612413816123ed565b92915050565b60006020828403121561242f5761242e6123b7565b5b600061243d84828501612404565b91505092915050565b60008115159050919050565b61245b81612446565b82525050565b60006020820190506124766000830184612452565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124b657808201518184015260208101905061249b565b838111156124c5576000848401525b50505050565b6000601f19601f8301169050919050565b60006124e78261247c565b6124f18185612487565b9350612501818560208601612498565b61250a816124cb565b840191505092915050565b6000602082019050818103600083015261252f81846124dc565b905092915050565b6000819050919050565b61254a81612537565b811461255557600080fd5b50565b60008135905061256781612541565b92915050565b600060208284031215612583576125826123b7565b5b600061259184828501612558565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125c58261259a565b9050919050565b6125d5816125ba565b82525050565b60006020820190506125f060008301846125cc565b92915050565b6125ff816125ba565b811461260a57600080fd5b50565b60008135905061261c816125f6565b92915050565b60008060408385031215612639576126386123b7565b5b60006126478582860161260d565b925050602061265885828601612558565b9150509250929050565b61266b81612537565b82525050565b60006020820190506126866000830184612662565b92915050565b6000806000606084860312156126a5576126a46123b7565b5b60006126b38682870161260d565b93505060206126c48682870161260d565b92505060406126d586828701612558565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612721826124cb565b810181811067ffffffffffffffff821117156127405761273f6126e9565b5b80604052505050565b60006127536123ad565b905061275f8282612718565b919050565b600067ffffffffffffffff82111561277f5761277e6126e9565b5b612788826124cb565b9050602081019050919050565b82818337600083830152505050565b60006127b76127b284612764565b612749565b9050828152602081018484840111156127d3576127d26126e4565b5b6127de848285612795565b509392505050565b600082601f8301126127fb576127fa6126df565b5b813561280b8482602086016127a4565b91505092915050565b60006020828403121561282a576128296123b7565b5b600082013567ffffffffffffffff811115612848576128476123bc565b5b612854848285016127e6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061289d5761289c61285d565b5b50565b60008190506128ae8261288c565b919050565b60006128be826128a0565b9050919050565b6128ce816128b3565b82525050565b60006020820190506128e960008301846128c5565b92915050565b600060208284031215612905576129046123b7565b5b60006129138482850161260d565b91505092915050565b61292581612446565b811461293057600080fd5b50565b6000813590506129428161291c565b92915050565b6000806040838503121561295f5761295e6123b7565b5b600061296d8582860161260d565b925050602061297e85828601612933565b9150509250929050565b600067ffffffffffffffff8211156129a3576129a26126e9565b5b6129ac826124cb565b9050602081019050919050565b60006129cc6129c784612988565b612749565b9050828152602081018484840111156129e8576129e76126e4565b5b6129f3848285612795565b509392505050565b600082601f830112612a1057612a0f6126df565b5b8135612a208482602086016129b9565b91505092915050565b60008060008060808587031215612a4357612a426123b7565b5b6000612a518782880161260d565b9450506020612a628782880161260d565b9350506040612a7387828801612558565b925050606085013567ffffffffffffffff811115612a9457612a936123bc565b5b612aa0878288016129fb565b91505092959194509250565b60008060408385031215612ac357612ac26123b7565b5b6000612ad18582860161260d565b9250506020612ae28582860161260d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b3357607f821691505b60208210811415612b4757612b46612aec565b5b50919050565b7f596f752063616e206f6e6c792073657420746865206261736520555249206f6e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ba9602283612487565b9150612bb482612b4d565b604082019050919050565b60006020820190508181036000830152612bd881612b9c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c1982612537565b9150612c2483612537565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c5957612c58612bdf565b5b828201905092915050565b600081905092915050565b7f596f752063616e206f6e6c792067657420000000000000000000000000000000600082015250565b6000612ca5601183612c64565b9150612cb082612c6f565b601182019050919050565b6000612cc68261247c565b612cd08185612c64565b9350612ce0818560208601612498565b80840191505092915050565b7f204e465473206f6e20746865207075626c69632073616c650000000000000000600082015250565b6000612d22601883612c64565b9150612d2d82612cec565b601882019050919050565b6000612d4382612c98565b9150612d4f8284612cbb565b9150612d5a82612d15565b915081905092915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000612d9b601783612487565b9150612da682612d65565b602082019050919050565b60006020820190508181036000830152612dca81612d8e565b9050919050565b7f596f752063616e206f6e6c7920676f20666f7277617264000000000000000000600082015250565b6000612e07601783612487565b9150612e1282612dd1565b602082019050919050565b60006020820190508181036000830152612e3681612dfa565b9050919050565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b6000612e73601983612487565b9150612e7e82612e3d565b602082019050919050565b60006020820190508181036000830152612ea281612e66565b9050919050565b6000612eb482612537565b9150612ebf83612537565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ef857612ef7612bdf565b5b828202905092915050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b6000612f39601083612487565b9150612f4482612f03565b602082019050919050565b60006020820190508181036000830152612f6881612f2c565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000612fa5601f83612487565b9150612fb082612f6f565b602082019050919050565b60006020820190508181036000830152612fd481612f98565b9050919050565b60008190508160005260206000209050919050565b60008154612ffd81612b1b565b6130078186612c64565b94506001821660008114613022576001811461303357613066565b60ff19831686528186019350613066565b61303c85612fdb565b60005b8381101561305e5781548189015260018201915060208101905061303f565b838801955050505b50505092915050565b600061307b8285612ff0565b91506130878284612cbb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130ef602683612487565b91506130fa82613093565b604082019050919050565b6000602082019050818103600083015261311e816130e2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061315b602083612487565b915061316682613125565b602082019050919050565b6000602082019050818103600083015261318a8161314e565b9050919050565b600061319c82612537565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131cf576131ce612bdf565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061321482612537565b915061321f83612537565b92508261322f5761322e6131da565b5b828204905092915050565b600061324582612537565b915061325083612537565b92508282101561326357613262612bdf565b5b828203905092915050565b600061327982612537565b915061328483612537565b925082613294576132936131da565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006132f5826132ce565b6132ff81856132d9565b935061330f818560208601612498565b613318816124cb565b840191505092915050565b600060808201905061333860008301876125cc565b61334560208301866125cc565b6133526040830185612662565b818103606083015261336481846132ea565b905095945050505050565b60008151905061337e816123ed565b92915050565b60006020828403121561339a576133996123b7565b5b60006133a88482850161336f565b9150509291505056fea26469706673582212202f991386f38d8bd1066c68ec47b6d503060fa957bedc60d1f56772bb7d32b28964736f6c63430008090033

Deployed Bytecode Sourcemap

59474:3729:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25060:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26012:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32901:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32342:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21585:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62180:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62836;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36740:2995;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62290:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62965:106;;;;;;;;;;;;;:::i;:::-;;39831:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62521:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61852:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59600:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27502:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59632:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22769:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62081:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2905:103;;;;;;;;;;;;;:::i;:::-;;60832:660;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2257:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26188:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62630:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59972:852;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33509:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59800:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40614:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59758:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61516:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62387:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59839:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34006:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3163:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59713:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25060:689;25190:4;25534:10;25519:25;;:11;:25;;;;:102;;;;25611:10;25596:25;;:11;:25;;;;25519:102;:179;;;;25688:10;25673:25;;:11;:25;;;;25519:179;25499:199;;25060:689;;;:::o;26012:100::-;26066:13;26099:5;26092:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26012:100;:::o;32901:268::-;33022:7;33052:16;33060:7;33052;:16::i;:::-;33047:64;;33077:34;;;;;;;;;;;;;;33047:64;33131:15;:24;33147:7;33131:24;;;;;;;;;;;:30;;;;;;;;;;;;33124:37;;32901:268;;;:::o;32342:400::-;32423:13;32439:16;32447:7;32439;:16::i;:::-;32423:32;;32495:5;32472:28;;:19;:17;:19::i;:::-;:28;;;32468:175;;32520:44;32537:5;32544:19;:17;:19::i;:::-;32520:16;:44::i;:::-;32515:128;;32592:35;;;;;;;;;;;;;;32515:128;32468:175;32688:2;32655:15;:24;32671:7;32655:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32726:7;32722:2;32706:28;;32715:5;32706:28;;;;;;;;;;;;32412:330;32342:400;;:::o;21585:323::-;21646:7;21874:15;:13;:15::i;:::-;21859:12;;21843:13;;:28;:46;21836:53;;21585:323;:::o;62180:102::-;2143:13;:11;:13::i;:::-;62264:10:::1;62252:9;:22;;;;62180:102:::0;:::o;62836:::-;62883:7;62918:11;;;;;;;;;;;62910:20;;;;;;;;:::i;:::-;;62903:27;;62836:102;:::o;36740:2995::-;36874:27;36904;36923:7;36904:18;:27::i;:::-;36874:57;;36989:4;36948:45;;36964:19;36948:45;;;36944:99;;37015:28;;;;;;;;;;;;;;36944:99;37071:27;37113:23;37150:35;37177:7;37150:26;:35::i;:::-;37056:129;;;;37299:134;37342:15;37376:4;37399:19;:17;:19::i;:::-;37299:24;:134::i;:::-;37280:287;;37463:43;37480:4;37486:19;:17;:19::i;:::-;37463:16;:43::i;:::-;37458:109;;37532:35;;;;;;;;;;;;;;37458:109;37280:287;37598:1;37584:16;;:2;:16;;;37580:52;;;37609:23;;;;;;;;;;;;;;37580:52;37645:43;37667:4;37673:2;37677:7;37686:1;37645:21;:43::i;:::-;37781:15;37778:160;;;37921:1;37900:19;37893:30;37778:160;38318:18;:24;38337:4;38318:24;;;;;;;;;;;;;;;;38316:26;;;;;;;;;;;;38387:18;:22;38406:2;38387:22;;;;;;;;;;;;;;;;38385:24;;;;;;;;;;;38709:167;38746:2;38816:45;38831:4;38837:2;38841:19;38816:14;:45::i;:::-;17984:8;38767:94;38709:18;:167::i;:::-;38680:17;:26;38698:7;38680:26;;;;;;;;;;;:196;;;;39047:1;17984:8;38996:19;:47;:52;38992:627;;;39069:19;39101:1;39091:7;:11;39069:33;;39258:1;39224:17;:30;39242:11;39224:30;;;;;;;;;;;;:35;39220:384;;;39362:13;;39347:11;:28;39343:242;;39542:19;39509:17;:30;39527:11;39509:30;;;;;;;;;;;:52;;;;39343:242;39220:384;39050:569;38992:627;39666:7;39662:2;39647:27;;39656:4;39647:27;;;;;;;;;;;;39685:42;39706:4;39712:2;39716:7;39725:1;39685:20;:42::i;:::-;36863:2872;;;36740:2995;;;:::o;62290:89::-;62335:7;62362:9;;62355:16;;62290:89;:::o;62965:106::-;2143:13;:11;:13::i;:::-;63023:7:::1;:5;:7::i;:::-;63015:25;;:48;63041:21;63015:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;62965:106::o:0;39831:185::-;39969:39;39986:4;39992:2;39996:7;39969:39;;;;;;;;;;;;:16;:39::i;:::-;39831:185;;;:::o;62521:101::-;62572:7;62599:15;;62592:22;;62521:101;:::o;61852:221::-;2143:13;:11;:13::i;:::-;61973:1:::1;61954:7;61948:21;;;;;:::i;:::-;;;:26;61926:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;62057:8;62047:7;:18;;;;;;;;;;;;:::i;:::-;;61852:221:::0;:::o;59600:23::-;;;;;;;;;;;;;:::o;27502:202::-;27619:7;27667:27;27686:7;27667:18;:27::i;:::-;27644:52;;27502:202;;;:::o;59632:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22769:283::-;22886:7;22932:1;22915:19;;:5;:19;;;22911:60;;;22943:28;;;;;;;;;;;;;;22911:60;16928:13;22989:18;:25;23008:5;22989:25;;;;;;;;;;;;;;;;:55;22982:62;;22769:283;;;:::o;62081:91::-;62124:13;62157:7;62150:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62081:91;:::o;2905:103::-;2143:13;:11;:13::i;:::-;2970:30:::1;2997:1;2970:18;:30::i;:::-;2905:103::o:0;60832:660::-;2143:13;:11;:13::i;:::-;60977:15:::1;;60964:9;60935:19;:26;60955:5;60935:26;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:57;;61113:33;61130:15;;61113:16;:33::i;:::-;61032:182;;;;;;;;:::i;:::-;;;;;;;;;;;;;60913:327;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;59700:4;61287:9;61273:11;;:23;;;;:::i;:::-;:37;;61251:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;61387:9;61372:11;;:24;;;;;;;:::i;:::-;;;;;;;;61437:9;61407:19;:26;61427:5;61407:26;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;61457:27;61467:5;61474:9;61457;:27::i;:::-;60832:660:::0;;:::o;2257:87::-;2303:7;2330:6;;;;;;;;;;;2323:13;;2257:87;:::o;26188:104::-;26244:13;26277:7;26270:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26188:104;:::o;62630:198::-;2143:13;:11;:13::i;:::-;62737:11:::1;;;;;;;;;;;62729:20;;;;;;;;:::i;:::-;;62714:12;:35;62706:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;62807:12;62802:18;;;;;;;;:::i;:::-;;62788:11;;:32;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;62630:198:::0;:::o;59972:852::-;60033:12;60048:10;60033:25;;60069:13;60085:9;;60069:25;;60128:9;60113:24;;;;;;;;:::i;:::-;;:11;;;;;;;;;;;:24;;;;;;;;:::i;:::-;;;60105:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;60241:15;;60228:9;60200:19;:25;60220:4;60200:25;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:56;;60377:33;60394:15;;60377:16;:33::i;:::-;60296:182;;;;;;;;:::i;:::-;;;;;;;;;;;;;60178:326;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;59700:4;60551:9;60537:11;;:23;;;;:::i;:::-;:37;;60515:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;60665:9;60657:5;:17;;;;:::i;:::-;60644:9;:30;;60636:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;60721:9;60706:11;;:24;;;;;;;:::i;:::-;;;;;;;;60770:9;60741:19;:25;60761:4;60741:25;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;60790:26;60800:4;60806:9;60790;:26::i;:::-;60022:802;;59972:852;:::o;33509:340::-;33652:19;:17;:19::i;:::-;33640:31;;:8;:31;;;33636:61;;;33680:17;;;;;;;;;;;;;;33636:61;33762:8;33710:18;:39;33729:19;:17;:19::i;:::-;33710:39;;;;;;;;;;;;;;;:49;33750:8;33710:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33822:8;33786:55;;33801:19;:17;:19::i;:::-;33786:55;;;33832:8;33786:55;;;;;;:::i;:::-;;;;;;;;33509:340;;:::o;59800:30::-;;;;:::o;40614:399::-;40781:31;40794:4;40800:2;40804:7;40781:12;:31::i;:::-;40845:1;40827:2;:14;;;:19;40823:183;;40866:56;40897:4;40903:2;40907:7;40916:5;40866:30;:56::i;:::-;40861:145;;40950:40;;;;;;;;;;;;;;40861:145;40823:183;40614:399;;;;:::o;59758:35::-;;;;:::o;61516:298::-;61635:13;61674:17;61682:8;61674:7;:17::i;:::-;61666:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;61769:7;61778:26;61795:8;61778:16;:26::i;:::-;61752:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61738:68;;61516:298;;;:::o;62387:126::-;2143:13;:11;:13::i;:::-;62489:16:::1;62471:15;:34;;;;62387:126:::0;:::o;59839:54::-;;;;;;;;;;;;;;;;;:::o;34006:214::-;34148:4;34177:18;:25;34196:5;34177:25;;;;;;;;;;;;;;;:35;34203:8;34177:35;;;;;;;;;;;;;;;;;;;;;;;;;34170:42;;34006:214;;;;:::o;3163:238::-;2143:13;:11;:13::i;:::-;3286:1:::1;3266:22;;:8;:22;;;;3244:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3365:28;3384:8;3365:18;:28::i;:::-;3163:238:::0;:::o;59713:38::-;;;;:::o;34478:282::-;34543:4;34599:7;34580:15;:13;:15::i;:::-;:26;;:66;;;;;34633:13;;34623:7;:23;34580:66;:153;;;;;34732:1;17704:8;34684:17;:26;34702:7;34684:26;;;;;;;;;;;;:44;:49;34580:153;34560:173;;34478:282;;;:::o;57153:105::-;57213:7;57240:10;57233:17;;57153:105;:::o;63099:101::-;63164:7;63191:1;63184:8;;63099:101;:::o;2422:132::-;2497:12;:10;:12::i;:::-;2486:23;;:7;:5;:7::i;:::-;:23;;;2478:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2422:132::o;28789:1307::-;28883:7;28908:12;28923:7;28908:22;;28991:4;28972:15;:13;:15::i;:::-;:23;28968:1061;;29025:13;;29018:4;:20;29014:1015;;;29063:14;29080:17;:23;29098:4;29080:23;;;;;;;;;;;;29063:40;;29197:1;17704:8;29169:6;:24;:29;29165:845;;;29834:113;29851:1;29841:6;:11;29834:113;;;29894:17;:25;29912:6;;;;;;;29894:25;;;;;;;;;;;;29885:34;;29834:113;;;29980:6;29973:13;;;;;;29165:845;29040:989;29014:1015;28968:1061;30057:31;;;;;;;;;;;;;;28789:1307;;;;:::o;35641:479::-;35743:27;35772:23;35813:38;35854:15;:24;35870:7;35854:24;;;;;;;;;;;35813:65;;36025:18;36002:41;;36082:19;36076:26;36057:45;;35987:126;35641:479;;;:::o;34869:659::-;35018:11;35183:16;35176:5;35172:28;35163:37;;35343:16;35332:9;35328:32;35315:45;;35493:15;35482:9;35479:30;35471:5;35460:9;35457:20;35454:56;35444:66;;34869:659;;;;;:::o;41675:159::-;;;;;:::o;56462:311::-;56597:7;56617:16;18108:3;56643:19;:41;;56617:68;;18108:3;56711:31;56722:4;56728:2;56732:9;56711:10;:31::i;:::-;56703:40;;:62;;56696:69;;;56462:311;;;;;:::o;30676:531::-;30783:14;30956:16;30949:5;30945:28;30936:37;;31168:5;31154:11;31129:23;31125:41;31122:52;31098:5;31077:112;31067:122;;30676:531;;;;:::o;42499:158::-;;;;;:::o;3561:191::-;3635:16;3654:6;;;;;;;;;;;3635:25;;3680:8;3671:6;;:17;;;;;;;;;;;;;;;;;;3735:8;3704:40;;3725:8;3704:40;;;;;;;;;;;;3624:128;3561:191;:::o;4193:723::-;4249:13;4479:1;4470:5;:10;4466:53;;;4497:10;;;;;;;;;;;;;;;;;;;;;4466:53;4529:12;4544:5;4529:20;;4560:14;4585:78;4600:1;4592:4;:9;4585:78;;4618:8;;;;;:::i;:::-;;;;4649:2;4641:10;;;;;:::i;:::-;;;4585:78;;;4673:19;4705:6;4695:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4673:39;;4723:154;4739:1;4730:5;:10;4723:154;;4767:1;4757:11;;;;;:::i;:::-;;;4834:2;4826:5;:10;;;;:::i;:::-;4813:2;:24;;;;:::i;:::-;4800:39;;4783:6;4790;4783:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4863:2;4854:11;;;;;:::i;:::-;;;4723:154;;;4901:6;4887:21;;;;;4193:723;;;;:::o;50766:112::-;50843:27;50853:2;50857:8;50843:27;;;;;;;;;;;;:9;:27::i;:::-;50766:112;;:::o;43097:831::-;43260:4;43319:2;43294:45;;;43358:19;:17;:19::i;:::-;43396:4;43419:7;43445:5;43294:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43277:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43696:1;43679:6;:13;:18;43675:235;;;43725:40;;;;;;;;;;;;;;43675:235;43868:6;43862:13;43853:6;43849:2;43845:15;43838:38;43277:644;43565:54;;;43538:81;;;:6;:81;;;;43514:105;;;43097:831;;;;;;:::o;781:98::-;834:7;861:10;854:17;;781:98;:::o;56163:147::-;56300:6;56163:147;;;;;:::o;49802:880::-;49933:19;49939:2;49943:8;49933:5;:19::i;:::-;50012:1;49994:2;:14;;;:19;49990:674;;50034:11;50048:13;;50034:27;;50080:13;50102:8;50096:3;:14;50080:30;;50129:424;50186:205;50255:1;50288:2;50321:7;;;;;;50359:5;50186:30;:205::i;:::-;50155:358;;50449:40;;;;;;;;;;;;;;50155:358;50548:3;50540:5;:11;50129:424;;50635:3;50618:13;;:20;50614:34;;50640:8;;;50614:34;50015:649;;49990:674;49802:880;;;:::o;44390:2509::-;44463:20;44486:13;;44463:36;;44526:1;44514:8;:13;44510:44;;;44536:18;;;;;;;;;;;;;;44510:44;44567:61;44597:1;44601:2;44605:12;44619:8;44567:21;:61::i;:::-;45145:1;17066:2;45115:1;:26;;45114:32;45085:8;:62;45042:18;:22;45061:2;45042:22;;;;;;;;;;;;;;;;:105;;;;;;;;;;;45424:160;45461:2;45536:33;45559:1;45563:2;45567:1;45536:14;:33::i;:::-;45482:30;45503:8;45482:20;:30::i;:::-;:87;45424:18;:160::i;:::-;45390:17;:31;45408:12;45390:31;;;;;;;;;;;:194;;;;45601:16;45632:11;45661:8;45646:12;:23;45632:37;;45916:16;45912:2;45908:25;45896:37;;46288:12;46248:8;46207:1;46145:25;46086:1;46025;45998:335;46413:1;46399:12;46395:20;46353:346;46454:3;46445:7;46442:16;46353:346;;46672:7;46662:8;46659:1;46632:25;46629:1;46626;46621:59;46507:1;46498:7;46494:15;46483:26;;46353:346;;;46357:77;46744:1;46732:8;:13;46728:45;;;46754:19;;;;;;;;;;;;;;46728:45;46806:3;46790:13;:19;;;;44816:2005;;46831:60;46860:1;46864:2;46868:12;46882:8;46831:20;:60::i;:::-;44452:2447;44390:2509;;:::o;31309:356::-;31406:14;31644:1;31634:8;31631:15;31605:24;31601:46;31591:56;;31309:356;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:180::-;8584:77;8581:1;8574:88;8681:4;8678:1;8671:15;8705:4;8702:1;8695:15;8722:114;8804:1;8797:5;8794:12;8784:46;;8810:18;;:::i;:::-;8784:46;8722:114;:::o;8842:129::-;8888:7;8917:5;8906:16;;8923:42;8959:5;8923:42;:::i;:::-;8842:129;;;:::o;8977:::-;9034:9;9067:33;9094:5;9067:33;:::i;:::-;9054:46;;8977:129;;;:::o;9112:145::-;9206:44;9244:5;9206:44;:::i;:::-;9201:3;9194:57;9112:145;;:::o;9263:236::-;9363:4;9401:2;9390:9;9386:18;9378:26;;9414:78;9489:1;9478:9;9474:17;9465:6;9414:78;:::i;:::-;9263:236;;;;:::o;9505:329::-;9564:6;9613:2;9601:9;9592:7;9588:23;9584:32;9581:119;;;9619:79;;:::i;:::-;9581:119;9739:1;9764:53;9809:7;9800:6;9789:9;9785:22;9764:53;:::i;:::-;9754:63;;9710:117;9505:329;;;;:::o;9840:116::-;9910:21;9925:5;9910:21;:::i;:::-;9903:5;9900:32;9890:60;;9946:1;9943;9936:12;9890:60;9840:116;:::o;9962:133::-;10005:5;10043:6;10030:20;10021:29;;10059:30;10083:5;10059:30;:::i;:::-;9962:133;;;;:::o;10101:468::-;10166:6;10174;10223:2;10211:9;10202:7;10198:23;10194:32;10191:119;;;10229:79;;:::i;:::-;10191:119;10349:1;10374:53;10419:7;10410:6;10399:9;10395:22;10374:53;:::i;:::-;10364:63;;10320:117;10476:2;10502:50;10544:7;10535:6;10524:9;10520:22;10502:50;:::i;:::-;10492:60;;10447:115;10101:468;;;;;:::o;10575:307::-;10636:4;10726:18;10718:6;10715:30;10712:56;;;10748:18;;:::i;:::-;10712:56;10786:29;10808:6;10786:29;:::i;:::-;10778:37;;10870:4;10864;10860:15;10852:23;;10575:307;;;:::o;10888:410::-;10965:5;10990:65;11006:48;11047:6;11006:48;:::i;:::-;10990:65;:::i;:::-;10981:74;;11078:6;11071:5;11064:21;11116:4;11109:5;11105:16;11154:3;11145:6;11140:3;11136:16;11133:25;11130:112;;;11161:79;;:::i;:::-;11130:112;11251:41;11285:6;11280:3;11275;11251:41;:::i;:::-;10971:327;10888:410;;;;;:::o;11317:338::-;11372:5;11421:3;11414:4;11406:6;11402:17;11398:27;11388:122;;11429:79;;:::i;:::-;11388:122;11546:6;11533:20;11571:78;11645:3;11637:6;11630:4;11622:6;11618:17;11571:78;:::i;:::-;11562:87;;11378:277;11317:338;;;;:::o;11661:943::-;11756:6;11764;11772;11780;11829:3;11817:9;11808:7;11804:23;11800:33;11797:120;;;11836:79;;:::i;:::-;11797:120;11956:1;11981:53;12026:7;12017:6;12006:9;12002:22;11981:53;:::i;:::-;11971:63;;11927:117;12083:2;12109:53;12154:7;12145:6;12134:9;12130:22;12109:53;:::i;:::-;12099:63;;12054:118;12211:2;12237:53;12282:7;12273:6;12262:9;12258:22;12237:53;:::i;:::-;12227:63;;12182:118;12367:2;12356:9;12352:18;12339:32;12398:18;12390:6;12387:30;12384:117;;;12420:79;;:::i;:::-;12384:117;12525:62;12579:7;12570:6;12559:9;12555:22;12525:62;:::i;:::-;12515:72;;12310:287;11661:943;;;;;;;:::o;12610:474::-;12678:6;12686;12735:2;12723:9;12714:7;12710:23;12706:32;12703:119;;;12741:79;;:::i;:::-;12703:119;12861:1;12886:53;12931:7;12922:6;12911:9;12907:22;12886:53;:::i;:::-;12876:63;;12832:117;12988:2;13014:53;13059:7;13050:6;13039:9;13035:22;13014:53;:::i;:::-;13004:63;;12959:118;12610:474;;;;;:::o;13090:180::-;13138:77;13135:1;13128:88;13235:4;13232:1;13225:15;13259:4;13256:1;13249:15;13276:320;13320:6;13357:1;13351:4;13347:12;13337:22;;13404:1;13398:4;13394:12;13425:18;13415:81;;13481:4;13473:6;13469:17;13459:27;;13415:81;13543:2;13535:6;13532:14;13512:18;13509:38;13506:84;;;13562:18;;:::i;:::-;13506:84;13327:269;13276:320;;;:::o;13602:221::-;13742:34;13738:1;13730:6;13726:14;13719:58;13811:4;13806:2;13798:6;13794:15;13787:29;13602:221;:::o;13829:366::-;13971:3;13992:67;14056:2;14051:3;13992:67;:::i;:::-;13985:74;;14068:93;14157:3;14068:93;:::i;:::-;14186:2;14181:3;14177:12;14170:19;;13829:366;;;:::o;14201:419::-;14367:4;14405:2;14394:9;14390:18;14382:26;;14454:9;14448:4;14444:20;14440:1;14429:9;14425:17;14418:47;14482:131;14608:4;14482:131;:::i;:::-;14474:139;;14201:419;;;:::o;14626:180::-;14674:77;14671:1;14664:88;14771:4;14768:1;14761:15;14795:4;14792:1;14785:15;14812:305;14852:3;14871:20;14889:1;14871:20;:::i;:::-;14866:25;;14905:20;14923:1;14905:20;:::i;:::-;14900:25;;15059:1;14991:66;14987:74;14984:1;14981:81;14978:107;;;15065:18;;:::i;:::-;14978:107;15109:1;15106;15102:9;15095:16;;14812:305;;;;:::o;15123:148::-;15225:11;15262:3;15247:18;;15123:148;;;;:::o;15277:167::-;15417:19;15413:1;15405:6;15401:14;15394:43;15277:167;:::o;15450:402::-;15610:3;15631:85;15713:2;15708:3;15631:85;:::i;:::-;15624:92;;15725:93;15814:3;15725:93;:::i;:::-;15843:2;15838:3;15834:12;15827:19;;15450:402;;;:::o;15858:377::-;15964:3;15992:39;16025:5;15992:39;:::i;:::-;16047:89;16129:6;16124:3;16047:89;:::i;:::-;16040:96;;16145:52;16190:6;16185:3;16178:4;16171:5;16167:16;16145:52;:::i;:::-;16222:6;16217:3;16213:16;16206:23;;15968:267;15858:377;;;;:::o;16241:174::-;16381:26;16377:1;16369:6;16365:14;16358:50;16241:174;:::o;16421:402::-;16581:3;16602:85;16684:2;16679:3;16602:85;:::i;:::-;16595:92;;16696:93;16785:3;16696:93;:::i;:::-;16814:2;16809:3;16805:12;16798:19;;16421:402;;;:::o;16829:807::-;17163:3;17185:148;17329:3;17185:148;:::i;:::-;17178:155;;17350:95;17441:3;17432:6;17350:95;:::i;:::-;17343:102;;17462:148;17606:3;17462:148;:::i;:::-;17455:155;;17627:3;17620:10;;16829:807;;;;:::o;17642:173::-;17782:25;17778:1;17770:6;17766:14;17759:49;17642:173;:::o;17821:366::-;17963:3;17984:67;18048:2;18043:3;17984:67;:::i;:::-;17977:74;;18060:93;18149:3;18060:93;:::i;:::-;18178:2;18173:3;18169:12;18162:19;;17821:366;;;:::o;18193:419::-;18359:4;18397:2;18386:9;18382:18;18374:26;;18446:9;18440:4;18436:20;18432:1;18421:9;18417:17;18410:47;18474:131;18600:4;18474:131;:::i;:::-;18466:139;;18193:419;;;:::o;18618:173::-;18758:25;18754:1;18746:6;18742:14;18735:49;18618:173;:::o;18797:366::-;18939:3;18960:67;19024:2;19019:3;18960:67;:::i;:::-;18953:74;;19036:93;19125:3;19036:93;:::i;:::-;19154:2;19149:3;19145:12;19138:19;;18797:366;;;:::o;19169:419::-;19335:4;19373:2;19362:9;19358:18;19350:26;;19422:9;19416:4;19412:20;19408:1;19397:9;19393:17;19386:47;19450:131;19576:4;19450:131;:::i;:::-;19442:139;;19169:419;;;:::o;19594:175::-;19734:27;19730:1;19722:6;19718:14;19711:51;19594:175;:::o;19775:366::-;19917:3;19938:67;20002:2;19997:3;19938:67;:::i;:::-;19931:74;;20014:93;20103:3;20014:93;:::i;:::-;20132:2;20127:3;20123:12;20116:19;;19775:366;;;:::o;20147:419::-;20313:4;20351:2;20340:9;20336:18;20328:26;;20400:9;20394:4;20390:20;20386:1;20375:9;20371:17;20364:47;20428:131;20554:4;20428:131;:::i;:::-;20420:139;;20147:419;;;:::o;20572:348::-;20612:7;20635:20;20653:1;20635:20;:::i;:::-;20630:25;;20669:20;20687:1;20669:20;:::i;:::-;20664:25;;20857:1;20789:66;20785:74;20782:1;20779:81;20774:1;20767:9;20760:17;20756:105;20753:131;;;20864:18;;:::i;:::-;20753:131;20912:1;20909;20905:9;20894:20;;20572:348;;;;:::o;20926:166::-;21066:18;21062:1;21054:6;21050:14;21043:42;20926:166;:::o;21098:366::-;21240:3;21261:67;21325:2;21320:3;21261:67;:::i;:::-;21254:74;;21337:93;21426:3;21337:93;:::i;:::-;21455:2;21450:3;21446:12;21439:19;;21098:366;;;:::o;21470:419::-;21636:4;21674:2;21663:9;21659:18;21651:26;;21723:9;21717:4;21713:20;21709:1;21698:9;21694:17;21687:47;21751:131;21877:4;21751:131;:::i;:::-;21743:139;;21470:419;;;:::o;21895:181::-;22035:33;22031:1;22023:6;22019:14;22012:57;21895:181;:::o;22082:366::-;22224:3;22245:67;22309:2;22304:3;22245:67;:::i;:::-;22238:74;;22321:93;22410:3;22321:93;:::i;:::-;22439:2;22434:3;22430:12;22423:19;;22082:366;;;:::o;22454:419::-;22620:4;22658:2;22647:9;22643:18;22635:26;;22707:9;22701:4;22697:20;22693:1;22682:9;22678:17;22671:47;22735:131;22861:4;22735:131;:::i;:::-;22727:139;;22454:419;;;:::o;22879:141::-;22928:4;22951:3;22943:11;;22974:3;22971:1;22964:14;23008:4;23005:1;22995:18;22987:26;;22879:141;;;:::o;23050:845::-;23153:3;23190:5;23184:12;23219:36;23245:9;23219:36;:::i;:::-;23271:89;23353:6;23348:3;23271:89;:::i;:::-;23264:96;;23391:1;23380:9;23376:17;23407:1;23402:137;;;;23553:1;23548:341;;;;23369:520;;23402:137;23486:4;23482:9;23471;23467:25;23462:3;23455:38;23522:6;23517:3;23513:16;23506:23;;23402:137;;23548:341;23615:38;23647:5;23615:38;:::i;:::-;23675:1;23689:154;23703:6;23700:1;23697:13;23689:154;;;23777:7;23771:14;23767:1;23762:3;23758:11;23751:35;23827:1;23818:7;23814:15;23803:26;;23725:4;23722:1;23718:12;23713:17;;23689:154;;;23872:6;23867:3;23863:16;23856:23;;23555:334;;23369:520;;23157:738;;23050:845;;;;:::o;23901:429::-;24078:3;24100:92;24188:3;24179:6;24100:92;:::i;:::-;24093:99;;24209:95;24300:3;24291:6;24209:95;:::i;:::-;24202:102;;24321:3;24314:10;;23901:429;;;;;:::o;24336:225::-;24476:34;24472:1;24464:6;24460:14;24453:58;24545:8;24540:2;24532:6;24528:15;24521:33;24336:225;:::o;24567:366::-;24709:3;24730:67;24794:2;24789:3;24730:67;:::i;:::-;24723:74;;24806:93;24895:3;24806:93;:::i;:::-;24924:2;24919:3;24915:12;24908:19;;24567:366;;;:::o;24939:419::-;25105:4;25143:2;25132:9;25128:18;25120:26;;25192:9;25186:4;25182:20;25178:1;25167:9;25163:17;25156:47;25220:131;25346:4;25220:131;:::i;:::-;25212:139;;24939:419;;;:::o;25364:182::-;25504:34;25500:1;25492:6;25488:14;25481:58;25364:182;:::o;25552:366::-;25694:3;25715:67;25779:2;25774:3;25715:67;:::i;:::-;25708:74;;25791:93;25880:3;25791:93;:::i;:::-;25909:2;25904:3;25900:12;25893:19;;25552:366;;;:::o;25924:419::-;26090:4;26128:2;26117:9;26113:18;26105:26;;26177:9;26171:4;26167:20;26163:1;26152:9;26148:17;26141:47;26205:131;26331:4;26205:131;:::i;:::-;26197:139;;25924:419;;;:::o;26349:233::-;26388:3;26411:24;26429:5;26411:24;:::i;:::-;26402:33;;26457:66;26450:5;26447:77;26444:103;;;26527:18;;:::i;:::-;26444:103;26574:1;26567:5;26563:13;26556:20;;26349:233;;;:::o;26588:180::-;26636:77;26633:1;26626:88;26733:4;26730:1;26723:15;26757:4;26754:1;26747:15;26774:185;26814:1;26831:20;26849:1;26831:20;:::i;:::-;26826:25;;26865:20;26883:1;26865:20;:::i;:::-;26860:25;;26904:1;26894:35;;26909:18;;:::i;:::-;26894:35;26951:1;26948;26944:9;26939:14;;26774:185;;;;:::o;26965:191::-;27005:4;27025:20;27043:1;27025:20;:::i;:::-;27020:25;;27059:20;27077:1;27059:20;:::i;:::-;27054:25;;27098:1;27095;27092:8;27089:34;;;27103:18;;:::i;:::-;27089:34;27148:1;27145;27141:9;27133:17;;26965:191;;;;:::o;27162:176::-;27194:1;27211:20;27229:1;27211:20;:::i;:::-;27206:25;;27245:20;27263:1;27245:20;:::i;:::-;27240:25;;27284:1;27274:35;;27289:18;;:::i;:::-;27274:35;27330:1;27327;27323:9;27318:14;;27162:176;;;;:::o;27344:180::-;27392:77;27389:1;27382:88;27489:4;27486:1;27479:15;27513:4;27510:1;27503:15;27530:98;27581:6;27615:5;27609:12;27599:22;;27530:98;;;:::o;27634:168::-;27717:11;27751:6;27746:3;27739:19;27791:4;27786:3;27782:14;27767:29;;27634:168;;;;:::o;27808:360::-;27894:3;27922:38;27954:5;27922:38;:::i;:::-;27976:70;28039:6;28034:3;27976:70;:::i;:::-;27969:77;;28055:52;28100:6;28095:3;28088:4;28081:5;28077:16;28055:52;:::i;:::-;28132:29;28154:6;28132:29;:::i;:::-;28127:3;28123:39;28116:46;;27898:270;27808:360;;;;:::o;28174:640::-;28369:4;28407:3;28396:9;28392:19;28384:27;;28421:71;28489:1;28478:9;28474:17;28465:6;28421:71;:::i;:::-;28502:72;28570:2;28559:9;28555:18;28546:6;28502:72;:::i;:::-;28584;28652:2;28641:9;28637:18;28628:6;28584:72;:::i;:::-;28703:9;28697:4;28693:20;28688:2;28677:9;28673:18;28666:48;28731:76;28802:4;28793:6;28731:76;:::i;:::-;28723:84;;28174:640;;;;;;;:::o;28820:141::-;28876:5;28907:6;28901:13;28892:22;;28923:32;28949:5;28923:32;:::i;:::-;28820:141;;;;:::o;28967:349::-;29036:6;29085:2;29073:9;29064:7;29060:23;29056:32;29053:119;;;29091:79;;:::i;:::-;29053:119;29211:1;29236:63;29291:7;29282:6;29271:9;29267:22;29236:63;:::i;:::-;29226:73;;29182:127;28967:349;;;;:::o

Swarm Source

ipfs://2f991386f38d8bd1066c68ec47b6d503060fa957bedc60d1f56772bb7d32b289
Loading...
Loading
Loading...
Loading
[ 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.