ETH Price: $3,389.27 (-1.55%)
Gas: 2 Gwei

Token

Dream mochi (Dream mochi)
 

Overview

Max Total Supply

999 Dream mochi

Holders

394

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Dream mochi
0x76b0500fa80eebf9510e942f0e4d5a085375ab45
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:
NFT

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-26
*/

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

// File operator-filter-registry/src/[email protected]


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}


// File operator-filter-registry/src/[email protected]


pragma solidity ^0.8.13;

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}


// File operator-filter-registry/src/[email protected]


pragma solidity ^0.8.13;

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}


// File erc721a/contracts/[email protected]


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File erc721a/contracts/[email protected]


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


// 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.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


// File contracts/NFT.sol


pragma solidity ^0.8.13;




contract NFT is ERC721A, DefaultOperatorFilterer, Ownable {
    using Address for address;

    string private _baseTokenURI;
    uint256 public maxSupply;
    uint256 public maxMint;
    uint256 public price;
    bool public mintable;

    mapping(address => uint256) public minted;

    constructor(
        string memory url,
        string memory name,
        string memory symbol,
        address _owner,
        uint256 _price
    ) ERC721A(name, symbol) {
        _baseTokenURI = url;
        maxSupply = 999;
        maxMint = 2;
        price = _price;
        mintable = true;
        _transferOwnership(_owner);
    }

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

    function tokenURI(
        uint256 tokenId
    ) public view override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory baseURI = _baseURI();
        return string(abi.encodePacked(baseURI, _toString(tokenId), ".json"));
    }

    function changeBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function changeMintable(bool _mintable) public onlyOwner {
        mintable = _mintable;
    }

    function changePrice(uint256 _price) public onlyOwner {
        price = _price;
    }

    function changeMaxMint(uint256 _maxMint) public onlyOwner {
        maxMint = _maxMint;
    }

    function mint(uint256 num) public payable {
        uint256 amount = num * price;
        require(mintable, "status err");
        require(msg.value == amount, "eth err");
        require(minted[msg.sender] + num <= maxMint, "num err");
        minted[msg.sender] += num;
        require(totalSupply() + num <= maxSupply, "num err");
        _safeMint(msg.sender, num);
    }

    function setApprovalForAll(
        address operator,
        bool approved
    ) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

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

    function approve(
        address operator,
        uint256 tokenId
    ) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

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

    function airdrop(
        address[] memory users,
        uint256[] memory nums
    ) public onlyOwner {
        require(users.length == nums.length);
        for (uint i = 0; i < users.length; i++) {
            uint256 num = nums[i];
            address user = users[i];
            require(totalSupply() + num <= maxSupply, "num err");
            _safeMint(user, num);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"url","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"nums","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"changeMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintable","type":"bool"}],"name":"changeMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162003924380380620039248339818101604052810190620000379190620006dd565b733cc6cdda760b79bafa08df41ecfa224f810dceb660018585816002908051906020019062000068929190620003f0565b50806003908051906020019062000081929190620003f0565b50620000926200031960201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200028f57801562000155576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200011b929190620007d3565b600060405180830381600087803b1580156200013657600080fd5b505af11580156200014b573d6000803e3d6000fd5b505050506200028e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200020f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001d5929190620007d3565b600060405180830381600087803b158015620001f057600080fd5b505af115801562000205573d6000803e3d6000fd5b505050506200028d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000258919062000800565b600060405180830381600087803b1580156200027357600080fd5b505af115801562000288573d6000803e3d6000fd5b505050505b5b5b5050620002b1620002a56200032260201b60201c565b6200032a60201b60201c565b8460099080519060200190620002c9929190620003f0565b506103e7600a819055506002600b8190555080600c819055506001600d60006101000a81548160ff0219169083151502179055506200030e826200032a60201b60201c565b505050505062000881565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003fe906200084c565b90600052602060002090601f0160209004810192826200042257600085556200046e565b82601f106200043d57805160ff19168380011785556200046e565b828001600101855582156200046e579182015b828111156200046d57825182559160200191906001019062000450565b5b5090506200047d919062000481565b5090565b5b808211156200049c57600081600090555060010162000482565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200050982620004be565b810181811067ffffffffffffffff821117156200052b576200052a620004cf565b5b80604052505050565b600062000540620004a0565b90506200054e8282620004fe565b919050565b600067ffffffffffffffff821115620005715762000570620004cf565b5b6200057c82620004be565b9050602081019050919050565b60005b83811015620005a95780820151818401526020810190506200058c565b83811115620005b9576000848401525b50505050565b6000620005d6620005d08462000553565b62000534565b905082815260208101848484011115620005f557620005f4620004b9565b5b6200060284828562000589565b509392505050565b600082601f830112620006225762000621620004b4565b5b815162000634848260208601620005bf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200066a826200063d565b9050919050565b6200067c816200065d565b81146200068857600080fd5b50565b6000815190506200069c8162000671565b92915050565b6000819050919050565b620006b781620006a2565b8114620006c357600080fd5b50565b600081519050620006d781620006ac565b92915050565b600080600080600060a08688031215620006fc57620006fb620004aa565b5b600086015167ffffffffffffffff8111156200071d576200071c620004af565b5b6200072b888289016200060a565b955050602086015167ffffffffffffffff8111156200074f576200074e620004af565b5b6200075d888289016200060a565b945050604086015167ffffffffffffffff811115620007815762000780620004af565b5b6200078f888289016200060a565b9350506060620007a2888289016200068b565b9250506080620007b588828901620006c6565b9150509295509295909350565b620007cd816200065d565b82525050565b6000604082019050620007ea6000830185620007c2565b620007f96020830184620007c2565b9392505050565b6000602082019050620008176000830184620007c2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086557607f821691505b6020821081036200087b576200087a6200081d565b5b50919050565b61309380620008916000396000f3fe6080604052600436106101cd5760003560e01c806367243482116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461060b578063d5abeb0114610648578063e985e9c514610673578063f2fde38b146106b0576101cd565b8063a0712d6814610581578063a22cb4651461059d578063a2b40d19146105c6578063b88d4fde146105ef576101cd565b80637501f741116100d15780637501f741146104d55780638da5cb5b1461050057806395d89b411461052b578063a035b1fe14610556576101cd565b8063672434821461045857806370a0823114610481578063715018a6146104be576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103ab5780634779b82e146103c75780634bf365df146103f05780636352211e1461041b576101cd565b806323b872dd1461032457806339a0c6f9146103405780633ccfd60b1461036957806341f4343414610380576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102935780631e7269c5146102be57806320c63e3b146102fb576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906120e3565b6106d9565b604051610206919061212b565b60405180910390f35b34801561021b57600080fd5b5061022461076b565b60405161023191906121df565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612237565b6107fd565b60405161026e91906122a5565b60405180910390f35b610291600480360381019061028c91906122ec565b61087c565b005b34801561029f57600080fd5b506102a8610895565b6040516102b5919061233b565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612356565b6108ac565b6040516102f2919061233b565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190612237565b6108c4565b005b61033e60048036038101906103399190612383565b6108d6565b005b34801561034c57600080fd5b506103676004803603810190610362919061250b565b610925565b005b34801561037557600080fd5b5061037e610947565b005b34801561038c57600080fd5b50610395610998565b6040516103a291906125b3565b60405180910390f35b6103c560048036038101906103c09190612383565b6109aa565b005b3480156103d357600080fd5b506103ee60048036038101906103e991906125fa565b6109f9565b005b3480156103fc57600080fd5b50610405610a1e565b604051610412919061212b565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612237565b610a31565b60405161044f91906122a5565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a91906127b2565b610a43565b005b34801561048d57600080fd5b506104a860048036038101906104a39190612356565b610b1e565b6040516104b5919061233b565b60405180910390f35b3480156104ca57600080fd5b506104d3610bd6565b005b3480156104e157600080fd5b506104ea610bea565b6040516104f7919061233b565b60405180910390f35b34801561050c57600080fd5b50610515610bf0565b60405161052291906122a5565b60405180910390f35b34801561053757600080fd5b50610540610c1a565b60405161054d91906121df565b60405180910390f35b34801561056257600080fd5b5061056b610cac565b604051610578919061233b565b60405180910390f35b61059b60048036038101906105969190612237565b610cb2565b005b3480156105a957600080fd5b506105c460048036038101906105bf919061282a565b610e9f565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190612237565b610eb8565b005b6106096004803603810190610604919061290b565b610eca565b005b34801561061757600080fd5b50610632600480360381019061062d9190612237565b610f1b565b60405161063f91906121df565b60405180910390f35b34801561065457600080fd5b5061065d610fa3565b60405161066a919061233b565b60405180910390f35b34801561067f57600080fd5b5061069a6004803603810190610695919061298e565b610fa9565b6040516106a7919061212b565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612356565b61103d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077a906129fd565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906129fd565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b6000610808826110c0565b61083e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108868161111f565b610890838361121c565b505050565b600061089f611360565b6001546000540303905090565b600e6020528060005260406000206000915090505481565b6108cc611369565b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610914576109133361111f565b5b61091f8484846113e7565b50505050565b61092d611369565b8060099080519060200190610943929190611fd4565b5050565b61094f611369565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610995573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e8576109e73361111f565b5b6109f3848484611709565b50505050565b610a01611369565b80600d60006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900460ff1681565b6000610a3c82611729565b9050919050565b610a4b611369565b8051825114610a5957600080fd5b60005b8251811015610b19576000828281518110610a7a57610a79612a2e565b5b602002602001015190506000848381518110610a9957610a98612a2e565b5b60200260200101519050600a5482610aaf610895565b610ab99190612a8c565b1115610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190612b2e565b60405180910390fd5b610b0481836117f5565b50508080610b1190612b4e565b915050610a5c565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b85576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bde611369565b610be86000611813565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c29906129fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610c55906129fd565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b600c5481565b6000600c5482610cc29190612b96565b9050600d60009054906101000a900460ff16610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612c3c565b60405180910390fd5b803414610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90612ca8565b60405180910390fd5b600b5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610da39190612a8c565b1115610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90612b2e565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e339190612a8c565b92505081905550600a5482610e46610895565b610e509190612a8c565b1115610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890612b2e565b60405180910390fd5b610e9b33836117f5565b5050565b81610ea98161111f565b610eb383836118d9565b505050565b610ec0611369565b80600c8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f0857610f073361111f565b5b610f14858585856119e4565b5050505050565b6060610f26826110c0565b610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90612d3a565b60405180910390fd5b6000610f6f611a57565b905080610f7b84611ae9565b604051602001610f8c929190612de2565b604051602081830303815290604052915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611045611369565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612e83565b60405180910390fd5b6110bd81611813565b50565b6000816110cb611360565b111580156110da575060005482105b8015611118575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611219576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611196929190612ea3565b602060405180830381865afa1580156111b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d79190612ee1565b61121857806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161120f91906122a5565b60405180910390fd5b5b50565b600061122782610a31565b90508073ffffffffffffffffffffffffffffffffffffffff16611248611b39565b73ffffffffffffffffffffffffffffffffffffffff16146112ab576112748161126f611b39565b610fa9565b6112aa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611371611b41565b73ffffffffffffffffffffffffffffffffffffffff1661138f610bf0565b73ffffffffffffffffffffffffffffffffffffffff16146113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90612f5a565b60405180910390fd5b565b60006113f282611729565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611459576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061146584611b49565b9150915061147b8187611476611b39565b611b70565b6114c7576114908661148b611b39565b610fa9565b6114c6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361152d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153a8686866001611bb4565b801561154557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611613856115ef888887611bba565b7c020000000000000000000000000000000000000000000000000000000017611be2565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116995760006001850190506000600460008381526020019081526020016000205403611697576000548114611696578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117018686866001611c0d565b505050505050565b61172483838360405180602001604052806000815250610eca565b505050565b60008082905080611738611360565b116117be576000548110156117bd5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117bb575b600081036117b1576004600083600190039350838152602001908152602001600020549050611787565b80925050506117f0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61180f828260405180602001604052806000815250611c13565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006118e6611b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611993611b39565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d8919061212b565b60405180910390a35050565b6119ef8484846108d6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5157611a1a84848484611cb0565b611a50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611a66906129fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611a92906129fd565b8015611adf5780601f10611ab457610100808354040283529160200191611adf565b820191906000526020600020905b815481529060010190602001808311611ac257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611b2457600184039350600a81066030018453600a8104905080611b02575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bd1868684611e00565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c1d8383611e09565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cab57600080549050600083820390505b611c5d6000868380600101945086611cb0565b611c93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c4a578160005414611ca857600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cd6611b39565b8786866040518563ffffffff1660e01b8152600401611cf89493929190612fcf565b6020604051808303816000875af1925050508015611d3457506040513d601f19601f82011682018060405250810190611d319190613030565b60015b611dad573d8060008114611d64576040519150601f19603f3d011682016040523d82523d6000602084013e611d69565b606091505b506000815103611da5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611e49576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e566000848385611bb4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ecd83611ebe6000866000611bba565b611ec785611fc4565b17611be2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f6e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f33565b5060008203611fa9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fbf6000848385611c0d565b505050565b60006001821460e11b9050919050565b828054611fe0906129fd565b90600052602060002090601f0160209004810192826120025760008555612049565b82601f1061201b57805160ff1916838001178555612049565b82800160010185558215612049579182015b8281111561204857825182559160200191906001019061202d565b5b509050612056919061205a565b5090565b5b8082111561207357600081600090555060010161205b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120c08161208b565b81146120cb57600080fd5b50565b6000813590506120dd816120b7565b92915050565b6000602082840312156120f9576120f8612081565b5b6000612107848285016120ce565b91505092915050565b60008115159050919050565b61212581612110565b82525050565b6000602082019050612140600083018461211c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612180578082015181840152602081019050612165565b8381111561218f576000848401525b50505050565b6000601f19601f8301169050919050565b60006121b182612146565b6121bb8185612151565b93506121cb818560208601612162565b6121d481612195565b840191505092915050565b600060208201905081810360008301526121f981846121a6565b905092915050565b6000819050919050565b61221481612201565b811461221f57600080fd5b50565b6000813590506122318161220b565b92915050565b60006020828403121561224d5761224c612081565b5b600061225b84828501612222565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061228f82612264565b9050919050565b61229f81612284565b82525050565b60006020820190506122ba6000830184612296565b92915050565b6122c981612284565b81146122d457600080fd5b50565b6000813590506122e6816122c0565b92915050565b6000806040838503121561230357612302612081565b5b6000612311858286016122d7565b925050602061232285828601612222565b9150509250929050565b61233581612201565b82525050565b6000602082019050612350600083018461232c565b92915050565b60006020828403121561236c5761236b612081565b5b600061237a848285016122d7565b91505092915050565b60008060006060848603121561239c5761239b612081565b5b60006123aa868287016122d7565b93505060206123bb868287016122d7565b92505060406123cc86828701612222565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61241882612195565b810181811067ffffffffffffffff82111715612437576124366123e0565b5b80604052505050565b600061244a612077565b9050612456828261240f565b919050565b600067ffffffffffffffff821115612476576124756123e0565b5b61247f82612195565b9050602081019050919050565b82818337600083830152505050565b60006124ae6124a98461245b565b612440565b9050828152602081018484840111156124ca576124c96123db565b5b6124d584828561248c565b509392505050565b600082601f8301126124f2576124f16123d6565b5b813561250284826020860161249b565b91505092915050565b60006020828403121561252157612520612081565b5b600082013567ffffffffffffffff81111561253f5761253e612086565b5b61254b848285016124dd565b91505092915050565b6000819050919050565b600061257961257461256f84612264565b612554565b612264565b9050919050565b600061258b8261255e565b9050919050565b600061259d82612580565b9050919050565b6125ad81612592565b82525050565b60006020820190506125c860008301846125a4565b92915050565b6125d781612110565b81146125e257600080fd5b50565b6000813590506125f4816125ce565b92915050565b6000602082840312156126105761260f612081565b5b600061261e848285016125e5565b91505092915050565b600067ffffffffffffffff821115612642576126416123e0565b5b602082029050602081019050919050565b600080fd5b600061266b61266684612627565b612440565b9050808382526020820190506020840283018581111561268e5761268d612653565b5b835b818110156126b757806126a388826122d7565b845260208401935050602081019050612690565b5050509392505050565b600082601f8301126126d6576126d56123d6565b5b81356126e6848260208601612658565b91505092915050565b600067ffffffffffffffff82111561270a576127096123e0565b5b602082029050602081019050919050565b600061272e612729846126ef565b612440565b9050808382526020820190506020840283018581111561275157612750612653565b5b835b8181101561277a57806127668882612222565b845260208401935050602081019050612753565b5050509392505050565b600082601f830112612799576127986123d6565b5b81356127a984826020860161271b565b91505092915050565b600080604083850312156127c9576127c8612081565b5b600083013567ffffffffffffffff8111156127e7576127e6612086565b5b6127f3858286016126c1565b925050602083013567ffffffffffffffff81111561281457612813612086565b5b61282085828601612784565b9150509250929050565b6000806040838503121561284157612840612081565b5b600061284f858286016122d7565b9250506020612860858286016125e5565b9150509250929050565b600067ffffffffffffffff821115612885576128846123e0565b5b61288e82612195565b9050602081019050919050565b60006128ae6128a98461286a565b612440565b9050828152602081018484840111156128ca576128c96123db565b5b6128d584828561248c565b509392505050565b600082601f8301126128f2576128f16123d6565b5b813561290284826020860161289b565b91505092915050565b6000806000806080858703121561292557612924612081565b5b6000612933878288016122d7565b9450506020612944878288016122d7565b935050604061295587828801612222565b925050606085013567ffffffffffffffff81111561297657612975612086565b5b612982878288016128dd565b91505092959194509250565b600080604083850312156129a5576129a4612081565b5b60006129b3858286016122d7565b92505060206129c4858286016122d7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a1557607f821691505b602082108103612a2857612a276129ce565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a9782612201565b9150612aa283612201565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ad757612ad6612a5d565b5b828201905092915050565b7f6e756d2065727200000000000000000000000000000000000000000000000000600082015250565b6000612b18600783612151565b9150612b2382612ae2565b602082019050919050565b60006020820190508181036000830152612b4781612b0b565b9050919050565b6000612b5982612201565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b8b57612b8a612a5d565b5b600182019050919050565b6000612ba182612201565b9150612bac83612201565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612be557612be4612a5d565b5b828202905092915050565b7f7374617475732065727200000000000000000000000000000000000000000000600082015250565b6000612c26600a83612151565b9150612c3182612bf0565b602082019050919050565b60006020820190508181036000830152612c5581612c19565b9050919050565b7f6574682065727200000000000000000000000000000000000000000000000000600082015250565b6000612c92600783612151565b9150612c9d82612c5c565b602082019050919050565b60006020820190508181036000830152612cc181612c85565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d24602f83612151565b9150612d2f82612cc8565b604082019050919050565b60006020820190508181036000830152612d5381612d17565b9050919050565b600081905092915050565b6000612d7082612146565b612d7a8185612d5a565b9350612d8a818560208601612162565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612dcc600583612d5a565b9150612dd782612d96565b600582019050919050565b6000612dee8285612d65565b9150612dfa8284612d65565b9150612e0582612dbf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e6d602683612151565b9150612e7882612e11565b604082019050919050565b60006020820190508181036000830152612e9c81612e60565b9050919050565b6000604082019050612eb86000830185612296565b612ec56020830184612296565b9392505050565b600081519050612edb816125ce565b92915050565b600060208284031215612ef757612ef6612081565b5b6000612f0584828501612ecc565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f44602083612151565b9150612f4f82612f0e565b602082019050919050565b60006020820190508181036000830152612f7381612f37565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fa182612f7a565b612fab8185612f85565b9350612fbb818560208601612162565b612fc481612195565b840191505092915050565b6000608082019050612fe46000830187612296565b612ff16020830186612296565b612ffe604083018561232c565b81810360608301526130108184612f96565b905095945050505050565b60008151905061302a816120b7565b92915050565b60006020828403121561304657613045612081565b5b60006130548482850161301b565b9150509291505056fea264697066735822122077caee898c3e109ef7a1f4f9d9333034cbf2676235da4cce6df18cf3d06c0fbe64736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000b3a0f7baa6e632344771134c8d63028b82a9da7000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656963706470766835377a6d66366d36736236676f7363716c6f366c7a75687a7172673269733661667777786b726c657073637732342f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b447265616d206d6f636869000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b447265616d206d6f636869000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806367243482116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461060b578063d5abeb0114610648578063e985e9c514610673578063f2fde38b146106b0576101cd565b8063a0712d6814610581578063a22cb4651461059d578063a2b40d19146105c6578063b88d4fde146105ef576101cd565b80637501f741116100d15780637501f741146104d55780638da5cb5b1461050057806395d89b411461052b578063a035b1fe14610556576101cd565b8063672434821461045857806370a0823114610481578063715018a6146104be576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103ab5780634779b82e146103c75780634bf365df146103f05780636352211e1461041b576101cd565b806323b872dd1461032457806339a0c6f9146103405780633ccfd60b1461036957806341f4343414610380576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102935780631e7269c5146102be57806320c63e3b146102fb576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906120e3565b6106d9565b604051610206919061212b565b60405180910390f35b34801561021b57600080fd5b5061022461076b565b60405161023191906121df565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612237565b6107fd565b60405161026e91906122a5565b60405180910390f35b610291600480360381019061028c91906122ec565b61087c565b005b34801561029f57600080fd5b506102a8610895565b6040516102b5919061233b565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612356565b6108ac565b6040516102f2919061233b565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190612237565b6108c4565b005b61033e60048036038101906103399190612383565b6108d6565b005b34801561034c57600080fd5b506103676004803603810190610362919061250b565b610925565b005b34801561037557600080fd5b5061037e610947565b005b34801561038c57600080fd5b50610395610998565b6040516103a291906125b3565b60405180910390f35b6103c560048036038101906103c09190612383565b6109aa565b005b3480156103d357600080fd5b506103ee60048036038101906103e991906125fa565b6109f9565b005b3480156103fc57600080fd5b50610405610a1e565b604051610412919061212b565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190612237565b610a31565b60405161044f91906122a5565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a91906127b2565b610a43565b005b34801561048d57600080fd5b506104a860048036038101906104a39190612356565b610b1e565b6040516104b5919061233b565b60405180910390f35b3480156104ca57600080fd5b506104d3610bd6565b005b3480156104e157600080fd5b506104ea610bea565b6040516104f7919061233b565b60405180910390f35b34801561050c57600080fd5b50610515610bf0565b60405161052291906122a5565b60405180910390f35b34801561053757600080fd5b50610540610c1a565b60405161054d91906121df565b60405180910390f35b34801561056257600080fd5b5061056b610cac565b604051610578919061233b565b60405180910390f35b61059b60048036038101906105969190612237565b610cb2565b005b3480156105a957600080fd5b506105c460048036038101906105bf919061282a565b610e9f565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190612237565b610eb8565b005b6106096004803603810190610604919061290b565b610eca565b005b34801561061757600080fd5b50610632600480360381019061062d9190612237565b610f1b565b60405161063f91906121df565b60405180910390f35b34801561065457600080fd5b5061065d610fa3565b60405161066a919061233b565b60405180910390f35b34801561067f57600080fd5b5061069a6004803603810190610695919061298e565b610fa9565b6040516106a7919061212b565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612356565b61103d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077a906129fd565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906129fd565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b6000610808826110c0565b61083e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108868161111f565b610890838361121c565b505050565b600061089f611360565b6001546000540303905090565b600e6020528060005260406000206000915090505481565b6108cc611369565b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610914576109133361111f565b5b61091f8484846113e7565b50505050565b61092d611369565b8060099080519060200190610943929190611fd4565b5050565b61094f611369565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610995573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e8576109e73361111f565b5b6109f3848484611709565b50505050565b610a01611369565b80600d60006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900460ff1681565b6000610a3c82611729565b9050919050565b610a4b611369565b8051825114610a5957600080fd5b60005b8251811015610b19576000828281518110610a7a57610a79612a2e565b5b602002602001015190506000848381518110610a9957610a98612a2e565b5b60200260200101519050600a5482610aaf610895565b610ab99190612a8c565b1115610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190612b2e565b60405180910390fd5b610b0481836117f5565b50508080610b1190612b4e565b915050610a5c565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b85576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bde611369565b610be86000611813565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c29906129fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610c55906129fd565b8015610ca25780601f10610c7757610100808354040283529160200191610ca2565b820191906000526020600020905b815481529060010190602001808311610c8557829003601f168201915b5050505050905090565b600c5481565b6000600c5482610cc29190612b96565b9050600d60009054906101000a900460ff16610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612c3c565b60405180910390fd5b803414610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90612ca8565b60405180910390fd5b600b5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610da39190612a8c565b1115610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90612b2e565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e339190612a8c565b92505081905550600a5482610e46610895565b610e509190612a8c565b1115610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890612b2e565b60405180910390fd5b610e9b33836117f5565b5050565b81610ea98161111f565b610eb383836118d9565b505050565b610ec0611369565b80600c8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f0857610f073361111f565b5b610f14858585856119e4565b5050505050565b6060610f26826110c0565b610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90612d3a565b60405180910390fd5b6000610f6f611a57565b905080610f7b84611ae9565b604051602001610f8c929190612de2565b604051602081830303815290604052915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611045611369565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612e83565b60405180910390fd5b6110bd81611813565b50565b6000816110cb611360565b111580156110da575060005482105b8015611118575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611219576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611196929190612ea3565b602060405180830381865afa1580156111b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d79190612ee1565b61121857806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161120f91906122a5565b60405180910390fd5b5b50565b600061122782610a31565b90508073ffffffffffffffffffffffffffffffffffffffff16611248611b39565b73ffffffffffffffffffffffffffffffffffffffff16146112ab576112748161126f611b39565b610fa9565b6112aa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b611371611b41565b73ffffffffffffffffffffffffffffffffffffffff1661138f610bf0565b73ffffffffffffffffffffffffffffffffffffffff16146113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90612f5a565b60405180910390fd5b565b60006113f282611729565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611459576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061146584611b49565b9150915061147b8187611476611b39565b611b70565b6114c7576114908661148b611b39565b610fa9565b6114c6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361152d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153a8686866001611bb4565b801561154557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611613856115ef888887611bba565b7c020000000000000000000000000000000000000000000000000000000017611be2565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116995760006001850190506000600460008381526020019081526020016000205403611697576000548114611696578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117018686866001611c0d565b505050505050565b61172483838360405180602001604052806000815250610eca565b505050565b60008082905080611738611360565b116117be576000548110156117bd5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117bb575b600081036117b1576004600083600190039350838152602001908152602001600020549050611787565b80925050506117f0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61180f828260405180602001604052806000815250611c13565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006118e6611b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611993611b39565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d8919061212b565b60405180910390a35050565b6119ef8484846108d6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a5157611a1a84848484611cb0565b611a50576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611a66906129fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611a92906129fd565b8015611adf5780601f10611ab457610100808354040283529160200191611adf565b820191906000526020600020905b815481529060010190602001808311611ac257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611b2457600184039350600a81066030018453600a8104905080611b02575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bd1868684611e00565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c1d8383611e09565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cab57600080549050600083820390505b611c5d6000868380600101945086611cb0565b611c93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c4a578160005414611ca857600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cd6611b39565b8786866040518563ffffffff1660e01b8152600401611cf89493929190612fcf565b6020604051808303816000875af1925050508015611d3457506040513d601f19601f82011682018060405250810190611d319190613030565b60015b611dad573d8060008114611d64576040519150601f19603f3d011682016040523d82523d6000602084013e611d69565b606091505b506000815103611da5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611e49576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e566000848385611bb4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ecd83611ebe6000866000611bba565b611ec785611fc4565b17611be2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f6e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f33565b5060008203611fa9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fbf6000848385611c0d565b505050565b60006001821460e11b9050919050565b828054611fe0906129fd565b90600052602060002090601f0160209004810192826120025760008555612049565b82601f1061201b57805160ff1916838001178555612049565b82800160010185558215612049579182015b8281111561204857825182559160200191906001019061202d565b5b509050612056919061205a565b5090565b5b8082111561207357600081600090555060010161205b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120c08161208b565b81146120cb57600080fd5b50565b6000813590506120dd816120b7565b92915050565b6000602082840312156120f9576120f8612081565b5b6000612107848285016120ce565b91505092915050565b60008115159050919050565b61212581612110565b82525050565b6000602082019050612140600083018461211c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612180578082015181840152602081019050612165565b8381111561218f576000848401525b50505050565b6000601f19601f8301169050919050565b60006121b182612146565b6121bb8185612151565b93506121cb818560208601612162565b6121d481612195565b840191505092915050565b600060208201905081810360008301526121f981846121a6565b905092915050565b6000819050919050565b61221481612201565b811461221f57600080fd5b50565b6000813590506122318161220b565b92915050565b60006020828403121561224d5761224c612081565b5b600061225b84828501612222565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061228f82612264565b9050919050565b61229f81612284565b82525050565b60006020820190506122ba6000830184612296565b92915050565b6122c981612284565b81146122d457600080fd5b50565b6000813590506122e6816122c0565b92915050565b6000806040838503121561230357612302612081565b5b6000612311858286016122d7565b925050602061232285828601612222565b9150509250929050565b61233581612201565b82525050565b6000602082019050612350600083018461232c565b92915050565b60006020828403121561236c5761236b612081565b5b600061237a848285016122d7565b91505092915050565b60008060006060848603121561239c5761239b612081565b5b60006123aa868287016122d7565b93505060206123bb868287016122d7565b92505060406123cc86828701612222565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61241882612195565b810181811067ffffffffffffffff82111715612437576124366123e0565b5b80604052505050565b600061244a612077565b9050612456828261240f565b919050565b600067ffffffffffffffff821115612476576124756123e0565b5b61247f82612195565b9050602081019050919050565b82818337600083830152505050565b60006124ae6124a98461245b565b612440565b9050828152602081018484840111156124ca576124c96123db565b5b6124d584828561248c565b509392505050565b600082601f8301126124f2576124f16123d6565b5b813561250284826020860161249b565b91505092915050565b60006020828403121561252157612520612081565b5b600082013567ffffffffffffffff81111561253f5761253e612086565b5b61254b848285016124dd565b91505092915050565b6000819050919050565b600061257961257461256f84612264565b612554565b612264565b9050919050565b600061258b8261255e565b9050919050565b600061259d82612580565b9050919050565b6125ad81612592565b82525050565b60006020820190506125c860008301846125a4565b92915050565b6125d781612110565b81146125e257600080fd5b50565b6000813590506125f4816125ce565b92915050565b6000602082840312156126105761260f612081565b5b600061261e848285016125e5565b91505092915050565b600067ffffffffffffffff821115612642576126416123e0565b5b602082029050602081019050919050565b600080fd5b600061266b61266684612627565b612440565b9050808382526020820190506020840283018581111561268e5761268d612653565b5b835b818110156126b757806126a388826122d7565b845260208401935050602081019050612690565b5050509392505050565b600082601f8301126126d6576126d56123d6565b5b81356126e6848260208601612658565b91505092915050565b600067ffffffffffffffff82111561270a576127096123e0565b5b602082029050602081019050919050565b600061272e612729846126ef565b612440565b9050808382526020820190506020840283018581111561275157612750612653565b5b835b8181101561277a57806127668882612222565b845260208401935050602081019050612753565b5050509392505050565b600082601f830112612799576127986123d6565b5b81356127a984826020860161271b565b91505092915050565b600080604083850312156127c9576127c8612081565b5b600083013567ffffffffffffffff8111156127e7576127e6612086565b5b6127f3858286016126c1565b925050602083013567ffffffffffffffff81111561281457612813612086565b5b61282085828601612784565b9150509250929050565b6000806040838503121561284157612840612081565b5b600061284f858286016122d7565b9250506020612860858286016125e5565b9150509250929050565b600067ffffffffffffffff821115612885576128846123e0565b5b61288e82612195565b9050602081019050919050565b60006128ae6128a98461286a565b612440565b9050828152602081018484840111156128ca576128c96123db565b5b6128d584828561248c565b509392505050565b600082601f8301126128f2576128f16123d6565b5b813561290284826020860161289b565b91505092915050565b6000806000806080858703121561292557612924612081565b5b6000612933878288016122d7565b9450506020612944878288016122d7565b935050604061295587828801612222565b925050606085013567ffffffffffffffff81111561297657612975612086565b5b612982878288016128dd565b91505092959194509250565b600080604083850312156129a5576129a4612081565b5b60006129b3858286016122d7565b92505060206129c4858286016122d7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a1557607f821691505b602082108103612a2857612a276129ce565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a9782612201565b9150612aa283612201565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ad757612ad6612a5d565b5b828201905092915050565b7f6e756d2065727200000000000000000000000000000000000000000000000000600082015250565b6000612b18600783612151565b9150612b2382612ae2565b602082019050919050565b60006020820190508181036000830152612b4781612b0b565b9050919050565b6000612b5982612201565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b8b57612b8a612a5d565b5b600182019050919050565b6000612ba182612201565b9150612bac83612201565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612be557612be4612a5d565b5b828202905092915050565b7f7374617475732065727200000000000000000000000000000000000000000000600082015250565b6000612c26600a83612151565b9150612c3182612bf0565b602082019050919050565b60006020820190508181036000830152612c5581612c19565b9050919050565b7f6574682065727200000000000000000000000000000000000000000000000000600082015250565b6000612c92600783612151565b9150612c9d82612c5c565b602082019050919050565b60006020820190508181036000830152612cc181612c85565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d24602f83612151565b9150612d2f82612cc8565b604082019050919050565b60006020820190508181036000830152612d5381612d17565b9050919050565b600081905092915050565b6000612d7082612146565b612d7a8185612d5a565b9350612d8a818560208601612162565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612dcc600583612d5a565b9150612dd782612d96565b600582019050919050565b6000612dee8285612d65565b9150612dfa8284612d65565b9150612e0582612dbf565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e6d602683612151565b9150612e7882612e11565b604082019050919050565b60006020820190508181036000830152612e9c81612e60565b9050919050565b6000604082019050612eb86000830185612296565b612ec56020830184612296565b9392505050565b600081519050612edb816125ce565b92915050565b600060208284031215612ef757612ef6612081565b5b6000612f0584828501612ecc565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f44602083612151565b9150612f4f82612f0e565b602082019050919050565b60006020820190508181036000830152612f7381612f37565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fa182612f7a565b612fab8185612f85565b9350612fbb818560208601612162565b612fc481612195565b840191505092915050565b6000608082019050612fe46000830187612296565b612ff16020830186612296565b612ffe604083018561232c565b81810360608301526130108184612f96565b905095945050505050565b60008151905061302a816120b7565b92915050565b60006020828403121561304657613045612081565b5b60006130548482850161301b565b9150509291505056fea264697066735822122077caee898c3e109ef7a1f4f9d9333034cbf2676235da4cce6df18cf3d06c0fbe64736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000b3a0f7baa6e632344771134c8d63028b82a9da7000000000000000000000000000000000000000000000000000aa87bee5380000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656963706470766835377a6d66366d36736236676f7363716c6f366c7a75687a7172673269733661667777786b726c657073637732342f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b447265616d206d6f636869000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b447265616d206d6f636869000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : url (string): ipfs://bafybeicpdpvh57zmf6m6sb6goscqlo6lzuhzqrg2is6afwwxkrlepscw24/
