ETH Price: $2,422.96 (-0.08%)

Token

Arbitrary Door (Arbitrary Door)
 

Overview

Max Total Supply

2 Arbitrary Door

Holders

2

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Arbitrary Door
0x25149bbca67a2fb1f5e0e1edac559bc7ed7d8cab
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:
ArbitraryDoor

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-18
*/

/**
 *Submitted for verification at Etherscan.io on 2022-11-15
*/

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: 老头.sol


pragma solidity ^0.8.4;



// The choice is yours...

contract ArbitraryDoor is ERC721A, Ownable {

    enum MintState {
        Closed,
        Open
    }

    MintState public mintState;

    uint256 public constant MAX_SUPPLY = 0xfffffffffffffffffffffffffffffffffff;
    uint256 public constant PRICE = 0.001 ether;
    uint256 public constant WALLET_LIMIT = 1;

    string public baseURI;

    constructor(
        string memory baseURI_,
        address recipient,
        uint256 allocation
    ) ERC721A("Arbitrary Door", "Arbitrary Door") {
        if (allocation < MAX_SUPPLY && allocation != 0)
            _safeMint(recipient, allocation);

        baseURI = baseURI_;
    }

    // Modifiers

    modifier onlyExternallyOwnedAccount() {
        require(tx.origin == msg.sender, "Not externally owned account");
        _;
    }

    // Magic mint functions

    function setMintState(uint256 newState) external onlyOwner {
        if (newState == 0) mintState = MintState.Closed;
        else if (newState == 1) mintState = MintState.Open;
        else revert("Invalid state");
    }

    function remainingForAddress(address who) public view returns (uint256) {
        if (mintState == MintState.Open)
            return WALLET_LIMIT + _getAux(who) - _numberMinted(who);
        else revert("Mint not open");
    }

    function batchMint(
        address[] calldata recipients,
        uint256[] calldata quantities
    ) external onlyOwner {
        require(recipients.length == quantities.length, "Arguments length mismatch");

        uint256 supply = this.totalSupply();
        for (uint256 i; i < recipients.length; i++) {
            supply += quantities[i];
            require(supply <= MAX_SUPPLY, "Mint exceeds max supply");
            _mint(recipients[i], quantities[i]);
        }
    }

    function mint(uint256 quantity) external payable onlyExternallyOwnedAccount {
        require(this.totalSupply() + quantity <= MAX_SUPPLY, "Mint exceeds max supply");
        require(mintState == MintState.Open, "Mint state mismatch");
        require(msg.value >= PRICE * quantity, "Insufficient value");
        require(remainingForAddress(msg.sender) >= quantity, "You're a Wizard, surely you can count");

        _mint(msg.sender, quantity);
    }

    // Token

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
            return "https://gateway.pinata.cloud/ipfs/QmSkFXP795Wv1Wfag2a3CnRvdZ5CZ7PHBsEXdbeHbyxDRZ";
    }


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

    // Some Wizards can't count

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"allocation","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":[],"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"enum ArbitraryDoor.MintState","name":"","type":"uint8"}],"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":[{"internalType":"address","name":"who","type":"address"}],"name":"remainingForAddress","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":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newState","type":"uint256"}],"name":"setMintState","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"}]

