ETH Price: $3,235.74 (-0.97%)

Token

This is not a painting (TINAP)
 

Overview

Max Total Supply

57 TINAP

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
bigwarz.eth
Balance
2 TINAP
0xc625ae1ff8b822c222be1d282cc912d243964196
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.13;

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


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


pragma solidity ^0.8.13;

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

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


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


pragma solidity ^0.8.13;

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

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


// File erc721a/contracts/[email protected]


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File erc721a/contracts/[email protected]


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/NFT.sol


pragma solidity ^0.8.13;




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

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

    mapping(address => uint256) public minted;

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

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

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

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

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

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

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

    function changeMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60806040523480156200001157600080fd5b506040516200396a3803806200396a8339818101604052810190620000379190620006dd565b733cc6cdda760b79bafa08df41ecfa224f810dceb660018585816002908051906020019062000068929190620003f0565b50806003908051906020019062000081929190620003f0565b50620000926200031960201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200028f57801562000155576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200011b929190620007d3565b600060405180830381600087803b1580156200013657600080fd5b505af11580156200014b573d6000803e3d6000fd5b505050506200028e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200020f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620001d5929190620007d3565b600060405180830381600087803b158015620001f057600080fd5b505af115801562000205573d6000803e3d6000fd5b505050506200028d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000258919062000800565b600060405180830381600087803b1580156200027357600080fd5b505af115801562000288573d6000803e3d6000fd5b505050505b5b5b5050620002b1620002a56200032260201b60201c565b6200032a60201b60201c565b8460099080519060200190620002c9929190620003f0565b5061029a600a819055506003600b8190555080600c819055506001600d60006101000a81548160ff0219169083151502179055506200030e826200032a60201b60201c565b505050505062000881565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003fe906200084c565b90600052602060002090601f0160209004810192826200042257600085556200046e565b82601f106200043d57805160ff19168380011785556200046e565b828001600101855582156200046e579182015b828111156200046d57825182559160200191906001019062000450565b5b5090506200047d919062000481565b5090565b5b808211156200049c57600081600090555060010162000482565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200050982620004be565b810181811067ffffffffffffffff821117156200052b576200052a620004cf565b5b80604052505050565b600062000540620004a0565b90506200054e8282620004fe565b919050565b600067ffffffffffffffff821115620005715762000570620004cf565b5b6200057c82620004be565b9050602081019050919050565b60005b83811015620005a95780820151818401526020810190506200058c565b83811115620005b9576000848401525b50505050565b6000620005d6620005d08462000553565b62000534565b905082815260208101848484011115620005f557620005f4620004b9565b5b6200060284828562000589565b509392505050565b600082601f830112620006225762000621620004b4565b5b815162000634848260208601620005bf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200066a826200063d565b9050919050565b6200067c816200065d565b81146200068857600080fd5b50565b6000815190506200069c8162000671565b92915050565b6000819050919050565b620006b781620006a2565b8114620006c357600080fd5b50565b600081519050620006d781620006ac565b92915050565b600080600080600060a08688031215620006fc57620006fb620004aa565b5b600086015167ffffffffffffffff8111156200071d576200071c620004af565b5b6200072b888289016200060a565b955050602086015167ffffffffffffffff8111156200074f576200074e620004af565b5b6200075d888289016200060a565b945050604086015167ffffffffffffffff811115620007815762000780620004af565b5b6200078f888289016200060a565b9350506060620007a2888289016200068b565b9250506080620007b588828901620006c6565b9150509295509295909350565b620007cd816200065d565b82525050565b6000604082019050620007ea6000830185620007c2565b620007f96020830184620007c2565b9392505050565b6000602082019050620008176000830184620007c2565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086557607f821691505b6020821081036200087b576200087a6200081d565b5b50919050565b6130d980620008916000396000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461063f578063d5abeb011461067c578063e985e9c5146106a7578063f2fde38b146106e4576101d8565b8063a0712d68146105b5578063a22cb465146105d1578063a2b40d19146105fa578063b88d4fde14610623576101d8565b80637501f741116100d15780637501f741146105095780638da5cb5b1461053457806395d89b411461055f578063a035b1fe1461058a576101d8565b80636352211e1461044f578063672434821461048c57806370a08231146104b5578063715018a6146104f2576101d8565b806323b872dd1161017a57806341f434341161014957806341f43434146103b457806342842e0e146103df5780634779b82e146103fb5780634bf365df14610424576101d8565b806323b872dd1461032f57806339a0c6f91461034b5780633ccfd60b14610374578063404c7cdd1461038b576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e5780631e7269c5146102c957806320c63e3b14610306576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612129565b61070d565b6040516102119190612171565b60405180910390f35b34801561022657600080fd5b5061022f61079f565b60405161023c9190612225565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061227d565b610831565b60405161027991906122eb565b60405180910390f35b61029c60048036038101906102979190612332565b6108b0565b005b3480156102aa57600080fd5b506102b36108c9565b6040516102c09190612381565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb919061239c565b6108e0565b6040516102fd9190612381565b60405180910390f35b34801561031257600080fd5b5061032d6004803603810190610328919061227d565b6108f8565b005b610349600480360381019061034491906123c9565b61090a565b005b34801561035757600080fd5b50610372600480360381019061036d9190612551565b610959565b005b34801561038057600080fd5b5061038961097b565b005b34801561039757600080fd5b506103b260048036038101906103ad919061227d565b6109cc565b005b3480156103c057600080fd5b506103c96109de565b6040516103d691906125f9565b60405180910390f35b6103f960048036038101906103f491906123c9565b6109f0565b005b34801561040757600080fd5b50610422600480360381019061041d9190612640565b610a3f565b005b34801561043057600080fd5b50610439610a64565b6040516104469190612171565b60405180910390f35b34801561045b57600080fd5b506104766004803603810190610471919061227d565b610a77565b60405161048391906122eb565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae91906127f8565b610a89565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061239c565b610b64565b6040516104e99190612381565b60405180910390f35b3480156104fe57600080fd5b50610507610c1c565b005b34801561051557600080fd5b5061051e610c30565b60405161052b9190612381565b60405180910390f35b34801561054057600080fd5b50610549610c36565b60405161055691906122eb565b60405180910390f35b34801561056b57600080fd5b50610574610c60565b6040516105819190612225565b60405180910390f35b34801561059657600080fd5b5061059f610cf2565b6040516105ac9190612381565b60405180910390f35b6105cf60048036038101906105ca919061227d565b610cf8565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190612870565b610ee5565b005b34801561060657600080fd5b50610621600480360381019061061c919061227d565b610efe565b005b61063d60048036038101906106389190612951565b610f10565b005b34801561064b57600080fd5b506106666004803603810190610661919061227d565b610f61565b6040516106739190612225565b60405180910390f35b34801561068857600080fd5b50610691610fe9565b60405161069e9190612381565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c991906129d4565b610fef565b6040516106db9190612171565b60405180910390f35b3480156106f057600080fd5b5061070b6004803603810190610706919061239c565b611083565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107ae90612a43565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90612a43565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600061083c82611106565b610872576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108ba81611165565b6108c48383611262565b505050565b60006108d36113a6565b6001546000540303905090565b600e6020528060005260406000206000915090505481565b6109006113af565b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109485761094733611165565b5b61095384848461142d565b50505050565b6109616113af565b806009908051906020019061097792919061201a565b5050565b6109836113af565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156109c9573d6000803e3d6000fd5b50565b6109d46113af565b80600a8190555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a2e57610a2d33611165565b5b610a3984848461174f565b50505050565b610a476113af565b80600d60006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900460ff1681565b6000610a828261176f565b9050919050565b610a916113af565b8051825114610a9f57600080fd5b60005b8251811015610b5f576000828281518110610ac057610abf612a74565b5b602002602001015190506000848381518110610adf57610ade612a74565b5b60200260200101519050600a5482610af56108c9565b610aff9190612ad2565b1115610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790612b74565b60405180910390fd5b610b4a818361183b565b50508080610b5790612b94565b915050610aa2565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c246113af565b610c2e6000611859565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c6f90612a43565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9b90612a43565b8015610ce85780601f10610cbd57610100808354040283529160200191610ce8565b820191906000526020600020905b815481529060010190602001808311610ccb57829003601f168201915b5050505050905090565b600c5481565b6000600c5482610d089190612bdc565b9050600d60009054906101000a900460ff16610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090612c82565b60405180910390fd5b803414610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290612cee565b60405180910390fd5b600b5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610de99190612ad2565b1115610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190612b74565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e799190612ad2565b92505081905550600a5482610e8c6108c9565b610e969190612ad2565b1115610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece90612b74565b60405180910390fd5b610ee1338361183b565b5050565b81610eef81611165565b610ef9838361191f565b505050565b610f066113af565b80600c8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f4e57610f4d33611165565b5b610f5a85858585611a2a565b5050505050565b6060610f6c82611106565b610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa290612d80565b60405180910390fd5b6000610fb5611a9d565b905080610fc184611b2f565b604051602001610fd2929190612e28565b604051602081830303815290604052915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61108b6113af565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612ec9565b60405180910390fd5b61110381611859565b50565b6000816111116113a6565b11158015611120575060005482105b801561115e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561125f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111dc929190612ee9565b602060405180830381865afa1580156111f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121d9190612f27565b61125e57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161125591906122eb565b60405180910390fd5b5b50565b600061126d82610a77565b90508073ffffffffffffffffffffffffffffffffffffffff1661128e611b7f565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576112ba816112b5611b7f565b610fef565b6112f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6113b7611b87565b73ffffffffffffffffffffffffffffffffffffffff166113d5610c36565b73ffffffffffffffffffffffffffffffffffffffff161461142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290612fa0565b60405180910390fd5b565b60006114388261176f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461149f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806114ab84611b8f565b915091506114c181876114bc611b7f565b611bb6565b61150d576114d6866114d1611b7f565b610fef565b61150c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611573576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115808686866001611bfa565b801561158b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061165985611635888887611c00565b7c020000000000000000000000000000000000000000000000000000000017611c28565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116df57600060018501905060006004600083815260200190815260200160002054036116dd5760005481146116dc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117478686866001611c53565b505050505050565b61176a83838360405180602001604052806000815250610f10565b505050565b6000808290508061177e6113a6565b11611804576000548110156118035760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611801575b600081036117f75760046000836001900393508381526020019081526020016000205490506117cd565b8092505050611836565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611855828260405180602001604052806000815250611c59565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806007600061192c611b7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119d9611b7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a1e9190612171565b60405180910390a35050565b611a3584848461090a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a9757611a6084848484611cf6565b611a96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611aac90612a43565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad890612a43565b8015611b255780601f10611afa57610100808354040283529160200191611b25565b820191906000526020600020905b815481529060010190602001808311611b0857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611b6a57600184039350600a81066030018453600a8104905080611b48575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c17868684611e46565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c638383611e4f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cf157600080549050600083820390505b611ca36000868380600101945086611cf6565b611cd9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c90578160005414611cee57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d1c611b7f565b8786866040518563ffffffff1660e01b8152600401611d3e9493929190613015565b6020604051808303816000875af1925050508015611d7a57506040513d601f19601f82011682018060405250810190611d779190613076565b60015b611df3573d8060008114611daa576040519150601f19603f3d011682016040523d82523d6000602084013e611daf565b606091505b506000815103611deb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611e8f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e9c6000848385611bfa565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f1383611f046000866000611c00565b611f0d8561200a565b17611c28565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fb457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f79565b5060008203611fef576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120056000848385611c53565b505050565b60006001821460e11b9050919050565b82805461202690612a43565b90600052602060002090601f016020900481019282612048576000855561208f565b82601f1061206157805160ff191683800117855561208f565b8280016001018555821561208f579182015b8281111561208e578251825591602001919060010190612073565b5b50905061209c91906120a0565b5090565b5b808211156120b95760008160009055506001016120a1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612106816120d1565b811461211157600080fd5b50565b600081359050612123816120fd565b92915050565b60006020828403121561213f5761213e6120c7565b5b600061214d84828501612114565b91505092915050565b60008115159050919050565b61216b81612156565b82525050565b60006020820190506121866000830184612162565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c65780820151818401526020810190506121ab565b838111156121d5576000848401525b50505050565b6000601f19601f8301169050919050565b60006121f78261218c565b6122018185612197565b93506122118185602086016121a8565b61221a816121db565b840191505092915050565b6000602082019050818103600083015261223f81846121ec565b905092915050565b6000819050919050565b61225a81612247565b811461226557600080fd5b50565b60008135905061227781612251565b92915050565b600060208284031215612293576122926120c7565b5b60006122a184828501612268565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122d5826122aa565b9050919050565b6122e5816122ca565b82525050565b600060208201905061230060008301846122dc565b92915050565b61230f816122ca565b811461231a57600080fd5b50565b60008135905061232c81612306565b92915050565b60008060408385031215612349576123486120c7565b5b60006123578582860161231d565b925050602061236885828601612268565b9150509250929050565b61237b81612247565b82525050565b60006020820190506123966000830184612372565b92915050565b6000602082840312156123b2576123b16120c7565b5b60006123c08482850161231d565b91505092915050565b6000806000606084860312156123e2576123e16120c7565b5b60006123f08682870161231d565b93505060206124018682870161231d565b925050604061241286828701612268565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61245e826121db565b810181811067ffffffffffffffff8211171561247d5761247c612426565b5b80604052505050565b60006124906120bd565b905061249c8282612455565b919050565b600067ffffffffffffffff8211156124bc576124bb612426565b5b6124c5826121db565b9050602081019050919050565b82818337600083830152505050565b60006124f46124ef846124a1565b612486565b9050828152602081018484840111156125105761250f612421565b5b61251b8482856124d2565b509392505050565b600082601f8301126125385761253761241c565b5b81356125488482602086016124e1565b91505092915050565b600060208284031215612567576125666120c7565b5b600082013567ffffffffffffffff811115612585576125846120cc565b5b61259184828501612523565b91505092915050565b6000819050919050565b60006125bf6125ba6125b5846122aa565b61259a565b6122aa565b9050919050565b60006125d1826125a4565b9050919050565b60006125e3826125c6565b9050919050565b6125f3816125d8565b82525050565b600060208201905061260e60008301846125ea565b92915050565b61261d81612156565b811461262857600080fd5b50565b60008135905061263a81612614565b92915050565b600060208284031215612656576126556120c7565b5b60006126648482850161262b565b91505092915050565b600067ffffffffffffffff82111561268857612687612426565b5b602082029050602081019050919050565b600080fd5b60006126b16126ac8461266d565b612486565b905080838252602082019050602084028301858111156126d4576126d3612699565b5b835b818110156126fd57806126e9888261231d565b8452602084019350506020810190506126d6565b5050509392505050565b600082601f83011261271c5761271b61241c565b5b813561272c84826020860161269e565b91505092915050565b600067ffffffffffffffff8211156127505761274f612426565b5b602082029050602081019050919050565b600061277461276f84612735565b612486565b9050808382526020820190506020840283018581111561279757612796612699565b5b835b818110156127c057806127ac8882612268565b845260208401935050602081019050612799565b5050509392505050565b600082601f8301126127df576127de61241c565b5b81356127ef848260208601612761565b91505092915050565b6000806040838503121561280f5761280e6120c7565b5b600083013567ffffffffffffffff81111561282d5761282c6120cc565b5b61283985828601612707565b925050602083013567ffffffffffffffff81111561285a576128596120cc565b5b612866858286016127ca565b9150509250929050565b60008060408385031215612887576128866120c7565b5b60006128958582860161231d565b92505060206128a68582860161262b565b9150509250929050565b600067ffffffffffffffff8211156128cb576128ca612426565b5b6128d4826121db565b9050602081019050919050565b60006128f46128ef846128b0565b612486565b9050828152602081018484840111156129105761290f612421565b5b61291b8482856124d2565b509392505050565b600082601f8301126129385761293761241c565b5b81356129488482602086016128e1565b91505092915050565b6000806000806080858703121561296b5761296a6120c7565b5b60006129798782880161231d565b945050602061298a8782880161231d565b935050604061299b87828801612268565b925050606085013567ffffffffffffffff8111156129bc576129bb6120cc565b5b6129c887828801612923565b91505092959194509250565b600080604083850312156129eb576129ea6120c7565b5b60006129f98582860161231d565b9250506020612a0a8582860161231d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a5b57607f821691505b602082108103612a6e57612a6d612a14565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612add82612247565b9150612ae883612247565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b1d57612b1c612aa3565b5b828201905092915050565b7f6e756d2065727200000000000000000000000000000000000000000000000000600082015250565b6000612b5e600783612197565b9150612b6982612b28565b602082019050919050565b60006020820190508181036000830152612b8d81612b51565b9050919050565b6000612b9f82612247565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612bd157612bd0612aa3565b5b600182019050919050565b6000612be782612247565b9150612bf283612247565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c2b57612c2a612aa3565b5b828202905092915050565b7f7374617475732065727200000000000000000000000000000000000000000000600082015250565b6000612c6c600a83612197565b9150612c7782612c36565b602082019050919050565b60006020820190508181036000830152612c9b81612c5f565b9050919050565b7f6574682065727200000000000000000000000000000000000000000000000000600082015250565b6000612cd8600783612197565b9150612ce382612ca2565b602082019050919050565b60006020820190508181036000830152612d0781612ccb565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d6a602f83612197565b9150612d7582612d0e565b604082019050919050565b60006020820190508181036000830152612d9981612d5d565b9050919050565b600081905092915050565b6000612db68261218c565b612dc08185612da0565b9350612dd08185602086016121a8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e12600583612da0565b9150612e1d82612ddc565b600582019050919050565b6000612e348285612dab565b9150612e408284612dab565b9150612e4b82612e05565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612eb3602683612197565b9150612ebe82612e57565b604082019050919050565b60006020820190508181036000830152612ee281612ea6565b9050919050565b6000604082019050612efe60008301856122dc565b612f0b60208301846122dc565b9392505050565b600081519050612f2181612614565b92915050565b600060208284031215612f3d57612f3c6120c7565b5b6000612f4b84828501612f12565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f8a602083612197565b9150612f9582612f54565b602082019050919050565b60006020820190508181036000830152612fb981612f7d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fe782612fc0565b612ff18185612fcb565b93506130018185602086016121a8565b61300a816121db565b840191505092915050565b600060808201905061302a60008301876122dc565b61303760208301866122dc565b6130446040830185612372565b81810360608301526130568184612fdc565b905095945050505050565b600081519050613070816120fd565b92915050565b60006020828403121561308c5761308b6120c7565b5b600061309a84828501613061565b9150509291505056fea264697066735822122040ae75d6ad6dc75a603a8a00e7647748f1e732eed2ef90daf88d5c959485a88b64736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000e34bc284d8c9e28b2df23e56a9fa832d2f47dee7000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569677478363263376871376964346e69616369796f6979746673756f3767766f7a61333369786e62617267706e6c6a6436763634752f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001654686973206973206e6f742061207061696e74696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000554494e4150000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461063f578063d5abeb011461067c578063e985e9c5146106a7578063f2fde38b146106e4576101d8565b8063a0712d68146105b5578063a22cb465146105d1578063a2b40d19146105fa578063b88d4fde14610623576101d8565b80637501f741116100d15780637501f741146105095780638da5cb5b1461053457806395d89b411461055f578063a035b1fe1461058a576101d8565b80636352211e1461044f578063672434821461048c57806370a08231146104b5578063715018a6146104f2576101d8565b806323b872dd1161017a57806341f434341161014957806341f43434146103b457806342842e0e146103df5780634779b82e146103fb5780634bf365df14610424576101d8565b806323b872dd1461032f57806339a0c6f91461034b5780633ccfd60b14610374578063404c7cdd1461038b576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd1461029e5780631e7269c5146102c957806320c63e3b14610306576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612129565b61070d565b6040516102119190612171565b60405180910390f35b34801561022657600080fd5b5061022f61079f565b60405161023c9190612225565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061227d565b610831565b60405161027991906122eb565b60405180910390f35b61029c60048036038101906102979190612332565b6108b0565b005b3480156102aa57600080fd5b506102b36108c9565b6040516102c09190612381565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb919061239c565b6108e0565b6040516102fd9190612381565b60405180910390f35b34801561031257600080fd5b5061032d6004803603810190610328919061227d565b6108f8565b005b610349600480360381019061034491906123c9565b61090a565b005b34801561035757600080fd5b50610372600480360381019061036d9190612551565b610959565b005b34801561038057600080fd5b5061038961097b565b005b34801561039757600080fd5b506103b260048036038101906103ad919061227d565b6109cc565b005b3480156103c057600080fd5b506103c96109de565b6040516103d691906125f9565b60405180910390f35b6103f960048036038101906103f491906123c9565b6109f0565b005b34801561040757600080fd5b50610422600480360381019061041d9190612640565b610a3f565b005b34801561043057600080fd5b50610439610a64565b6040516104469190612171565b60405180910390f35b34801561045b57600080fd5b506104766004803603810190610471919061227d565b610a77565b60405161048391906122eb565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae91906127f8565b610a89565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061239c565b610b64565b6040516104e99190612381565b60405180910390f35b3480156104fe57600080fd5b50610507610c1c565b005b34801561051557600080fd5b5061051e610c30565b60405161052b9190612381565b60405180910390f35b34801561054057600080fd5b50610549610c36565b60405161055691906122eb565b60405180910390f35b34801561056b57600080fd5b50610574610c60565b6040516105819190612225565b60405180910390f35b34801561059657600080fd5b5061059f610cf2565b6040516105ac9190612381565b60405180910390f35b6105cf60048036038101906105ca919061227d565b610cf8565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190612870565b610ee5565b005b34801561060657600080fd5b50610621600480360381019061061c919061227d565b610efe565b005b61063d60048036038101906106389190612951565b610f10565b005b34801561064b57600080fd5b506106666004803603810190610661919061227d565b610f61565b6040516106739190612225565b60405180910390f35b34801561068857600080fd5b50610691610fe9565b60405161069e9190612381565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c991906129d4565b610fef565b6040516106db9190612171565b60405180910390f35b3480156106f057600080fd5b5061070b6004803603810190610706919061239c565b611083565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107ae90612a43565b80601f01602080910402602001604051908101604052809291908181526020018280546107da90612a43565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600061083c82611106565b610872576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108ba81611165565b6108c48383611262565b505050565b60006108d36113a6565b6001546000540303905090565b600e6020528060005260406000206000915090505481565b6109006113af565b80600b8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109485761094733611165565b5b61095384848461142d565b50505050565b6109616113af565b806009908051906020019061097792919061201a565b5050565b6109836113af565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156109c9573d6000803e3d6000fd5b50565b6109d46113af565b80600a8190555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a2e57610a2d33611165565b5b610a3984848461174f565b50505050565b610a476113af565b80600d60006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900460ff1681565b6000610a828261176f565b9050919050565b610a916113af565b8051825114610a9f57600080fd5b60005b8251811015610b5f576000828281518110610ac057610abf612a74565b5b602002602001015190506000848381518110610adf57610ade612a74565b5b60200260200101519050600a5482610af56108c9565b610aff9190612ad2565b1115610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790612b74565b60405180910390fd5b610b4a818361183b565b50508080610b5790612b94565b915050610aa2565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c246113af565b610c2e6000611859565b565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c6f90612a43565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9b90612a43565b8015610ce85780601f10610cbd57610100808354040283529160200191610ce8565b820191906000526020600020905b815481529060010190602001808311610ccb57829003601f168201915b5050505050905090565b600c5481565b6000600c5482610d089190612bdc565b9050600d60009054906101000a900460ff16610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090612c82565b60405180910390fd5b803414610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290612cee565b60405180910390fd5b600b5482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610de99190612ad2565b1115610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190612b74565b60405180910390fd5b81600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e799190612ad2565b92505081905550600a5482610e8c6108c9565b610e969190612ad2565b1115610ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ece90612b74565b60405180910390fd5b610ee1338361183b565b5050565b81610eef81611165565b610ef9838361191f565b505050565b610f066113af565b80600c8190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f4e57610f4d33611165565b5b610f5a85858585611a2a565b5050505050565b6060610f6c82611106565b610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa290612d80565b60405180910390fd5b6000610fb5611a9d565b905080610fc184611b2f565b604051602001610fd2929190612e28565b604051602081830303815290604052915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61108b6113af565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612ec9565b60405180910390fd5b61110381611859565b50565b6000816111116113a6565b11158015611120575060005482105b801561115e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561125f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111dc929190612ee9565b602060405180830381865afa1580156111f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121d9190612f27565b61125e57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161125591906122eb565b60405180910390fd5b5b50565b600061126d82610a77565b90508073ffffffffffffffffffffffffffffffffffffffff1661128e611b7f565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576112ba816112b5611b7f565b610fef565b6112f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6113b7611b87565b73ffffffffffffffffffffffffffffffffffffffff166113d5610c36565b73ffffffffffffffffffffffffffffffffffffffff161461142b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142290612fa0565b60405180910390fd5b565b60006114388261176f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461149f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806114ab84611b8f565b915091506114c181876114bc611b7f565b611bb6565b61150d576114d6866114d1611b7f565b610fef565b61150c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611573576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115808686866001611bfa565b801561158b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061165985611635888887611c00565b7c020000000000000000000000000000000000000000000000000000000017611c28565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116df57600060018501905060006004600083815260200190815260200160002054036116dd5760005481146116dc578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117478686866001611c53565b505050505050565b61176a83838360405180602001604052806000815250610f10565b505050565b6000808290508061177e6113a6565b11611804576000548110156118035760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611801575b600081036117f75760046000836001900393508381526020019081526020016000205490506117cd565b8092505050611836565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611855828260405180602001604052806000815250611c59565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806007600061192c611b7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119d9611b7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a1e9190612171565b60405180910390a35050565b611a3584848461090a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a9757611a6084848484611cf6565b611a96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060098054611aac90612a43565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad890612a43565b8015611b255780601f10611afa57610100808354040283529160200191611b25565b820191906000526020600020905b815481529060010190602001808311611b0857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611b6a57600184039350600a81066030018453600a8104905080611b48575b50828103602084039350808452505050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c17868684611e46565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611c638383611e4f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cf157600080549050600083820390505b611ca36000868380600101945086611cf6565b611cd9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c90578160005414611cee57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d1c611b7f565b8786866040518563ffffffff1660e01b8152600401611d3e9493929190613015565b6020604051808303816000875af1925050508015611d7a57506040513d601f19601f82011682018060405250810190611d779190613076565b60015b611df3573d8060008114611daa576040519150601f19603f3d011682016040523d82523d6000602084013e611daf565b606091505b506000815103611deb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b60008054905060008203611e8f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e9c6000848385611bfa565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f1383611f046000866000611c00565b611f0d8561200a565b17611c28565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611fb457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f79565b5060008203611fef576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120056000848385611c53565b505050565b60006001821460e11b9050919050565b82805461202690612a43565b90600052602060002090601f016020900481019282612048576000855561208f565b82601f1061206157805160ff191683800117855561208f565b8280016001018555821561208f579182015b8281111561208e578251825591602001919060010190612073565b5b50905061209c91906120a0565b5090565b5b808211156120b95760008160009055506001016120a1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612106816120d1565b811461211157600080fd5b50565b600081359050612123816120fd565b92915050565b60006020828403121561213f5761213e6120c7565b5b600061214d84828501612114565b91505092915050565b60008115159050919050565b61216b81612156565b82525050565b60006020820190506121866000830184612162565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c65780820151818401526020810190506121ab565b838111156121d5576000848401525b50505050565b6000601f19601f8301169050919050565b60006121f78261218c565b6122018185612197565b93506122118185602086016121a8565b61221a816121db565b840191505092915050565b6000602082019050818103600083015261223f81846121ec565b905092915050565b6000819050919050565b61225a81612247565b811461226557600080fd5b50565b60008135905061227781612251565b92915050565b600060208284031215612293576122926120c7565b5b60006122a184828501612268565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122d5826122aa565b9050919050565b6122e5816122ca565b82525050565b600060208201905061230060008301846122dc565b92915050565b61230f816122ca565b811461231a57600080fd5b50565b60008135905061232c81612306565b92915050565b60008060408385031215612349576123486120c7565b5b60006123578582860161231d565b925050602061236885828601612268565b9150509250929050565b61237b81612247565b82525050565b60006020820190506123966000830184612372565b92915050565b6000602082840312156123b2576123b16120c7565b5b60006123c08482850161231d565b91505092915050565b6000806000606084860312156123e2576123e16120c7565b5b60006123f08682870161231d565b93505060206124018682870161231d565b925050604061241286828701612268565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61245e826121db565b810181811067ffffffffffffffff8211171561247d5761247c612426565b5b80604052505050565b60006124906120bd565b905061249c8282612455565b919050565b600067ffffffffffffffff8211156124bc576124bb612426565b5b6124c5826121db565b9050602081019050919050565b82818337600083830152505050565b60006124f46124ef846124a1565b612486565b9050828152602081018484840111156125105761250f612421565b5b61251b8482856124d2565b509392505050565b600082601f8301126125385761253761241c565b5b81356125488482602086016124e1565b91505092915050565b600060208284031215612567576125666120c7565b5b600082013567ffffffffffffffff811115612585576125846120cc565b5b61259184828501612523565b91505092915050565b6000819050919050565b60006125bf6125ba6125b5846122aa565b61259a565b6122aa565b9050919050565b60006125d1826125a4565b9050919050565b60006125e3826125c6565b9050919050565b6125f3816125d8565b82525050565b600060208201905061260e60008301846125ea565b92915050565b61261d81612156565b811461262857600080fd5b50565b60008135905061263a81612614565b92915050565b600060208284031215612656576126556120c7565b5b60006126648482850161262b565b91505092915050565b600067ffffffffffffffff82111561268857612687612426565b5b602082029050602081019050919050565b600080fd5b60006126b16126ac8461266d565b612486565b905080838252602082019050602084028301858111156126d4576126d3612699565b5b835b818110156126fd57806126e9888261231d565b8452602084019350506020810190506126d6565b5050509392505050565b600082601f83011261271c5761271b61241c565b5b813561272c84826020860161269e565b91505092915050565b600067ffffffffffffffff8211156127505761274f612426565b5b602082029050602081019050919050565b600061277461276f84612735565b612486565b9050808382526020820190506020840283018581111561279757612796612699565b5b835b818110156127c057806127ac8882612268565b845260208401935050602081019050612799565b5050509392505050565b600082601f8301126127df576127de61241c565b5b81356127ef848260208601612761565b91505092915050565b6000806040838503121561280f5761280e6120c7565b5b600083013567ffffffffffffffff81111561282d5761282c6120cc565b5b61283985828601612707565b925050602083013567ffffffffffffffff81111561285a576128596120cc565b5b612866858286016127ca565b9150509250929050565b60008060408385031215612887576128866120c7565b5b60006128958582860161231d565b92505060206128a68582860161262b565b9150509250929050565b600067ffffffffffffffff8211156128cb576128ca612426565b5b6128d4826121db565b9050602081019050919050565b60006128f46128ef846128b0565b612486565b9050828152602081018484840111156129105761290f612421565b5b61291b8482856124d2565b509392505050565b600082601f8301126129385761293761241c565b5b81356129488482602086016128e1565b91505092915050565b6000806000806080858703121561296b5761296a6120c7565b5b60006129798782880161231d565b945050602061298a8782880161231d565b935050604061299b87828801612268565b925050606085013567ffffffffffffffff8111156129bc576129bb6120cc565b5b6129c887828801612923565b91505092959194509250565b600080604083850312156129eb576129ea6120c7565b5b60006129f98582860161231d565b9250506020612a0a8582860161231d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a5b57607f821691505b602082108103612a6e57612a6d612a14565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612add82612247565b9150612ae883612247565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b1d57612b1c612aa3565b5b828201905092915050565b7f6e756d2065727200000000000000000000000000000000000000000000000000600082015250565b6000612b5e600783612197565b9150612b6982612b28565b602082019050919050565b60006020820190508181036000830152612b8d81612b51565b9050919050565b6000612b9f82612247565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612bd157612bd0612aa3565b5b600182019050919050565b6000612be782612247565b9150612bf283612247565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c2b57612c2a612aa3565b5b828202905092915050565b7f7374617475732065727200000000000000000000000000000000000000000000600082015250565b6000612c6c600a83612197565b9150612c7782612c36565b602082019050919050565b60006020820190508181036000830152612c9b81612c5f565b9050919050565b7f6574682065727200000000000000000000000000000000000000000000000000600082015250565b6000612cd8600783612197565b9150612ce382612ca2565b602082019050919050565b60006020820190508181036000830152612d0781612ccb565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d6a602f83612197565b9150612d7582612d0e565b604082019050919050565b60006020820190508181036000830152612d9981612d5d565b9050919050565b600081905092915050565b6000612db68261218c565b612dc08185612da0565b9350612dd08185602086016121a8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e12600583612da0565b9150612e1d82612ddc565b600582019050919050565b6000612e348285612dab565b9150612e408284612dab565b9150612e4b82612e05565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612eb3602683612197565b9150612ebe82612e57565b604082019050919050565b60006020820190508181036000830152612ee281612ea6565b9050919050565b6000604082019050612efe60008301856122dc565b612f0b60208301846122dc565b9392505050565b600081519050612f2181612614565b92915050565b600060208284031215612f3d57612f3c6120c7565b5b6000612f4b84828501612f12565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f8a602083612197565b9150612f9582612f54565b602082019050919050565b60006020820190508181036000830152612fb981612f7d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612fe782612fc0565b612ff18185612fcb565b93506130018185602086016121a8565b61300a816121db565b840191505092915050565b600060808201905061302a60008301876122dc565b61303760208301866122dc565b6130446040830185612372565b81810360608301526130568184612fdc565b905095945050505050565b600081519050613070816120fd565b92915050565b60006020828403121561308c5761308b6120c7565b5b600061309a84828501613061565b9150509291505056fea264697066735822122040ae75d6ad6dc75a603a8a00e7647748f1e732eed2ef90daf88d5c959485a88b64736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000e34bc284d8c9e28b2df23e56a9fa832d2f47dee7000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569677478363263376871376964346e69616369796f6979746673756f3767766f7a61333369786e62617267706e6c6a6436763634752f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001654686973206973206e6f742061207061696e74696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000554494e4150000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : url (string): ipfs://bafybeigtx62c7hq7id4niaciyoiytfsuo7gvoza33ixnbargpnljd6v64u/