Arg [1] : name (string): Dream mochi
Arg [2] : symbol (string): Dream mochi
Arg [3] : _owner (address): 0x0b3a0f7BaA6E632344771134c8D63028B82a9Da7
Arg [4] : _price (uint256): 3000000000000000

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 0000000000000000000000000b3a0f7baa6e632344771134c8d63028b82a9da7
Arg [4] : 000000000000000000000000000000000000000000000000000aa87bee538000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [6] : 697066733a2f2f6261667962656963706470766835377a6d66366d3673623667
Arg [7] : 6f7363716c6f366c7a75687a7172673269733661667777786b726c6570736377
Arg [8] : 32342f0000000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [10] : 447265616d206d6f636869000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [12] : 447265616d206d6f636869000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

70067:3659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23926:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24828:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31319:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72320:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20579:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70317:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71515:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72518:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71203:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73207:109;;;;;;;;;;;;;:::i;:::-;;3004:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72731:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71316:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70288:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26221:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73324:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21763:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59747:103;;;;;;;;;;;;;:::i;:::-;;70232:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59099:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25004:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70261:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71618:383;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72009:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71420:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72952:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70842:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70201:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32268:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60005:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23926:639;24011:4;24350:10;24335:25;;:11;:25;;;;:102;;;;24427:10;24412:25;;:11;:25;;;;24335:102;:179;;;;24504:10;24489:25;;:11;:25;;;;24335:179;24315:199;;23926:639;;;:::o;24828:100::-;24882:13;24915:5;24908:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24828:100;:::o;31319:218::-;31395:7;31420:16;31428:7;31420;:16::i;:::-;31415:64;;31445:34;;;;;;;;;;;;;;31415:64;31499:15;:24;31515:7;31499:24;;;;;;;;;;;:30;;;;;;;;;;;;31492:37;;31319:218;;;:::o;72320:190::-;72449:8;4525:30;4546:8;4525:20;:30::i;:::-;72470:32:::1;72484:8;72494:7;72470:13;:32::i;:::-;72320:190:::0;;;:::o;20579:323::-;20640:7;20868:15;:13;:15::i;:::-;20853:12;;20837:13;;:28;:46;20830:53;;20579:323;:::o;70317:41::-;;;;;;;;;;;;;;;;;:::o;71515:95::-;58985:13;:11;:13::i;:::-;71594:8:::1;71584:7;:18;;;;71515:95:::0;:::o;72518:205::-;72661:4;4353:10;4345:18;;:4;:18;;;4341:83;;4380:32;4401:10;4380:20;:32::i;:::-;4341:83;72678:37:::1;72697:4;72703:2;72707:7;72678:18;:37::i;:::-;72518:205:::0;;;;:::o;71203:105::-;58985:13;:11;:13::i;:::-;71293:7:::1;71277:13;:23;;;;;;;;;;;;:::i;:::-;;71203:105:::0;:::o;73207:109::-;58985:13;:11;:13::i;:::-;73265:10:::1;73257:28;;:51;73286:21;73257:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;73207:109::o:0;3004:143::-;3104:42;3004:143;:::o;72731:213::-;72878:4;4353:10;4345:18;;:4;:18;;;4341:83;;4380:32;4401:10;4380:20;:32::i;:::-;4341:83;72895:41:::1;72918:4;72924:2;72928:7;72895:22;:41::i;:::-;72731:213:::0;;;;:::o;71316:96::-;58985:13;:11;:13::i;:::-;71395:9:::1;71384:8;;:20;;;;;;;;;;;;;;;;;;71316:96:::0;:::o;70288:20::-;;;;;;;;;;;;;:::o;26221:152::-;26293:7;26336:27;26355:7;26336:18;:27::i;:::-;26313:52;;26221:152;;;:::o;73324:399::-;58985:13;:11;:13::i;:::-;73465:4:::1;:11;73449:5;:12;:27;73441:36;;;::::0;::::1;;73493:6;73488:228;73509:5;:12;73505:1;:16;73488:228;;;73543:11;73557:4;73562:1;73557:7;;;;;;;;:::i;:::-;;;;;;;;73543:21;;73579:12;73594:5;73600:1;73594:8;;;;;;;;:::i;:::-;;;;;;;;73579:23;;73648:9;;73641:3;73625:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;73617:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;73684:20;73694:4;73700:3;73684:9;:20::i;:::-;73528:188;;73523:3;;;;;:::i;:::-;;;;73488:228;;;;73324:399:::0;;:::o;21763:233::-;21835:7;21876:1;21859:19;;:5;:19;;;21855:60;;21887:28;;;;;;;;;;;;;;21855:60;15922:13;21933:18;:25;21952:5;21933:25;;;;;;;;;;;;;;;;:55;21926:62;;21763:233;;;:::o;59747:103::-;58985:13;:11;:13::i;:::-;59812:30:::1;59839:1;59812:18;:30::i;:::-;59747:103::o:0;70232:22::-;;;;:::o;59099:87::-;59145:7;59172:6;;;;;;;;;;;59165:13;;59099:87;:::o;25004:104::-;25060:13;25093:7;25086:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25004:104;:::o;70261:20::-;;;;:::o;71618:383::-;71671:14;71694:5;;71688:3;:11;;;;:::i;:::-;71671:28;;71718:8;;;;;;;;;;;71710:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;71773:6;71760:9;:19;71752:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;71838:7;;71831:3;71810:6;:18;71817:10;71810:18;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;:35;;71802:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71890:3;71868:6;:18;71875:10;71868:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;71935:9;;71928:3;71912:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;71904:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;71967:26;71977:10;71989:3;71967:9;:26::i;:::-;71660:341;71618:383;:::o;72009:201::-;72138:8;4525:30;4546:8;4525:20;:30::i;:::-;72159:43:::1;72183:8;72193;72159:23;:43::i;:::-;72009:201:::0;;;:::o;71420:87::-;58985:13;:11;:13::i;:::-;71493:6:::1;71485:5;:14;;;;71420:87:::0;:::o;72952:247::-;73127:4;4353:10;4345:18;;:4;:18;;;4341:83;;4380:32;4401:10;4380:20;:32::i;:::-;4341:83;73144:47:::1;73167:4;73173:2;73177:7;73186:4;73144:22;:47::i;:::-;72952:247:::0;;;;;:::o;70842:353::-;70923:13;70971:16;70979:7;70971;:16::i;:::-;70949:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;71073:21;71097:10;:8;:10::i;:::-;71073:34;;71149:7;71158:18;71168:7;71158:9;:18::i;:::-;71132:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71118:69;;;70842:353;;;:::o;70201:24::-;;;;:::o;32268:164::-;32365:4;32389:18;:25;32408:5;32389:25;;;;;;;;;;;;;;;:35;32415:8;32389:35;;;;;;;;;;;;;;;;;;;;;;;;;32382:42;;32268:164;;;;:::o;60005:201::-;58985:13;:11;:13::i;:::-;60114:1:::1;60094:22;;:8;:22;;::::0;60086:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;60170:28;60189:8;60170:18;:28::i;:::-;60005:201:::0;:::o;32690:282::-;32755:4;32811:7;32792:15;:13;:15::i;:::-;:26;;:66;;;;;32845:13;;32835:7;:23;32792:66;:153;;;;;32944:1;16698:8;32896:17;:26;32914:7;32896:26;;;;;;;;;;;;:44;:49;32792:153;32772:173;;32690:282;;;:::o;4583:419::-;4822:1;3104:42;4774:45;;;:49;4770:225;;;3104:42;4845;;;4896:4;4903:8;4845:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4840:144;;4959:8;4940:28;;;;;;;;;;;:::i;:::-;;;;;;;;4840:144;4770:225;4583:419;:::o;30752:408::-;30841:13;30857:16;30865:7;30857;:16::i;:::-;30841:32;;30913:5;30890:28;;:19;:17;:19::i;:::-;:28;;;30886:175;;30938:44;30955:5;30962:19;:17;:19::i;:::-;30938:16;:44::i;:::-;30933:128;;31010:35;;;;;;;;;;;;;;30933:128;30886:175;31106:2;31073:15;:24;31089:7;31073:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31144:7;31140:2;31124:28;;31133:5;31124:28;;;;;;;;;;;;30830:330;30752:408;;:::o;72219:93::-;72276:7;72303:1;72296:8;;72219:93;:::o;59264:132::-;59339:12;:10;:12::i;:::-;59328:23;;:7;:5;:7::i;:::-;:23;;;59320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59264:132::o;34958:2825::-;35100:27;35130;35149:7;35130:18;:27::i;:::-;35100:57;;35215:4;35174:45;;35190:19;35174:45;;;35170:86;;35228:28;;;;;;;;;;;;;;35170:86;35270:27;35299:23;35326:35;35353:7;35326:26;:35::i;:::-;35269:92;;;;35461:68;35486:15;35503:4;35509:19;:17;:19::i;:::-;35461:24;:68::i;:::-;35456:180;;35549:43;35566:4;35572:19;:17;:19::i;:::-;35549:16;:43::i;:::-;35544:92;;35601:35;;;;;;;;;;;;;;35544:92;35456:180;35667:1;35653:16;;:2;:16;;;35649:52;;35678:23;;;;;;;;;;;;;;35649:52;35714:43;35736:4;35742:2;35746:7;35755:1;35714:21;:43::i;:::-;35850:15;35847:160;;;35990:1;35969:19;35962:30;35847:160;36387:18;:24;36406:4;36387:24;;;;;;;;;;;;;;;;36385:26;;;;;;;;;;;;36456:18;:22;36475:2;36456:22;;;;;;;;;;;;;;;;36454:24;;;;;;;;;;;36778:146;36815:2;36864:45;36879:4;36885:2;36889:19;36864:14;:45::i;:::-;16978:8;36836:73;36778:18;:146::i;:::-;36749:17;:26;36767:7;36749:26;;;;;;;;;;;:175;;;;37095:1;16978:8;37044:19;:47;:52;37040:627;;37117:19;37149:1;37139:7;:11;37117:33;;37306:1;37272:17;:30;37290:11;37272:30;;;;;;;;;;;;:35;37268:384;;37410:13;;37395:11;:28;37391:242;;37590:19;37557:17;:30;37575:11;37557:30;;;;;;;;;;;:52;;;;37391:242;37268:384;37098:569;37040:627;37714:7;37710:2;37695:27;;37704:4;37695:27;;;;;;;;;;;;37733:42;37754:4;37760:2;37764:7;37773:1;37733:20;:42::i;:::-;35089:2694;;;34958:2825;;;:::o;37879:193::-;38025:39;38042:4;38048:2;38052:7;38025:39;;;;;;;;;;;;:16;:39::i;:::-;37879:193;;;:::o;27376:1275::-;27443:7;27463:12;27478:7;27463:22;;27546:4;27527:15;:13;:15::i;:::-;:23;27523:1061;;27580:13;;27573:4;:20;27569:1015;;;27618:14;27635:17;:23;27653:4;27635:23;;;;;;;;;;;;27618:40;;27752:1;16698:8;27724:6;:24;:29;27720:845;;28389:113;28406:1;28396:6;:11;28389:113;;28449:17;:25;28467:6;;;;;;;28449:25;;;;;;;;;;;;28440:34;;28389:113;;;28535:6;28528:13;;;;;;27720:845;27595:989;27569:1015;27523:1061;28612:31;;;;;;;;;;;;;;27376:1275;;;;:::o;48830:112::-;48907:27;48917:2;48921:8;48907:27;;;;;;;;;;;;:9;:27::i;:::-;48830:112;;:::o;60366:191::-;60440:16;60459:6;;;;;;;;;;;60440:25;;60485:8;60476:6;;:17;;;;;;;;;;;;;;;;;;60540:8;60509:40;;60530:8;60509:40;;;;;;;;;;;;60429:128;60366:191;:::o;31877:234::-;32024:8;31972:18;:39;31991:19;:17;:19::i;:::-;31972:39;;;;;;;;;;;;;;;:49;32012:8;31972:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32084:8;32048:55;;32063:19;:17;:19::i;:::-;32048:55;;;32094:8;32048:55;;;;;;:::i;:::-;;;;;;;;31877:234;;:::o;38670:407::-;38845:31;38858:4;38864:2;38868:7;38845:12;:31::i;:::-;38909:1;38891:2;:14;;;:19;38887:183;;38930:56;38961:4;38967:2;38971:7;38980:5;38930:30;:56::i;:::-;38925:145;;39014:40;;;;;;;;;;;;;;38925:145;38887:183;38670:407;;;;:::o;70728:106::-;70780:13;70813;70806:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70728:106;:::o;55205:1745::-;55270:17;55704:4;55697;55691:11;55687:22;55796:1;55790:4;55783:15;55871:4;55868:1;55864:12;55857:19;;55953:1;55948:3;55941:14;56057:3;56296:5;56278:428;56304:1;56278:428;;;56344:1;56339:3;56335:11;56328:18;;56515:2;56509:4;56505:13;56501:2;56497:22;56492:3;56484:36;56609:2;56603:4;56599:13;56591:21;;56676:4;56278:428;56666:25;56278:428;56282:21;56745:3;56740;56736:13;56860:4;56855:3;56851:14;56844:21;;56925:6;56920:3;56913:19;55309:1634;;;55205:1745;;;:::o;54998:105::-;55058:7;55085:10;55078:17;;54998:105;:::o;57644:98::-;57697:7;57724:10;57717:17;;57644:98;:::o;33853:485::-;33955:27;33984:23;34025:38;34066:15;:24;34082:7;34066:24;;;;;;;;;;;34025:65;;34243:18;34220:41;;34300:19;34294:26;34275:45;;34205:126;33853:485;;;:::o;33081:659::-;33230:11;33395:16;33388:5;33384:28;33375:37;;33555:16;33544:9;33540:32;33527:45;;33705:15;33694:9;33691:30;33683:5;33672:9;33669:20;33666:56;33656:66;;33081:659;;;;;:::o;39739:159::-;;;;;:::o;54307:311::-;54442:7;54462:16;17102:3;54488:19;:41;;54462:68;;17102:3;54556:31;54567:4;54573:2;54577:9;54556:10;:31::i;:::-;54548:40;;:62;;54541:69;;;54307:311;;;;;:::o;29199:450::-;29279:14;29447:16;29440:5;29436:28;29427:37;;29624:5;29610:11;29585:23;29581:41;29578:52;29571:5;29568:63;29558:73;;29199:450;;;;:::o;40563:158::-;;;;;:::o;48057:689::-;48188:19;48194:2;48198:8;48188:5;:19::i;:::-;48267:1;48249:2;:14;;;:19;48245:483;;48289:11;48303:13;;48289:27;;48335:13;48357:8;48351:3;:14;48335:30;;48384:233;48415:62;48454:1;48458:2;48462:7;;;;;;48471:5;48415:30;:62::i;:::-;48410:167;;48513:40;;;;;;;;;;;;;;48410:167;48612:3;48604:5;:11;48384:233;;48699:3;48682:13;;:20;48678:34;;48704:8;;;48678:34;48270:458;;48245:483;48057:689;;;:::o;41161:716::-;41324:4;41370:2;41345:45;;;41391:19;:17;:19::i;:::-;41412:4;41418:7;41427:5;41345:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41341:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41645:1;41628:6;:13;:18;41624:235;;41674:40;;;;;;;;;;;;;;41624:235;41817:6;41811:13;41802:6;41798:2;41794:15;41787:38;41341:529;41514:54;;;41504:64;;;:6;:64;;;;41497:71;;;41161:716;;;;;;:::o;54008:147::-;54145:6;54008:147;;;;;:::o;42339:2966::-;42412:20;42435:13;;42412:36;;42475:1;42463:8;:13;42459:44;;42485:18;;;;;;;;;;;;;;42459:44;42516:61;42546:1;42550:2;42554:12;42568:8;42516:21;:61::i;:::-;43060:1;16060:2;43030:1;:26;;43029:32;43017:8;:45;42991:18;:22;43010:2;42991:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43339:139;43376:2;43430:33;43453:1;43457:2;43461:1;43430:14;:33::i;:::-;43397:30;43418:8;43397:20;:30::i;:::-;:66;43339:18;:139::i;:::-;43305:17;:31;43323:12;43305:31;;;;;;;;;;;:173;;;;43495:16;43526:11;43555:8;43540:12;:23;43526:37;;44076:16;44072:2;44068:25;44056:37;;44448:12;44408:8;44367:1;44305:25;44246:1;44185;44158:335;44819:1;44805:12;44801:20;44759:346;44860:3;44851:7;44848:16;44759:346;;45078:7;45068:8;45065:1;45038:25;45035:1;45032;45027:59;44913:1;44904:7;44900:15;44889:26;;44759:346;;;44763:77;45150:1;45138:8;:13;45134:45;;45160:19;;;;;;;;;;;;;;45134:45;45212:3;45196:13;:19;;;;42765:2462;;45237:60;45266:1;45270:2;45274:12;45288:8;45237:20;:60::i;:::-;42401:2904;42339:2966;;:::o;29751:324::-;29821:14;30054:1;30044:8;30041:15;30015:24;30011:46;30001:56;;29751:324;;;:::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:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:60::-;8899:3;8920:5;8913:12;;8871:60;;;:::o;8937:142::-;8987:9;9020:53;9038:34;9047:24;9065:5;9047:24;:::i;:::-;9038:34;:::i;:::-;9020:53;:::i;:::-;9007:66;;8937:142;;;:::o;9085:126::-;9135:9;9168:37;9199:5;9168:37;:::i;:::-;9155:50;;9085:126;;;:::o;9217:157::-;9298:9;9331:37;9362:5;9331:37;:::i;:::-;9318:50;;9217:157;;;:::o;9380:193::-;9498:68;9560:5;9498:68;:::i;:::-;9493:3;9486:81;9380:193;;:::o;9579:284::-;9703:4;9741:2;9730:9;9726:18;9718:26;;9754:102;9853:1;9842:9;9838:17;9829:6;9754:102;:::i;:::-;9579:284;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:323::-;10186:6;10235:2;10223:9;10214:7;10210:23;10206:32;10203:119;;;10241:79;;:::i;:::-;10203:119;10361:1;10386:50;10428:7;10419:6;10408:9;10404:22;10386:50;:::i;:::-;10376:60;;10332:114;10130:323;;;;:::o;10459:311::-;10536:4;10626:18;10618:6;10615:30;10612:56;;;10648:18;;:::i;:::-;10612:56;10698:4;10690:6;10686:17;10678:25;;10758:4;10752;10748:15;10740:23;;10459:311;;;:::o;10776:117::-;10885:1;10882;10875:12;10916:710;11012:5;11037:81;11053:64;11110:6;11053:64;:::i;:::-;11037:81;:::i;:::-;11028:90;;11138:5;11167:6;11160:5;11153:21;11201:4;11194:5;11190:16;11183:23;;11254:4;11246:6;11242:17;11234:6;11230:30;11283:3;11275:6;11272:15;11269:122;;;11302:79;;:::i;:::-;11269:122;11417:6;11400:220;11434:6;11429:3;11426:15;11400:220;;;11509:3;11538:37;11571:3;11559:10;11538:37;:::i;:::-;11533:3;11526:50;11605:4;11600:3;11596:14;11589:21;;11476:144;11460:4;11455:3;11451:14;11444:21;;11400:220;;;11404:21;11018:608;;10916:710;;;;;:::o;11649:370::-;11720:5;11769:3;11762:4;11754:6;11750:17;11746:27;11736:122;;11777:79;;:::i;:::-;11736:122;11894:6;11881:20;11919:94;12009:3;12001:6;11994:4;11986:6;11982:17;11919:94;:::i;:::-;11910:103;;11726:293;11649:370;;;;:::o;12025:311::-;12102:4;12192:18;12184:6;12181:30;12178:56;;;12214:18;;:::i;:::-;12178:56;12264:4;12256:6;12252:17;12244:25;;12324:4;12318;12314:15;12306:23;;12025:311;;;:::o;12359:710::-;12455:5;12480:81;12496:64;12553:6;12496:64;:::i;:::-;12480:81;:::i;:::-;12471:90;;12581:5;12610:6;12603:5;12596:21;12644:4;12637:5;12633:16;12626:23;;12697:4;12689:6;12685:17;12677:6;12673:30;12726:3;12718:6;12715:15;12712:122;;;12745:79;;:::i;:::-;12712:122;12860:6;12843:220;12877:6;12872:3;12869:15;12843:220;;;12952:3;12981:37;13014:3;13002:10;12981:37;:::i;:::-;12976:3;12969:50;13048:4;13043:3;13039:14;13032:21;;12919:144;12903:4;12898:3;12894:14;12887:21;;12843:220;;;12847:21;12461:608;;12359:710;;;;;:::o;13092:370::-;13163:5;13212:3;13205:4;13197:6;13193:17;13189:27;13179:122;;13220:79;;:::i;:::-;13179:122;13337:6;13324:20;13362:94;13452:3;13444:6;13437:4;13429:6;13425:17;13362:94;:::i;:::-;13353:103;;13169:293;13092:370;;;;:::o;13468:894::-;13586:6;13594;13643:2;13631:9;13622:7;13618:23;13614:32;13611:119;;;13649:79;;:::i;:::-;13611:119;13797:1;13786:9;13782:17;13769:31;13827:18;13819:6;13816:30;13813:117;;;13849:79;;:::i;:::-;13813:117;13954:78;14024:7;14015:6;14004:9;14000:22;13954:78;:::i;:::-;13944:88;;13740:302;14109:2;14098:9;14094:18;14081:32;14140:18;14132:6;14129:30;14126:117;;;14162:79;;:::i;:::-;14126:117;14267:78;14337:7;14328:6;14317:9;14313:22;14267:78;:::i;:::-;14257:88;;14052:303;13468:894;;;;;:::o;14368:468::-;14433:6;14441;14490:2;14478:9;14469:7;14465:23;14461:32;14458:119;;;14496:79;;:::i;:::-;14458:119;14616:1;14641:53;14686:7;14677:6;14666:9;14662:22;14641:53;:::i;:::-;14631:63;;14587:117;14743:2;14769:50;14811:7;14802:6;14791:9;14787:22;14769:50;:::i;:::-;14759:60;;14714:115;14368:468;;;;;:::o;14842:307::-;14903:4;14993:18;14985:6;14982:30;14979:56;;;15015:18;;:::i;:::-;14979:56;15053:29;15075:6;15053:29;:::i;:::-;15045:37;;15137:4;15131;15127:15;15119:23;;14842:307;;;:::o;15155:410::-;15232:5;15257:65;15273:48;15314:6;15273:48;:::i;:::-;15257:65;:::i;:::-;15248:74;;15345:6;15338:5;15331:21;15383:4;15376:5;15372:16;15421:3;15412:6;15407:3;15403:16;15400:25;15397:112;;;15428:79;;:::i;:::-;15397:112;15518:41;15552:6;15547:3;15542;15518:41;:::i;:::-;15238:327;15155:410;;;;;:::o;15584:338::-;15639:5;15688:3;15681:4;15673:6;15669:17;15665:27;15655:122;;15696:79;;:::i;:::-;15655:122;15813:6;15800:20;15838:78;15912:3;15904:6;15897:4;15889:6;15885:17;15838:78;:::i;:::-;15829:87;;15645:277;15584:338;;;;:::o;15928:943::-;16023:6;16031;16039;16047;16096:3;16084:9;16075:7;16071:23;16067:33;16064:120;;;16103:79;;:::i;:::-;16064:120;16223:1;16248:53;16293:7;16284:6;16273:9;16269:22;16248:53;:::i;:::-;16238:63;;16194:117;16350:2;16376:53;16421:7;16412:6;16401:9;16397:22;16376:53;:::i;:::-;16366:63;;16321:118;16478:2;16504:53;16549:7;16540:6;16529:9;16525:22;16504:53;:::i;:::-;16494:63;;16449:118;16634:2;16623:9;16619:18;16606:32;16665:18;16657:6;16654:30;16651:117;;;16687:79;;:::i;:::-;16651:117;16792:62;16846:7;16837:6;16826:9;16822:22;16792:62;:::i;:::-;16782:72;;16577:287;15928:943;;;;;;;:::o;16877:474::-;16945:6;16953;17002:2;16990:9;16981:7;16977:23;16973:32;16970:119;;;17008:79;;:::i;:::-;16970:119;17128:1;17153:53;17198:7;17189:6;17178:9;17174:22;17153:53;:::i;:::-;17143:63;;17099:117;17255:2;17281:53;17326:7;17317:6;17306:9;17302:22;17281:53;:::i;:::-;17271:63;;17226:118;16877:474;;;;;:::o;17357:180::-;17405:77;17402:1;17395:88;17502:4;17499:1;17492:15;17526:4;17523:1;17516:15;17543:320;17587:6;17624:1;17618:4;17614:12;17604:22;;17671:1;17665:4;17661:12;17692:18;17682:81;;17748:4;17740:6;17736:17;17726:27;;17682:81;17810:2;17802:6;17799:14;17779:18;17776:38;17773:84;;17829:18;;:::i;:::-;17773:84;17594:269;17543:320;;;:::o;17869:180::-;17917:77;17914:1;17907:88;18014:4;18011:1;18004:15;18038:4;18035:1;18028:15;18055:180;18103:77;18100:1;18093:88;18200:4;18197:1;18190:15;18224:4;18221:1;18214:15;18241:305;18281:3;18300:20;18318:1;18300:20;:::i;:::-;18295:25;;18334:20;18352:1;18334:20;:::i;:::-;18329:25;;18488:1;18420:66;18416:74;18413:1;18410:81;18407:107;;;18494:18;;:::i;:::-;18407:107;18538:1;18535;18531:9;18524:16;;18241:305;;;;:::o;18552:157::-;18692:9;18688:1;18680:6;18676:14;18669:33;18552:157;:::o;18715:365::-;18857:3;18878:66;18942:1;18937:3;18878:66;:::i;:::-;18871:73;;18953:93;19042:3;18953:93;:::i;:::-;19071:2;19066:3;19062:12;19055:19;;18715:365;;;:::o;19086:419::-;19252:4;19290:2;19279:9;19275:18;19267:26;;19339:9;19333:4;19329:20;19325:1;19314:9;19310:17;19303:47;19367:131;19493:4;19367:131;:::i;:::-;19359:139;;19086:419;;;:::o;19511:233::-;19550:3;19573:24;19591:5;19573:24;:::i;:::-;19564:33;;19619:66;19612:5;19609:77;19606:103;;19689:18;;:::i;:::-;19606:103;19736:1;19729:5;19725:13;19718:20;;19511:233;;;:::o;19750:348::-;19790:7;19813:20;19831:1;19813:20;:::i;:::-;19808:25;;19847:20;19865:1;19847:20;:::i;:::-;19842:25;;20035:1;19967:66;19963:74;19960:1;19957:81;19952:1;19945:9;19938:17;19934:105;19931:131;;;20042:18;;:::i;:::-;19931:131;20090:1;20087;20083:9;20072:20;;19750:348;;;;:::o;20104:160::-;20244:12;20240:1;20232:6;20228:14;20221:36;20104:160;:::o;20270:366::-;20412:3;20433:67;20497:2;20492:3;20433:67;:::i;:::-;20426:74;;20509:93;20598:3;20509:93;:::i;:::-;20627:2;20622:3;20618:12;20611:19;;20270:366;;;:::o;20642:419::-;20808:4;20846:2;20835:9;20831:18;20823:26;;20895:9;20889:4;20885:20;20881:1;20870:9;20866:17;20859:47;20923:131;21049:4;20923:131;:::i;:::-;20915:139;;20642:419;;;:::o;21067:157::-;21207:9;21203:1;21195:6;21191:14;21184:33;21067:157;:::o;21230:365::-;21372:3;21393:66;21457:1;21452:3;21393:66;:::i;:::-;21386:73;;21468:93;21557:3;21468:93;:::i;:::-;21586:2;21581:3;21577:12;21570:19;;21230:365;;;:::o;21601:419::-;21767:4;21805:2;21794:9;21790:18;21782:26;;21854:9;21848:4;21844:20;21840:1;21829:9;21825:17;21818:47;21882:131;22008:4;21882:131;:::i;:::-;21874:139;;21601:419;;;:::o;22026:234::-;22166:34;22162:1;22154:6;22150:14;22143:58;22235:17;22230:2;22222:6;22218:15;22211:42;22026:234;:::o;22266:366::-;22408:3;22429:67;22493:2;22488:3;22429:67;:::i;:::-;22422:74;;22505:93;22594:3;22505:93;:::i;:::-;22623:2;22618:3;22614:12;22607:19;;22266:366;;;:::o;22638:419::-;22804:4;22842:2;22831:9;22827:18;22819:26;;22891:9;22885:4;22881:20;22877:1;22866:9;22862:17;22855:47;22919:131;23045:4;22919:131;:::i;:::-;22911:139;;22638:419;;;:::o;23063:148::-;23165:11;23202:3;23187:18;;23063:148;;;;:::o;23217:377::-;23323:3;23351:39;23384:5;23351:39;:::i;:::-;23406:89;23488:6;23483:3;23406:89;:::i;:::-;23399:96;;23504:52;23549:6;23544:3;23537:4;23530:5;23526:16;23504:52;:::i;:::-;23581:6;23576:3;23572:16;23565:23;;23327:267;23217:377;;;;:::o;23600:155::-;23740:7;23736:1;23728:6;23724:14;23717:31;23600:155;:::o;23761:400::-;23921:3;23942:84;24024:1;24019:3;23942:84;:::i;:::-;23935:91;;24035:93;24124:3;24035:93;:::i;:::-;24153:1;24148:3;24144:11;24137:18;;23761:400;;;:::o;24167:701::-;24448:3;24470:95;24561:3;24552:6;24470:95;:::i;:::-;24463:102;;24582:95;24673:3;24664:6;24582:95;:::i;:::-;24575:102;;24694:148;24838:3;24694:148;:::i;:::-;24687:155;;24859:3;24852:10;;24167:701;;;;;:::o;24874:225::-;25014:34;25010:1;25002:6;24998:14;24991:58;25083:8;25078:2;25070:6;25066:15;25059:33;24874:225;:::o;25105:366::-;25247:3;25268:67;25332:2;25327:3;25268:67;:::i;:::-;25261:74;;25344:93;25433:3;25344:93;:::i;:::-;25462:2;25457:3;25453:12;25446:19;;25105:366;;;:::o;25477:419::-;25643:4;25681:2;25670:9;25666:18;25658:26;;25730:9;25724:4;25720:20;25716:1;25705:9;25701:17;25694:47;25758:131;25884:4;25758:131;:::i;:::-;25750:139;;25477:419;;;:::o;25902:332::-;26023:4;26061:2;26050:9;26046:18;26038:26;;26074:71;26142:1;26131:9;26127:17;26118:6;26074:71;:::i;:::-;26155:72;26223:2;26212:9;26208:18;26199:6;26155:72;:::i;:::-;25902:332;;;;;:::o;26240:137::-;26294:5;26325:6;26319:13;26310:22;;26341:30;26365:5;26341:30;:::i;:::-;26240:137;;;;:::o;26383:345::-;26450:6;26499:2;26487:9;26478:7;26474:23;26470:32;26467:119;;;26505:79;;:::i;:::-;26467:119;26625:1;26650:61;26703:7;26694:6;26683:9;26679:22;26650:61;:::i;:::-;26640:71;;26596:125;26383:345;;;;:::o;26734:182::-;26874:34;26870:1;26862:6;26858:14;26851:58;26734:182;:::o;26922:366::-;27064:3;27085:67;27149:2;27144:3;27085:67;:::i;:::-;27078:74;;27161:93;27250:3;27161:93;:::i;:::-;27279:2;27274:3;27270:12;27263:19;;26922:366;;;:::o;27294:419::-;27460:4;27498:2;27487:9;27483:18;27475:26;;27547:9;27541:4;27537:20;27533:1;27522:9;27518:17;27511:47;27575:131;27701:4;27575:131;:::i;:::-;27567:139;;27294:419;;;:::o;27719:98::-;27770:6;27804:5;27798:12;27788:22;;27719:98;;;:::o;27823:168::-;27906:11;27940:6;27935:3;27928:19;27980:4;27975:3;27971:14;27956:29;;27823:168;;;;:::o;27997:360::-;28083:3;28111:38;28143:5;28111:38;:::i;:::-;28165:70;28228:6;28223:3;28165:70;:::i;:::-;28158:77;;28244:52;28289:6;28284:3;28277:4;28270:5;28266:16;28244:52;:::i;:::-;28321:29;28343:6;28321:29;:::i;:::-;28316:3;28312:39;28305:46;;28087:270;27997:360;;;;:::o;28363:640::-;28558:4;28596:3;28585:9;28581:19;28573:27;;28610:71;28678:1;28667:9;28663:17;28654:6;28610:71;:::i;:::-;28691:72;28759:2;28748:9;28744:18;28735:6;28691:72;:::i;:::-;28773;28841:2;28830:9;28826:18;28817:6;28773:72;:::i;:::-;28892:9;28886:4;28882:20;28877:2;28866:9;28862:18;28855:48;28920:76;28991:4;28982:6;28920:76;:::i;:::-;28912:84;;28363:640;;;;;;;:::o;29009:141::-;29065:5;29096:6;29090:13;29081:22;;29112:32;29138:5;29112:32;:::i;:::-;29009:141;;;;:::o;29156:349::-;29225:6;29274:2;29262:9;29253:7;29249:23;29245:32;29242:119;;;29280:79;;:::i;:::-;29242:119;29400:1;29425:63;29480:7;29471:6;29460:9;29456:22;29425:63;:::i;:::-;29415:73;;29371:127;29156:349;;;;:::o

Swarm Source

ipfs://77caee898c3e109ef7a1f4f9d9333034cbf2676235da4cce6df18cf3d06c0fbe
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.