60806040523480156200001157600080fd5b5060405162003dc238038062003dc283398181016040528101906200003791906200088b565b6040518060400160405280600e81526020017f41726269747261727920446f6f720000000000000000000000000000000000008152506040518060400160405280600e81526020017f41726269747261727920446f6f720000000000000000000000000000000000008152508160029080519060200190620000bb929190620006f8565b508060039080519060200190620000d4929190620006f8565b50620000e56200016b60201b60201c565b60008190555050506200010d620001016200017060201b60201c565b6200017860201b60201c565b710fffffffffffffffffffffffffffffffffff8110801562000130575060008114155b1562000149576200014882826200023e60201b60201c565b5b826009908051906020019062000161929190620006f8565b5050505062000bf5565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002608282604051806020016040528060008152506200026460201b60201c565b5050565b6200027683836200031560201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200031057600080549050600083820390505b620002bf6000868380600101945086620004fe60201b60201c565b620002f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002a45781600054146200030d57600080fd5b50505b505050565b600080549050600082141562000357576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200036c60008483856200067060201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003fb83620003dd60008660006200067660201b60201c565b620003ee85620006a660201b60201c565b17620006b660201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200049e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000461565b506000821415620004db576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004f96000848385620006e160201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200052c620006e760201b60201c565b8786866040518563ffffffff1660e01b81526004016200055094939291906200095d565b602060405180830381600087803b1580156200056b57600080fd5b505af19250505080156200059f57506040513d601f19601f820116820180604052508101906200059c91906200085f565b60015b6200061d573d8060008114620005d2576040519150601f19603f3d011682016040523d82523d6000602084013e620005d7565b606091505b5060008151141562000615576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000695868684620006ef60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620007069062000acc565b90600052602060002090601f0160209004810192826200072a576000855562000776565b82601f106200074557805160ff191683800117855562000776565b8280016001018555821562000776579182015b828111156200077557825182559160200191906001019062000758565b5b50905062000785919062000789565b5090565b5b80821115620007a45760008160009055506001016200078a565b5090565b6000620007bf620007b984620009da565b620009b1565b905082815260208101848484011115620007d857600080fd5b620007e584828562000a96565b509392505050565b600081519050620007fe8162000ba7565b92915050565b600081519050620008158162000bc1565b92915050565b600082601f8301126200082d57600080fd5b81516200083f848260208601620007a8565b91505092915050565b600081519050620008598162000bdb565b92915050565b6000602082840312156200087257600080fd5b6000620008828482850162000804565b91505092915050565b600080600060608486031215620008a157600080fd5b600084015167ffffffffffffffff811115620008bc57600080fd5b620008ca868287016200081b565b9350506020620008dd86828701620007ed565b9250506040620008f08682870162000848565b9150509250925092565b620009058162000a2c565b82525050565b6000620009188262000a10565b62000924818562000a1b565b93506200093681856020860162000a96565b620009418162000b96565b840191505092915050565b620009578162000a8c565b82525050565b6000608082019050620009746000830187620008fa565b620009836020830186620008fa565b6200099260408301856200094c565b8181036060830152620009a681846200090b565b905095945050505050565b6000620009bd620009d0565b9050620009cb828262000b02565b919050565b6000604051905090565b600067ffffffffffffffff821115620009f857620009f762000b67565b5b62000a038262000b96565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a398262000a6c565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000ab657808201518184015260208101905062000a99565b8381111562000ac6576000848401525b50505050565b6000600282049050600182168062000ae557607f821691505b6020821081141562000afc5762000afb62000b38565b5b50919050565b62000b0d8262000b96565b810181811067ffffffffffffffff8211171562000b2f5762000b2e62000b67565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000bb28162000a2c565b811462000bbe57600080fd5b50565b62000bcc8162000a40565b811462000bd857600080fd5b50565b62000be68162000a8c565b811462000bf257600080fd5b50565b6131bd8062000c056000396000f3fe6080604052600436106101b75760003560e01c806368573107116100ec578063a0712d681161008a578063c051e38a11610064578063c051e38a146105a3578063c87b56dd146105ce578063e985e9c51461060b578063f2fde38b14610648576101b7565b8063a0712d6814610542578063a22cb4651461055e578063b88d4fde14610587576101b7565b8063715018a6116100c6578063715018a6146104aa5780638d859f3e146104c15780638da5cb5b146104ec57806395d89b4114610517576101b7565b806368573107146104195780636c0360eb1461044257806370a082311461046d576101b7565b806329471d7d116101595780633ccfd60b116101335780633ccfd60b1461038057806342842e0e1461039757806355f804b3146103b35780636352211e146103dc576101b7565b806329471d7d146102ed57806332cb6b0c1461032a578063351ed95114610355576101b7565b8063095ea7b311610195578063095ea7b3146102615780630bb862d11461027d57806318160ddd146102a657806323b872dd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061254d565b610671565b6040516101f091906128c8565b60405180910390f35b34801561020557600080fd5b5061020e610703565b60405161021b91906128fe565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906125e0565b610795565b6040516102589190612861565b60405180910390f35b61027b6004803603810190610276919061249c565b610814565b005b34801561028957600080fd5b506102a4600480360381019061029f91906125e0565b610958565b005b3480156102b257600080fd5b506102bb610a5d565b6040516102c89190612a80565b60405180910390f35b6102eb60048036038101906102e69190612396565b610a74565b005b3480156102f957600080fd5b50610314600480360381019061030f9190612331565b610d99565b6040516103219190612a80565b60405180910390f35b34801561033657600080fd5b5061033f610e9b565b60405161034c9190612a80565b60405180910390f35b34801561036157600080fd5b5061036a610eb1565b6040516103779190612a80565b60405180910390f35b34801561038c57600080fd5b50610395610eb6565b005b6103b160048036038101906103ac9190612396565b610f0d565b005b3480156103bf57600080fd5b506103da60048036038101906103d5919061259f565b610f2d565b005b3480156103e857600080fd5b5061040360048036038101906103fe91906125e0565b610f4f565b6040516104109190612861565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b91906124d8565b610f61565b005b34801561044e57600080fd5b50610457611194565b60405161046491906128fe565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612331565b611222565b6040516104a19190612a80565b60405180910390f35b3480156104b657600080fd5b506104bf6112db565b005b3480156104cd57600080fd5b506104d66112ef565b6040516104e39190612a80565b60405180910390f35b3480156104f857600080fd5b506105016112fa565b60405161050e9190612861565b60405180910390f35b34801561052357600080fd5b5061052c611324565b60405161053991906128fe565b60405180910390f35b61055c600480360381019061055791906125e0565b6113b6565b005b34801561056a57600080fd5b5061058560048036038101906105809190612460565b61166f565b005b6105a1600480360381019061059c91906123e5565b61177a565b005b3480156105af57600080fd5b506105b86117ed565b6040516105c591906128e3565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906125e0565b611800565b60405161060291906128fe565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d919061235a565b61186a565b60405161063f91906128c8565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190612331565b6118fe565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106cc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106fc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461071290612d19565b80601f016020809104026020016040519081016040528092919081815260200182805461073e90612d19565b801561078b5780601f106107605761010080835404028352916020019161078b565b820191906000526020600020905b81548152906001019060200180831161076e57829003601f168201915b5050505050905090565b60006107a082611982565b6107d6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081f82610f4f565b90508073ffffffffffffffffffffffffffffffffffffffff166108406119e1565b73ffffffffffffffffffffffffffffffffffffffff16146108a35761086c816108676119e1565b61186a565b6108a2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109606119e9565b60008114156109bf576000600860146101000a81548160ff021916908360018111156109b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550610a5a565b6001811415610a1e576001600860146101000a81548160ff02191690836001811115610a14577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550610a59565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906129c0565b60405180910390fd5b5b50565b6000610a67611a67565b6001546000540303905090565b6000610a7f82611a6c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ae6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610af284611b3a565b91509150610b088187610b036119e1565b611b61565b610b5457610b1d86610b186119e1565b61186a565b610b53576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bc88686866001611ba5565b8015610bd357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ca185610c7d888887611bab565b7c020000000000000000000000000000000000000000000000000000000017611bd3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d29576000600185019050600060046000838152602001908152602001600020541415610d27576000548114610d26578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d918686866001611bfe565b505050505050565b6000600180811115610dd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600860149054906101000a900460ff166001811115610e1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610e5b57610e2b82611c04565b610e3483611c5b565b67ffffffffffffffff166001610e4a9190612b5a565b610e549190612c0a565b9050610e96565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d90612a40565b60405180910390fd5b919050565b710fffffffffffffffffffffffffffffffffff81565b600181565b610ebe6119e9565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f09573d6000803e3d6000fd5b5050565b610f288383836040518060200160405280600081525061177a565b505050565b610f356119e9565b8060099080519060200190610f4b9291906120ac565b5050565b6000610f5a82611a6c565b9050919050565b610f696119e9565b818190508484905014610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890612a60565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ff957600080fd5b505afa15801561100d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110319190612609565b905060005b8585905081101561118c5783838281811061107a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358261108c9190612b5a565b9150710fffffffffffffffffffffffffffffffffff8211156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90612920565b60405180910390fd5b61117986868381811061111f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906111349190612331565b85858481811061116d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135611ca8565b808061118490612d7c565b915050611036565b505050505050565b600980546111a190612d19565b80601f01602080910402602001604051908101604052809291908181526020018280546111cd90612d19565b801561121a5780601f106111ef5761010080835404028352916020019161121a565b820191906000526020600020905b8154815290600101906020018083116111fd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112e36119e9565b6112ed6000611e65565b565b66038d7ea4c6800081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133390612d19565b80601f016020809104026020016040519081016040528092919081815260200182805461135f90612d19565b80156113ac5780601f10611381576101008083540402835291602001916113ac565b820191906000526020600020905b81548152906001019060200180831161138f57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90612960565b60405180910390fd5b710fffffffffffffffffffffffffffffffffff813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561147e57600080fd5b505afa158015611492573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b69190612609565b6114c09190612b5a565b1115611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890612920565b60405180910390fd5b60018081111561153a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600860149054906101000a900460ff166001811115611582577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b9906129a0565b60405180910390fd5b8066038d7ea4c680006115d59190612bb0565b341015611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90612a20565b60405180910390fd5b8061162133610d99565b1015611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990612980565b60405180910390fd5b61166c3382611ca8565b50565b806007600061167c6119e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117296119e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176e91906128c8565b60405180910390a35050565b611785848484610a74565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117e7576117b084848484611f2b565b6117e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600860149054906101000a900460ff1681565b606061180b82611982565b61184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190612a00565b60405180910390fd5b604051806080016040528060508152602001613138605091399050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119066119e9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90612940565b60405180910390fd5b61197f81611e65565b50565b60008161198d611a67565b1115801561199c575060005482105b80156119da575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119f161208b565b73ffffffffffffffffffffffffffffffffffffffff16611a0f6112fa565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c906129e0565b60405180910390fd5b565b600090565b60008082905080611a7b611a67565b11611b0357600054811015611b025760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b00575b6000811415611af6576004600083600190039350838152602001908152602001600020549050611acb565b8092505050611b35565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bc2868684612093565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b6000805490506000821415611ce9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cf66000848385611ba5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d6d83611d5e6000866000611bab565b611d678561209c565b17611bd3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e0e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dd3565b506000821415611e4a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e606000848385611bfe565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f516119e1565b8786866040518563ffffffff1660e01b8152600401611f73949392919061287c565b602060405180830381600087803b158015611f8d57600080fd5b505af1925050508015611fbe57506040513d601f19601f82011682018060405250810190611fbb9190612576565b60015b612038573d8060008114611fee576040519150601f19603f3d011682016040523d82523d6000602084013e611ff3565b606091505b50600081511415612030576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b8280546120b890612d19565b90600052602060002090601f0160209004810192826120da5760008555612121565b82601f106120f357805160ff1916838001178555612121565b82800160010185558215612121579182015b82811115612120578251825591602001919060010190612105565b5b50905061212e9190612132565b5090565b5b8082111561214b576000816000905550600101612133565b5090565b600061216261215d84612ac0565b612a9b565b90508281526020810184848401111561217a57600080fd5b612185848285612cd7565b509392505050565b60006121a061219b84612af1565b612a9b565b9050828152602081018484840111156121b857600080fd5b6121c3848285612cd7565b509392505050565b6000813590506121da816130db565b92915050565b60008083601f8401126121f257600080fd5b8235905067ffffffffffffffff81111561220b57600080fd5b60208301915083602082028301111561222357600080fd5b9250929050565b60008083601f84011261223c57600080fd5b8235905067ffffffffffffffff81111561225557600080fd5b60208301915083602082028301111561226d57600080fd5b9250929050565b600081359050612283816130f2565b92915050565b60008135905061229881613109565b92915050565b6000815190506122ad81613109565b92915050565b600082601f8301126122c457600080fd5b81356122d484826020860161214f565b91505092915050565b600082601f8301126122ee57600080fd5b81356122fe84826020860161218d565b91505092915050565b60008135905061231681613120565b92915050565b60008151905061232b81613120565b92915050565b60006020828403121561234357600080fd5b6000612351848285016121cb565b91505092915050565b6000806040838503121561236d57600080fd5b600061237b858286016121cb565b925050602061238c858286016121cb565b9150509250929050565b6000806000606084860312156123ab57600080fd5b60006123b9868287016121cb565b93505060206123ca868287016121cb565b92505060406123db86828701612307565b9150509250925092565b600080600080608085870312156123fb57600080fd5b6000612409878288016121cb565b945050602061241a878288016121cb565b935050604061242b87828801612307565b925050606085013567ffffffffffffffff81111561244857600080fd5b612454878288016122b3565b91505092959194509250565b6000806040838503121561247357600080fd5b6000612481858286016121cb565b925050602061249285828601612274565b9150509250929050565b600080604083850312156124af57600080fd5b60006124bd858286016121cb565b92505060206124ce85828601612307565b9150509250929050565b600080600080604085870312156124ee57600080fd5b600085013567ffffffffffffffff81111561250857600080fd5b612514878288016121e0565b9450945050602085013567ffffffffffffffff81111561253357600080fd5b61253f8782880161222a565b925092505092959194509250565b60006020828403121561255f57600080fd5b600061256d84828501612289565b91505092915050565b60006020828403121561258857600080fd5b60006125968482850161229e565b91505092915050565b6000602082840312156125b157600080fd5b600082013567ffffffffffffffff8111156125cb57600080fd5b6125d7848285016122dd565b91505092915050565b6000602082840312156125f257600080fd5b600061260084828501612307565b91505092915050565b60006020828403121561261b57600080fd5b60006126298482850161231c565b91505092915050565b61263b81612c3e565b82525050565b61264a81612c50565b82525050565b600061265b82612b22565b6126658185612b38565b9350612675818560208601612ce6565b61267e81612e81565b840191505092915050565b61269281612cc5565b82525050565b60006126a382612b2d565b6126ad8185612b49565b93506126bd818560208601612ce6565b6126c681612e81565b840191505092915050565b60006126de601783612b49565b91506126e982612e92565b602082019050919050565b6000612701602683612b49565b915061270c82612ebb565b604082019050919050565b6000612724601c83612b49565b915061272f82612f0a565b602082019050919050565b6000612747602583612b49565b915061275282612f33565b604082019050919050565b600061276a601383612b49565b915061277582612f82565b602082019050919050565b600061278d600d83612b49565b915061279882612fab565b602082019050919050565b60006127b0602083612b49565b91506127bb82612fd4565b602082019050919050565b60006127d3602f83612b49565b91506127de82612ffd565b604082019050919050565b60006127f6601283612b49565b91506128018261304c565b602082019050919050565b6000612819600d83612b49565b915061282482613075565b602082019050919050565b600061283c601983612b49565b91506128478261309e565b602082019050919050565b61285b81612cbb565b82525050565b60006020820190506128766000830184612632565b92915050565b60006080820190506128916000830187612632565b61289e6020830186612632565b6128ab6040830185612852565b81810360608301526128bd8184612650565b905095945050505050565b60006020820190506128dd6000830184612641565b92915050565b60006020820190506128f86000830184612689565b92915050565b600060208201905081810360008301526129188184612698565b905092915050565b60006020820190508181036000830152612939816126d1565b9050919050565b60006020820190508181036000830152612959816126f4565b9050919050565b6000602082019050818103600083015261297981612717565b9050919050565b600060208201905081810360008301526129998161273a565b9050919050565b600060208201905081810360008301526129b98161275d565b9050919050565b600060208201905081810360008301526129d981612780565b9050919050565b600060208201905081810360008301526129f9816127a3565b9050919050565b60006020820190508181036000830152612a19816127c6565b9050919050565b60006020820190508181036000830152612a39816127e9565b9050919050565b60006020820190508181036000830152612a598161280c565b9050919050565b60006020820190508181036000830152612a798161282f565b9050919050565b6000602082019050612a956000830184612852565b92915050565b6000612aa5612ab6565b9050612ab18282612d4b565b919050565b6000604051905090565b600067ffffffffffffffff821115612adb57612ada612e52565b5b612ae482612e81565b9050602081019050919050565b600067ffffffffffffffff821115612b0c57612b0b612e52565b5b612b1582612e81565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612b6582612cbb565b9150612b7083612cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ba557612ba4612dc5565b5b828201905092915050565b6000612bbb82612cbb565b9150612bc683612cbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bff57612bfe612dc5565b5b828202905092915050565b6000612c1582612cbb565b9150612c2083612cbb565b925082821015612c3357612c32612dc5565b5b828203905092915050565b6000612c4982612c9b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050612c96826130c7565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612cd082612c88565b9050919050565b82818337600083830152505050565b60005b83811015612d04578082015181840152602081019050612ce9565b83811115612d13576000848401525b50505050565b60006002820490506001821680612d3157607f821691505b60208210811415612d4557612d44612e23565b5b50919050565b612d5482612e81565b810181811067ffffffffffffffff82111715612d7357612d72612e52565b5b80604052505050565b6000612d8782612cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612dba57612db9612dc5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d696e742065786365656473206d617820737570706c79000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742065787465726e616c6c79206f776e6564206163636f756e7400000000600082015250565b7f596f7527726520612057697a6172642c20737572656c7920796f752063616e2060008201527f636f756e74000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74207374617465206d69736d6174636800000000000000000000000000600082015250565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e742076616c75650000000000000000000000000000600082015250565b7f4d696e74206e6f74206f70656e00000000000000000000000000000000000000600082015250565b7f417267756d656e7473206c656e677468206d69736d6174636800000000000000600082015250565b600281106130d8576130d7612df4565b5b50565b6130e481612c3e565b81146130ef57600080fd5b50565b6130fb81612c50565b811461310657600080fd5b50565b61311281612c5c565b811461311d57600080fd5b50565b61312981612cbb565b811461313457600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d536b46585037393557763157666167326133436e5276645a35435a375048427345586462654862797844525aa26469706673582212200f4d0e47b28a514ba309723f92c97fbdee983817487999c817119ffd0562477064736f6c634300080400330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000a0f7d7727b3c137f8f030b94647ddfb2f238f2d40000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d536b46585037393557763157666167326133436e5276645a35435a375048427345586462654862797844525a00000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806368573107116100ec578063a0712d681161008a578063c051e38a11610064578063c051e38a146105a3578063c87b56dd146105ce578063e985e9c51461060b578063f2fde38b14610648576101b7565b8063a0712d6814610542578063a22cb4651461055e578063b88d4fde14610587576101b7565b8063715018a6116100c6578063715018a6146104aa5780638d859f3e146104c15780638da5cb5b146104ec57806395d89b4114610517576101b7565b806368573107146104195780636c0360eb1461044257806370a082311461046d576101b7565b806329471d7d116101595780633ccfd60b116101335780633ccfd60b1461038057806342842e0e1461039757806355f804b3146103b35780636352211e146103dc576101b7565b806329471d7d146102ed57806332cb6b0c1461032a578063351ed95114610355576101b7565b8063095ea7b311610195578063095ea7b3146102615780630bb862d11461027d57806318160ddd146102a657806323b872dd146102d1576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061254d565b610671565b6040516101f091906128c8565b60405180910390f35b34801561020557600080fd5b5061020e610703565b60405161021b91906128fe565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906125e0565b610795565b6040516102589190612861565b60405180910390f35b61027b6004803603810190610276919061249c565b610814565b005b34801561028957600080fd5b506102a4600480360381019061029f91906125e0565b610958565b005b3480156102b257600080fd5b506102bb610a5d565b6040516102c89190612a80565b60405180910390f35b6102eb60048036038101906102e69190612396565b610a74565b005b3480156102f957600080fd5b50610314600480360381019061030f9190612331565b610d99565b6040516103219190612a80565b60405180910390f35b34801561033657600080fd5b5061033f610e9b565b60405161034c9190612a80565b60405180910390f35b34801561036157600080fd5b5061036a610eb1565b6040516103779190612a80565b60405180910390f35b34801561038c57600080fd5b50610395610eb6565b005b6103b160048036038101906103ac9190612396565b610f0d565b005b3480156103bf57600080fd5b506103da60048036038101906103d5919061259f565b610f2d565b005b3480156103e857600080fd5b5061040360048036038101906103fe91906125e0565b610f4f565b6040516104109190612861565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b91906124d8565b610f61565b005b34801561044e57600080fd5b50610457611194565b60405161046491906128fe565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612331565b611222565b6040516104a19190612a80565b60405180910390f35b3480156104b657600080fd5b506104bf6112db565b005b3480156104cd57600080fd5b506104d66112ef565b6040516104e39190612a80565b60405180910390f35b3480156104f857600080fd5b506105016112fa565b60405161050e9190612861565b60405180910390f35b34801561052357600080fd5b5061052c611324565b60405161053991906128fe565b60405180910390f35b61055c600480360381019061055791906125e0565b6113b6565b005b34801561056a57600080fd5b5061058560048036038101906105809190612460565b61166f565b005b6105a1600480360381019061059c91906123e5565b61177a565b005b3480156105af57600080fd5b506105b86117ed565b6040516105c591906128e3565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906125e0565b611800565b60405161060291906128fe565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d919061235a565b61186a565b60405161063f91906128c8565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190612331565b6118fe565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106cc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106fc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461071290612d19565b80601f016020809104026020016040519081016040528092919081815260200182805461073e90612d19565b801561078b5780601f106107605761010080835404028352916020019161078b565b820191906000526020600020905b81548152906001019060200180831161076e57829003601f168201915b5050505050905090565b60006107a082611982565b6107d6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081f82610f4f565b90508073ffffffffffffffffffffffffffffffffffffffff166108406119e1565b73ffffffffffffffffffffffffffffffffffffffff16146108a35761086c816108676119e1565b61186a565b6108a2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109606119e9565b60008114156109bf576000600860146101000a81548160ff021916908360018111156109b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550610a5a565b6001811415610a1e576001600860146101000a81548160ff02191690836001811115610a14577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550610a59565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906129c0565b60405180910390fd5b5b50565b6000610a67611a67565b6001546000540303905090565b6000610a7f82611a6c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ae6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610af284611b3a565b91509150610b088187610b036119e1565b611b61565b610b5457610b1d86610b186119e1565b61186a565b610b53576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bbb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bc88686866001611ba5565b8015610bd357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ca185610c7d888887611bab565b7c020000000000000000000000000000000000000000000000000000000017611bd3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d29576000600185019050600060046000838152602001908152602001600020541415610d27576000548114610d26578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d918686866001611bfe565b505050505050565b6000600180811115610dd4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600860149054906101000a900460ff166001811115610e1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415610e5b57610e2b82611c04565b610e3483611c5b565b67ffffffffffffffff166001610e4a9190612b5a565b610e549190612c0a565b9050610e96565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d90612a40565b60405180910390fd5b919050565b710fffffffffffffffffffffffffffffffffff81565b600181565b610ebe6119e9565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f09573d6000803e3d6000fd5b5050565b610f288383836040518060200160405280600081525061177a565b505050565b610f356119e9565b8060099080519060200190610f4b9291906120ac565b5050565b6000610f5a82611a6c565b9050919050565b610f696119e9565b818190508484905014610fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa890612a60565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ff957600080fd5b505afa15801561100d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110319190612609565b905060005b8585905081101561118c5783838281811061107a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358261108c9190612b5a565b9150710fffffffffffffffffffffffffffffffffff8211156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90612920565b60405180910390fd5b61117986868381811061111f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906111349190612331565b85858481811061116d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135611ca8565b808061118490612d7c565b915050611036565b505050505050565b600980546111a190612d19565b80601f01602080910402602001604051908101604052809291908181526020018280546111cd90612d19565b801561121a5780601f106111ef5761010080835404028352916020019161121a565b820191906000526020600020905b8154815290600101906020018083116111fd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561128a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112e36119e9565b6112ed6000611e65565b565b66038d7ea4c6800081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461133390612d19565b80601f016020809104026020016040519081016040528092919081815260200182805461135f90612d19565b80156113ac5780601f10611381576101008083540402835291602001916113ac565b820191906000526020600020905b81548152906001019060200180831161138f57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90612960565b60405180910390fd5b710fffffffffffffffffffffffffffffffffff813073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561147e57600080fd5b505afa158015611492573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b69190612609565b6114c09190612b5a565b1115611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f890612920565b60405180910390fd5b60018081111561153a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600860149054906101000a900460ff166001811115611582577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b9906129a0565b60405180910390fd5b8066038d7ea4c680006115d59190612bb0565b341015611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90612a20565b60405180910390fd5b8061162133610d99565b1015611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990612980565b60405180910390fd5b61166c3382611ca8565b50565b806007600061167c6119e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117296119e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176e91906128c8565b60405180910390a35050565b611785848484610a74565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117e7576117b084848484611f2b565b6117e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600860149054906101000a900460ff1681565b606061180b82611982565b61184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190612a00565b60405180910390fd5b604051806080016040528060508152602001613138605091399050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119066119e9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90612940565b60405180910390fd5b61197f81611e65565b50565b60008161198d611a67565b1115801561199c575060005482105b80156119da575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119f161208b565b73ffffffffffffffffffffffffffffffffffffffff16611a0f6112fa565b73ffffffffffffffffffffffffffffffffffffffff1614611a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5c906129e0565b60405180910390fd5b565b600090565b60008082905080611a7b611a67565b11611b0357600054811015611b025760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b00575b6000811415611af6576004600083600190039350838152602001908152602001600020549050611acb565b8092505050611b35565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bc2868684612093565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b6000805490506000821415611ce9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cf66000848385611ba5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d6d83611d5e6000866000611bab565b611d678561209c565b17611bd3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611e0e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611dd3565b506000821415611e4a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611e606000848385611bfe565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f516119e1565b8786866040518563ffffffff1660e01b8152600401611f73949392919061287c565b602060405180830381600087803b158015611f8d57600080fd5b505af1925050508015611fbe57506040513d601f19601f82011682018060405250810190611fbb9190612576565b60015b612038573d8060008114611fee576040519150601f19603f3d011682016040523d82523d6000602084013e611ff3565b606091505b50600081511415612030576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b8280546120b890612d19565b90600052602060002090601f0160209004810192826120da5760008555612121565b82601f106120f357805160ff1916838001178555612121565b82800160010185558215612121579182015b82811115612120578251825591602001919060010190612105565b5b50905061212e9190612132565b5090565b5b8082111561214b576000816000905550600101612133565b5090565b600061216261215d84612ac0565b612a9b565b90508281526020810184848401111561217a57600080fd5b612185848285612cd7565b509392505050565b60006121a061219b84612af1565b612a9b565b9050828152602081018484840111156121b857600080fd5b6121c3848285612cd7565b509392505050565b6000813590506121da816130db565b92915050565b60008083601f8401126121f257600080fd5b8235905067ffffffffffffffff81111561220b57600080fd5b60208301915083602082028301111561222357600080fd5b9250929050565b60008083601f84011261223c57600080fd5b8235905067ffffffffffffffff81111561225557600080fd5b60208301915083602082028301111561226d57600080fd5b9250929050565b600081359050612283816130f2565b92915050565b60008135905061229881613109565b92915050565b6000815190506122ad81613109565b92915050565b600082601f8301126122c457600080fd5b81356122d484826020860161214f565b91505092915050565b600082601f8301126122ee57600080fd5b81356122fe84826020860161218d565b91505092915050565b60008135905061231681613120565b92915050565b60008151905061232b81613120565b92915050565b60006020828403121561234357600080fd5b6000612351848285016121cb565b91505092915050565b6000806040838503121561236d57600080fd5b600061237b858286016121cb565b925050602061238c858286016121cb565b9150509250929050565b6000806000606084860312156123ab57600080fd5b60006123b9868287016121cb565b93505060206123ca868287016121cb565b92505060406123db86828701612307565b9150509250925092565b600080600080608085870312156123fb57600080fd5b6000612409878288016121cb565b945050602061241a878288016121cb565b935050604061242b87828801612307565b925050606085013567ffffffffffffffff81111561244857600080fd5b612454878288016122b3565b91505092959194509250565b6000806040838503121561247357600080fd5b6000612481858286016121cb565b925050602061249285828601612274565b9150509250929050565b600080604083850312156124af57600080fd5b60006124bd858286016121cb565b92505060206124ce85828601612307565b9150509250929050565b600080600080604085870312156124ee57600080fd5b600085013567ffffffffffffffff81111561250857600080fd5b612514878288016121e0565b9450945050602085013567ffffffffffffffff81111561253357600080fd5b61253f8782880161222a565b925092505092959194509250565b60006020828403121561255f57600080fd5b600061256d84828501612289565b91505092915050565b60006020828403121561258857600080fd5b60006125968482850161229e565b91505092915050565b6000602082840312156125b157600080fd5b600082013567ffffffffffffffff8111156125cb57600080fd5b6125d7848285016122dd565b91505092915050565b6000602082840312156125f257600080fd5b600061260084828501612307565b91505092915050565b60006020828403121561261b57600080fd5b60006126298482850161231c565b91505092915050565b61263b81612c3e565b82525050565b61264a81612c50565b82525050565b600061265b82612b22565b6126658185612b38565b9350612675818560208601612ce6565b61267e81612e81565b840191505092915050565b61269281612cc5565b82525050565b60006126a382612b2d565b6126ad8185612b49565b93506126bd818560208601612ce6565b6126c681612e81565b840191505092915050565b60006126de601783612b49565b91506126e982612e92565b602082019050919050565b6000612701602683612b49565b915061270c82612ebb565b604082019050919050565b6000612724601c83612b49565b915061272f82612f0a565b602082019050919050565b6000612747602583612b49565b915061275282612f33565b604082019050919050565b600061276a601383612b49565b915061277582612f82565b602082019050919050565b600061278d600d83612b49565b915061279882612fab565b602082019050919050565b60006127b0602083612b49565b91506127bb82612fd4565b602082019050919050565b60006127d3602f83612b49565b91506127de82612ffd565b604082019050919050565b60006127f6601283612b49565b91506128018261304c565b602082019050919050565b6000612819600d83612b49565b915061282482613075565b602082019050919050565b600061283c601983612b49565b91506128478261309e565b602082019050919050565b61285b81612cbb565b82525050565b60006020820190506128766000830184612632565b92915050565b60006080820190506128916000830187612632565b61289e6020830186612632565b6128ab6040830185612852565b81810360608301526128bd8184612650565b905095945050505050565b60006020820190506128dd6000830184612641565b92915050565b60006020820190506128f86000830184612689565b92915050565b600060208201905081810360008301526129188184612698565b905092915050565b60006020820190508181036000830152612939816126d1565b9050919050565b60006020820190508181036000830152612959816126f4565b9050919050565b6000602082019050818103600083015261297981612717565b9050919050565b600060208201905081810360008301526129998161273a565b9050919050565b600060208201905081810360008301526129b98161275d565b9050919050565b600060208201905081810360008301526129d981612780565b9050919050565b600060208201905081810360008301526129f9816127a3565b9050919050565b60006020820190508181036000830152612a19816127c6565b9050919050565b60006020820190508181036000830152612a39816127e9565b9050919050565b60006020820190508181036000830152612a598161280c565b9050919050565b60006020820190508181036000830152612a798161282f565b9050919050565b6000602082019050612a956000830184612852565b92915050565b6000612aa5612ab6565b9050612ab18282612d4b565b919050565b6000604051905090565b600067ffffffffffffffff821115612adb57612ada612e52565b5b612ae482612e81565b9050602081019050919050565b600067ffffffffffffffff821115612b0c57612b0b612e52565b5b612b1582612e81565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612b6582612cbb565b9150612b7083612cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ba557612ba4612dc5565b5b828201905092915050565b6000612bbb82612cbb565b9150612bc683612cbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bff57612bfe612dc5565b5b828202905092915050565b6000612c1582612cbb565b9150612c2083612cbb565b925082821015612c3357612c32612dc5565b5b828203905092915050565b6000612c4982612c9b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050612c96826130c7565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612cd082612c88565b9050919050565b82818337600083830152505050565b60005b83811015612d04578082015181840152602081019050612ce9565b83811115612d13576000848401525b50505050565b60006002820490506001821680612d3157607f821691505b60208210811415612d4557612d44612e23565b5b50919050565b612d5482612e81565b810181811067ffffffffffffffff82111715612d7357612d72612e52565b5b80604052505050565b6000612d8782612cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612dba57612db9612dc5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d696e742065786365656473206d617820737570706c79000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742065787465726e616c6c79206f776e6564206163636f756e7400000000600082015250565b7f596f7527726520612057697a6172642c20737572656c7920796f752063616e2060008201527f636f756e74000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74207374617465206d69736d6174636800000000000000000000000000600082015250565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f496e73756666696369656e742076616c75650000000000000000000000000000600082015250565b7f4d696e74206e6f74206f70656e00000000000000000000000000000000000000600082015250565b7f417267756d656e7473206c656e677468206d69736d6174636800000000000000600082015250565b600281106130d8576130d7612df4565b5b50565b6130e481612c3e565b81146130ef57600080fd5b50565b6130fb81612c50565b811461310657600080fd5b50565b61311281612c5c565b811461311d57600080fd5b50565b61312981612cbb565b811461313457600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d536b46585037393557763157666167326133436e5276645a35435a375048427345586462654862797844525aa26469706673582212200f4d0e47b28a514ba309723f92c97fbdee983817487999c817119ffd0562477064736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000a0f7d7727b3c137f8f030b94647ddfb2f238f2d40000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d536b46585037393557763157666167326133436e5276645a35435a375048427345586462654862797844525a00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): https://gateway.pinata.cloud/ipfs/QmSkFXP795Wv1Wfag2a3CnRvdZ5CZ7PHBsEXdbeHbyxDRZ
Arg [1] : recipient (address): 0xa0f7d7727B3c137f8f030b94647ddfb2f238F2d4
Arg [2] : allocation (uint256): 1

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000a0f7d7727b3c137f8f030b94647ddfb2f238f2d4
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [4] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [5] : 732f516d536b46585037393557763157666167326133436e5276645a35435a37
Arg [6] : 5048427345586462654862797844525a00000000000000000000000000000000