Arg [1] : name (string): This is not a painting
Arg [2] : symbol (string): TINAP
Arg [3] : _owner (address): 0xe34bC284d8C9E28b2Df23e56A9fA832D2F47Dee7
Arg [4] : _price (uint256): 10000000000000000

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 000000000000000000000000e34bc284d8c9e28b2df23e56a9fa832d2f47dee7
Arg [4] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [6] : 697066733a2f2f62616679626569677478363263376871376964346e69616369
Arg [7] : 796f6979746673756f3767766f7a61333369786e62617267706e6c6a64367636
Arg [8] : 34752f0000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [10] : 54686973206973206e6f742061207061696e74696e6700000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [12] : 54494e4150000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

69925:3770:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23784:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24686:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31177:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72289:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20437:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70175:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71373:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72487:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71061:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73176:109;;;;;;;;;;;;;:::i;:::-;;71476:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2862:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72700:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71174:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70146:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26079:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73293:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21621:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59605:103;;;;;;;;;;;;;:::i;:::-;;70090:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58957:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24862:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70119:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71587:383;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71978:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71278:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72921:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70700:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70059:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32126:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59863:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23784:639;23869:4;24208:10;24193:25;;:11;:25;;;;:102;;;;24285:10;24270:25;;:11;:25;;;;24193:102;:179;;;;24362:10;24347:25;;:11;:25;;;;24193:179;24173:199;;23784:639;;;:::o;24686:100::-;24740:13;24773:5;24766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24686:100;:::o;31177:218::-;31253:7;31278:16;31286:7;31278;:16::i;:::-;31273:64;;31303:34;;;;;;;;;;;;;;31273:64;31357:15;:24;31373:7;31357:24;;;;;;;;;;;:30;;;;;;;;;;;;31350:37;;31177:218;;;:::o;72289:190::-;72418:8;4383:30;4404:8;4383:20;:30::i;:::-;72439:32:::1;72453:8;72463:7;72439:13;:32::i;:::-;72289:190:::0;;;:::o;20437:323::-;20498:7;20726:15;:13;:15::i;:::-;20711:12;;20695:13;;:28;:46;20688:53;;20437:323;:::o;70175:41::-;;;;;;;;;;;;;;;;;:::o;71373:95::-;58843:13;:11;:13::i;:::-;71452:8:::1;71442:7;:18;;;;71373:95:::0;:::o;72487:205::-;72630:4;4211:10;4203:18;;:4;:18;;;4199:83;;4238:32;4259:10;4238:20;:32::i;:::-;4199:83;72647:37:::1;72666:4;72672:2;72676:7;72647:18;:37::i;:::-;72487:205:::0;;;;:::o;71061:105::-;58843:13;:11;:13::i;:::-;71151:7:::1;71135:13;:23;;;;;;;;;;;;:::i;:::-;;71061:105:::0;:::o;73176:109::-;58843:13;:11;:13::i;:::-;73234:10:::1;73226:28;;:51;73255:21;73226:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;73176:109::o:0;71476:103::-;58843:13;:11;:13::i;:::-;71561:10:::1;71549:9;:22;;;;71476:103:::0;:::o;2862:143::-;2962:42;2862:143;:::o;72700:213::-;72847:4;4211:10;4203:18;;:4;:18;;;4199:83;;4238:32;4259:10;4238:20;:32::i;:::-;4199:83;72864:41:::1;72887:4;72893:2;72897:7;72864:22;:41::i;:::-;72700:213:::0;;;;:::o;71174:96::-;58843:13;:11;:13::i;:::-;71253:9:::1;71242:8;;:20;;;;;;;;;;;;;;;;;;71174:96:::0;:::o;70146:20::-;;;;;;;;;;;;;:::o;26079:152::-;26151:7;26194:27;26213:7;26194:18;:27::i;:::-;26171:52;;26079:152;;;:::o;73293:399::-;58843:13;:11;:13::i;:::-;73434:4:::1;:11;73418:5;:12;:27;73410:36;;;::::0;::::1;;73462:6;73457:228;73478:5;:12;73474:1;:16;73457:228;;;73512:11;73526:4;73531:1;73526:7;;;;;;;;:::i;:::-;;;;;;;;73512:21;;73548:12;73563:5;73569:1;73563:8;;;;;;;;:::i;:::-;;;;;;;;73548:23;;73617:9;;73610:3;73594:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;73586:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;73653:20;73663:4;73669:3;73653:9;:20::i;:::-;73497:188;;73492:3;;;;;:::i;:::-;;;;73457:228;;;;73293:399:::0;;:::o;21621:233::-;21693:7;21734:1;21717:19;;:5;:19;;;21713:60;;21745:28;;;;;;;;;;;;;;21713:60;15780:13;21791:18;:25;21810:5;21791:25;;;;;;;;;;;;;;;;:55;21784:62;;21621:233;;;:::o;59605:103::-;58843:13;:11;:13::i;:::-;59670:30:::1;59697:1;59670:18;:30::i;:::-;59605:103::o:0;70090:22::-;;;;:::o;58957:87::-;59003:7;59030:6;;;;;;;;;;;59023:13;;58957:87;:::o;24862:104::-;24918:13;24951:7;24944:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24862:104;:::o;70119:20::-;;;;:::o;71587:383::-;71640:14;71663:5;;71657:3;:11;;;;:::i;:::-;71640:28;;71687:8;;;;;;;;;;;71679:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;71742:6;71729:9;:19;71721:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;71807:7;;71800:3;71779:6;:18;71786:10;71779:18;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;:35;;71771:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71859:3;71837:6;:18;71844:10;71837:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;71904:9;;71897:3;71881:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;71873:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;71936:26;71946:10;71958:3;71936:9;:26::i;:::-;71629:341;71587:383;:::o;71978:201::-;72107:8;4383:30;4404:8;4383:20;:30::i;:::-;72128:43:::1;72152:8;72162;72128:23;:43::i;:::-;71978:201:::0;;;:::o;71278:87::-;58843:13;:11;:13::i;:::-;71351:6:::1;71343:5;:14;;;;71278:87:::0;:::o;72921:247::-;73096:4;4211:10;4203:18;;:4;:18;;;4199:83;;4238:32;4259:10;4238:20;:32::i;:::-;4199:83;73113:47:::1;73136:4;73142:2;73146:7;73155:4;73113:22;:47::i;:::-;72921:247:::0;;;;;:::o;70700:353::-;70781:13;70829:16;70837:7;70829;:16::i;:::-;70807:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;70931:21;70955:10;:8;:10::i;:::-;70931:34;;71007:7;71016:18;71026:7;71016:9;:18::i;:::-;70990:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70976:69;;;70700:353;;;:::o;70059:24::-;;;;:::o;32126:164::-;32223:4;32247:18;:25;32266:5;32247:25;;;;;;;;;;;;;;;:35;32273:8;32247:35;;;;;;;;;;;;;;;;;;;;;;;;;32240:42;;32126:164;;;;:::o;59863:201::-;58843:13;:11;:13::i;:::-;59972:1:::1;59952:22;;:8;:22;;::::0;59944:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;60028:28;60047:8;60028:18;:28::i;:::-;59863:201:::0;:::o;32548:282::-;32613:4;32669:7;32650:15;:13;:15::i;:::-;:26;;:66;;;;;32703:13;;32693:7;:23;32650:66;:153;;;;;32802:1;16556:8;32754:17;:26;32772:7;32754:26;;;;;;;;;;;;:44;:49;32650:153;32630:173;;32548:282;;;:::o;4441:419::-;4680:1;2962:42;4632:45;;;:49;4628:225;;;2962:42;4703;;;4754:4;4761:8;4703:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4698:144;;4817:8;4798:28;;;;;;;;;;;:::i;:::-;;;;;;;;4698:144;4628:225;4441:419;:::o;30610:408::-;30699:13;30715:16;30723:7;30715;:16::i;:::-;30699:32;;30771:5;30748:28;;:19;:17;:19::i;:::-;:28;;;30744:175;;30796:44;30813:5;30820:19;:17;:19::i;:::-;30796:16;:44::i;:::-;30791:128;;30868:35;;;;;;;;;;;;;;30791:128;30744:175;30964:2;30931:15;:24;30947:7;30931:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31002:7;30998:2;30982:28;;30991:5;30982:28;;;;;;;;;;;;30688:330;30610:408;;:::o;72188:93::-;72245:7;72272:1;72265:8;;72188:93;:::o;59122:132::-;59197:12;:10;:12::i;:::-;59186:23;;:7;:5;:7::i;:::-;:23;;;59178:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59122:132::o;34816:2825::-;34958:27;34988;35007:7;34988:18;:27::i;:::-;34958:57;;35073:4;35032:45;;35048:19;35032:45;;;35028:86;;35086:28;;;;;;;;;;;;;;35028:86;35128:27;35157:23;35184:35;35211:7;35184:26;:35::i;:::-;35127:92;;;;35319:68;35344:15;35361:4;35367:19;:17;:19::i;:::-;35319:24;:68::i;:::-;35314:180;;35407:43;35424:4;35430:19;:17;:19::i;:::-;35407:16;:43::i;:::-;35402:92;;35459:35;;;;;;;;;;;;;;35402:92;35314:180;35525:1;35511:16;;:2;:16;;;35507:52;;35536:23;;;;;;;;;;;;;;35507:52;35572:43;35594:4;35600:2;35604:7;35613:1;35572:21;:43::i;:::-;35708:15;35705:160;;;35848:1;35827:19;35820:30;35705:160;36245:18;:24;36264:4;36245:24;;;;;;;;;;;;;;;;36243:26;;;;;;;;;;;;36314:18;:22;36333:2;36314:22;;;;;;;;;;;;;;;;36312:24;;;;;;;;;;;36636:146;36673:2;36722:45;36737:4;36743:2;36747:19;36722:14;:45::i;:::-;16836:8;36694:73;36636:18;:146::i;:::-;36607:17;:26;36625:7;36607:26;;;;;;;;;;;:175;;;;36953:1;16836:8;36902:19;:47;:52;36898:627;;36975:19;37007:1;36997:7;:11;36975:33;;37164:1;37130:17;:30;37148:11;37130:30;;;;;;;;;;;;:35;37126:384;;37268:13;;37253:11;:28;37249:242;;37448:19;37415:17;:30;37433:11;37415:30;;;;;;;;;;;:52;;;;37249:242;37126:384;36956:569;36898:627;37572:7;37568:2;37553:27;;37562:4;37553:27;;;;;;;;;;;;37591:42;37612:4;37618:2;37622:7;37631:1;37591:20;:42::i;:::-;34947:2694;;;34816:2825;;;:::o;37737:193::-;37883:39;37900:4;37906:2;37910:7;37883:39;;;;;;;;;;;;:16;:39::i;:::-;37737:193;;;:::o;27234:1275::-;27301:7;27321:12;27336:7;27321:22;;27404:4;27385:15;:13;:15::i;:::-;:23;27381:1061;;27438:13;;27431:4;:20;27427:1015;;;27476:14;27493:17;:23;27511:4;27493:23;;;;;;;;;;;;27476:40;;27610:1;16556:8;27582:6;:24;:29;27578:845;;28247:113;28264:1;28254:6;:11;28247:113;;28307:17;:25;28325:6;;;;;;;28307:25;;;;;;;;;;;;28298:34;;28247:113;;;28393:6;28386:13;;;;;;27578:845;27453:989;27427:1015;27381:1061;28470:31;;;;;;;;;;;;;;27234:1275;;;;:::o;48688:112::-;48765:27;48775:2;48779:8;48765:27;;;;;;;;;;;;:9;:27::i;:::-;48688:112;;:::o;60224:191::-;60298:16;60317:6;;;;;;;;;;;60298:25;;60343:8;60334:6;;:17;;;;;;;;;;;;;;;;;;60398:8;60367:40;;60388:8;60367:40;;;;;;;;;;;;60287:128;60224:191;:::o;31735:234::-;31882:8;31830:18;:39;31849:19;:17;:19::i;:::-;31830:39;;;;;;;;;;;;;;;:49;31870:8;31830:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31942:8;31906:55;;31921:19;:17;:19::i;:::-;31906:55;;;31952:8;31906:55;;;;;;:::i;:::-;;;;;;;;31735:234;;:::o;38528:407::-;38703:31;38716:4;38722:2;38726:7;38703:12;:31::i;:::-;38767:1;38749:2;:14;;;:19;38745:183;;38788:56;38819:4;38825:2;38829:7;38838:5;38788:30;:56::i;:::-;38783:145;;38872:40;;;;;;;;;;;;;;38783:145;38745:183;38528:407;;;;:::o;70586:106::-;70638:13;70671;70664:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70586:106;:::o;55063:1745::-;55128:17;55562:4;55555;55549:11;55545:22;55654:1;55648:4;55641:15;55729:4;55726:1;55722:12;55715:19;;55811:1;55806:3;55799:14;55915:3;56154:5;56136:428;56162:1;56136:428;;;56202:1;56197:3;56193:11;56186:18;;56373:2;56367:4;56363:13;56359:2;56355:22;56350:3;56342:36;56467:2;56461:4;56457:13;56449:21;;56534:4;56136:428;56524:25;56136:428;56140:21;56603:3;56598;56594:13;56718:4;56713:3;56709:14;56702:21;;56783:6;56778:3;56771:19;55167:1634;;;55063:1745;;;:::o;54856:105::-;54916:7;54943:10;54936:17;;54856:105;:::o;57502:98::-;57555:7;57582:10;57575:17;;57502:98;:::o;33711:485::-;33813:27;33842:23;33883:38;33924:15;:24;33940:7;33924:24;;;;;;;;;;;33883:65;;34101:18;34078:41;;34158:19;34152:26;34133:45;;34063:126;33711:485;;;:::o;32939:659::-;33088:11;33253:16;33246:5;33242:28;33233:37;;33413:16;33402:9;33398:32;33385:45;;33563:15;33552:9;33549:30;33541:5;33530:9;33527:20;33524:56;33514:66;;32939:659;;;;;:::o;39597:159::-;;;;;:::o;54165:311::-;54300:7;54320:16;16960:3;54346:19;:41;;54320:68;;16960:3;54414:31;54425:4;54431:2;54435:9;54414:10;:31::i;:::-;54406:40;;:62;;54399:69;;;54165:311;;;;;:::o;29057:450::-;29137:14;29305:16;29298:5;29294:28;29285:37;;29482:5;29468:11;29443:23;29439:41;29436:52;29429:5;29426:63;29416:73;;29057:450;;;;:::o;40421:158::-;;;;;:::o;47915:689::-;48046:19;48052:2;48056:8;48046:5;:19::i;:::-;48125:1;48107:2;:14;;;:19;48103:483;;48147:11;48161:13;;48147:27;;48193:13;48215:8;48209:3;:14;48193:30;;48242:233;48273:62;48312:1;48316:2;48320:7;;;;;;48329:5;48273:30;:62::i;:::-;48268:167;;48371:40;;;;;;;;;;;;;;48268:167;48470:3;48462:5;:11;48242:233;;48557:3;48540:13;;:20;48536:34;;48562:8;;;48536:34;48128:458;;48103:483;47915:689;;;:::o;41019:716::-;41182:4;41228:2;41203:45;;;41249:19;:17;:19::i;:::-;41270:4;41276:7;41285:5;41203:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41199:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41503:1;41486:6;:13;:18;41482:235;;41532:40;;;;;;;;;;;;;;41482:235;41675:6;41669:13;41660:6;41656:2;41652:15;41645:38;41199:529;41372:54;;;41362:64;;;:6;:64;;;;41355:71;;;41019:716;;;;;;:::o;53866:147::-;54003:6;53866:147;;;;;:::o;42197:2966::-;42270:20;42293:13;;42270:36;;42333:1;42321:8;:13;42317:44;;42343:18;;;;;;;;;;;;;;42317:44;42374:61;42404:1;42408:2;42412:12;42426:8;42374:21;:61::i;:::-;42918:1;15918:2;42888:1;:26;;42887:32;42875:8;:45;42849:18;:22;42868:2;42849:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43197:139;43234:2;43288:33;43311:1;43315:2;43319:1;43288:14;:33::i;:::-;43255:30;43276:8;43255:20;:30::i;:::-;:66;43197:18;:139::i;:::-;43163:17;:31;43181:12;43163:31;;;;;;;;;;;:173;;;;43353:16;43384:11;43413:8;43398:12;:23;43384:37;;43934:16;43930:2;43926:25;43914:37;;44306:12;44266:8;44225:1;44163:25;44104:1;44043;44016:335;44677:1;44663:12;44659:20;44617:346;44718:3;44709:7;44706:16;44617:346;;44936:7;44926:8;44923:1;44896:25;44893:1;44890;44885:59;44771:1;44762:7;44758:15;44747:26;;44617:346;;;44621:77;45008:1;44996:8;:13;44992:45;;45018:19;;;;;;;;;;;;;;44992:45;45070:3;45054:13;:19;;;;42623:2462;;45095:60;45124:1;45128:2;45132:12;45146:8;45095:20;:60::i;:::-;42259:2904;42197:2966;;:::o;29609:324::-;29679:14;29912:1;29902:8;29899:15;29873:24;29869:46;29859:56;;29609:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:329::-;5349:6;5398:2;5386:9;5377:7;5373:23;5369:32;5366:119;;;5404:79;;:::i;:::-;5366:119;5524:1;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5495:117;5290:329;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:60::-;8899:3;8920:5;8913:12;;8871:60;;;:::o;8937:142::-;8987:9;9020:53;9038:34;9047:24;9065:5;9047:24;:::i;:::-;9038:34;:::i;:::-;9020:53;:::i;:::-;9007:66;;8937:142;;;:::o;9085:126::-;9135:9;9168:37;9199:5;9168:37;:::i;:::-;9155:50;;9085:126;;;:::o;9217:157::-;9298:9;9331:37;9362:5;9331:37;:::i;:::-;9318:50;;9217:157;;;:::o;9380:193::-;9498:68;9560:5;9498:68;:::i;:::-;9493:3;9486:81;9380:193;;:::o;9579:284::-;9703:4;9741:2;9730:9;9726:18;9718:26;;9754:102;9853:1;9842:9;9838:17;9829:6;9754:102;:::i;:::-;9579:284;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:323::-;10186:6;10235:2;10223:9;10214:7;10210:23;10206:32;10203:119;;;10241:79;;:::i;:::-;10203:119;10361:1;10386:50;10428:7;10419:6;10408:9;10404:22;10386:50;:::i;:::-;10376:60;;10332:114;10130:323;;;;:::o;10459:311::-;10536:4;10626:18;10618:6;10615:30;10612:56;;;10648:18;;:::i;:::-;10612:56;10698:4;10690:6;10686:17;10678:25;;10758:4;10752;10748:15;10740:23;;10459:311;;;:::o;10776:117::-;10885:1;10882;10875:12;10916:710;11012:5;11037:81;11053:64;11110:6;11053:64;:::i;:::-;11037:81;:::i;:::-;11028:90;;11138:5;11167:6;11160:5;11153:21;11201:4;11194:5;11190:16;11183:23;;11254:4;11246:6;11242:17;11234:6;11230:30;11283:3;11275:6;11272:15;11269:122;;;11302:79;;:::i;:::-;11269:122;11417:6;11400:220;11434:6;11429:3;11426:15;11400:220;;;11509:3;11538:37;11571:3;11559:10;11538:37;:::i;:::-;11533:3;11526:50;11605:4;11600:3;11596:14;11589:21;;11476:144;11460:4;11455:3;11451:14;11444:21;;11400:220;;;11404:21;11018:608;;10916:710;;;;;:::o;11649:370::-;11720:5;11769:3;11762:4;11754:6;11750:17;11746:27;11736:122;;11777:79;;:::i;:::-;11736:122;11894:6;11881:20;11919:94;12009:3;12001:6;11994:4;11986:6;11982:17;11919:94;:::i;:::-;11910:103;;11726:293;11649:370;;;;:::o;12025:311::-;12102:4;12192:18;12184:6;12181:30;12178:56;;;12214:18;;:::i;:::-;12178:56;12264:4;12256:6;12252:17;12244:25;;12324:4;12318;12314:15;12306:23;;12025:311;;;:::o;12359:710::-;12455:5;12480:81;12496:64;12553:6;12496:64;:::i;:::-;12480:81;:::i;:::-;12471:90;;12581:5;12610:6;12603:5;12596:21;12644:4;12637:5;12633:16;12626:23;;12697:4;12689:6;12685:17;12677:6;12673:30;12726:3;12718:6;12715:15;12712:122;;;12745:79;;:::i;:::-;12712:122;12860:6;12843:220;12877:6;12872:3;12869:15;12843:220;;;12952:3;12981:37;13014:3;13002:10;12981:37;:::i;:::-;12976:3;12969:50;13048:4;13043:3;13039:14;13032:21;;12919:144;12903:4;12898:3;12894:14;12887:21;;12843:220;;;12847:21;12461:608;;12359:710;;;;;:::o;13092:370::-;13163:5;13212:3;13205:4;13197:6;13193:17;13189:27;13179:122;;13220:79;;:::i;:::-;13179:122;13337:6;13324:20;13362:94;13452:3;13444:6;13437:4;13429:6;13425:17;13362:94;:::i;:::-;13353:103;;13169:293;13092:370;;;;:::o;13468:894::-;13586:6;13594;13643:2;13631:9;13622:7;13618:23;13614:32;13611:119;;;13649:79;;:::i;:::-;13611:119;13797:1;13786:9;13782:17;13769:31;13827:18;13819:6;13816:30;13813:117;;;13849:79;;:::i;:::-;13813:117;13954:78;14024:7;14015:6;14004:9;14000:22;13954:78;:::i;:::-;13944:88;;13740:302;14109:2;14098:9;14094:18;14081:32;14140:18;14132:6;14129:30;14126:117;;;14162:79;;:::i;:::-;14126:117;14267:78;14337:7;14328:6;14317:9;14313:22;14267:78;:::i;:::-;14257:88;;14052:303;13468:894;;;;;:::o;14368:468::-;14433:6;14441;14490:2;14478:9;14469:7;14465:23;14461:32;14458:119;;;14496:79;;:::i;:::-;14458:119;14616:1;14641:53;14686:7;14677:6;14666:9;14662:22;14641:53;:::i;:::-;14631:63;;14587:117;14743:2;14769:50;14811:7;14802:6;14791:9;14787:22;14769:50;:::i;:::-;14759:60;;14714:115;14368:468;;;;;:::o;14842:307::-;14903:4;14993:18;14985:6;14982:30;14979:56;;;15015:18;;:::i;:::-;14979:56;15053:29;15075:6;15053:29;:::i;:::-;15045:37;;15137:4;15131;15127:15;15119:23;;14842:307;;;:::o;15155:410::-;15232:5;15257:65;15273:48;15314:6;15273:48;:::i;:::-;15257:65;:::i;:::-;15248:74;;15345:6;15338:5;15331:21;15383:4;15376:5;15372:16;15421:3;15412:6;15407:3;15403:16;15400:25;15397:112;;;15428:79;;:::i;:::-;15397:112;15518:41;15552:6;15547:3;15542;15518:41;:::i;:::-;15238:327;15155:410;;;;;:::o;15584:338::-;15639:5;15688:3;15681:4;15673:6;15669:17;15665:27;15655:122;;15696:79;;:::i;:::-;15655:122;15813:6;15800:20;15838:78;15912:3;15904:6;15897:4;15889:6;15885:17;15838:78;:::i;:::-;15829:87;;15645:277;15584:338;;;;:::o;15928:943::-;16023:6;16031;16039;16047;16096:3;16084:9;16075:7;16071:23;16067:33;16064:120;;;16103:79;;:::i;:::-;16064:120;16223:1;16248:53;16293:7;16284:6;16273:9;16269:22;16248:53;:::i;:::-;16238:63;;16194:117;16350:2;16376:53;16421:7;16412:6;16401:9;16397:22;16376:53;:::i;:::-;16366:63;;16321:118;16478:2;16504:53;16549:7;16540:6;16529:9;16525:22;16504:53;:::i;:::-;16494:63;;16449:118;16634:2;16623:9;16619:18;16606:32;16665:18;16657:6;16654:30;16651:117;;;16687:79;;:::i;:::-;16651:117;16792:62;16846:7;16837:6;16826:9;16822:22;16792:62;:::i;:::-;16782:72;;16577:287;15928:943;;;;;;;:::o;16877:474::-;16945:6;16953;17002:2;16990:9;16981:7;16977:23;16973:32;16970:119;;;17008:79;;:::i;:::-;16970:119;17128:1;17153:53;17198:7;17189:6;17178:9;17174:22;17153:53;:::i;:::-;17143:63;;17099:117;17255:2;17281:53;17326:7;17317:6;17306:9;17302:22;17281:53;:::i;:::-;17271:63;;17226:118;16877:474;;;;;:::o;17357:180::-;17405:77;17402:1;17395:88;17502:4;17499:1;17492:15;17526:4;17523:1;17516:15;17543:320;17587:6;17624:1;17618:4;17614:12;17604:22;;17671:1;17665:4;17661:12;17692:18;17682:81;;17748:4;17740:6;17736:17;17726:27;;17682:81;17810:2;17802:6;17799:14;17779:18;17776:38;17773:84;;17829:18;;:::i;:::-;17773:84;17594:269;17543:320;;;:::o;17869:180::-;17917:77;17914:1;17907:88;18014:4;18011:1;18004:15;18038:4;18035:1;18028:15;18055:180;18103:77;18100:1;18093:88;18200:4;18197:1;18190:15;18224:4;18221:1;18214:15;18241:305;18281:3;18300:20;18318:1;18300:20;:::i;:::-;18295:25;;18334:20;18352:1;18334:20;:::i;:::-;18329:25;;18488:1;18420:66;18416:74;18413:1;18410:81;18407:107;;;18494:18;;:::i;:::-;18407:107;18538:1;18535;18531:9;18524:16;;18241:305;;;;:::o;18552:157::-;18692:9;18688:1;18680:6;18676:14;18669:33;18552:157;:::o;18715:365::-;18857:3;18878:66;18942:1;18937:3;18878:66;:::i;:::-;18871:73;;18953:93;19042:3;18953:93;:::i;:::-;19071:2;19066:3;19062:12;19055:19;;18715:365;;;:::o;19086:419::-;19252:4;19290:2;19279:9;19275:18;19267:26;;19339:9;19333:4;19329:20;19325:1;19314:9;19310:17;19303:47;19367:131;19493:4;19367:131;:::i;:::-;19359:139;;19086:419;;;:::o;19511:233::-;19550:3;19573:24;19591:5;19573:24;:::i;:::-;19564:33;;19619:66;19612:5;19609:77;19606:103;;19689:18;;:::i;:::-;19606:103;19736:1;19729:5;19725:13;19718:20;;19511:233;;;:::o;19750:348::-;19790:7;19813:20;19831:1;19813:20;:::i;:::-;19808:25;;19847:20;19865:1;19847:20;:::i;:::-;19842:25;;20035:1;19967:66;19963:74;19960:1;19957:81;19952:1;19945:9;19938:17;19934:105;19931:131;;;20042:18;;:::i;:::-;19931:131;20090:1;20087;20083:9;20072:20;;19750:348;;;;:::o;20104:160::-;20244:12;20240:1;20232:6;20228:14;20221:36;20104:160;:::o;20270:366::-;20412:3;20433:67;20497:2;20492:3;20433:67;:::i;:::-;20426:74;;20509:93;20598:3;20509:93;:::i;:::-;20627:2;20622:3;20618:12;20611:19;;20270:366;;;:::o;20642:419::-;20808:4;20846:2;20835:9;20831:18;20823:26;;20895:9;20889:4;20885:20;20881:1;20870:9;20866:17;20859:47;20923:131;21049:4;20923:131;:::i;:::-;20915:139;;20642:419;;;:::o;21067:157::-;21207:9;21203:1;21195:6;21191:14;21184:33;21067:157;:::o;21230:365::-;21372:3;21393:66;21457:1;21452:3;21393:66;:::i;:::-;21386:73;;21468:93;21557:3;21468:93;:::i;:::-;21586:2;21581:3;21577:12;21570:19;;21230:365;;;:::o;21601:419::-;21767:4;21805:2;21794:9;21790:18;21782:26;;21854:9;21848:4;21844:20;21840:1;21829:9;21825:17;21818:47;21882:131;22008:4;21882:131;:::i;:::-;21874:139;;21601:419;;;:::o;22026:234::-;22166:34;22162:1;22154:6;22150:14;22143:58;22235:17;22230:2;22222:6;22218:15;22211:42;22026:234;:::o;22266:366::-;22408:3;22429:67;22493:2;22488:3;22429:67;:::i;:::-;22422:74;;22505:93;22594:3;22505:93;:::i;:::-;22623:2;22618:3;22614:12;22607:19;;22266:366;;;:::o;22638:419::-;22804:4;22842:2;22831:9;22827:18;22819:26;;22891:9;22885:4;22881:20;22877:1;22866:9;22862:17;22855:47;22919:131;23045:4;22919:131;:::i;:::-;22911:139;;22638:419;;;:::o;23063:148::-;23165:11;23202:3;23187:18;;23063:148;;;;:::o;23217:377::-;23323:3;23351:39;23384:5;23351:39;:::i;:::-;23406:89;23488:6;23483:3;23406:89;:::i;:::-;23399:96;;23504:52;23549:6;23544:3;23537:4;23530:5;23526:16;23504:52;:::i;:::-;23581:6;23576:3;23572:16;23565:23;;23327:267;23217:377;;;;:::o;23600:155::-;23740:7;23736:1;23728:6;23724:14;23717:31;23600:155;:::o;23761:400::-;23921:3;23942:84;24024:1;24019:3;23942:84;:::i;:::-;23935:91;;24035:93;24124:3;24035:93;:::i;:::-;24153:1;24148:3;24144:11;24137:18;;23761:400;;;:::o;24167:701::-;24448:3;24470:95;24561:3;24552:6;24470:95;:::i;:::-;24463:102;;24582:95;24673:3;24664:6;24582:95;:::i;:::-;24575:102;;24694:148;24838:3;24694:148;:::i;:::-;24687:155;;24859:3;24852:10;;24167:701;;;;;:::o;24874:225::-;25014:34;25010:1;25002:6;24998:14;24991:58;25083:8;25078:2;25070:6;25066:15;25059:33;24874:225;:::o;25105:366::-;25247:3;25268:67;25332:2;25327:3;25268:67;:::i;:::-;25261:74;;25344:93;25433:3;25344:93;:::i;:::-;25462:2;25457:3;25453:12;25446:19;;25105:366;;;:::o;25477:419::-;25643:4;25681:2;25670:9;25666:18;25658:26;;25730:9;25724:4;25720:20;25716:1;25705:9;25701:17;25694:47;25758:131;25884:4;25758:131;:::i;:::-;25750:139;;25477:419;;;:::o;25902:332::-;26023:4;26061:2;26050:9;26046:18;26038:26;;26074:71;26142:1;26131:9;26127:17;26118:6;26074:71;:::i;:::-;26155:72;26223:2;26212:9;26208:18;26199:6;26155:72;:::i;:::-;25902:332;;;;;:::o;26240:137::-;26294:5;26325:6;26319:13;26310:22;;26341:30;26365:5;26341:30;:::i;:::-;26240:137;;;;:::o;26383:345::-;26450:6;26499:2;26487:9;26478:7;26474:23;26470:32;26467:119;;;26505:79;;:::i;:::-;26467:119;26625:1;26650:61;26703:7;26694:6;26683:9;26679:22;26650:61;:::i;:::-;26640:71;;26596:125;26383:345;;;;:::o;26734:182::-;26874:34;26870:1;26862:6;26858:14;26851:58;26734:182;:::o;26922:366::-;27064:3;27085:67;27149:2;27144:3;27085:67;:::i;:::-;27078:74;;27161:93;27250:3;27161:93;:::i;:::-;27279:2;27274:3;27270:12;27263:19;;26922:366;;;:::o;27294:419::-;27460:4;27498:2;27487:9;27483:18;27475:26;;27547:9;27541:4;27537:20;27533:1;27522:9;27518:17;27511:47;27575:131;27701:4;27575:131;:::i;:::-;27567:139;;27294:419;;;:::o;27719:98::-;27770:6;27804:5;27798:12;27788:22;;27719:98;;;:::o;27823:168::-;27906:11;27940:6;27935:3;27928:19;27980:4;27975:3;27971:14;27956:29;;27823:168;;;;:::o;27997:360::-;28083:3;28111:38;28143:5;28111:38;:::i;:::-;28165:70;28228:6;28223:3;28165:70;:::i;:::-;28158:77;;28244:52;28289:6;28284:3;28277:4;28270:5;28266:16;28244:52;:::i;:::-;28321:29;28343:6;28321:29;:::i;:::-;28316:3;28312:39;28305:46;;28087:270;27997:360;;;;:::o;28363:640::-;28558:4;28596:3;28585:9;28581:19;28573:27;;28610:71;28678:1;28667:9;28663:17;28654:6;28610:71;:::i;:::-;28691:72;28759:2;28748:9;28744:18;28735:6;28691:72;:::i;:::-;28773;28841:2;28830:9;28826:18;28817:6;28773:72;:::i;:::-;28892:9;28886:4;28882:20;28877:2;28866:9;28862:18;28855:48;28920:76;28991:4;28982:6;28920:76;:::i;:::-;28912:84;;28363:640;;;;;;;:::o;29009:141::-;29065:5;29096:6;29090:13;29081:22;;29112:32;29138:5;29112:32;:::i;:::-;29009:141;;;;:::o;29156:349::-;29225:6;29274:2;29262:9;29253:7;29249:23;29245:32;29242:119;;;29280:79;;:::i;:::-;29242:119;29400:1;29425:63;29480:7;29471:6;29460:9;29456:22;29425:63;:::i;:::-;29415:73;;29371:127;29156:349;;;;:::o

Swarm Source

ipfs://40ae75d6ad6dc75a603a8a00e7647748f1e732eed2ef90daf88d5c959485a88b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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