ETH Price: $2,306.00 (-0.54%)

OnePiece (OP)
 

Overview

TokenID

3587

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

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

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-24
*/

// SPDX-License-Identifier: MIT
// File: contracts/onepiece/IOperatorFilterRegistry.sol


pragma solidity ^0.8.0;

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: contracts/onepiece/OperatorFilterer.sol


pragma solidity ^0.8.0;


/**
 * @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: contracts/onepiece/DefaultOperatorFilterer.sol


pragma solidity ^0.8.0;


/**
 * @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/IERC721A.sol


// 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/ERC721A.sol


// 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/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/onepiece/OnePiece.sol


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

pragma solidity ^0.8.0;








contract OnePiece is ERC721A, ERC2981, Ownable, DefaultOperatorFilterer {
    using SafeMath for uint256;

    uint256 public constant MAX_SUPPLY = 21000000;
    uint256 public constant FREE_SUPPLY = 1;
    uint256 public constant PAID_SUPPLY = 10;

    uint256 private _flag;
    string private _baseTokenURI = "";

    mapping(address => bool) private _hasMinted;

    event NewMint(address indexed msgSender, uint256 indexed mintQuantity);

    constructor() ERC721A("OnePiece", "OP") {
        _setDefaultRoyalty(msg.sender, 250);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981)
    returns (bool) {
      return super.supportsInterface(interfaceId);
    }

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

    function transferOut(address _to) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(_to).transfer(balance);
    }

    function changeTokenURIFlag(uint256 flag) external onlyOwner {
        _flag = flag;
    }

    function changeURI(string calldata _tokenURI) external onlyOwner {
        _baseTokenURI = _tokenURI;
    }

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

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        if (_flag == 0) {
            return "https://ipfs.io/ipfs/QmU9PrTNyRPuXVPFfqxXe57CHM1vRZoxxuYNa4tsvgjrmX";
        } else {
            require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
            return string(abi.encodePacked(_baseTokenURI, Strings.toString(tokenId)));
        }
    }

    function mint(uint256 quantity) public payable {
        require(totalSupply() + quantity <= MAX_SUPPLY, "ERC721: Exceeds maximum supply");
        require(quantity == FREE_SUPPLY || quantity == PAID_SUPPLY, "ERC721: Invalid quantity");

        if (quantity == FREE_SUPPLY) {
            _safeMint(msg.sender,quantity);
        } else {
            require(msg.value >= 0.0001 ether, "ERC721: Insufficient payment");
            _safeMint(msg.sender,quantity);
        }

        
        emit NewMint(msg.sender, quantity);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"msgSender","type":"address"},{"indexed":true,"internalType":"uint256","name":"mintQuantity","type":"uint256"}],"name":"NewMint","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":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"flag","type":"uint256"}],"name":"changeTokenURIFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"changeURI","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_to","type":"address"}],"name":"transferOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b929190620005bc565b503480156200003957600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600881526020017f4f6e6550696563650000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4f500000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d5929190620005bc565b508060039080519060200190620000ee929190620005bc565b50620000ff6200033760201b60201c565b6000819055505050620001276200011b6200034060201b60201c565b6200034860201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200031c578015620001e2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001a8929190620006e8565b600060405180830381600087803b158015620001c357600080fd5b505af1158015620001d8573d6000803e3d6000fd5b505050506200031b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200029c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b815260040162000262929190620006e8565b600060405180830381600087803b1580156200027d57600080fd5b505af115801562000292573d6000803e3d6000fd5b505050506200031a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e59190620006cb565b600060405180830381600087803b1580156200030057600080fd5b505af115801562000315573d6000803e3d6000fd5b505050505b5b5b5050620003313360fa6200040e60201b60201c565b6200087b565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200041e620005b260201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200047f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004769062000715565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e99062000737565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b828054620005ca906200079e565b90600052602060002090601f016020900481019282620005ee57600085556200063a565b82601f106200060957805160ff19168380011785556200063a565b828001600101855582156200063a579182015b82811115620006395782518255916020019190600101906200061c565b5b5090506200064991906200064d565b5090565b5b80821115620006685760008160009055506001016200064e565b5090565b62000677816200076a565b82525050565b60006200068c602a8362000759565b9150620006998262000803565b604082019050919050565b6000620006b360198362000759565b9150620006c08262000852565b602082019050919050565b6000602082019050620006e260008301846200066c565b92915050565b6000604082019050620006ff60008301856200066c565b6200070e60208301846200066c565b9392505050565b6000602082019050818103600083015262000730816200067d565b9050919050565b600060208201905081810360008301526200075281620006a4565b9050919050565b600082825260208201905092915050565b600062000777826200077e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620007b757607f821691505b60208210811415620007ce57620007cd620007d4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b612f5e806200088b6000396000f3fe6080604052600436106101815760003560e01c8063715018a6116100d1578063a22cb4651161008a578063e5e01c1111610064578063e5e01c1114610540578063e985e9c514610569578063f2fde38b146105a6578063fe878b1d146105cf57610181565b8063a22cb465146104be578063b88d4fde146104e7578063c87b56dd1461050357610181565b8063715018a6146103e15780638da5cb5b146103f857806395d89b41146104235780639858cf191461044e5780639894ba7c14610479578063a0712d68146104a257610181565b80632a55205a1161013e57806342842e0e1161011857806342842e0e14610322578063528c06cc1461033e5780636352211e1461036757806370a08231146103a457610181565b80632a55205a1461028e57806332cb6b0c146102cc57806341f43434146102f757610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461024757806323b872dd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612376565b6105fa565b6040516101ba919061276e565b60405180910390f35b3480156101cf57600080fd5b506101d861060c565b6040516101e591906127a4565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061241d565b61069e565b60405161022291906126de565b60405180910390f35b61024560048036038101906102409190612336565b61071d565b005b34801561025357600080fd5b5061025c610861565b6040516102699190612886565b60405180910390f35b61028c60048036038101906102879190612220565b610878565b005b34801561029a57600080fd5b506102b560048036038101906102b0919061244a565b610b9d565b6040516102c3929190612745565b60405180910390f35b3480156102d857600080fd5b506102e1610d88565b6040516102ee9190612886565b60405180910390f35b34801561030357600080fd5b5061030c610d90565b6040516103199190612789565b60405180910390f35b61033c60048036038101906103379190612220565b610da2565b005b34801561034a57600080fd5b506103656004803603810190610360919061241d565b610dc2565b005b34801561037357600080fd5b5061038e6004803603810190610389919061241d565b610e48565b60405161039b91906126de565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906121b3565b610e5a565b6040516103d89190612886565b60405180910390f35b3480156103ed57600080fd5b506103f6610f13565b005b34801561040457600080fd5b5061040d610f9b565b60405161041a91906126de565b60405180910390f35b34801561042f57600080fd5b50610438610fc5565b60405161044591906127a4565b60405180910390f35b34801561045a57600080fd5b50610463611057565b6040516104709190612886565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906121b3565b61105c565b005b6104bc60048036038101906104b7919061241d565b611128565b005b3480156104ca57600080fd5b506104e560048036038101906104e091906122f6565b611282565b005b61050160048036038101906104fc9190612273565b61138d565b005b34801561050f57600080fd5b5061052a6004803603810190610525919061241d565b611400565b60405161053791906127a4565b60405180910390f35b34801561054c57600080fd5b50610567600480360381019061056291906123d0565b6114a8565b005b34801561057557600080fd5b50610590600480360381019061058b91906121e0565b61153a565b60405161059d919061276e565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906121b3565b6115ce565b005b3480156105db57600080fd5b506105e46116c6565b6040516105f19190612886565b60405180910390f35b6000610605826116cb565b9050919050565b60606002805461061b90612b50565b80601f016020809104026020016040519081016040528092919081815260200182805461064790612b50565b80156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b60006106a982611745565b6106df576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072882610e48565b90508073ffffffffffffffffffffffffffffffffffffffff166107496117a4565b73ffffffffffffffffffffffffffffffffffffffff16146107ac57610775816107706117a4565b61153a565b6107ab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061086b6117ac565b6001546000540303905090565b6000610883826117b5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ea576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108f684611883565b9150915061090c81876109076117a4565b6118aa565b610958576109218661091c6117a4565b61153a565b610957576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156109bf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109cc86868660016118ee565b80156109d757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610aa585610a818888876118f4565b7c02000000000000000000000000000000000000000000000000000000001761191c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b2d576000600185019050600060046000838152602001908152602001600020541415610b2b576000548114610b2a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b958686866001611947565b505050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610d335760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610d3d61194d565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610d6991906129d6565b610d7391906129a5565b90508160000151819350935050509250929050565b6301406f4081565b6daaeb6d7670e522a718067333cd4e81565b610dbd8383836040518060200160405280600081525061138d565b505050565b610dca611957565b73ffffffffffffffffffffffffffffffffffffffff16610de8610f9b565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612826565b60405180910390fd5b80600b8190555050565b6000610e53826117b5565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f1b611957565b73ffffffffffffffffffffffffffffffffffffffff16610f39610f9b565b73ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690612826565b60405180910390fd5b610f99600061195f565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fd490612b50565b80601f016020809104026020016040519081016040528092919081815260200182805461100090612b50565b801561104d5780601f106110225761010080835404028352916020019161104d565b820191906000526020600020905b81548152906001019060200180831161103057829003601f168201915b5050505050905090565b600181565b611064611957565b73ffffffffffffffffffffffffffffffffffffffff16611082610f9b565b73ffffffffffffffffffffffffffffffffffffffff16146110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90612826565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611123573d6000803e3d6000fd5b505050565b6301406f4081611136610861565b611140919061294f565b1115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890612806565b60405180910390fd5b60018114806111905750600a81145b6111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690612866565b60405180910390fd5b60018114156111e7576111e23382611a25565b61123b565b655af3107a4000341015611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906127e6565b60405180910390fd5b61123a3382611a25565b5b803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b806007600061128f6117a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133c6117a4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611381919061276e565b60405180910390a35050565b611398848484610878565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113fa576113c384848484611a43565b6113f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606000600b54141561142d57604051806080016040528060438152602001612ee66043913990506114a3565b61143682611745565b611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90612846565b60405180910390fd5b600c61148083611ba3565b6040516020016114919291906126ba565b60405160208183030381529060405290505b919050565b6114b0611957565b73ffffffffffffffffffffffffffffffffffffffff166114ce610f9b565b73ffffffffffffffffffffffffffffffffffffffff1614611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b90612826565b60405180910390fd5b8181600c9190611535929190611fe1565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115d6611957565b73ffffffffffffffffffffffffffffffffffffffff166115f4610f9b565b73ffffffffffffffffffffffffffffffffffffffff161461164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190612826565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b1906127c6565b60405180910390fd5b6116c38161195f565b50565b600a81565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061173e575061173d82611d04565b5b9050919050565b6000816117506117ac565b1115801561175f575060005482105b801561179d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806117c46117ac565b1161184c5760005481101561184b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611849575b600081141561183f576004600083600190039350838152602001908152602001600020549050611814565b809250505061187e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861190b868684611d6e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a3f828260405180602001604052806000815250611d77565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a696117a4565b8786866040518563ffffffff1660e01b8152600401611a8b94939291906126f9565b602060405180830381600087803b158015611aa557600080fd5b505af1925050508015611ad657506040513d601f19601f82011682018060405250810190611ad391906123a3565b60015b611b50573d8060008114611b06576040519150601f19603f3d011682016040523d82523d6000602084013e611b0b565b606091505b50600081511415611b48576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611beb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cff565b600082905060005b60008214611c1d578080611c0690612bb3565b915050600a82611c1691906129a5565b9150611bf3565b60008167ffffffffffffffff811115611c3957611c38612ce9565b5b6040519080825280601f01601f191660200182016040528015611c6b5781602001600182028036833780820191505090505b5090505b60008514611cf857600182611c849190612a30565b9150600a85611c939190612bfc565b6030611c9f919061294f565b60f81b818381518110611cb557611cb4612cba565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cf191906129a5565b9450611c6f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60009392505050565b611d818383611e14565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0f57600080549050600083820390505b611dc16000868380600101945086611a43565b611df7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dae578160005414611e0c57600080fd5b50505b505050565b6000805490506000821415611e55576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e6260008483856118ee565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ed983611eca60008660006118f4565b611ed385611fd1565b1761191c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f7a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f3f565b506000821415611fb6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fcc6000848385611947565b505050565b60006001821460e11b9050919050565b828054611fed90612b50565b90600052602060002090601f01602090048101928261200f5760008555612056565b82601f1061202857803560ff1916838001178555612056565b82800160010185558215612056579182015b8281111561205557823582559160200191906001019061203a565b5b5090506120639190612067565b5090565b5b80821115612080576000816000905550600101612068565b5090565b6000612097612092846128c6565b6128a1565b9050828152602081018484840111156120b3576120b2612d27565b5b6120be848285612b0e565b509392505050565b6000813590506120d581612e89565b92915050565b6000813590506120ea81612ea0565b92915050565b6000813590506120ff81612eb7565b92915050565b60008151905061211481612eb7565b92915050565b600082601f83011261212f5761212e612d1d565b5b813561213f848260208601612084565b91505092915050565b60008083601f84011261215e5761215d612d1d565b5b8235905067ffffffffffffffff81111561217b5761217a612d18565b5b60208301915083600182028301111561219757612196612d22565b5b9250929050565b6000813590506121ad81612ece565b92915050565b6000602082840312156121c9576121c8612d31565b5b60006121d7848285016120c6565b91505092915050565b600080604083850312156121f7576121f6612d31565b5b6000612205858286016120c6565b9250506020612216858286016120c6565b9150509250929050565b60008060006060848603121561223957612238612d31565b5b6000612247868287016120c6565b9350506020612258868287016120c6565b92505060406122698682870161219e565b9150509250925092565b6000806000806080858703121561228d5761228c612d31565b5b600061229b878288016120c6565b94505060206122ac878288016120c6565b93505060406122bd8782880161219e565b925050606085013567ffffffffffffffff8111156122de576122dd612d2c565b5b6122ea8782880161211a565b91505092959194509250565b6000806040838503121561230d5761230c612d31565b5b600061231b858286016120c6565b925050602061232c858286016120db565b9150509250929050565b6000806040838503121561234d5761234c612d31565b5b600061235b858286016120c6565b925050602061236c8582860161219e565b9150509250929050565b60006020828403121561238c5761238b612d31565b5b600061239a848285016120f0565b91505092915050565b6000602082840312156123b9576123b8612d31565b5b60006123c784828501612105565b91505092915050565b600080602083850312156123e7576123e6612d31565b5b600083013567ffffffffffffffff81111561240557612404612d2c565b5b61241185828601612148565b92509250509250929050565b60006020828403121561243357612432612d31565b5b60006124418482850161219e565b91505092915050565b6000806040838503121561246157612460612d31565b5b600061246f8582860161219e565b92505060206124808582860161219e565b9150509250929050565b61249381612a64565b82525050565b6124a281612a76565b82525050565b60006124b38261290c565b6124bd8185612922565b93506124cd818560208601612b1d565b6124d681612d36565b840191505092915050565b6124ea81612ad8565b82525050565b60006124fb82612917565b6125058185612933565b9350612515818560208601612b1d565b61251e81612d36565b840191505092915050565b600061253482612917565b61253e8185612944565b935061254e818560208601612b1d565b80840191505092915050565b6000815461256781612b50565b6125718186612944565b9450600182166000811461258c576001811461259d576125d0565b60ff198316865281860193506125d0565b6125a6856128f7565b60005b838110156125c8578154818901526001820191506020810190506125a9565b838801955050505b50505092915050565b60006125e6602683612933565b91506125f182612d47565b604082019050919050565b6000612609601c83612933565b915061261482612d96565b602082019050919050565b600061262c601e83612933565b915061263782612dbf565b602082019050919050565b600061264f602083612933565b915061265a82612de8565b602082019050919050565b6000612672602f83612933565b915061267d82612e11565b604082019050919050565b6000612695601883612933565b91506126a082612e60565b602082019050919050565b6126b481612ace565b82525050565b60006126c6828561255a565b91506126d28284612529565b91508190509392505050565b60006020820190506126f3600083018461248a565b92915050565b600060808201905061270e600083018761248a565b61271b602083018661248a565b61272860408301856126ab565b818103606083015261273a81846124a8565b905095945050505050565b600060408201905061275a600083018561248a565b61276760208301846126ab565b9392505050565b60006020820190506127836000830184612499565b92915050565b600060208201905061279e60008301846124e1565b92915050565b600060208201905081810360008301526127be81846124f0565b905092915050565b600060208201905081810360008301526127df816125d9565b9050919050565b600060208201905081810360008301526127ff816125fc565b9050919050565b6000602082019050818103600083015261281f8161261f565b9050919050565b6000602082019050818103600083015261283f81612642565b9050919050565b6000602082019050818103600083015261285f81612665565b9050919050565b6000602082019050818103600083015261287f81612688565b9050919050565b600060208201905061289b60008301846126ab565b92915050565b60006128ab6128bc565b90506128b78282612b82565b919050565b6000604051905090565b600067ffffffffffffffff8211156128e1576128e0612ce9565b5b6128ea82612d36565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061295a82612ace565b915061296583612ace565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561299a57612999612c2d565b5b828201905092915050565b60006129b082612ace565b91506129bb83612ace565b9250826129cb576129ca612c5c565b5b828204905092915050565b60006129e182612ace565b91506129ec83612ace565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2557612a24612c2d565b5b828202905092915050565b6000612a3b82612ace565b9150612a4683612ace565b925082821015612a5957612a58612c2d565b5b828203905092915050565b6000612a6f82612aae565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612ae382612aea565b9050919050565b6000612af582612afc565b9050919050565b6000612b0782612aae565b9050919050565b82818337600083830152505050565b60005b83811015612b3b578082015181840152602081019050612b20565b83811115612b4a576000848401525b50505050565b60006002820490506001821680612b6857607f821691505b60208210811415612b7c57612b7b612c8b565b5b50919050565b612b8b82612d36565b810181811067ffffffffffffffff82111715612baa57612ba9612ce9565b5b80604052505050565b6000612bbe82612ace565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612bf157612bf0612c2d565b5b600182019050919050565b6000612c0782612ace565b9150612c1283612ace565b925082612c2257612c21612c5c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20496e73756666696369656e74207061796d656e7400000000600082015250565b7f4552433732313a2045786365656473206d6178696d756d20737570706c790000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20496e76616c6964207175616e746974790000000000000000600082015250565b612e9281612a64565b8114612e9d57600080fd5b50565b612ea981612a76565b8114612eb457600080fd5b50565b612ec081612a82565b8114612ecb57600080fd5b50565b612ed781612ace565b8114612ee257600080fd5b5056fe68747470733a2f2f697066732e696f2f697066732f516d55395072544e79525075585650466671785865353743484d3176525a6f787875594e6134747376676a726d58a2646970667358221220c25bbedc16166cad2990967650d261b1d3d41896ff5d635d26bdd1adcc81c89164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101815760003560e01c8063715018a6116100d1578063a22cb4651161008a578063e5e01c1111610064578063e5e01c1114610540578063e985e9c514610569578063f2fde38b146105a6578063fe878b1d146105cf57610181565b8063a22cb465146104be578063b88d4fde146104e7578063c87b56dd1461050357610181565b8063715018a6146103e15780638da5cb5b146103f857806395d89b41146104235780639858cf191461044e5780639894ba7c14610479578063a0712d68146104a257610181565b80632a55205a1161013e57806342842e0e1161011857806342842e0e14610322578063528c06cc1461033e5780636352211e1461036757806370a08231146103a457610181565b80632a55205a1461028e57806332cb6b0c146102cc57806341f43434146102f757610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461024757806323b872dd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612376565b6105fa565b6040516101ba919061276e565b60405180910390f35b3480156101cf57600080fd5b506101d861060c565b6040516101e591906127a4565b60405180910390f35b3480156101fa57600080fd5b506102156004803603810190610210919061241d565b61069e565b60405161022291906126de565b60405180910390f35b61024560048036038101906102409190612336565b61071d565b005b34801561025357600080fd5b5061025c610861565b6040516102699190612886565b60405180910390f35b61028c60048036038101906102879190612220565b610878565b005b34801561029a57600080fd5b506102b560048036038101906102b0919061244a565b610b9d565b6040516102c3929190612745565b60405180910390f35b3480156102d857600080fd5b506102e1610d88565b6040516102ee9190612886565b60405180910390f35b34801561030357600080fd5b5061030c610d90565b6040516103199190612789565b60405180910390f35b61033c60048036038101906103379190612220565b610da2565b005b34801561034a57600080fd5b506103656004803603810190610360919061241d565b610dc2565b005b34801561037357600080fd5b5061038e6004803603810190610389919061241d565b610e48565b60405161039b91906126de565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906121b3565b610e5a565b6040516103d89190612886565b60405180910390f35b3480156103ed57600080fd5b506103f6610f13565b005b34801561040457600080fd5b5061040d610f9b565b60405161041a91906126de565b60405180910390f35b34801561042f57600080fd5b50610438610fc5565b60405161044591906127a4565b60405180910390f35b34801561045a57600080fd5b50610463611057565b6040516104709190612886565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906121b3565b61105c565b005b6104bc60048036038101906104b7919061241d565b611128565b005b3480156104ca57600080fd5b506104e560048036038101906104e091906122f6565b611282565b005b61050160048036038101906104fc9190612273565b61138d565b005b34801561050f57600080fd5b5061052a6004803603810190610525919061241d565b611400565b60405161053791906127a4565b60405180910390f35b34801561054c57600080fd5b50610567600480360381019061056291906123d0565b6114a8565b005b34801561057557600080fd5b50610590600480360381019061058b91906121e0565b61153a565b60405161059d919061276e565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906121b3565b6115ce565b005b3480156105db57600080fd5b506105e46116c6565b6040516105f19190612886565b60405180910390f35b6000610605826116cb565b9050919050565b60606002805461061b90612b50565b80601f016020809104026020016040519081016040528092919081815260200182805461064790612b50565b80156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b60006106a982611745565b6106df576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061072882610e48565b90508073ffffffffffffffffffffffffffffffffffffffff166107496117a4565b73ffffffffffffffffffffffffffffffffffffffff16146107ac57610775816107706117a4565b61153a565b6107ab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061086b6117ac565b6001546000540303905090565b6000610883826117b5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108ea576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108f684611883565b9150915061090c81876109076117a4565b6118aa565b610958576109218661091c6117a4565b61153a565b610957576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156109bf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109cc86868660016118ee565b80156109d757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610aa585610a818888876118f4565b7c02000000000000000000000000000000000000000000000000000000001761191c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b2d576000600185019050600060046000838152602001908152602001600020541415610b2b576000548114610b2a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b958686866001611947565b505050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610d335760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610d3d61194d565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610d6991906129d6565b610d7391906129a5565b90508160000151819350935050509250929050565b6301406f4081565b6daaeb6d7670e522a718067333cd4e81565b610dbd8383836040518060200160405280600081525061138d565b505050565b610dca611957565b73ffffffffffffffffffffffffffffffffffffffff16610de8610f9b565b73ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612826565b60405180910390fd5b80600b8190555050565b6000610e53826117b5565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f1b611957565b73ffffffffffffffffffffffffffffffffffffffff16610f39610f9b565b73ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690612826565b60405180910390fd5b610f99600061195f565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fd490612b50565b80601f016020809104026020016040519081016040528092919081815260200182805461100090612b50565b801561104d5780601f106110225761010080835404028352916020019161104d565b820191906000526020600020905b81548152906001019060200180831161103057829003601f168201915b5050505050905090565b600181565b611064611957565b73ffffffffffffffffffffffffffffffffffffffff16611082610f9b565b73ffffffffffffffffffffffffffffffffffffffff16146110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90612826565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611123573d6000803e3d6000fd5b505050565b6301406f4081611136610861565b611140919061294f565b1115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890612806565b60405180910390fd5b60018114806111905750600a81145b6111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690612866565b60405180910390fd5b60018114156111e7576111e23382611a25565b61123b565b655af3107a4000341015611230576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611227906127e6565b60405180910390fd5b61123a3382611a25565b5b803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b806007600061128f6117a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133c6117a4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611381919061276e565b60405180910390a35050565b611398848484610878565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113fa576113c384848484611a43565b6113f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606000600b54141561142d57604051806080016040528060438152602001612ee66043913990506114a3565b61143682611745565b611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90612846565b60405180910390fd5b600c61148083611ba3565b6040516020016114919291906126ba565b60405160208183030381529060405290505b919050565b6114b0611957565b73ffffffffffffffffffffffffffffffffffffffff166114ce610f9b565b73ffffffffffffffffffffffffffffffffffffffff1614611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b90612826565b60405180910390fd5b8181600c9190611535929190611fe1565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115d6611957565b73ffffffffffffffffffffffffffffffffffffffff166115f4610f9b565b73ffffffffffffffffffffffffffffffffffffffff161461164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190612826565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b1906127c6565b60405180910390fd5b6116c38161195f565b50565b600a81565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061173e575061173d82611d04565b5b9050919050565b6000816117506117ac565b1115801561175f575060005482105b801561179d575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806117c46117ac565b1161184c5760005481101561184b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611849575b600081141561183f576004600083600190039350838152602001908152602001600020549050611814565b809250505061187e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861190b868684611d6e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000612710905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a3f828260405180602001604052806000815250611d77565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a696117a4565b8786866040518563ffffffff1660e01b8152600401611a8b94939291906126f9565b602060405180830381600087803b158015611aa557600080fd5b505af1925050508015611ad657506040513d601f19601f82011682018060405250810190611ad391906123a3565b60015b611b50573d8060008114611b06576040519150601f19603f3d011682016040523d82523d6000602084013e611b0b565b606091505b50600081511415611b48576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611beb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cff565b600082905060005b60008214611c1d578080611c0690612bb3565b915050600a82611c1691906129a5565b9150611bf3565b60008167ffffffffffffffff811115611c3957611c38612ce9565b5b6040519080825280601f01601f191660200182016040528015611c6b5781602001600182028036833780820191505090505b5090505b60008514611cf857600182611c849190612a30565b9150600a85611c939190612bfc565b6030611c9f919061294f565b60f81b818381518110611cb557611cb4612cba565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cf191906129a5565b9450611c6f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60009392505050565b611d818383611e14565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0f57600080549050600083820390505b611dc16000868380600101945086611a43565b611df7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dae578160005414611e0c57600080fd5b50505b505050565b6000805490506000821415611e55576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e6260008483856118ee565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ed983611eca60008660006118f4565b611ed385611fd1565b1761191c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f7a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f3f565b506000821415611fb6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fcc6000848385611947565b505050565b60006001821460e11b9050919050565b828054611fed90612b50565b90600052602060002090601f01602090048101928261200f5760008555612056565b82601f1061202857803560ff1916838001178555612056565b82800160010185558215612056579182015b8281111561205557823582559160200191906001019061203a565b5b5090506120639190612067565b5090565b5b80821115612080576000816000905550600101612068565b5090565b6000612097612092846128c6565b6128a1565b9050828152602081018484840111156120b3576120b2612d27565b5b6120be848285612b0e565b509392505050565b6000813590506120d581612e89565b92915050565b6000813590506120ea81612ea0565b92915050565b6000813590506120ff81612eb7565b92915050565b60008151905061211481612eb7565b92915050565b600082601f83011261212f5761212e612d1d565b5b813561213f848260208601612084565b91505092915050565b60008083601f84011261215e5761215d612d1d565b5b8235905067ffffffffffffffff81111561217b5761217a612d18565b5b60208301915083600182028301111561219757612196612d22565b5b9250929050565b6000813590506121ad81612ece565b92915050565b6000602082840312156121c9576121c8612d31565b5b60006121d7848285016120c6565b91505092915050565b600080604083850312156121f7576121f6612d31565b5b6000612205858286016120c6565b9250506020612216858286016120c6565b9150509250929050565b60008060006060848603121561223957612238612d31565b5b6000612247868287016120c6565b9350506020612258868287016120c6565b92505060406122698682870161219e565b9150509250925092565b6000806000806080858703121561228d5761228c612d31565b5b600061229b878288016120c6565b94505060206122ac878288016120c6565b93505060406122bd8782880161219e565b925050606085013567ffffffffffffffff8111156122de576122dd612d2c565b5b6122ea8782880161211a565b91505092959194509250565b6000806040838503121561230d5761230c612d31565b5b600061231b858286016120c6565b925050602061232c858286016120db565b9150509250929050565b6000806040838503121561234d5761234c612d31565b5b600061235b858286016120c6565b925050602061236c8582860161219e565b9150509250929050565b60006020828403121561238c5761238b612d31565b5b600061239a848285016120f0565b91505092915050565b6000602082840312156123b9576123b8612d31565b5b60006123c784828501612105565b91505092915050565b600080602083850312156123e7576123e6612d31565b5b600083013567ffffffffffffffff81111561240557612404612d2c565b5b61241185828601612148565b92509250509250929050565b60006020828403121561243357612432612d31565b5b60006124418482850161219e565b91505092915050565b6000806040838503121561246157612460612d31565b5b600061246f8582860161219e565b92505060206124808582860161219e565b9150509250929050565b61249381612a64565b82525050565b6124a281612a76565b82525050565b60006124b38261290c565b6124bd8185612922565b93506124cd818560208601612b1d565b6124d681612d36565b840191505092915050565b6124ea81612ad8565b82525050565b60006124fb82612917565b6125058185612933565b9350612515818560208601612b1d565b61251e81612d36565b840191505092915050565b600061253482612917565b61253e8185612944565b935061254e818560208601612b1d565b80840191505092915050565b6000815461256781612b50565b6125718186612944565b9450600182166000811461258c576001811461259d576125d0565b60ff198316865281860193506125d0565b6125a6856128f7565b60005b838110156125c8578154818901526001820191506020810190506125a9565b838801955050505b50505092915050565b60006125e6602683612933565b91506125f182612d47565b604082019050919050565b6000612609601c83612933565b915061261482612d96565b602082019050919050565b600061262c601e83612933565b915061263782612dbf565b602082019050919050565b600061264f602083612933565b915061265a82612de8565b602082019050919050565b6000612672602f83612933565b915061267d82612e11565b604082019050919050565b6000612695601883612933565b91506126a082612e60565b602082019050919050565b6126b481612ace565b82525050565b60006126c6828561255a565b91506126d28284612529565b91508190509392505050565b60006020820190506126f3600083018461248a565b92915050565b600060808201905061270e600083018761248a565b61271b602083018661248a565b61272860408301856126ab565b818103606083015261273a81846124a8565b905095945050505050565b600060408201905061275a600083018561248a565b61276760208301846126ab565b9392505050565b60006020820190506127836000830184612499565b92915050565b600060208201905061279e60008301846124e1565b92915050565b600060208201905081810360008301526127be81846124f0565b905092915050565b600060208201905081810360008301526127df816125d9565b9050919050565b600060208201905081810360008301526127ff816125fc565b9050919050565b6000602082019050818103600083015261281f8161261f565b9050919050565b6000602082019050818103600083015261283f81612642565b9050919050565b6000602082019050818103600083015261285f81612665565b9050919050565b6000602082019050818103600083015261287f81612688565b9050919050565b600060208201905061289b60008301846126ab565b92915050565b60006128ab6128bc565b90506128b78282612b82565b919050565b6000604051905090565b600067ffffffffffffffff8211156128e1576128e0612ce9565b5b6128ea82612d36565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061295a82612ace565b915061296583612ace565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561299a57612999612c2d565b5b828201905092915050565b60006129b082612ace565b91506129bb83612ace565b9250826129cb576129ca612c5c565b5b828204905092915050565b60006129e182612ace565b91506129ec83612ace565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2557612a24612c2d565b5b828202905092915050565b6000612a3b82612ace565b9150612a4683612ace565b925082821015612a5957612a58612c2d565b5b828203905092915050565b6000612a6f82612aae565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612ae382612aea565b9050919050565b6000612af582612afc565b9050919050565b6000612b0782612aae565b9050919050565b82818337600083830152505050565b60005b83811015612b3b578082015181840152602081019050612b20565b83811115612b4a576000848401525b50505050565b60006002820490506001821680612b6857607f821691505b60208210811415612b7c57612b7b612c8b565b5b50919050565b612b8b82612d36565b810181811067ffffffffffffffff82111715612baa57612ba9612ce9565b5b80604052505050565b6000612bbe82612ace565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612bf157612bf0612c2d565b5b600182019050919050565b6000612c0782612ace565b9150612c1283612ace565b925082612c2257612c21612c5c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20496e73756666696369656e74207061796d656e7400000000600082015250565b7f4552433732313a2045786365656473206d6178696d756d20737570706c790000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20496e76616c6964207175616e746974790000000000000000600082015250565b612e9281612a64565b8114612e9d57600080fd5b50565b612ea981612a76565b8114612eb457600080fd5b50565b612ec081612a82565b8114612ecb57600080fd5b50565b612ed781612ace565b8114612ee257600080fd5b5056fe68747470733a2f2f697066732e696f2f697066732f516d55395072544e79525075585650466671785865353743484d3176525a6f787875594e6134747376676a726d58a2646970667358221220c25bbedc16166cad2990967650d261b1d3d41896ff5d635d26bdd1adcc81c89164736f6c63430008070033

Deployed Bytecode Sourcemap

76598:2323:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77162:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24725:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31216:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30649:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20476:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34855:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61354:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;76712:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2936:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37776:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77611:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26118:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21660:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75622:103;;;;;;;;;;;;;:::i;:::-;;74971:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24901:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76764:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77453:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78372:544;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31774:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38567:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77950:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77711:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32165:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75880:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76810:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77162:174;77270:4;77292:36;77316:11;77292:23;:36::i;:::-;77285:43;;77162:174;;;:::o;24725:100::-;24779:13;24812:5;24805:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24725:100;:::o;31216:218::-;31292:7;31317:16;31325:7;31317;:16::i;:::-;31312:64;;31342:34;;;;;;;;;;;;;;31312:64;31396:15;:24;31412:7;31396:24;;;;;;;;;;;:30;;;;;;;;;;;;31389:37;;31216:218;;;:::o;30649:408::-;30738:13;30754:16;30762:7;30754;:16::i;:::-;30738:32;;30810:5;30787:28;;:19;:17;:19::i;:::-;:28;;;30783:175;;30835:44;30852:5;30859:19;:17;:19::i;:::-;30835:16;:44::i;:::-;30830:128;;30907:35;;;;;;;;;;;;;;30830:128;30783:175;31003:2;30970:15;:24;30986:7;30970:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31041:7;31037:2;31021:28;;31030:5;31021:28;;;;;;;;;;;;30727:330;30649:408;;:::o;20476:323::-;20537:7;20765:15;:13;:15::i;:::-;20750:12;;20734:13;;:28;:46;20727:53;;20476:323;:::o;34855:2825::-;34997:27;35027;35046:7;35027:18;:27::i;:::-;34997:57;;35112:4;35071:45;;35087:19;35071:45;;;35067:86;;35125:28;;;;;;;;;;;;;;35067:86;35167:27;35196:23;35223:35;35250:7;35223:26;:35::i;:::-;35166:92;;;;35358:68;35383:15;35400:4;35406:19;:17;:19::i;:::-;35358:24;:68::i;:::-;35353:180;;35446:43;35463:4;35469:19;:17;:19::i;:::-;35446:16;:43::i;:::-;35441:92;;35498:35;;;;;;;;;;;;;;35441:92;35353:180;35564:1;35550:16;;:2;:16;;;35546:52;;;35575:23;;;;;;;;;;;;;;35546:52;35611:43;35633:4;35639:2;35643:7;35652:1;35611:21;:43::i;:::-;35747:15;35744:160;;;35887:1;35866:19;35859:30;35744:160;36284:18;:24;36303:4;36284:24;;;;;;;;;;;;;;;;36282:26;;;;;;;;;;;;36353:18;:22;36372:2;36353:22;;;;;;;;;;;;;;;;36351:24;;;;;;;;;;;36675:146;36712:2;36761:45;36776:4;36782:2;36786:19;36761:14;:45::i;:::-;16875:8;36733:73;36675:18;:146::i;:::-;36646:17;:26;36664:7;36646:26;;;;;;;;;;;:175;;;;36992:1;16875:8;36941:19;:47;:52;36937:627;;;37014:19;37046:1;37036:7;:11;37014:33;;37203:1;37169:17;:30;37187:11;37169:30;;;;;;;;;;;;:35;37165:384;;;37307:13;;37292:11;:28;37288:242;;37487:19;37454:17;:30;37472:11;37454:30;;;;;;;;;;;:52;;;;37288:242;37165:384;36995:569;36937:627;37611:7;37607:2;37592:27;;37601:4;37592:27;;;;;;;;;;;;37630:42;37651:4;37657:2;37661:7;37670:1;37630:20;:42::i;:::-;34986:2694;;;34855:2825;;;:::o;61354:442::-;61451:7;61460;61480:26;61509:17;:27;61527:8;61509:27;;;;;;;;;;;61480:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61581:1;61553:30;;:7;:16;;;:30;;;61549:92;;;61610:19;61600:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61549:92;61653:21;61718:17;:15;:17::i;:::-;61677:58;;61691:7;:23;;;61678:36;;:10;:36;;;;:::i;:::-;61677:58;;;;:::i;:::-;61653:82;;61756:7;:16;;;61774:13;61748:40;;;;;;61354:442;;;;;:::o;76712:45::-;76749:8;76712:45;:::o;2936:143::-;3036:42;2936:143;:::o;37776:193::-;37922:39;37939:4;37945:2;37949:7;37922:39;;;;;;;;;;;;:16;:39::i;:::-;37776:193;;;:::o;77611:92::-;75202:12;:10;:12::i;:::-;75191:23;;:7;:5;:7::i;:::-;:23;;;75183:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77691:4:::1;77683:5;:12;;;;77611:92:::0;:::o;26118:152::-;26190:7;26233:27;26252:7;26233:18;:27::i;:::-;26210:52;;26118:152;;;:::o;21660:233::-;21732:7;21773:1;21756:19;;:5;:19;;;21752:60;;;21784:28;;;;;;;;;;;;;;21752:60;15819:13;21830:18;:25;21849:5;21830:25;;;;;;;;;;;;;;;;:55;21823:62;;21660:233;;;:::o;75622:103::-;75202:12;:10;:12::i;:::-;75191:23;;:7;:5;:7::i;:::-;:23;;;75183:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75687:30:::1;75714:1;75687:18;:30::i;:::-;75622:103::o:0;74971:87::-;75017:7;75044:6;;;;;;;;;;;75037:13;;74971:87;:::o;24901:104::-;24957:13;24990:7;24983:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24901:104;:::o;76764:39::-;76802:1;76764:39;:::o;77453:150::-;75202:12;:10;:12::i;:::-;75191:23;;:7;:5;:7::i;:::-;:23;;;75183:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77515:15:::1;77533:21;77515:39;;77573:3;77565:21;;:30;77587:7;77565:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77504:99;77453:150:::0;:::o;78372:544::-;76749:8;78454;78438:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;78430:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;76802:1;78530:8;:23;:50;;;;76848:2;78557:8;:23;78530:50;78522:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;76802:1;78626:8;:23;78622:230;;;78666:30;78676:10;78687:8;78666:9;:30::i;:::-;78622:230;;;78750:12;78737:9;:25;;78729:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;78810:30;78820:10;78831:8;78810:9;:30::i;:::-;78622:230;78899:8;78887:10;78879:29;;;;;;;;;;;;78372:544;:::o;31774:234::-;31921:8;31869:18;:39;31888:19;:17;:19::i;:::-;31869:39;;;;;;;;;;;;;;;:49;31909:8;31869:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31981:8;31945:55;;31960:19;:17;:19::i;:::-;31945:55;;;31991:8;31945:55;;;;;;:::i;:::-;;;;;;;;31774:234;;:::o;38567:407::-;38742:31;38755:4;38761:2;38765:7;38742:12;:31::i;:::-;38806:1;38788:2;:14;;;:19;38784:183;;38827:56;38858:4;38864:2;38868:7;38877:5;38827:30;:56::i;:::-;38822:145;;38911:40;;;;;;;;;;;;;;38822:145;38784:183;38567:407;;;;:::o;77950:414::-;78015:13;78054:1;78045:5;;:10;78041:316;;;78072:76;;;;;;;;;;;;;;;;;;;;;78041:316;78189:16;78197:7;78189;:16::i;:::-;78181:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;78303:13;78318:25;78335:7;78318:16;:25::i;:::-;78286:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78272:73;;77950:414;;;;:::o;77711:109::-;75202:12;:10;:12::i;:::-;75191:23;;:7;:5;:7::i;:::-;:23;;;75183:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77803:9:::1;;77787:13;:25;;;;;;;:::i;:::-;;77711:109:::0;;:::o;32165:164::-;32262:4;32286:18;:25;32305:5;32286:25;;;;;;;;;;;;;;;:35;32312:8;32286:35;;;;;;;;;;;;;;;;;;;;;;;;;32279:42;;32165:164;;;;:::o;75880:201::-;75202:12;:10;:12::i;:::-;75191:23;;:7;:5;:7::i;:::-;:23;;;75183:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75989:1:::1;75969:22;;:8;:22;;;;75961:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;76045:28;76064:8;76045:18;:28::i;:::-;75880:201:::0;:::o;76810:40::-;76848:2;76810:40;:::o;61084:215::-;61186:4;61225:26;61210:41;;;:11;:41;;;;:81;;;;61255:36;61279:11;61255:23;:36::i;:::-;61210:81;61203:88;;61084:215;;;:::o;32587:282::-;32652:4;32708:7;32689:15;:13;:15::i;:::-;:26;;:66;;;;;32742:13;;32732:7;:23;32689:66;:153;;;;;32841:1;16595:8;32793:17;:26;32811:7;32793:26;;;;;;;;;;;;:44;:49;32689:153;32669:173;;32587:282;;;:::o;54895:105::-;54955:7;54982:10;54975:17;;54895:105;:::o;77344:101::-;77409:7;77436:1;77429:8;;77344:101;:::o;27273:1275::-;27340:7;27360:12;27375:7;27360:22;;27443:4;27424:15;:13;:15::i;:::-;:23;27420:1061;;27477:13;;27470:4;:20;27466:1015;;;27515:14;27532:17;:23;27550:4;27532:23;;;;;;;;;;;;27515:40;;27649:1;16595:8;27621:6;:24;:29;27617:845;;;28286:113;28303:1;28293:6;:11;28286:113;;;28346:17;:25;28364:6;;;;;;;28346:25;;;;;;;;;;;;28337:34;;28286:113;;;28432:6;28425:13;;;;;;27617:845;27492:989;27466:1015;27420:1061;28509:31;;;;;;;;;;;;;;27273:1275;;;;:::o;33750:485::-;33852:27;33881:23;33922:38;33963:15;:24;33979:7;33963:24;;;;;;;;;;;33922:65;;34140:18;34117:41;;34197:19;34191:26;34172:45;;34102:126;33750:485;;;:::o;32978:659::-;33127:11;33292:16;33285:5;33281:28;33272:37;;33452:16;33441:9;33437:32;33424:45;;33602:15;33591:9;33588:30;33580:5;33569:9;33566:20;33563:56;33553:66;;32978:659;;;;;:::o;39636:159::-;;;;;:::o;54204:311::-;54339:7;54359:16;16999:3;54385:19;:41;;54359:68;;16999:3;54453:31;54464:4;54470:2;54474:9;54453:10;:31::i;:::-;54445:40;;:62;;54438:69;;;54204:311;;;;;:::o;29096:450::-;29176:14;29344:16;29337:5;29333:28;29324:37;;29521:5;29507:11;29482:23;29478:41;29475:52;29468:5;29465:63;29455:73;;29096:450;;;;:::o;40460:158::-;;;;;:::o;62078:97::-;62136:6;62162:5;62155:12;;62078:97;:::o;73695:98::-;73748:7;73775:10;73768:17;;73695:98;:::o;76241:191::-;76315:16;76334:6;;;;;;;;;;;76315:25;;76360:8;76351:6;;:17;;;;;;;;;;;;;;;;;;76415:8;76384:40;;76405:8;76384:40;;;;;;;;;;;;76304:128;76241:191;:::o;48727:112::-;48804:27;48814:2;48818:8;48804:27;;;;;;;;;;;;:9;:27::i;:::-;48727:112;;:::o;41058:716::-;41221:4;41267:2;41242:45;;;41288:19;:17;:19::i;:::-;41309:4;41315:7;41324:5;41242:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41238:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41542:1;41525:6;:13;:18;41521:235;;;41571:40;;;;;;;;;;;;;;41521:235;41714:6;41708:13;41699:6;41695:2;41691:15;41684:38;41238:529;41411:54;;;41401:64;;;:6;:64;;;;41394:71;;;41058:716;;;;;;:::o;71257:723::-;71313:13;71543:1;71534:5;:10;71530:53;;;71561:10;;;;;;;;;;;;;;;;;;;;;71530:53;71593:12;71608:5;71593:20;;71624:14;71649:78;71664:1;71656:4;:9;71649:78;;71682:8;;;;;:::i;:::-;;;;71713:2;71705:10;;;;;:::i;:::-;;;71649:78;;;71737:19;71769:6;71759:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71737:39;;71787:154;71803:1;71794:5;:10;71787:154;;71831:1;71821:11;;;;;:::i;:::-;;;71898:2;71890:5;:10;;;;:::i;:::-;71877:2;:24;;;;:::i;:::-;71864:39;;71847:6;71854;71847:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;71927:2;71918:11;;;;;:::i;:::-;;;71787:154;;;71965:6;71951:21;;;;;71257:723;;;;:::o;58636:157::-;58721:4;58760:25;58745:40;;;:11;:40;;;;58738:47;;58636:157;;;:::o;53905:147::-;54042:6;53905:147;;;;;:::o;47954:689::-;48085:19;48091:2;48095:8;48085:5;:19::i;:::-;48164:1;48146:2;:14;;;:19;48142:483;;48186:11;48200:13;;48186:27;;48232:13;48254:8;48248:3;:14;48232:30;;48281:233;48312:62;48351:1;48355:2;48359:7;;;;;;48368:5;48312:30;:62::i;:::-;48307:167;;48410:40;;;;;;;;;;;;;;48307:167;48509:3;48501:5;:11;48281:233;;48596:3;48579:13;;:20;48575:34;;48601:8;;;48575:34;48167:458;;48142:483;47954:689;;;:::o;42236:2966::-;42309:20;42332:13;;42309:36;;42372:1;42360:8;:13;42356:44;;;42382:18;;;;;;;;;;;;;;42356:44;42413:61;42443:1;42447:2;42451:12;42465:8;42413:21;:61::i;:::-;42957:1;15957:2;42927:1;:26;;42926:32;42914:8;:45;42888:18;:22;42907:2;42888:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43236:139;43273:2;43327:33;43350:1;43354:2;43358:1;43327:14;:33::i;:::-;43294:30;43315:8;43294:20;:30::i;:::-;:66;43236:18;:139::i;:::-;43202:17;:31;43220:12;43202:31;;;;;;;;;;;:173;;;;43392:16;43423:11;43452:8;43437:12;:23;43423:37;;43973:16;43969:2;43965:25;43953:37;;44345:12;44305:8;44264:1;44202:25;44143:1;44082;44055:335;44716:1;44702:12;44698:20;44656:346;44757:3;44748:7;44745:16;44656:346;;44975:7;44965:8;44962:1;44935:25;44932:1;44929;44924:59;44810:1;44801:7;44797:15;44786:26;;44656:346;;;44660:77;45047:1;45035:8;:13;45031:45;;;45057:19;;;;;;;;;;;;;;45031:45;45109:3;45093:13;:19;;;;42662:2462;;45134:60;45163:1;45167:2;45171:12;45185:8;45134:20;:60::i;:::-;42298:2904;42236:2966;;:::o;29648:324::-;29718:14;29951:1;29941:8;29938:15;29912:24;29908:46;29898:56;;29648:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;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:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:474::-;7041:6;7049;7098:2;7086:9;7077:7;7073:23;7069:32;7066:119;;;7104:79;;:::i;:::-;7066:119;7224:1;7249:53;7294:7;7285:6;7274:9;7270:22;7249:53;:::i;:::-;7239:63;;7195:117;7351:2;7377:53;7422:7;7413:6;7402:9;7398:22;7377:53;:::i;:::-;7367:63;;7322:118;6973:474;;;;;:::o;7453:118::-;7540:24;7558:5;7540:24;:::i;:::-;7535:3;7528:37;7453:118;;:::o;7577:109::-;7658:21;7673:5;7658:21;:::i;:::-;7653:3;7646:34;7577:109;;:::o;7692:360::-;7778:3;7806:38;7838:5;7806:38;:::i;:::-;7860:70;7923:6;7918:3;7860:70;:::i;:::-;7853:77;;7939:52;7984:6;7979:3;7972:4;7965:5;7961:16;7939:52;:::i;:::-;8016:29;8038:6;8016:29;:::i;:::-;8011:3;8007:39;8000:46;;7782:270;7692:360;;;;:::o;8058:193::-;8176:68;8238:5;8176:68;:::i;:::-;8171:3;8164:81;8058:193;;:::o;8257:364::-;8345:3;8373:39;8406:5;8373:39;:::i;:::-;8428:71;8492:6;8487:3;8428:71;:::i;:::-;8421:78;;8508:52;8553:6;8548:3;8541:4;8534:5;8530:16;8508:52;:::i;:::-;8585:29;8607:6;8585:29;:::i;:::-;8580:3;8576:39;8569:46;;8349:272;8257:364;;;;:::o;8627:377::-;8733:3;8761:39;8794:5;8761:39;:::i;:::-;8816:89;8898:6;8893:3;8816:89;:::i;:::-;8809:96;;8914:52;8959:6;8954:3;8947:4;8940:5;8936:16;8914:52;:::i;:::-;8991:6;8986:3;8982:16;8975:23;;8737:267;8627:377;;;;:::o;9034:845::-;9137:3;9174:5;9168:12;9203:36;9229:9;9203:36;:::i;:::-;9255:89;9337:6;9332:3;9255:89;:::i;:::-;9248:96;;9375:1;9364:9;9360:17;9391:1;9386:137;;;;9537:1;9532:341;;;;9353:520;;9386:137;9470:4;9466:9;9455;9451:25;9446:3;9439:38;9506:6;9501:3;9497:16;9490:23;;9386:137;;9532:341;9599:38;9631:5;9599:38;:::i;:::-;9659:1;9673:154;9687:6;9684:1;9681:13;9673:154;;;9761:7;9755:14;9751:1;9746:3;9742:11;9735:35;9811:1;9802:7;9798:15;9787:26;;9709:4;9706:1;9702:12;9697:17;;9673:154;;;9856:6;9851:3;9847:16;9840:23;;9539:334;;9353:520;;9141:738;;9034:845;;;;:::o;9885:366::-;10027:3;10048:67;10112:2;10107:3;10048:67;:::i;:::-;10041:74;;10124:93;10213:3;10124:93;:::i;:::-;10242:2;10237:3;10233:12;10226:19;;9885:366;;;:::o;10257:::-;10399:3;10420:67;10484:2;10479:3;10420:67;:::i;:::-;10413:74;;10496:93;10585:3;10496:93;:::i;:::-;10614:2;10609:3;10605:12;10598:19;;10257:366;;;:::o;10629:::-;10771:3;10792:67;10856:2;10851:3;10792:67;:::i;:::-;10785:74;;10868:93;10957:3;10868:93;:::i;:::-;10986:2;10981:3;10977:12;10970:19;;10629:366;;;:::o;11001:::-;11143:3;11164:67;11228:2;11223:3;11164:67;:::i;:::-;11157:74;;11240:93;11329:3;11240:93;:::i;:::-;11358:2;11353:3;11349:12;11342:19;;11001:366;;;:::o;11373:::-;11515:3;11536:67;11600:2;11595:3;11536:67;:::i;:::-;11529:74;;11612:93;11701:3;11612:93;:::i;:::-;11730:2;11725:3;11721:12;11714:19;;11373:366;;;:::o;11745:::-;11887:3;11908:67;11972:2;11967:3;11908:67;:::i;:::-;11901:74;;11984:93;12073:3;11984:93;:::i;:::-;12102:2;12097:3;12093:12;12086:19;;11745:366;;;:::o;12117:118::-;12204:24;12222:5;12204:24;:::i;:::-;12199:3;12192:37;12117:118;;:::o;12241:429::-;12418:3;12440:92;12528:3;12519:6;12440:92;:::i;:::-;12433:99;;12549:95;12640:3;12631:6;12549:95;:::i;:::-;12542:102;;12661:3;12654:10;;12241:429;;;;;:::o;12676:222::-;12769:4;12807:2;12796:9;12792:18;12784:26;;12820:71;12888:1;12877:9;12873:17;12864:6;12820:71;:::i;:::-;12676:222;;;;:::o;12904:640::-;13099:4;13137:3;13126:9;13122:19;13114:27;;13151:71;13219:1;13208:9;13204:17;13195:6;13151:71;:::i;:::-;13232:72;13300:2;13289:9;13285:18;13276:6;13232:72;:::i;:::-;13314;13382:2;13371:9;13367:18;13358:6;13314:72;:::i;:::-;13433:9;13427:4;13423:20;13418:2;13407:9;13403:18;13396:48;13461:76;13532:4;13523:6;13461:76;:::i;:::-;13453:84;;12904:640;;;;;;;:::o;13550:332::-;13671:4;13709:2;13698:9;13694:18;13686:26;;13722:71;13790:1;13779:9;13775:17;13766:6;13722:71;:::i;:::-;13803:72;13871:2;13860:9;13856:18;13847:6;13803:72;:::i;:::-;13550:332;;;;;:::o;13888:210::-;13975:4;14013:2;14002:9;13998:18;13990:26;;14026:65;14088:1;14077:9;14073:17;14064:6;14026:65;:::i;:::-;13888:210;;;;:::o;14104:284::-;14228:4;14266:2;14255:9;14251:18;14243:26;;14279:102;14378:1;14367:9;14363:17;14354:6;14279:102;:::i;:::-;14104:284;;;;:::o;14394:313::-;14507:4;14545:2;14534:9;14530:18;14522:26;;14594:9;14588:4;14584:20;14580:1;14569:9;14565:17;14558:47;14622:78;14695:4;14686:6;14622:78;:::i;:::-;14614:86;;14394:313;;;;:::o;14713:419::-;14879:4;14917:2;14906:9;14902:18;14894:26;;14966:9;14960:4;14956:20;14952:1;14941:9;14937:17;14930:47;14994:131;15120:4;14994:131;:::i;:::-;14986:139;;14713:419;;;:::o;15138:::-;15304:4;15342:2;15331:9;15327:18;15319:26;;15391:9;15385:4;15381:20;15377:1;15366:9;15362:17;15355:47;15419:131;15545:4;15419:131;:::i;:::-;15411:139;;15138:419;;;:::o;15563:::-;15729:4;15767:2;15756:9;15752:18;15744:26;;15816:9;15810:4;15806:20;15802:1;15791:9;15787:17;15780:47;15844:131;15970:4;15844:131;:::i;:::-;15836:139;;15563:419;;;:::o;15988:::-;16154:4;16192:2;16181:9;16177:18;16169:26;;16241:9;16235:4;16231:20;16227:1;16216:9;16212:17;16205:47;16269:131;16395:4;16269:131;:::i;:::-;16261:139;;15988:419;;;:::o;16413:::-;16579:4;16617:2;16606:9;16602:18;16594:26;;16666:9;16660:4;16656:20;16652:1;16641:9;16637:17;16630:47;16694:131;16820:4;16694:131;:::i;:::-;16686:139;;16413:419;;;:::o;16838:::-;17004:4;17042:2;17031:9;17027:18;17019:26;;17091:9;17085:4;17081:20;17077:1;17066:9;17062:17;17055:47;17119:131;17245:4;17119:131;:::i;:::-;17111:139;;16838:419;;;:::o;17263:222::-;17356:4;17394:2;17383:9;17379:18;17371:26;;17407:71;17475:1;17464:9;17460:17;17451:6;17407:71;:::i;:::-;17263:222;;;;:::o;17491:129::-;17525:6;17552:20;;:::i;:::-;17542:30;;17581:33;17609:4;17601:6;17581:33;:::i;:::-;17491:129;;;:::o;17626:75::-;17659:6;17692:2;17686:9;17676:19;;17626:75;:::o;17707:307::-;17768:4;17858:18;17850:6;17847:30;17844:56;;;17880:18;;:::i;:::-;17844:56;17918:29;17940:6;17918:29;:::i;:::-;17910:37;;18002:4;17996;17992:15;17984:23;;17707:307;;;:::o;18020:141::-;18069:4;18092:3;18084:11;;18115:3;18112:1;18105:14;18149:4;18146:1;18136:18;18128:26;;18020:141;;;:::o;18167:98::-;18218:6;18252:5;18246:12;18236:22;;18167:98;;;:::o;18271:99::-;18323:6;18357:5;18351:12;18341:22;;18271:99;;;:::o;18376:168::-;18459:11;18493:6;18488:3;18481:19;18533:4;18528:3;18524:14;18509:29;;18376:168;;;;:::o;18550:169::-;18634:11;18668:6;18663:3;18656:19;18708:4;18703:3;18699:14;18684:29;;18550:169;;;;:::o;18725:148::-;18827:11;18864:3;18849:18;;18725:148;;;;:::o;18879:305::-;18919:3;18938:20;18956:1;18938:20;:::i;:::-;18933:25;;18972:20;18990:1;18972:20;:::i;:::-;18967:25;;19126:1;19058:66;19054:74;19051:1;19048:81;19045:107;;;19132:18;;:::i;:::-;19045:107;19176:1;19173;19169:9;19162:16;;18879:305;;;;:::o;19190:185::-;19230:1;19247:20;19265:1;19247:20;:::i;:::-;19242:25;;19281:20;19299:1;19281:20;:::i;:::-;19276:25;;19320:1;19310:35;;19325:18;;:::i;:::-;19310:35;19367:1;19364;19360:9;19355:14;;19190:185;;;;:::o;19381:348::-;19421:7;19444:20;19462:1;19444:20;:::i;:::-;19439:25;;19478:20;19496:1;19478:20;:::i;:::-;19473:25;;19666:1;19598:66;19594:74;19591:1;19588:81;19583:1;19576:9;19569:17;19565:105;19562:131;;;19673:18;;:::i;:::-;19562:131;19721:1;19718;19714:9;19703:20;;19381:348;;;;:::o;19735:191::-;19775:4;19795:20;19813:1;19795:20;:::i;:::-;19790:25;;19829:20;19847:1;19829:20;:::i;:::-;19824:25;;19868:1;19865;19862:8;19859:34;;;19873:18;;:::i;:::-;19859:34;19918:1;19915;19911:9;19903:17;;19735:191;;;;:::o;19932:96::-;19969:7;19998:24;20016:5;19998:24;:::i;:::-;19987:35;;19932:96;;;:::o;20034:90::-;20068:7;20111:5;20104:13;20097:21;20086:32;;20034:90;;;:::o;20130:149::-;20166:7;20206:66;20199:5;20195:78;20184:89;;20130:149;;;:::o;20285:126::-;20322:7;20362:42;20355:5;20351:54;20340:65;;20285:126;;;:::o;20417:77::-;20454:7;20483:5;20472:16;;20417:77;;;:::o;20500:157::-;20581:9;20614:37;20645:5;20614:37;:::i;:::-;20601:50;;20500:157;;;:::o;20663:126::-;20713:9;20746:37;20777:5;20746:37;:::i;:::-;20733:50;;20663:126;;;:::o;20795:113::-;20845:9;20878:24;20896:5;20878:24;:::i;:::-;20865:37;;20795:113;;;:::o;20914:154::-;20998:6;20993:3;20988;20975:30;21060:1;21051:6;21046:3;21042:16;21035:27;20914:154;;;:::o;21074:307::-;21142:1;21152:113;21166:6;21163:1;21160:13;21152:113;;;21251:1;21246:3;21242:11;21236:18;21232:1;21227:3;21223:11;21216:39;21188:2;21185:1;21181:10;21176:15;;21152:113;;;21283:6;21280:1;21277:13;21274:101;;;21363:1;21354:6;21349:3;21345:16;21338:27;21274:101;21123:258;21074:307;;;:::o;21387:320::-;21431:6;21468:1;21462:4;21458:12;21448:22;;21515:1;21509:4;21505:12;21536:18;21526:81;;21592:4;21584:6;21580:17;21570:27;;21526:81;21654:2;21646:6;21643:14;21623:18;21620:38;21617:84;;;21673:18;;:::i;:::-;21617:84;21438:269;21387:320;;;:::o;21713:281::-;21796:27;21818:4;21796:27;:::i;:::-;21788:6;21784:40;21926:6;21914:10;21911:22;21890:18;21878:10;21875:34;21872:62;21869:88;;;21937:18;;:::i;:::-;21869:88;21977:10;21973:2;21966:22;21756:238;21713:281;;:::o;22000:233::-;22039:3;22062:24;22080:5;22062:24;:::i;:::-;22053:33;;22108:66;22101:5;22098:77;22095:103;;;22178:18;;:::i;:::-;22095:103;22225:1;22218:5;22214:13;22207:20;;22000:233;;;:::o;22239:176::-;22271:1;22288:20;22306:1;22288:20;:::i;:::-;22283:25;;22322:20;22340:1;22322:20;:::i;:::-;22317:25;;22361:1;22351:35;;22366:18;;:::i;:::-;22351:35;22407:1;22404;22400:9;22395:14;;22239:176;;;;:::o;22421:180::-;22469:77;22466:1;22459:88;22566:4;22563:1;22556:15;22590:4;22587:1;22580:15;22607:180;22655:77;22652:1;22645:88;22752:4;22749:1;22742:15;22776:4;22773:1;22766:15;22793:180;22841:77;22838:1;22831:88;22938:4;22935:1;22928:15;22962:4;22959:1;22952:15;22979:180;23027:77;23024:1;23017:88;23124:4;23121:1;23114:15;23148:4;23145:1;23138:15;23165:180;23213:77;23210:1;23203:88;23310:4;23307:1;23300:15;23334:4;23331:1;23324:15;23351:117;23460:1;23457;23450:12;23474:117;23583:1;23580;23573:12;23597:117;23706:1;23703;23696:12;23720:117;23829:1;23826;23819:12;23843:117;23952:1;23949;23942:12;23966:117;24075:1;24072;24065:12;24089:102;24130:6;24181:2;24177:7;24172:2;24165:5;24161:14;24157:28;24147:38;;24089:102;;;:::o;24197:225::-;24337:34;24333:1;24325:6;24321:14;24314:58;24406:8;24401:2;24393:6;24389:15;24382:33;24197:225;:::o;24428:178::-;24568:30;24564:1;24556:6;24552:14;24545:54;24428:178;:::o;24612:180::-;24752:32;24748:1;24740:6;24736:14;24729:56;24612:180;:::o;24798:182::-;24938:34;24934:1;24926:6;24922:14;24915:58;24798:182;:::o;24986:234::-;25126:34;25122:1;25114:6;25110:14;25103:58;25195:17;25190:2;25182:6;25178:15;25171:42;24986:234;:::o;25226:174::-;25366:26;25362:1;25354:6;25350:14;25343:50;25226:174;:::o;25406:122::-;25479:24;25497:5;25479:24;:::i;:::-;25472:5;25469:35;25459:63;;25518:1;25515;25508:12;25459:63;25406:122;:::o;25534:116::-;25604:21;25619:5;25604:21;:::i;:::-;25597:5;25594:32;25584:60;;25640:1;25637;25630:12;25584:60;25534:116;:::o;25656:120::-;25728:23;25745:5;25728:23;:::i;:::-;25721:5;25718:34;25708:62;;25766:1;25763;25756:12;25708:62;25656:120;:::o;25782:122::-;25855:24;25873:5;25855:24;:::i;:::-;25848:5;25845:35;25835:63;;25894:1;25891;25884:12;25835:63;25782:122;:::o

Swarm Source

ipfs://c25bbedc16166cad2990967650d261b1d3d41896ff5d635d26bdd1adcc81c891
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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