Deployed Bytecode Sourcemap

55184:2882:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18475:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19377:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25868:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25301:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56039:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15128:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29507:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56272:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55333:74;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55464:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57926:135;;;;;;;;;;;;;:::i;:::-;;32428:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57792:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20770:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56511:493;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55513:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16312:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54282:103;;;;;;;;;;;;;:::i;:::-;;55414:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53634:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19553:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57012:459;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26426:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33219:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55298:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57495:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26817:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54540:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18475:639;18560:4;18899:10;18884:25;;:11;:25;;;;:102;;;;18976:10;18961:25;;:11;:25;;;;18884:102;:179;;;;19053:10;19038:25;;:11;:25;;;;18884:179;18864:199;;18475:639;;;:::o;19377:100::-;19431:13;19464:5;19457:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19377:100;:::o;25868:218::-;25944:7;25969:16;25977:7;25969;:16::i;:::-;25964:64;;25994:34;;;;;;;;;;;;;;25964:64;26048:15;:24;26064:7;26048:24;;;;;;;;;;;:30;;;;;;;;;;;;26041:37;;25868:218;;;:::o;25301:408::-;25390:13;25406:16;25414:7;25406;:16::i;:::-;25390:32;;25462:5;25439:28;;:19;:17;:19::i;:::-;:28;;;25435:175;;25487:44;25504:5;25511:19;:17;:19::i;:::-;25487:16;:44::i;:::-;25482:128;;25559:35;;;;;;;;;;;;;;25482:128;25435:175;25655:2;25622:15;:24;25638:7;25622:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25693:7;25689:2;25673:28;;25682:5;25673:28;;;;;;;;;;;;25301:408;;;:::o;56039:225::-;53520:13;:11;:13::i;:::-;56125:1:::1;56113:8;:13;56109:147;;;56140:16;56128:9;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56109:147;;;56188:1;56176:8;:13;56172:84;;;56203:14;56191:9;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56172:84;;;56233:23;;;;;;;;;;:::i;:::-;;;;;;;;56172:84;56109:147;56039:225:::0;:::o;15128:323::-;15189:7;15417:15;:13;:15::i;:::-;15402:12;;15386:13;;:28;:46;15379:53;;15128:323;:::o;29507:2825::-;29649:27;29679;29698:7;29679:18;:27::i;:::-;29649:57;;29764:4;29723:45;;29739:19;29723:45;;;29719:86;;29777:28;;;;;;;;;;;;;;29719:86;29819:27;29848:23;29875:35;29902:7;29875:26;:35::i;:::-;29818:92;;;;30010:68;30035:15;30052:4;30058:19;:17;:19::i;:::-;30010:24;:68::i;:::-;30005:180;;30098:43;30115:4;30121:19;:17;:19::i;:::-;30098:16;:43::i;:::-;30093:92;;30150:35;;;;;;;;;;;;;;30093:92;30005:180;30216:1;30202:16;;:2;:16;;;30198:52;;;30227:23;;;;;;;;;;;;;;30198:52;30263:43;30285:4;30291:2;30295:7;30304:1;30263:21;:43::i;:::-;30399:15;30396:2;;;30539:1;30518:19;30511:30;30396:2;30936:18;:24;30955:4;30936:24;;;;;;;;;;;;;;;;30934:26;;;;;;;;;;;;31005:18;:22;31024:2;31005:22;;;;;;;;;;;;;;;;31003:24;;;;;;;;;;;31327:146;31364:2;31413:45;31428:4;31434:2;31438:19;31413:14;:45::i;:::-;11527:8;31385:73;31327:18;:146::i;:::-;31298:17;:26;31316:7;31298:26;;;;;;;;;;;:175;;;;31644:1;11527:8;31593:19;:47;:52;31589:627;;;31666:19;31698:1;31688:7;:11;31666:33;;31855:1;31821:17;:30;31839:11;31821:30;;;;;;;;;;;;:35;31817:384;;;31959:13;;31944:11;:28;31940:242;;32139:19;32106:17;:30;32124:11;32106:30;;;;;;;;;;;:52;;;;31940:242;31817:384;31589:627;;32263:7;32259:2;32244:27;;32253:4;32244:27;;;;;;;;;;;;32282:42;32303:4;32309:2;32313:7;32322:1;32282:20;:42::i;:::-;29507:2825;;;;;;:::o;56272:231::-;56335:7;56372:14;56359:27;;;;;;;;;;;;;;;;:9;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;56355:140;;;56438:18;56452:3;56438:13;:18::i;:::-;56423:12;56431:3;56423:7;:12::i;:::-;56408:27;;55503:1;56408:27;;;;:::i;:::-;:48;;;;:::i;:::-;56401:55;;;;56355:140;56472:23;;;;;;;;;;:::i;:::-;;;;;;;;56272:231;;;;:::o;55333:74::-;55370:37;55333:74;:::o;55464:40::-;55503:1;55464:40;:::o;57926:135::-;53520:13;:11;:13::i;:::-;57972:15:::1;57990:21;57972:39;;58026:10;58018:28;;:37;58047:7;58018:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53544:1;57926:135::o:0;32428:193::-;32574:39;32591:4;32597:2;32601:7;32574:39;;;;;;;;;;;;:16;:39::i;:::-;32428:193;;;:::o;57792:90::-;53520:13;:11;:13::i;:::-;57871:3:::1;57861:7;:13;;;;;;;;;;;;:::i;:::-;;57792:90:::0;:::o;20770:152::-;20842:7;20885:27;20904:7;20885:18;:27::i;:::-;20862:52;;20770:152;;;:::o;56511:493::-;53520:13;:11;:13::i;:::-;56676:10:::1;;:17;;56655:10;;:17;;:38;56647:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56736:14;56753:4;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56736:35;;56787:9;56782:215;56802:10;;:17;;56798:1;:21;56782:215;;;56851:10;;56862:1;56851:13;;;;;;;;;;;;;;;;;;;;;56841:23;;;;;:::i;:::-;;;55370:37;56887:6;:20;;56879:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;56950:35;56956:10;;56967:1;56956:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56971:10;;56982:1;56971:13;;;;;;;;;;;;;;;;;;;;;56950:5;:35::i;:::-;56821:3;;;;;:::i;:::-;;;;56782:215;;;;53544:1;56511:493:::0;;;;:::o;55513:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16312:233::-;16384:7;16425:1;16408:19;;:5;:19;;;16404:60;;;16436:28;;;;;;;;;;;;;;16404:60;10471:13;16482:18;:25;16501:5;16482:25;;;;;;;;;;;;;;;;:55;16475:62;;16312:233;;;:::o;54282:103::-;53520:13;:11;:13::i;:::-;54347:30:::1;54374:1;54347:18;:30::i;:::-;54282:103::o:0;55414:43::-;55446:11;55414:43;:::o;53634:87::-;53680:7;53707:6;;;;;;;;;;;53700:13;;53634:87;:::o;19553:104::-;19609:13;19642:7;19635:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19553:104;:::o;57012:459::-;55937:10;55924:23;;:9;:23;;;55916:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55370:37:::1;57128:8;57107:4;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;;;;:::i;:::-;:43;;57099:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;57210:14;57197:27:::0;::::1;;;;;;;;;;;;;;;:9;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;57189:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;57288:8;55446:11;57280:16;;;;:::i;:::-;57267:9;:29;;57259:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;57373:8;57338:31;57358:10;57338:19;:31::i;:::-;:43;;57330:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;57436:27;57442:10;57454:8;57436:5;:27::i;:::-;57012:459:::0;:::o;26426:234::-;26573:8;26521:18;:39;26540:19;:17;:19::i;:::-;26521:39;;;;;;;;;;;;;;;:49;26561:8;26521:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26633:8;26597:55;;26612:19;:17;:19::i;:::-;26597:55;;;26643:8;26597:55;;;;;;:::i;:::-;;;;;;;;26426:234;;:::o;33219:407::-;33394:31;33407:4;33413:2;33417:7;33394:12;:31::i;:::-;33458:1;33440:2;:14;;;:19;33436:183;;33479:56;33510:4;33516:2;33520:7;33529:5;33479:30;:56::i;:::-;33474:145;;33563:40;;;;;;;;;;;;;;33474:145;33436:183;33219:407;;;;:::o;55298:26::-;;;;;;;;;;;;;:::o;57495:287::-;57568:13;57602:16;57610:7;57602;:16::i;:::-;57594:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;57685:89;;;;;;;;;;;;;;;;;;;57495:287;;;:::o;26817:164::-;26914:4;26938:18;:25;26957:5;26938:25;;;;;;;;;;;;;;;:35;26964:8;26938:35;;;;;;;;;;;;;;;;;;;;;;;;;26931:42;;26817:164;;;;:::o;54540:201::-;53520:13;:11;:13::i;:::-;54649:1:::1;54629:22;;:8;:22;;;;54621:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54705:28;54724:8;54705:18;:28::i;:::-;54540:201:::0;:::o;27239:282::-;27304:4;27360:7;27341:15;:13;:15::i;:::-;:26;;:66;;;;;27394:13;;27384:7;:23;27341:66;:153;;;;;27493:1;11247:8;27445:17;:26;27463:7;27445:26;;;;;;;;;;;;:44;:49;27341:153;27321:173;;27239:282;;;:::o;49547:105::-;49607:7;49634:10;49627:17;;49547:105;:::o;53799:132::-;53874:12;:10;:12::i;:::-;53863:23;;:7;:5;:7::i;:::-;:23;;;53855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53799:132::o;14644:92::-;14700:7;14644:92;:::o;21925:1275::-;21992:7;22012:12;22027:7;22012:22;;22095:4;22076:15;:13;:15::i;:::-;:23;22072:1061;;22129:13;;22122:4;:20;22118:1015;;;22167:14;22184:17;:23;22202:4;22184:23;;;;;;;;;;;;22167:40;;22301:1;11247:8;22273:6;:24;:29;22269:845;;;22938:113;22955:1;22945:6;:11;22938:113;;;22998:17;:25;23016:6;;;;;;;22998:25;;;;;;;;;;;;22989:34;;22938:113;;;23084:6;23077:13;;;;;;22269:845;22118:1015;;22072:1061;23161:31;;;;;;;;;;;;;;21925:1275;;;;:::o;28402:485::-;28504:27;28533:23;28574:38;28615:15;:24;28631:7;28615:24;;;;;;;;;;;28574:65;;28792:18;28769:41;;28849:19;28843:26;28824:45;;28754:126;;;;:::o;27630:659::-;27779:11;27944:16;27937:5;27933:28;27924:37;;28104:16;28093:9;28089:32;28076:45;;28254:15;28243:9;28240:30;28232:5;28221:9;28218:20;28215:56;28205:66;;27812:470;;;;;:::o;34288:159::-;;;;;:::o;48856:311::-;48991:7;49011:16;11651:3;49037:19;:41;;49011:68;;11651:3;49105:31;49116:4;49122:2;49126:9;49105:10;:31::i;:::-;49097:40;;:62;;49090:69;;;48856:311;;;;;:::o;23748:450::-;23828:14;23996:16;23989:5;23985:28;23976:37;;24173:5;24159:11;24134:23;24130:41;24127:52;24120:5;24117:63;24107:73;;23864:327;;;;:::o;35112:158::-;;;;;:::o;16627:178::-;16688:7;10471:13;10609:2;16716:18;:25;16735:5;16716:25;;;;;;;;;;;;;;;;:50;;16715:82;16708:89;;16627:178;;;:::o;17199:137::-;17254:6;10845:3;17287:18;:25;17306:5;17287:25;;;;;;;;;;;;;;;;:40;;17273:55;;17199:137;;;:::o;36888:2966::-;36961:20;36984:13;;36961:36;;37024:1;37012:8;:13;37008:44;;;37034:18;;;;;;;;;;;;;;37008:44;37065:61;37095:1;37099:2;37103:12;37117:8;37065:21;:61::i;:::-;37609:1;10609:2;37579:1;:26;;37578:32;37566:8;:45;37540:18;:22;37559:2;37540:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37888:139;37925:2;37979:33;38002:1;38006:2;38010:1;37979:14;:33::i;:::-;37946:30;37967:8;37946:20;:30::i;:::-;:66;37888:18;:139::i;:::-;37854:17;:31;37872:12;37854:31;;;;;;;;;;;:173;;;;38044:16;38075:11;38104:8;38089:12;:23;38075:37;;38625:16;38621:2;38617:25;38605:37;;38997:12;38957:8;38916:1;38854:25;38795:1;38734;38707:335;39368:1;39354:12;39350:20;39308:346;39409:3;39400:7;39397:16;39308:346;;39627:7;39617:8;39614:1;39587:25;39584:1;39581;39576:59;39462:1;39453:7;39449:15;39438:26;;39308:346;;;39312:77;39699:1;39687:8;:13;39683:45;;;39709:19;;;;;;;;;;;;;;39683:45;39761:3;39745:13;:19;;;;36888:2966;;39786:60;39815:1;39819:2;39823:12;39837:8;39786:20;:60::i;:::-;36888:2966;;;:::o;54901:191::-;54975:16;54994:6;;;;;;;;;;;54975:25;;55020:8;55011:6;;:17;;;;;;;;;;;;;;;;;;55075:8;55044:40;;55065:8;55044:40;;;;;;;;;;;;54901:191;;:::o;35710:716::-;35873:4;35919:2;35894:45;;;35940:19;:17;:19::i;:::-;35961:4;35967:7;35976:5;35894:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35890:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36194:1;36177:6;:13;:18;36173:235;;;36223:40;;;;;;;;;;;;;;36173:235;36366:6;36360:13;36351:6;36347:2;36343:15;36336:38;35890:529;36063:54;;;36053:64;;;:6;:64;;;;36046:71;;;35710:716;;;;;;:::o;52185:98::-;52238:7;52265:10;52258:17;;52185:98;:::o;48557:147::-;48694:6;48557:147;;;;;:::o;24300:324::-;24370:14;24603:1;24593:8;24590:15;24564:24;24560:46;24550:56;;24472:145;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;869:367::-;942:8;952:6;1002:3;995:4;987:6;983:17;979:27;969:2;;1020:1;1017;1010:12;969:2;1056:6;1043:20;1033:30;;1086:18;1078:6;1075:30;1072:2;;;1118:1;1115;1108:12;1072:2;1155:4;1147:6;1143:17;1131:29;;1209:3;1201:4;1193:6;1189:17;1179:8;1175:32;1172:41;1169:2;;;1226:1;1223;1216:12;1169:2;959:277;;;;;:::o;1259:367::-;1332:8;1342:6;1392:3;1385:4;1377:6;1373:17;1369:27;1359:2;;1410:1;1407;1400:12;1359:2;1446:6;1433:20;1423:30;;1476:18;1468:6;1465:30;1462:2;;;1508:1;1505;1498:12;1462:2;1545:4;1537:6;1533:17;1521:29;;1599:3;1591:4;1583:6;1579:17;1569:8;1565:32;1562:41;1559:2;;;1616:1;1613;1606:12;1559:2;1349:277;;;;;:::o;1632:133::-;1675:5;1713:6;1700:20;1691:29;;1729:30;1753:5;1729:30;:::i;:::-;1681:84;;;;:::o;1771:137::-;1816:5;1854:6;1841:20;1832:29;;1870:32;1896:5;1870:32;:::i;:::-;1822:86;;;;:::o;1914:141::-;1970:5;2001:6;1995:13;1986:22;;2017:32;2043:5;2017:32;:::i;:::-;1976:79;;;;:::o;2074:271::-;2129:5;2178:3;2171:4;2163:6;2159:17;2155:27;2145:2;;2196:1;2193;2186:12;2145:2;2236:6;2223:20;2261:78;2335:3;2327:6;2320:4;2312:6;2308:17;2261:78;:::i;:::-;2252:87;;2135:210;;;;;:::o;2365:273::-;2421:5;2470:3;2463:4;2455:6;2451:17;2447:27;2437:2;;2488:1;2485;2478:12;2437:2;2528:6;2515:20;2553:79;2628:3;2620:6;2613:4;2605:6;2601:17;2553:79;:::i;:::-;2544:88;;2427:211;;;;;:::o;2644:139::-;2690:5;2728:6;2715:20;2706:29;;2744:33;2771:5;2744:33;:::i;:::-;2696:87;;;;:::o;2789:143::-;2846:5;2877:6;2871:13;2862:22;;2893:33;2920:5;2893:33;:::i;:::-;2852:80;;;;:::o;2938:262::-;2997:6;3046:2;3034:9;3025:7;3021:23;3017:32;3014:2;;;3062:1;3059;3052:12;3014:2;3105:1;3130:53;3175:7;3166:6;3155:9;3151:22;3130:53;:::i;:::-;3120:63;;3076:117;3004:196;;;;:::o;3206:407::-;3274:6;3282;3331:2;3319:9;3310:7;3306:23;3302:32;3299:2;;;3347:1;3344;3337:12;3299:2;3390:1;3415:53;3460:7;3451:6;3440:9;3436:22;3415:53;:::i;:::-;3405:63;;3361:117;3517:2;3543:53;3588:7;3579:6;3568:9;3564:22;3543:53;:::i;:::-;3533:63;;3488:118;3289:324;;;;;:::o;3619:552::-;3696:6;3704;3712;3761:2;3749:9;3740:7;3736:23;3732:32;3729:2;;;3777:1;3774;3767:12;3729:2;3820:1;3845:53;3890:7;3881:6;3870:9;3866:22;3845:53;:::i;:::-;3835:63;;3791:117;3947:2;3973:53;4018:7;4009:6;3998:9;3994:22;3973:53;:::i;:::-;3963:63;;3918:118;4075:2;4101:53;4146:7;4137:6;4126:9;4122:22;4101:53;:::i;:::-;4091:63;;4046:118;3719:452;;;;;:::o;4177:809::-;4272:6;4280;4288;4296;4345:3;4333:9;4324:7;4320:23;4316:33;4313:2;;;4362:1;4359;4352:12;4313:2;4405:1;4430:53;4475:7;4466:6;4455:9;4451:22;4430:53;:::i;:::-;4420:63;;4376:117;4532:2;4558:53;4603:7;4594:6;4583:9;4579:22;4558:53;:::i;:::-;4548:63;;4503:118;4660:2;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4631:118;4816:2;4805:9;4801:18;4788:32;4847:18;4839:6;4836:30;4833:2;;;4879:1;4876;4869:12;4833:2;4907:62;4961:7;4952:6;4941:9;4937:22;4907:62;:::i;:::-;4897:72;;4759:220;4303:683;;;;;;;:::o;4992:401::-;5057:6;5065;5114:2;5102:9;5093:7;5089:23;5085:32;5082:2;;;5130:1;5127;5120:12;5082:2;5173:1;5198:53;5243:7;5234:6;5223:9;5219:22;5198:53;:::i;:::-;5188:63;;5144:117;5300:2;5326:50;5368:7;5359:6;5348:9;5344:22;5326:50;:::i;:::-;5316:60;;5271:115;5072:321;;;;;:::o;5399:407::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:2;;;5540:1;5537;5530:12;5492:2;5583:1;5608:53;5653:7;5644:6;5633:9;5629:22;5608:53;:::i;:::-;5598:63;;5554:117;5710:2;5736:53;5781:7;5772:6;5761:9;5757:22;5736:53;:::i;:::-;5726:63;;5681:118;5482:324;;;;;:::o;5812:733::-;5934:6;5942;5950;5958;6007:2;5995:9;5986:7;5982:23;5978:32;5975:2;;;6023:1;6020;6013:12;5975:2;6094:1;6083:9;6079:17;6066:31;6124:18;6116:6;6113:30;6110:2;;;6156:1;6153;6146:12;6110:2;6192:80;6264:7;6255:6;6244:9;6240:22;6192:80;:::i;:::-;6174:98;;;;6037:245;6349:2;6338:9;6334:18;6321:32;6380:18;6372:6;6369:30;6366:2;;;6412:1;6409;6402:12;6366:2;6448:80;6520:7;6511:6;6500:9;6496:22;6448:80;:::i;:::-;6430:98;;;;6292:246;5965:580;;;;;;;:::o;6551:260::-;6609:6;6658:2;6646:9;6637:7;6633:23;6629:32;6626:2;;;6674:1;6671;6664:12;6626:2;6717:1;6742:52;6786:7;6777:6;6766:9;6762:22;6742:52;:::i;:::-;6732:62;;6688:116;6616:195;;;;:::o;6817:282::-;6886:6;6935:2;6923:9;6914:7;6910:23;6906:32;6903:2;;;6951:1;6948;6941:12;6903:2;6994:1;7019:63;7074:7;7065:6;7054:9;7050:22;7019:63;:::i;:::-;7009:73;;6965:127;6893:206;;;;:::o;7105:375::-;7174:6;7223:2;7211:9;7202:7;7198:23;7194:32;7191:2;;;7239:1;7236;7229:12;7191:2;7310:1;7299:9;7295:17;7282:31;7340:18;7332:6;7329:30;7326:2;;;7372:1;7369;7362:12;7326:2;7400:63;7455:7;7446:6;7435:9;7431:22;7400:63;:::i;:::-;7390:73;;7253:220;7181:299;;;;:::o;7486:262::-;7545:6;7594:2;7582:9;7573:7;7569:23;7565:32;7562:2;;;7610:1;7607;7600:12;7562:2;7653:1;7678:53;7723:7;7714:6;7703:9;7699:22;7678:53;:::i;:::-;7668:63;;7624:117;7552:196;;;;:::o;7754:284::-;7824:6;7873:2;7861:9;7852:7;7848:23;7844:32;7841:2;;;7889:1;7886;7879:12;7841:2;7932:1;7957:64;8013:7;8004:6;7993:9;7989:22;7957:64;:::i;:::-;7947:74;;7903:128;7831:207;;;;:::o;8044:118::-;8131:24;8149:5;8131:24;:::i;:::-;8126:3;8119:37;8109:53;;:::o;8168:109::-;8249:21;8264:5;8249:21;:::i;:::-;8244:3;8237:34;8227:50;;:::o;8283:360::-;8369:3;8397:38;8429:5;8397:38;:::i;:::-;8451:70;8514:6;8509:3;8451:70;:::i;:::-;8444:77;;8530:52;8575:6;8570:3;8563:4;8556:5;8552:16;8530:52;:::i;:::-;8607:29;8629:6;8607:29;:::i;:::-;8602:3;8598:39;8591:46;;8373:270;;;;;:::o;8649:155::-;8748:49;8791:5;8748:49;:::i;:::-;8743:3;8736:62;8726:78;;:::o;8810:364::-;8898:3;8926:39;8959:5;8926:39;:::i;:::-;8981:71;9045:6;9040:3;8981:71;:::i;:::-;8974:78;;9061:52;9106:6;9101:3;9094:4;9087:5;9083:16;9061:52;:::i;:::-;9138:29;9160:6;9138:29;:::i;:::-;9133:3;9129:39;9122:46;;8902:272;;;;;:::o;9180:366::-;9322:3;9343:67;9407:2;9402:3;9343:67;:::i;:::-;9336:74;;9419:93;9508:3;9419:93;:::i;:::-;9537:2;9532:3;9528:12;9521:19;;9326:220;;;:::o;9552:366::-;9694:3;9715:67;9779:2;9774:3;9715:67;:::i;:::-;9708:74;;9791:93;9880:3;9791:93;:::i;:::-;9909:2;9904:3;9900:12;9893:19;;9698:220;;;:::o;9924:366::-;10066:3;10087:67;10151:2;10146:3;10087:67;:::i;:::-;10080:74;;10163:93;10252:3;10163:93;:::i;:::-;10281:2;10276:3;10272:12;10265:19;;10070:220;;;:::o;10296:366::-;10438:3;10459:67;10523:2;10518:3;10459:67;:::i;:::-;10452:74;;10535:93;10624:3;10535:93;:::i;:::-;10653:2;10648:3;10644:12;10637:19;;10442:220;;;:::o;10668:366::-;10810:3;10831:67;10895:2;10890:3;10831:67;:::i;:::-;10824:74;;10907:93;10996:3;10907:93;:::i;:::-;11025:2;11020:3;11016:12;11009:19;;10814:220;;;:::o;11040:366::-;11182:3;11203:67;11267:2;11262:3;11203:67;:::i;:::-;11196:74;;11279:93;11368:3;11279:93;:::i;:::-;11397:2;11392:3;11388:12;11381:19;;11186:220;;;:::o;11412:366::-;11554:3;11575:67;11639:2;11634:3;11575:67;:::i;:::-;11568:74;;11651:93;11740:3;11651:93;:::i;:::-;11769:2;11764:3;11760:12;11753:19;;11558:220;;;:::o;11784:366::-;11926:3;11947:67;12011:2;12006:3;11947:67;:::i;:::-;11940:74;;12023:93;12112:3;12023:93;:::i;:::-;12141:2;12136:3;12132:12;12125:19;;11930:220;;;:::o;12156:366::-;12298:3;12319:67;12383:2;12378:3;12319:67;:::i;:::-;12312:74;;12395:93;12484:3;12395:93;:::i;:::-;12513:2;12508:3;12504:12;12497:19;;12302:220;;;:::o;12528:366::-;12670:3;12691:67;12755:2;12750:3;12691:67;:::i;:::-;12684:74;;12767:93;12856:3;12767:93;:::i;:::-;12885:2;12880:3;12876:12;12869:19;;12674:220;;;:::o;12900:366::-;13042:3;13063:67;13127:2;13122:3;13063:67;:::i;:::-;13056:74;;13139:93;13228:3;13139:93;:::i;:::-;13257:2;13252:3;13248:12;13241:19;;13046:220;;;:::o;13272:118::-;13359:24;13377:5;13359:24;:::i;:::-;13354:3;13347:37;13337:53;;:::o;13396:222::-;13489:4;13527:2;13516:9;13512:18;13504:26;;13540:71;13608:1;13597:9;13593:17;13584:6;13540:71;:::i;:::-;13494:124;;;;:::o;13624:640::-;13819:4;13857:3;13846:9;13842:19;13834:27;;13871:71;13939:1;13928:9;13924:17;13915:6;13871:71;:::i;:::-;13952:72;14020:2;14009:9;14005:18;13996:6;13952:72;:::i;:::-;14034;14102:2;14091:9;14087:18;14078:6;14034:72;:::i;:::-;14153:9;14147:4;14143:20;14138:2;14127:9;14123:18;14116:48;14181:76;14252:4;14243:6;14181:76;:::i;:::-;14173:84;;13824:440;;;;;;;:::o;14270:210::-;14357:4;14395:2;14384:9;14380:18;14372:26;;14408:65;14470:1;14459:9;14455:17;14446:6;14408:65;:::i;:::-;14362:118;;;;:::o;14486:246::-;14591:4;14629:2;14618:9;14614:18;14606:26;;14642:83;14722:1;14711:9;14707:17;14698:6;14642:83;:::i;:::-;14596:136;;;;:::o;14738:313::-;14851:4;14889:2;14878:9;14874:18;14866:26;;14938:9;14932:4;14928:20;14924:1;14913:9;14909:17;14902:47;14966:78;15039:4;15030:6;14966:78;:::i;:::-;14958:86;;14856:195;;;;:::o;15057:419::-;15223:4;15261:2;15250:9;15246:18;15238:26;;15310:9;15304:4;15300:20;15296:1;15285:9;15281:17;15274:47;15338:131;15464:4;15338:131;:::i;:::-;15330:139;;15228:248;;;:::o;15482:419::-;15648:4;15686:2;15675:9;15671:18;15663:26;;15735:9;15729:4;15725:20;15721:1;15710:9;15706:17;15699:47;15763:131;15889:4;15763:131;:::i;:::-;15755:139;;15653:248;;;:::o;15907:419::-;16073:4;16111:2;16100:9;16096:18;16088:26;;16160:9;16154:4;16150:20;16146:1;16135:9;16131:17;16124:47;16188:131;16314:4;16188:131;:::i;:::-;16180:139;;16078:248;;;:::o;16332:419::-;16498:4;16536:2;16525:9;16521:18;16513:26;;16585:9;16579:4;16575:20;16571:1;16560:9;16556:17;16549:47;16613:131;16739:4;16613:131;:::i;:::-;16605:139;;16503:248;;;:::o;16757:419::-;16923:4;16961:2;16950:9;16946:18;16938:26;;17010:9;17004:4;17000:20;16996:1;16985:9;16981:17;16974:47;17038:131;17164:4;17038:131;:::i;:::-;17030:139;;16928:248;;;:::o;17182:419::-;17348:4;17386:2;17375:9;17371:18;17363:26;;17435:9;17429:4;17425:20;17421:1;17410:9;17406:17;17399:47;17463:131;17589:4;17463:131;:::i;:::-;17455:139;;17353:248;;;:::o;17607:419::-;17773:4;17811:2;17800:9;17796:18;17788:26;;17860:9;17854:4;17850:20;17846:1;17835:9;17831:17;17824:47;17888:131;18014:4;17888:131;:::i;:::-;17880:139;;17778:248;;;:::o;18032:419::-;18198:4;18236:2;18225:9;18221:18;18213:26;;18285:9;18279:4;18275:20;18271:1;18260:9;18256:17;18249:47;18313:131;18439:4;18313:131;:::i;:::-;18305:139;;18203:248;;;:::o;18457:419::-;18623:4;18661:2;18650:9;18646:18;18638:26;;18710:9;18704:4;18700:20;18696:1;18685:9;18681:17;18674:47;18738:131;18864:4;18738:131;:::i;:::-;18730:139;;18628:248;;;:::o;18882:419::-;19048:4;19086:2;19075:9;19071:18;19063:26;;19135:9;19129:4;19125:20;19121:1;19110:9;19106:17;19099:47;19163:131;19289:4;19163:131;:::i;:::-;19155:139;;19053:248;;;:::o;19307:419::-;19473:4;19511:2;19500:9;19496:18;19488:26;;19560:9;19554:4;19550:20;19546:1;19535:9;19531:17;19524:47;19588:131;19714:4;19588:131;:::i;:::-;19580:139;;19478:248;;;:::o;19732:222::-;19825:4;19863:2;19852:9;19848:18;19840:26;;19876:71;19944:1;19933:9;19929:17;19920:6;19876:71;:::i;:::-;19830:124;;;;:::o;19960:129::-;19994:6;20021:20;;:::i;:::-;20011:30;;20050:33;20078:4;20070:6;20050:33;:::i;:::-;20001:88;;;:::o;20095:75::-;20128:6;20161:2;20155:9;20145:19;;20135:35;:::o;20176:307::-;20237:4;20327:18;20319:6;20316:30;20313:2;;;20349:18;;:::i;:::-;20313:2;20387:29;20409:6;20387:29;:::i;:::-;20379:37;;20471:4;20465;20461:15;20453:23;;20242:241;;;:::o;20489:308::-;20551:4;20641:18;20633:6;20630:30;20627:2;;;20663:18;;:::i;:::-;20627:2;20701:29;20723:6;20701:29;:::i;:::-;20693:37;;20785:4;20779;20775:15;20767:23;;20556:241;;;:::o;20803:98::-;20854:6;20888:5;20882:12;20872:22;;20861:40;;;:::o;20907:99::-;20959:6;20993:5;20987:12;20977:22;;20966:40;;;:::o;21012:168::-;21095:11;21129:6;21124:3;21117:19;21169:4;21164:3;21160:14;21145:29;;21107:73;;;;:::o;21186:169::-;21270:11;21304:6;21299:3;21292:19;21344:4;21339:3;21335:14;21320:29;;21282:73;;;;:::o;21361:305::-;21401:3;21420:20;21438:1;21420:20;:::i;:::-;21415:25;;21454:20;21472:1;21454:20;:::i;:::-;21449:25;;21608:1;21540:66;21536:74;21533:1;21530:81;21527:2;;;21614:18;;:::i;:::-;21527:2;21658:1;21655;21651:9;21644:16;;21405:261;;;;:::o;21672:348::-;21712:7;21735:20;21753:1;21735:20;:::i;:::-;21730:25;;21769:20;21787:1;21769:20;:::i;:::-;21764:25;;21957:1;21889:66;21885:74;21882:1;21879:81;21874:1;21867:9;21860:17;21856:105;21853:2;;;21964:18;;:::i;:::-;21853:2;22012:1;22009;22005:9;21994:20;;21720:300;;;;:::o;22026:191::-;22066:4;22086:20;22104:1;22086:20;:::i;:::-;22081:25;;22120:20;22138:1;22120:20;:::i;:::-;22115:25;;22159:1;22156;22153:8;22150:2;;;22164:18;;:::i;:::-;22150:2;22209:1;22206;22202:9;22194:17;;22071:146;;;;:::o;22223:96::-;22260:7;22289:24;22307:5;22289:24;:::i;:::-;22278:35;;22268:51;;;:::o;22325:90::-;22359:7;22402:5;22395:13;22388:21;22377:32;;22367:48;;;:::o;22421:149::-;22457:7;22497:66;22490:5;22486:78;22475:89;;22465:105;;;:::o;22576:139::-;22627:7;22656:5;22645:16;;22662:47;22703:5;22662:47;:::i;:::-;22635:80;;;:::o;22721:126::-;22758:7;22798:42;22791:5;22787:54;22776:65;;22766:81;;;:::o;22853:77::-;22890:7;22919:5;22908:16;;22898:32;;;:::o;22936:139::-;22998:9;23031:38;23063:5;23031:38;:::i;:::-;23018:51;;23008:67;;;:::o;23081:154::-;23165:6;23160:3;23155;23142:30;23227:1;23218:6;23213:3;23209:16;23202:27;23132:103;;;:::o;23241:307::-;23309:1;23319:113;23333:6;23330:1;23327:13;23319:113;;;23418:1;23413:3;23409:11;23403:18;23399:1;23394:3;23390:11;23383:39;23355:2;23352:1;23348:10;23343:15;;23319:113;;;23450:6;23447:1;23444:13;23441:2;;;23530:1;23521:6;23516:3;23512:16;23505:27;23441:2;23290:258;;;;:::o;23554:320::-;23598:6;23635:1;23629:4;23625:12;23615:22;;23682:1;23676:4;23672:12;23703:18;23693:2;;23759:4;23751:6;23747:17;23737:27;;23693:2;23821;23813:6;23810:14;23790:18;23787:38;23784:2;;;23840:18;;:::i;:::-;23784:2;23605:269;;;;:::o;23880:281::-;23963:27;23985:4;23963:27;:::i;:::-;23955:6;23951:40;24093:6;24081:10;24078:22;24057:18;24045:10;24042:34;24039:62;24036:2;;;24104:18;;:::i;:::-;24036:2;24144:10;24140:2;24133:22;23923:238;;;:::o;24167:233::-;24206:3;24229:24;24247:5;24229:24;:::i;:::-;24220:33;;24275:66;24268:5;24265:77;24262:2;;;24345:18;;:::i;:::-;24262:2;24392:1;24385:5;24381:13;24374:20;;24210:190;;;:::o;24406:180::-;24454:77;24451:1;24444:88;24551:4;24548:1;24541:15;24575:4;24572:1;24565:15;24592:180;24640:77;24637:1;24630:88;24737:4;24734:1;24727:15;24761:4;24758:1;24751:15;24778:180;24826:77;24823:1;24816:88;24923:4;24920:1;24913:15;24947:4;24944:1;24937:15;24964:180;25012:77;25009:1;25002:88;25109:4;25106:1;25099:15;25133:4;25130:1;25123:15;25150:102;25191:6;25242:2;25238:7;25233:2;25226:5;25222:14;25218:28;25208:38;;25198:54;;;:::o;25258:173::-;25398:25;25394:1;25386:6;25382:14;25375:49;25364:67;:::o;25437:225::-;25577:34;25573:1;25565:6;25561:14;25554:58;25646:8;25641:2;25633:6;25629:15;25622:33;25543:119;:::o;25668:178::-;25808:30;25804:1;25796:6;25792:14;25785:54;25774:72;:::o;25852:224::-;25992:34;25988:1;25980:6;25976:14;25969:58;26061:7;26056:2;26048:6;26044:15;26037:32;25958:118;:::o;26082:169::-;26222:21;26218:1;26210:6;26206:14;26199:45;26188:63;:::o;26257:163::-;26397:15;26393:1;26385:6;26381:14;26374:39;26363:57;:::o;26426:182::-;26566:34;26562:1;26554:6;26550:14;26543:58;26532:76;:::o;26614:234::-;26754:34;26750:1;26742:6;26738:14;26731:58;26823:17;26818:2;26810:6;26806:15;26799:42;26720:128;:::o;26854:168::-;26994:20;26990:1;26982:6;26978:14;26971:44;26960:62;:::o;27028:163::-;27168:15;27164:1;27156:6;27152:14;27145:39;27134:57;:::o;27197:175::-;27337:27;27333:1;27325:6;27321:14;27314:51;27303:69;:::o;27378:119::-;27465:1;27458:5;27455:12;27445:2;;27471:18;;:::i;:::-;27445:2;27435:62;:::o;27503:122::-;27576:24;27594:5;27576:24;:::i;:::-;27569:5;27566:35;27556:2;;27615:1;27612;27605:12;27556:2;27546:79;:::o;27631:116::-;27701:21;27716:5;27701:21;:::i;:::-;27694:5;27691:32;27681:2;;27737:1;27734;27727:12;27681:2;27671:76;:::o;27753:120::-;27825:23;27842:5;27825:23;:::i;:::-;27818:5;27815:34;27805:2;;27863:1;27860;27853:12;27805:2;27795:78;:::o;27879:122::-;27952:24;27970:5;27952:24;:::i;:::-;27945:5;27942:35;27932:2;;27991:1;27988;27981:12;27932:2;27922:79;:::o

Swarm Source

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