ETH Price: $2,972.70 (+1.80%)
Gas: 2 Gwei

Token

Catsamigos (CMGOS)
 

Overview

Max Total Supply

19,999 CMGOS

Holders

1,826

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 CMGOS
0xd8186c5fed0f2c937d04b65e0a6405d8bda3cd7a
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:
Catsamigos

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-31
*/

// SPDX-License-Identifier: MIT
// 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/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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: lib/Constants.sol


pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

// File: IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

// File: OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

// File: Catsamigos.sol


pragma solidity ^0.8.13;






contract Catsamigos is ERC721A, DefaultOperatorFilterer, Ownable {
    uint256 MAX_SUPPLY = 20000;


    uint256 MAX_MINT_PER_TX = 10;
    uint256 MAX_MINT_PER_WALLET = 20;
    uint256 MAX_FREE = 1;


    uint256 Price = 0.005 ether;


    bool public Active;
    string public baseURI;




    mapping(address => uint) public amountMinted;






    constructor(string memory _baseUri) ERC721A("Catsamigos", "CMGOS")
    {baseURI = _baseUri; Active = false;}






    function meowMint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        //Mint must be active
        require(Active, "Sale is not active");




        //Max per tx and per wallet
        require(quantity <= MAX_MINT_PER_TX, "Exceeded the limit per tx");
        require(quantity + amountMinted[msg.sender] <= MAX_MINT_PER_WALLET, "Exceeded the max amount of mints");


        //Not exceeding supply
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
       
        uint256 thisTxPrice = (quantity - MAX_FREE) * Price;


        require(msg.value >= thisTxPrice, "Not enough ether sent");
        _safeMint(msg.sender, quantity);
        amountMinted[msg.sender] += quantity;
       
       
    }
   








    function mintForteam(uint256 quantity) external payable onlyOwner {
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        _safeMint(msg.sender, quantity);
    }




    function toggleSaleState() public onlyOwner{
        if(Active){
            Active = false;
        }else{
            Active = true;
        }
    }








    function withdraw() external payable onlyOwner {




        address marketing = 0xEfc4d3E0c7DeB9287E14d6EEefB54b10c62e68f4;

        address second = 0xB10b9e41D210C4a351d436d00BBAB61c2f7192d6;

        payable(second).transfer((address(this).balance * 10 / 100));

        payable(marketing).transfer((address(this).balance * 50 / 100));




        payable(owner()).transfer(address(this).balance);
    }




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




    function setMintRate(uint256 _mintRate) public onlyOwner {
        Price = _mintRate;
    }
    function setMaxFree(uint256 _max) public onlyOwner {
        MAX_FREE = _max;
    }
    function setBaseURI(string calldata _base) public onlyOwner {
        baseURI = _base;
    }












    /////////////////////////////
    // OPENSEA FILTER REGISTRY
    /////////////////////////////


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


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


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


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


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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"meowMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForteam","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","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":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"}]

6080604052614e20600955600a80556014600b556001600c556611c37937e08000600d553480156200003057600080fd5b506040516200372038038062003720833981810160405281019062000056919062000695565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a81526020017f43617473616d69676f73000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f434d474f530000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f192919062000448565b5080600390805190602001906200010a92919062000448565b506200011b6200037560201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000318578015620001de576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001a49291906200072b565b600060405180830381600087803b158015620001bf57600080fd5b505af1158015620001d4573d6000803e3d6000fd5b5050505062000317565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000298576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025e9291906200072b565b600060405180830381600087803b1580156200027957600080fd5b505af11580156200028e573d6000803e3d6000fd5b5050505062000316565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e1919062000758565b600060405180830381600087803b158015620002fc57600080fd5b505af115801562000311573d6000803e3d6000fd5b505050505b5b5b50506200033a6200032e6200037a60201b60201c565b6200038260201b60201c565b80600f90805190602001906200035292919062000448565b506000600e60006101000a81548160ff02191690831515021790555050620007d9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200045690620007a4565b90600052602060002090601f0160209004810192826200047a5760008555620004c6565b82601f106200049557805160ff1916838001178555620004c6565b82800160010185558215620004c6579182015b82811115620004c5578251825591602001919060010190620004a8565b5b509050620004d59190620004d9565b5090565b5b80821115620004f4576000816000905550600101620004da565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005618262000516565b810181811067ffffffffffffffff8211171562000583576200058262000527565b5b80604052505050565b600062000598620004f8565b9050620005a6828262000556565b919050565b600067ffffffffffffffff821115620005c957620005c862000527565b5b620005d48262000516565b9050602081019050919050565b60005b8381101562000601578082015181840152602081019050620005e4565b8381111562000611576000848401525b50505050565b60006200062e6200062884620005ab565b6200058c565b9050828152602081018484840111156200064d576200064c62000511565b5b6200065a848285620005e1565b509392505050565b600082601f8301126200067a57620006796200050c565b5b81516200068c84826020860162000617565b91505092915050565b600060208284031215620006ae57620006ad62000502565b5b600082015167ffffffffffffffff811115620006cf57620006ce62000507565b5b620006dd8482850162000662565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200071382620006e6565b9050919050565b620007258162000706565b82525050565b60006040820190506200074260008301856200071a565b6200075160208301846200071a565b9392505050565b60006020820190506200076f60008301846200071a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007bd57607f821691505b602082108103620007d357620007d262000775565b5b50919050565b612f3780620007e96000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063c87b56dd1161008a578063daaeec8611610064578063daaeec861461059b578063dbe2193f146105b2578063e985e9c5146105db578063f2fde38b14610618576101b7565b8063c87b56dd1461050a578063c9b0a2a714610547578063d755bf9914610572576101b7565b806395d89b41116100c657806395d89b411461047e578063a22cb465146104a9578063b88d4fde146104d2578063bee9a5fd146104ee576101b7565b806370a08231146103ff578063715018a61461043c5780638da5cb5b14610453576101b7565b80633ccfd60b11610159578063438a67e711610133578063438a67e71461033157806355f804b31461036e5780636352211e146103975780636c0360eb146103d4576101b7565b80633ccfd60b146102e057806341f43434146102ea57806342842e0e14610315576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461027d5780631d9b9efc146102a857806323b872dd146102c4576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121e8565b610641565b6040516101f09190612230565b60405180910390f35b34801561020557600080fd5b5061020e6106d3565b60405161021b91906122e4565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061233c565b610765565b60405161025891906123aa565b60405180910390f35b61027b600480360381019061027691906123f1565b6107e4565b005b34801561028957600080fd5b506102926107fd565b60405161029f9190612440565b60405180910390f35b6102c260048036038101906102bd919061233c565b610814565b005b6102de60048036038101906102d9919061245b565b610880565b005b6102e86108cf565b005b3480156102f657600080fd5b506102ff610a19565b60405161030c919061250d565b60405180910390f35b61032f600480360381019061032a919061245b565b610a2b565b005b34801561033d57600080fd5b5061035860048036038101906103539190612528565b610a7a565b6040516103659190612440565b60405180910390f35b34801561037a57600080fd5b50610395600480360381019061039091906125ba565b610a92565b005b3480156103a357600080fd5b506103be60048036038101906103b9919061233c565b610ab0565b6040516103cb91906123aa565b60405180910390f35b3480156103e057600080fd5b506103e9610ac2565b6040516103f691906122e4565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190612528565b610b50565b6040516104339190612440565b60405180910390f35b34801561044857600080fd5b50610451610c08565b005b34801561045f57600080fd5b50610468610c1c565b60405161047591906123aa565b60405180910390f35b34801561048a57600080fd5b50610493610c46565b6040516104a091906122e4565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190612633565b610cd8565b005b6104ec60048036038101906104e791906127a3565b610cf1565b005b6105086004803603810190610503919061233c565b610d42565b005b34801561051657600080fd5b50610531600480360381019061052c919061233c565b610f82565b60405161053e91906122e4565b60405180910390f35b34801561055357600080fd5b5061055c611020565b6040516105699190612230565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061233c565b611033565b005b3480156105a757600080fd5b506105b0611045565b005b3480156105be57600080fd5b506105d960048036038101906105d4919061233c565b6110a0565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190612826565b6110b2565b60405161060f9190612230565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612528565b611146565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106e290612895565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90612895565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b5050505050905090565b6000610770826111c9565b6107a6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816107ee81611228565b6107f88383611325565b505050565b6000610807611469565b6001546000540303905090565b61081c61146e565b600954816108286107fd565b61083291906128f5565b1115610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90612997565b60405180910390fd5b61087d33826114ec565b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108be576108bd33611228565b5b6108c984848461150a565b50505050565b6108d761146e565b600073efc4d3e0c7deb9287e14d6eeefb54b10c62e68f49050600073b10b9e41d210c4a351d436d00bbab61c2f7192d690508073ffffffffffffffffffffffffffffffffffffffff166108fc6064600a4761093291906129b7565b61093c9190612a40565b9081150290604051600060405180830381858888f19350505050158015610967573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff166108fc606460324761099191906129b7565b61099b9190612a40565b9081150290604051600060405180830381858888f193505050501580156109c6573d6000803e3d6000fd5b506109cf610c1c565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a14573d6000803e3d6000fd5b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6957610a6833611228565b5b610a7484848461182c565b50505050565b60106020528060005260406000206000915090505481565b610a9a61146e565b8181600f9190610aab9291906120d9565b505050565b6000610abb8261184c565b9050919050565b600f8054610acf90612895565b80601f0160208091040260200160405190810160405280929190818152602001828054610afb90612895565b8015610b485780601f10610b1d57610100808354040283529160200191610b48565b820191906000526020600020905b815481529060010190602001808311610b2b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c1061146e565b610c1a6000611918565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c5590612895565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8190612895565b8015610cce5780601f10610ca357610100808354040283529160200191610cce565b820191906000526020600020905b815481529060010190602001808311610cb157829003601f168201915b5050505050905090565b81610ce281611228565b610cec83836119de565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d2f57610d2e33611228565b5b610d3b85858585611ae9565b5050505050565b600e60009054906101000a900460ff16610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890612abd565b60405180910390fd5b600a54811115610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90612b29565b60405180910390fd5b600b54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482610e2491906128f5565b1115610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90612b95565b60405180910390fd5b60095481610e716107fd565b610e7b91906128f5565b1115610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390612997565b60405180910390fd5b6000600d54600c5483610ecf9190612bb5565b610ed991906129b7565b905080341015610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590612c35565b60405180910390fd5b610f2833836114ec565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7791906128f5565b925050819055505050565b6060610f8d826111c9565b610fc3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610fcd611b5c565b90506000815103610fed5760405180602001604052806000815250611018565b80610ff784611bee565b604051602001611008929190612c91565b6040516020818303038152906040525b915050919050565b600e60009054906101000a900460ff1681565b61103b61146e565b80600c8190555050565b61104d61146e565b600e60009054906101000a900460ff1615611082576000600e60006101000a81548160ff02191690831515021790555061109e565b6001600e60006101000a81548160ff0219169083151502179055505b565b6110a861146e565b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61114e61146e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490612d27565b60405180910390fd5b6111c681611918565b50565b6000816111d4611469565b111580156111e3575060005482105b8015611221575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611322576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161129f929190612d47565b602060405180830381865afa1580156112bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e09190612d85565b61132157806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161131891906123aa565b60405180910390fd5b5b50565b600061133082610ab0565b90508073ffffffffffffffffffffffffffffffffffffffff16611351611c3e565b73ffffffffffffffffffffffffffffffffffffffff16146113b45761137d81611378611c3e565b6110b2565b6113b3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611476611c46565b73ffffffffffffffffffffffffffffffffffffffff16611494610c1c565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190612dfe565b60405180910390fd5b565b611506828260405180602001604052806000815250611c4e565b5050565b60006115158261184c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461157c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158884611ceb565b9150915061159e8187611599611c3e565b611d12565b6115ea576115b3866115ae611c3e565b6110b2565b6115e9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611650576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61165d8686866001611d56565b801561166857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061173685611712888887611d5c565b7c020000000000000000000000000000000000000000000000000000000017611d84565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036117bc57600060018501905060006004600083815260200190815260200160002054036117ba5760005481146117b9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118248686866001611daf565b505050505050565b61184783838360405180602001604052806000815250610cf1565b505050565b6000808290508061185b611469565b116118e1576000548110156118e05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118de575b600081036118d45760046000836001900393508381526020019081526020016000205490506118aa565b8092505050611913565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006119eb611c3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a98611c3e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611add9190612230565b60405180910390a35050565b611af4848484610880565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b5657611b1f84848484611db5565b611b55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600f8054611b6b90612895565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9790612895565b8015611be45780601f10611bb957610100808354040283529160200191611be4565b820191906000526020600020905b815481529060010190602001808311611bc757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c2957600184039350600a81066030018453600a8104905080611c07575b50828103602084039350808452505050919050565b600033905090565b600033905090565b611c588383611f05565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ce657600080549050600083820390505b611c986000868380600101945086611db5565b611cce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c85578160005414611ce357600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d738686846120c0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ddb611c3e565b8786866040518563ffffffff1660e01b8152600401611dfd9493929190612e73565b6020604051808303816000875af1925050508015611e3957506040513d601f19601f82011682018060405250810190611e369190612ed4565b60015b611eb2573d8060008114611e69576040519150601f19603f3d011682016040523d82523d6000602084013e611e6e565b606091505b506000815103611eaa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008054905060008203611f45576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f526000848385611d56565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fc983611fba6000866000611d5c565b611fc3856120c9565b17611d84565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461206a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061202f565b50600082036120a5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120bb6000848385611daf565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546120e590612895565b90600052602060002090601f016020900481019282612107576000855561214e565b82601f1061212057803560ff191683800117855561214e565b8280016001018555821561214e579182015b8281111561214d578235825591602001919060010190612132565b5b50905061215b919061215f565b5090565b5b80821115612178576000816000905550600101612160565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121c581612190565b81146121d057600080fd5b50565b6000813590506121e2816121bc565b92915050565b6000602082840312156121fe576121fd612186565b5b600061220c848285016121d3565b91505092915050565b60008115159050919050565b61222a81612215565b82525050565b60006020820190506122456000830184612221565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561228557808201518184015260208101905061226a565b83811115612294576000848401525b50505050565b6000601f19601f8301169050919050565b60006122b68261224b565b6122c08185612256565b93506122d0818560208601612267565b6122d98161229a565b840191505092915050565b600060208201905081810360008301526122fe81846122ab565b905092915050565b6000819050919050565b61231981612306565b811461232457600080fd5b50565b60008135905061233681612310565b92915050565b60006020828403121561235257612351612186565b5b600061236084828501612327565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061239482612369565b9050919050565b6123a481612389565b82525050565b60006020820190506123bf600083018461239b565b92915050565b6123ce81612389565b81146123d957600080fd5b50565b6000813590506123eb816123c5565b92915050565b6000806040838503121561240857612407612186565b5b6000612416858286016123dc565b925050602061242785828601612327565b9150509250929050565b61243a81612306565b82525050565b60006020820190506124556000830184612431565b92915050565b60008060006060848603121561247457612473612186565b5b6000612482868287016123dc565b9350506020612493868287016123dc565b92505060406124a486828701612327565b9150509250925092565b6000819050919050565b60006124d36124ce6124c984612369565b6124ae565b612369565b9050919050565b60006124e5826124b8565b9050919050565b60006124f7826124da565b9050919050565b612507816124ec565b82525050565b600060208201905061252260008301846124fe565b92915050565b60006020828403121561253e5761253d612186565b5b600061254c848285016123dc565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261257a57612579612555565b5b8235905067ffffffffffffffff8111156125975761259661255a565b5b6020830191508360018202830111156125b3576125b261255f565b5b9250929050565b600080602083850312156125d1576125d0612186565b5b600083013567ffffffffffffffff8111156125ef576125ee61218b565b5b6125fb85828601612564565b92509250509250929050565b61261081612215565b811461261b57600080fd5b50565b60008135905061262d81612607565b92915050565b6000806040838503121561264a57612649612186565b5b6000612658858286016123dc565b92505060206126698582860161261e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126b08261229a565b810181811067ffffffffffffffff821117156126cf576126ce612678565b5b80604052505050565b60006126e261217c565b90506126ee82826126a7565b919050565b600067ffffffffffffffff82111561270e5761270d612678565b5b6127178261229a565b9050602081019050919050565b82818337600083830152505050565b6000612746612741846126f3565b6126d8565b90508281526020810184848401111561276257612761612673565b5b61276d848285612724565b509392505050565b600082601f83011261278a57612789612555565b5b813561279a848260208601612733565b91505092915050565b600080600080608085870312156127bd576127bc612186565b5b60006127cb878288016123dc565b94505060206127dc878288016123dc565b93505060406127ed87828801612327565b925050606085013567ffffffffffffffff81111561280e5761280d61218b565b5b61281a87828801612775565b91505092959194509250565b6000806040838503121561283d5761283c612186565b5b600061284b858286016123dc565b925050602061285c858286016123dc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128ad57607f821691505b6020821081036128c0576128bf612866565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061290082612306565b915061290b83612306565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129405761293f6128c6565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000612981601683612256565b915061298c8261294b565b602082019050919050565b600060208201905081810360008301526129b081612974565b9050919050565b60006129c282612306565b91506129cd83612306565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a0657612a056128c6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a4b82612306565b9150612a5683612306565b925082612a6657612a65612a11565b5b828204905092915050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612aa7601283612256565b9150612ab282612a71565b602082019050919050565b60006020820190508181036000830152612ad681612a9a565b9050919050565b7f457863656564656420746865206c696d69742070657220747800000000000000600082015250565b6000612b13601983612256565b9150612b1e82612add565b602082019050919050565b60006020820190508181036000830152612b4281612b06565b9050919050565b7f457863656564656420746865206d617820616d6f756e74206f66206d696e7473600082015250565b6000612b7f602083612256565b9150612b8a82612b49565b602082019050919050565b60006020820190508181036000830152612bae81612b72565b9050919050565b6000612bc082612306565b9150612bcb83612306565b925082821015612bde57612bdd6128c6565b5b828203905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000612c1f601583612256565b9150612c2a82612be9565b602082019050919050565b60006020820190508181036000830152612c4e81612c12565b9050919050565b600081905092915050565b6000612c6b8261224b565b612c758185612c55565b9350612c85818560208601612267565b80840191505092915050565b6000612c9d8285612c60565b9150612ca98284612c60565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d11602683612256565b9150612d1c82612cb5565b604082019050919050565b60006020820190508181036000830152612d4081612d04565b9050919050565b6000604082019050612d5c600083018561239b565b612d69602083018461239b565b9392505050565b600081519050612d7f81612607565b92915050565b600060208284031215612d9b57612d9a612186565b5b6000612da984828501612d70565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612de8602083612256565b9150612df382612db2565b602082019050919050565b60006020820190508181036000830152612e1781612ddb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e4582612e1e565b612e4f8185612e29565b9350612e5f818560208601612267565b612e688161229a565b840191505092915050565b6000608082019050612e88600083018761239b565b612e95602083018661239b565b612ea26040830185612431565b8181036060830152612eb48184612e3a565b905095945050505050565b600081519050612ece816121bc565b92915050565b600060208284031215612eea57612ee9612186565b5b6000612ef884828501612ebf565b9150509291505056fea2646970667358221220b6a76ca6e84c773eede7eb808c7a5604073d6c18e6716fe68aea73711ad9dba964736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000076e6f7468696e6700000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063c87b56dd1161008a578063daaeec8611610064578063daaeec861461059b578063dbe2193f146105b2578063e985e9c5146105db578063f2fde38b14610618576101b7565b8063c87b56dd1461050a578063c9b0a2a714610547578063d755bf9914610572576101b7565b806395d89b41116100c657806395d89b411461047e578063a22cb465146104a9578063b88d4fde146104d2578063bee9a5fd146104ee576101b7565b806370a08231146103ff578063715018a61461043c5780638da5cb5b14610453576101b7565b80633ccfd60b11610159578063438a67e711610133578063438a67e71461033157806355f804b31461036e5780636352211e146103975780636c0360eb146103d4576101b7565b80633ccfd60b146102e057806341f43434146102ea57806342842e0e14610315576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461027d5780631d9b9efc146102a857806323b872dd146102c4576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121e8565b610641565b6040516101f09190612230565b60405180910390f35b34801561020557600080fd5b5061020e6106d3565b60405161021b91906122e4565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061233c565b610765565b60405161025891906123aa565b60405180910390f35b61027b600480360381019061027691906123f1565b6107e4565b005b34801561028957600080fd5b506102926107fd565b60405161029f9190612440565b60405180910390f35b6102c260048036038101906102bd919061233c565b610814565b005b6102de60048036038101906102d9919061245b565b610880565b005b6102e86108cf565b005b3480156102f657600080fd5b506102ff610a19565b60405161030c919061250d565b60405180910390f35b61032f600480360381019061032a919061245b565b610a2b565b005b34801561033d57600080fd5b5061035860048036038101906103539190612528565b610a7a565b6040516103659190612440565b60405180910390f35b34801561037a57600080fd5b50610395600480360381019061039091906125ba565b610a92565b005b3480156103a357600080fd5b506103be60048036038101906103b9919061233c565b610ab0565b6040516103cb91906123aa565b60405180910390f35b3480156103e057600080fd5b506103e9610ac2565b6040516103f691906122e4565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190612528565b610b50565b6040516104339190612440565b60405180910390f35b34801561044857600080fd5b50610451610c08565b005b34801561045f57600080fd5b50610468610c1c565b60405161047591906123aa565b60405180910390f35b34801561048a57600080fd5b50610493610c46565b6040516104a091906122e4565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190612633565b610cd8565b005b6104ec60048036038101906104e791906127a3565b610cf1565b005b6105086004803603810190610503919061233c565b610d42565b005b34801561051657600080fd5b50610531600480360381019061052c919061233c565b610f82565b60405161053e91906122e4565b60405180910390f35b34801561055357600080fd5b5061055c611020565b6040516105699190612230565b60405180910390f35b34801561057e57600080fd5b506105996004803603810190610594919061233c565b611033565b005b3480156105a757600080fd5b506105b0611045565b005b3480156105be57600080fd5b506105d960048036038101906105d4919061233c565b6110a0565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190612826565b6110b2565b60405161060f9190612230565b60405180910390f35b34801561062457600080fd5b5061063f600480360381019061063a9190612528565b611146565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106cc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106e290612895565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90612895565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b5050505050905090565b6000610770826111c9565b6107a6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816107ee81611228565b6107f88383611325565b505050565b6000610807611469565b6001546000540303905090565b61081c61146e565b600954816108286107fd565b61083291906128f5565b1115610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90612997565b60405180910390fd5b61087d33826114ec565b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108be576108bd33611228565b5b6108c984848461150a565b50505050565b6108d761146e565b600073efc4d3e0c7deb9287e14d6eeefb54b10c62e68f49050600073b10b9e41d210c4a351d436d00bbab61c2f7192d690508073ffffffffffffffffffffffffffffffffffffffff166108fc6064600a4761093291906129b7565b61093c9190612a40565b9081150290604051600060405180830381858888f19350505050158015610967573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff166108fc606460324761099191906129b7565b61099b9190612a40565b9081150290604051600060405180830381858888f193505050501580156109c6573d6000803e3d6000fd5b506109cf610c1c565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a14573d6000803e3d6000fd5b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6957610a6833611228565b5b610a7484848461182c565b50505050565b60106020528060005260406000206000915090505481565b610a9a61146e565b8181600f9190610aab9291906120d9565b505050565b6000610abb8261184c565b9050919050565b600f8054610acf90612895565b80601f0160208091040260200160405190810160405280929190818152602001828054610afb90612895565b8015610b485780601f10610b1d57610100808354040283529160200191610b48565b820191906000526020600020905b815481529060010190602001808311610b2b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c1061146e565b610c1a6000611918565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c5590612895565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8190612895565b8015610cce5780601f10610ca357610100808354040283529160200191610cce565b820191906000526020600020905b815481529060010190602001808311610cb157829003601f168201915b5050505050905090565b81610ce281611228565b610cec83836119de565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d2f57610d2e33611228565b5b610d3b85858585611ae9565b5050505050565b600e60009054906101000a900460ff16610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890612abd565b60405180910390fd5b600a54811115610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90612b29565b60405180910390fd5b600b54601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482610e2491906128f5565b1115610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90612b95565b60405180910390fd5b60095481610e716107fd565b610e7b91906128f5565b1115610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390612997565b60405180910390fd5b6000600d54600c5483610ecf9190612bb5565b610ed991906129b7565b905080341015610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590612c35565b60405180910390fd5b610f2833836114ec565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7791906128f5565b925050819055505050565b6060610f8d826111c9565b610fc3576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610fcd611b5c565b90506000815103610fed5760405180602001604052806000815250611018565b80610ff784611bee565b604051602001611008929190612c91565b6040516020818303038152906040525b915050919050565b600e60009054906101000a900460ff1681565b61103b61146e565b80600c8190555050565b61104d61146e565b600e60009054906101000a900460ff1615611082576000600e60006101000a81548160ff02191690831515021790555061109e565b6001600e60006101000a81548160ff0219169083151502179055505b565b6110a861146e565b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61114e61146e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490612d27565b60405180910390fd5b6111c681611918565b50565b6000816111d4611469565b111580156111e3575060005482105b8015611221575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611322576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161129f929190612d47565b602060405180830381865afa1580156112bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e09190612d85565b61132157806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161131891906123aa565b60405180910390fd5b5b50565b600061133082610ab0565b90508073ffffffffffffffffffffffffffffffffffffffff16611351611c3e565b73ffffffffffffffffffffffffffffffffffffffff16146113b45761137d81611378611c3e565b6110b2565b6113b3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611476611c46565b73ffffffffffffffffffffffffffffffffffffffff16611494610c1c565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190612dfe565b60405180910390fd5b565b611506828260405180602001604052806000815250611c4e565b5050565b60006115158261184c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461157c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158884611ceb565b9150915061159e8187611599611c3e565b611d12565b6115ea576115b3866115ae611c3e565b6110b2565b6115e9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611650576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61165d8686866001611d56565b801561166857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061173685611712888887611d5c565b7c020000000000000000000000000000000000000000000000000000000017611d84565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036117bc57600060018501905060006004600083815260200190815260200160002054036117ba5760005481146117b9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118248686866001611daf565b505050505050565b61184783838360405180602001604052806000815250610cf1565b505050565b6000808290508061185b611469565b116118e1576000548110156118e05760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118de575b600081036118d45760046000836001900393508381526020019081526020016000205490506118aa565b8092505050611913565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006119eb611c3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a98611c3e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611add9190612230565b60405180910390a35050565b611af4848484610880565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b5657611b1f84848484611db5565b611b55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600f8054611b6b90612895565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9790612895565b8015611be45780601f10611bb957610100808354040283529160200191611be4565b820191906000526020600020905b815481529060010190602001808311611bc757829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611c2957600184039350600a81066030018453600a8104905080611c07575b50828103602084039350808452505050919050565b600033905090565b600033905090565b611c588383611f05565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ce657600080549050600083820390505b611c986000868380600101945086611db5565b611cce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c85578160005414611ce357600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d738686846120c0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ddb611c3e565b8786866040518563ffffffff1660e01b8152600401611dfd9493929190612e73565b6020604051808303816000875af1925050508015611e3957506040513d601f19601f82011682018060405250810190611e369190612ed4565b60015b611eb2573d8060008114611e69576040519150601f19603f3d011682016040523d82523d6000602084013e611e6e565b606091505b506000815103611eaa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008054905060008203611f45576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f526000848385611d56565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fc983611fba6000866000611d5c565b611fc3856120c9565b17611d84565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461206a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061202f565b50600082036120a5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120bb6000848385611daf565b505050565b60009392505050565b60006001821460e11b9050919050565b8280546120e590612895565b90600052602060002090601f016020900481019282612107576000855561214e565b82601f1061212057803560ff191683800117855561214e565b8280016001018555821561214e579182015b8281111561214d578235825591602001919060010190612132565b5b50905061215b919061215f565b5090565b5b80821115612178576000816000905550600101612160565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121c581612190565b81146121d057600080fd5b50565b6000813590506121e2816121bc565b92915050565b6000602082840312156121fe576121fd612186565b5b600061220c848285016121d3565b91505092915050565b60008115159050919050565b61222a81612215565b82525050565b60006020820190506122456000830184612221565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561228557808201518184015260208101905061226a565b83811115612294576000848401525b50505050565b6000601f19601f8301169050919050565b60006122b68261224b565b6122c08185612256565b93506122d0818560208601612267565b6122d98161229a565b840191505092915050565b600060208201905081810360008301526122fe81846122ab565b905092915050565b6000819050919050565b61231981612306565b811461232457600080fd5b50565b60008135905061233681612310565b92915050565b60006020828403121561235257612351612186565b5b600061236084828501612327565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061239482612369565b9050919050565b6123a481612389565b82525050565b60006020820190506123bf600083018461239b565b92915050565b6123ce81612389565b81146123d957600080fd5b50565b6000813590506123eb816123c5565b92915050565b6000806040838503121561240857612407612186565b5b6000612416858286016123dc565b925050602061242785828601612327565b9150509250929050565b61243a81612306565b82525050565b60006020820190506124556000830184612431565b92915050565b60008060006060848603121561247457612473612186565b5b6000612482868287016123dc565b9350506020612493868287016123dc565b92505060406124a486828701612327565b9150509250925092565b6000819050919050565b60006124d36124ce6124c984612369565b6124ae565b612369565b9050919050565b60006124e5826124b8565b9050919050565b60006124f7826124da565b9050919050565b612507816124ec565b82525050565b600060208201905061252260008301846124fe565b92915050565b60006020828403121561253e5761253d612186565b5b600061254c848285016123dc565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261257a57612579612555565b5b8235905067ffffffffffffffff8111156125975761259661255a565b5b6020830191508360018202830111156125b3576125b261255f565b5b9250929050565b600080602083850312156125d1576125d0612186565b5b600083013567ffffffffffffffff8111156125ef576125ee61218b565b5b6125fb85828601612564565b92509250509250929050565b61261081612215565b811461261b57600080fd5b50565b60008135905061262d81612607565b92915050565b6000806040838503121561264a57612649612186565b5b6000612658858286016123dc565b92505060206126698582860161261e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126b08261229a565b810181811067ffffffffffffffff821117156126cf576126ce612678565b5b80604052505050565b60006126e261217c565b90506126ee82826126a7565b919050565b600067ffffffffffffffff82111561270e5761270d612678565b5b6127178261229a565b9050602081019050919050565b82818337600083830152505050565b6000612746612741846126f3565b6126d8565b90508281526020810184848401111561276257612761612673565b5b61276d848285612724565b509392505050565b600082601f83011261278a57612789612555565b5b813561279a848260208601612733565b91505092915050565b600080600080608085870312156127bd576127bc612186565b5b60006127cb878288016123dc565b94505060206127dc878288016123dc565b93505060406127ed87828801612327565b925050606085013567ffffffffffffffff81111561280e5761280d61218b565b5b61281a87828801612775565b91505092959194509250565b6000806040838503121561283d5761283c612186565b5b600061284b858286016123dc565b925050602061285c858286016123dc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128ad57607f821691505b6020821081036128c0576128bf612866565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061290082612306565b915061290b83612306565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129405761293f6128c6565b5b828201905092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000612981601683612256565b915061298c8261294b565b602082019050919050565b600060208201905081810360008301526129b081612974565b9050919050565b60006129c282612306565b91506129cd83612306565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a0657612a056128c6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a4b82612306565b9150612a5683612306565b925082612a6657612a65612a11565b5b828204905092915050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612aa7601283612256565b9150612ab282612a71565b602082019050919050565b60006020820190508181036000830152612ad681612a9a565b9050919050565b7f457863656564656420746865206c696d69742070657220747800000000000000600082015250565b6000612b13601983612256565b9150612b1e82612add565b602082019050919050565b60006020820190508181036000830152612b4281612b06565b9050919050565b7f457863656564656420746865206d617820616d6f756e74206f66206d696e7473600082015250565b6000612b7f602083612256565b9150612b8a82612b49565b602082019050919050565b60006020820190508181036000830152612bae81612b72565b9050919050565b6000612bc082612306565b9150612bcb83612306565b925082821015612bde57612bdd6128c6565b5b828203905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000612c1f601583612256565b9150612c2a82612be9565b602082019050919050565b60006020820190508181036000830152612c4e81612c12565b9050919050565b600081905092915050565b6000612c6b8261224b565b612c758185612c55565b9350612c85818560208601612267565b80840191505092915050565b6000612c9d8285612c60565b9150612ca98284612c60565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d11602683612256565b9150612d1c82612cb5565b604082019050919050565b60006020820190508181036000830152612d4081612d04565b9050919050565b6000604082019050612d5c600083018561239b565b612d69602083018461239b565b9392505050565b600081519050612d7f81612607565b92915050565b600060208284031215612d9b57612d9a612186565b5b6000612da984828501612d70565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612de8602083612256565b9150612df382612db2565b602082019050919050565b60006020820190508181036000830152612e1781612ddb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612e4582612e1e565b612e4f8185612e29565b9350612e5f818560208601612267565b612e688161229a565b840191505092915050565b6000608082019050612e88600083018761239b565b612e95602083018661239b565b612ea26040830185612431565b8181036060830152612eb48184612e3a565b905095945050505050565b600081519050612ece816121bc565b92915050565b600060208284031215612eea57612ee9612186565b5b6000612ef884828501612ebf565b9150509291505056fea2646970667358221220b6a76ca6e84c773eede7eb808c7a5604073d6c18e6716fe68aea73711ad9dba964736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000076e6f7468696e6700000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): nothing

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [2] : 6e6f7468696e6700000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

75661:3699:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18437:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25830:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78567:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15090:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77017:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78742:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77409:424;;;:::i;:::-;;72270:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78923:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75974:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78151:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20732:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75938:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16274:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63805:103;;;;;;;;;;;;;:::i;:::-;;63157:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19515:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78381:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79112:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76164:826;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19725:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75913:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78060:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77231:156;;;;;;;;;;;;;:::i;:::-;;77961:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26779:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64063:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18437:639;18522:4;18861:10;18846:25;;:11;:25;;;;:102;;;;18938:10;18923:25;;:11;:25;;;;18846:102;:179;;;;19015:10;19000:25;;:11;:25;;;;18846:179;18826:199;;18437:639;;;:::o;19339:100::-;19393:13;19426:5;19419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19339:100;:::o;25830:218::-;25906:7;25931:16;25939:7;25931;:16::i;:::-;25926:64;;25956:34;;;;;;;;;;;;;;25926:64;26010:15;:24;26026:7;26010:24;;;;;;;;;;;:30;;;;;;;;;;;;26003:37;;25830:218;;;:::o;78567:165::-;78671:8;74052:30;74073:8;74052:20;:30::i;:::-;78692:32:::1;78706:8;78716:7;78692:13;:32::i;:::-;78567:165:::0;;;:::o;15090:323::-;15151:7;15379:15;:13;:15::i;:::-;15364:12;;15348:13;;:28;:46;15341:53;;15090:323;:::o;77017:200::-;63043:13;:11;:13::i;:::-;77130:10:::1;;77118:8;77102:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;77094:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;77178:31;77188:10;77200:8;77178:9;:31::i;:::-;77017:200:::0;:::o;78742:171::-;78851:4;73786:10;73778:18;;:4;:18;;;73774:83;;73813:32;73834:10;73813:20;:32::i;:::-;73774:83;78868:37:::1;78887:4;78893:2;78897:7;78868:18;:37::i;:::-;78742:171:::0;;;;:::o;77409:424::-;63043:13;:11;:13::i;:::-;77475:17:::1;77495:42;77475:62;;77550:14;77567:42;77550:59;;77630:6;77622:24;;:60;77677:3;77672:2;77648:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;77622:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77703:9;77695:27;;:63;77753:3;77748:2;77724:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;77695:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77785:7;:5;:7::i;:::-;77777:25;;:48;77803:21;77777:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77456:377;;77409:424::o:0;72270:143::-;64744:42;72270:143;:::o;78923:179::-;79036:4;73786:10;73778:18;;:4;:18;;;73774:83;;73813:32;73834:10;73813:20;:32::i;:::-;73774:83;79053:41:::1;79076:4;79082:2;79086:7;79053:22;:41::i;:::-;78923:179:::0;;;;:::o;75974:44::-;;;;;;;;;;;;;;;;;:::o;78151:94::-;63043:13;:11;:13::i;:::-;78232:5:::1;;78222:7;:15;;;;;;;:::i;:::-;;78151:94:::0;;:::o;20732:152::-;20804:7;20847:27;20866:7;20847:18;:27::i;:::-;20824:52;;20732:152;;;:::o;75938:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16274:233::-;16346:7;16387:1;16370:19;;:5;:19;;;16366:60;;16398:28;;;;;;;;;;;;;;16366:60;10433:13;16444:18;:25;16463:5;16444:25;;;;;;;;;;;;;;;;:55;16437:62;;16274:233;;;:::o;63805:103::-;63043:13;:11;:13::i;:::-;63870:30:::1;63897:1;63870:18;:30::i;:::-;63805:103::o:0;63157:87::-;63203:7;63230:6;;;;;;;;;;;63223:13;;63157:87;:::o;19515:104::-;19571:13;19604:7;19597:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19515:104;:::o;78381:176::-;78485:8;74052:30;74073:8;74052:20;:30::i;:::-;78506:43:::1;78530:8;78540;78506:23;:43::i;:::-;78381:176:::0;;;:::o;79112:245::-;79280:4;73786:10;73778:18;;:4;:18;;;73774:83;;73813:32;73834:10;73813:20;:32::i;:::-;73774:83;79302:47:::1;79325:4;79331:2;79335:7;79344:4;79302:22;:47::i;:::-;79112:245:::0;;;;;:::o;76164:826::-;76347:6;;;;;;;;;;;76339:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;76452:15;;76440:8;:27;;76432:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;76555:19;;76527:12;:24;76540:10;76527:24;;;;;;;;;;;;;;;;76516:8;:35;;;;:::i;:::-;:58;;76508:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;76694:10;;76682:8;76666:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;76658:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;76751:19;76797:5;;76785:8;;76774;:19;;;;:::i;:::-;76773:29;;;;:::i;:::-;76751:51;;76838:11;76825:9;:24;;76817:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;76886:31;76896:10;76908:8;76886:9;:31::i;:::-;76956:8;76928:12;:24;76941:10;76928:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;76217:773;76164:826;:::o;19725:318::-;19798:13;19829:16;19837:7;19829;:16::i;:::-;19824:59;;19854:29;;;;;;;;;;;;;;19824:59;19896:21;19920:10;:8;:10::i;:::-;19896:34;;19973:1;19954:7;19948:21;:26;:87;;;;;;;;;;;;;;;;;20001:7;20010:18;20020:7;20010:9;:18::i;:::-;19984:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19948:87;19941:94;;;19725:318;;;:::o;75913:18::-;;;;;;;;;;;;;:::o;78060:85::-;63043:13;:11;:13::i;:::-;78133:4:::1;78122:8;:15;;;;78060:85:::0;:::o;77231:156::-;63043:13;:11;:13::i;:::-;77288:6:::1;;;;;;;;;;;77285:95;;;77319:5;77310:6;;:14;;;;;;;;;;;;;;;;;;77285:95;;;77364:4;77355:6;;:13;;;;;;;;;;;;;;;;;;77285:95;77231:156::o:0;77961:93::-;63043:13;:11;:13::i;:::-;78037:9:::1;78029:5;:17;;;;77961:93:::0;:::o;26779:164::-;26876:4;26900:18;:25;26919:5;26900:25;;;;;;;;;;;;;;;:35;26926:8;26900:35;;;;;;;;;;;;;;;;;;;;;;;;;26893:42;;26779:164;;;;:::o;64063:201::-;63043:13;:11;:13::i;:::-;64172:1:::1;64152:22;;:8;:22;;::::0;64144:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;64228:28;64247:8;64228:18;:28::i;:::-;64063:201:::0;:::o;27201:282::-;27266:4;27322:7;27303:15;:13;:15::i;:::-;:26;;:66;;;;;27356:13;;27346:7;:23;27303:66;:153;;;;;27455:1;11209:8;27407:17;:26;27425:7;27407:26;;;;;;;;;;;;:44;:49;27303:153;27283:173;;27201:282;;;:::o;74195:647::-;74434:1;64744:42;74386:45;;;:49;74382:453;;;64744:42;74685;;;74736:4;74743:8;74685:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;74680:144;;74799:8;74780:28;;;;;;;;;;;:::i;:::-;;;;;;;;74680:144;74382:453;74195:647;:::o;25263:408::-;25352:13;25368:16;25376:7;25368;:16::i;:::-;25352:32;;25424:5;25401:28;;:19;:17;:19::i;:::-;:28;;;25397:175;;25449:44;25466:5;25473:19;:17;:19::i;:::-;25449:16;:44::i;:::-;25444:128;;25521:35;;;;;;;;;;;;;;25444:128;25397:175;25617:2;25584:15;:24;25600:7;25584:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25655:7;25651:2;25635:28;;25644:5;25635:28;;;;;;;;;;;;25341:330;25263:408;;:::o;14606:92::-;14662:7;14606:92;:::o;63322:132::-;63397:12;:10;:12::i;:::-;63386:23;;:7;:5;:7::i;:::-;:23;;;63378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63322:132::o;43341:112::-;43418:27;43428:2;43432:8;43418:27;;;;;;;;;;;;:9;:27::i;:::-;43341:112;;:::o;29469:2825::-;29611:27;29641;29660:7;29641:18;:27::i;:::-;29611:57;;29726:4;29685:45;;29701:19;29685:45;;;29681:86;;29739:28;;;;;;;;;;;;;;29681:86;29781:27;29810:23;29837:35;29864:7;29837:26;:35::i;:::-;29780:92;;;;29972:68;29997:15;30014:4;30020:19;:17;:19::i;:::-;29972:24;:68::i;:::-;29967:180;;30060:43;30077:4;30083:19;:17;:19::i;:::-;30060:16;:43::i;:::-;30055:92;;30112:35;;;;;;;;;;;;;;30055:92;29967:180;30178:1;30164:16;;:2;:16;;;30160:52;;30189:23;;;;;;;;;;;;;;30160:52;30225:43;30247:4;30253:2;30257:7;30266:1;30225:21;:43::i;:::-;30361:15;30358:160;;;30501:1;30480:19;30473:30;30358:160;30898:18;:24;30917:4;30898:24;;;;;;;;;;;;;;;;30896:26;;;;;;;;;;;;30967:18;:22;30986:2;30967:22;;;;;;;;;;;;;;;;30965:24;;;;;;;;;;;31289:146;31326:2;31375:45;31390:4;31396:2;31400:19;31375:14;:45::i;:::-;11489:8;31347:73;31289:18;:146::i;:::-;31260:17;:26;31278:7;31260:26;;;;;;;;;;;:175;;;;31606:1;11489:8;31555:19;:47;:52;31551:627;;31628:19;31660:1;31650:7;:11;31628:33;;31817:1;31783:17;:30;31801:11;31783:30;;;;;;;;;;;;:35;31779:384;;31921:13;;31906:11;:28;31902:242;;32101:19;32068:17;:30;32086:11;32068:30;;;;;;;;;;;:52;;;;31902:242;31779:384;31609:569;31551:627;32225:7;32221:2;32206:27;;32215:4;32206:27;;;;;;;;;;;;32244:42;32265:4;32271:2;32275:7;32284:1;32244:20;:42::i;:::-;29600:2694;;;29469:2825;;;:::o;32390:193::-;32536:39;32553:4;32559:2;32563:7;32536:39;;;;;;;;;;;;:16;:39::i;:::-;32390:193;;;:::o;21887:1275::-;21954:7;21974:12;21989:7;21974:22;;22057:4;22038:15;:13;:15::i;:::-;:23;22034:1061;;22091:13;;22084:4;:20;22080:1015;;;22129:14;22146:17;:23;22164:4;22146:23;;;;;;;;;;;;22129:40;;22263:1;11209:8;22235:6;:24;:29;22231:845;;22900:113;22917:1;22907:6;:11;22900:113;;22960:17;:25;22978:6;;;;;;;22960:25;;;;;;;;;;;;22951:34;;22900:113;;;23046:6;23039:13;;;;;;22231:845;22106:989;22080:1015;22034:1061;23123:31;;;;;;;;;;;;;;21887:1275;;;;:::o;64424:191::-;64498:16;64517:6;;;;;;;;;;;64498:25;;64543:8;64534:6;;:17;;;;;;;;;;;;;;;;;;64598:8;64567:40;;64588:8;64567:40;;;;;;;;;;;;64487:128;64424:191;:::o;26388:234::-;26535:8;26483:18;:39;26502:19;:17;:19::i;:::-;26483:39;;;;;;;;;;;;;;;:49;26523:8;26483:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26595:8;26559:55;;26574:19;:17;:19::i;:::-;26559:55;;;26605:8;26559:55;;;;;;:::i;:::-;;;;;;;;26388:234;;:::o;33181:407::-;33356:31;33369:4;33375:2;33379:7;33356:12;:31::i;:::-;33420:1;33402:2;:14;;;:19;33398:183;;33441:56;33472:4;33478:2;33482:7;33491:5;33441:30;:56::i;:::-;33436:145;;33525:40;;;;;;;;;;;;;;33436:145;33398:183;33181:407;;;;:::o;77847:100::-;77899:13;77932:7;77925:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77847:100;:::o;49716:1745::-;49781:17;50215:4;50208;50202:11;50198:22;50307:1;50301:4;50294:15;50382:4;50379:1;50375:12;50368:19;;50464:1;50459:3;50452:14;50568:3;50807:5;50789:428;50815:1;50789:428;;;50855:1;50850:3;50846:11;50839:18;;51026:2;51020:4;51016:13;51012:2;51008:22;51003:3;50995:36;51120:2;51114:4;51110:13;51102:21;;51187:4;50789:428;51177:25;50789:428;50793:21;51256:3;51251;51247:13;51371:4;51366:3;51362:14;51355:21;;51436:6;51431:3;51424:19;49820:1634;;;49716:1745;;;:::o;49509:105::-;49569:7;49596:10;49589:17;;49509:105;:::o;61708:98::-;61761:7;61788:10;61781:17;;61708:98;:::o;42568:689::-;42699:19;42705:2;42709:8;42699:5;:19::i;:::-;42778:1;42760:2;:14;;;:19;42756:483;;42800:11;42814:13;;42800:27;;42846:13;42868:8;42862:3;:14;42846:30;;42895:233;42926:62;42965:1;42969:2;42973:7;;;;;;42982:5;42926:30;:62::i;:::-;42921:167;;43024:40;;;;;;;;;;;;;;42921:167;43123:3;43115:5;:11;42895:233;;43210:3;43193:13;;:20;43189:34;;43215:8;;;43189:34;42781:458;;42756:483;42568:689;;;:::o;28364:485::-;28466:27;28495:23;28536:38;28577:15;:24;28593:7;28577:24;;;;;;;;;;;28536:65;;28754:18;28731:41;;28811:19;28805:26;28786:45;;28716:126;28364:485;;;:::o;27592:659::-;27741:11;27906:16;27899:5;27895:28;27886:37;;28066:16;28055:9;28051:32;28038:45;;28216:15;28205:9;28202:30;28194:5;28183:9;28180:20;28177:56;28167:66;;27592:659;;;;;:::o;34250:159::-;;;;;:::o;48818:311::-;48953:7;48973:16;11613:3;48999:19;:41;;48973:68;;11613:3;49067:31;49078:4;49084:2;49088:9;49067:10;:31::i;:::-;49059:40;;:62;;49052:69;;;48818:311;;;;;:::o;23710:450::-;23790:14;23958:16;23951:5;23947:28;23938:37;;24135:5;24121:11;24096:23;24092:41;24089:52;24082:5;24079:63;24069:73;;23710:450;;;;:::o;35074:158::-;;;;;:::o;35672:716::-;35835:4;35881:2;35856:45;;;35902:19;:17;:19::i;:::-;35923:4;35929:7;35938:5;35856:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35852:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36156:1;36139:6;:13;:18;36135:235;;36185:40;;;;;;;;;;;;;;36135:235;36328:6;36322:13;36313:6;36309:2;36305:15;36298:38;35852:529;36025:54;;;36015:64;;;:6;:64;;;;36008:71;;;35672:716;;;;;;:::o;36850:2966::-;36923:20;36946:13;;36923:36;;36986:1;36974:8;:13;36970:44;;36996:18;;;;;;;;;;;;;;36970:44;37027:61;37057:1;37061:2;37065:12;37079:8;37027:21;:61::i;:::-;37571:1;10571:2;37541:1;:26;;37540:32;37528:8;:45;37502:18;:22;37521:2;37502:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37850:139;37887:2;37941:33;37964:1;37968:2;37972:1;37941:14;:33::i;:::-;37908:30;37929:8;37908:20;:30::i;:::-;:66;37850:18;:139::i;:::-;37816:17;:31;37834:12;37816:31;;;;;;;;;;;:173;;;;38006:16;38037:11;38066:8;38051:12;:23;38037:37;;38587:16;38583:2;38579:25;38567:37;;38959:12;38919:8;38878:1;38816:25;38757:1;38696;38669:335;39330:1;39316:12;39312:20;39270:346;39371:3;39362:7;39359:16;39270:346;;39589:7;39579:8;39576:1;39549:25;39546:1;39543;39538:59;39424:1;39415:7;39411:15;39400:26;;39270:346;;;39274:77;39661:1;39649:8;:13;39645:45;;39671:19;;;;;;;;;;;;;;39645:45;39723:3;39707:13;:19;;;;37276:2462;;39748:60;39777:1;39781:2;39785:12;39799:8;39748:20;:60::i;:::-;36912:2904;36850:2966;;:::o;48519:147::-;48656:6;48519:147;;;;;:::o;24262:324::-;24332:14;24565:1;24555:8;24552:15;24526:24;24522:46;24512:56;;24262:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:60::-;5943:3;5964:5;5957:12;;5915:60;;;:::o;5981:142::-;6031:9;6064:53;6082:34;6091:24;6109:5;6091:24;:::i;:::-;6082:34;:::i;:::-;6064:53;:::i;:::-;6051:66;;5981:142;;;:::o;6129:126::-;6179:9;6212:37;6243:5;6212:37;:::i;:::-;6199:50;;6129:126;;;:::o;6261:158::-;6343:9;6376:37;6407:5;6376:37;:::i;:::-;6363:50;;6261:158;;;:::o;6425:195::-;6544:69;6607:5;6544:69;:::i;:::-;6539:3;6532:82;6425:195;;:::o;6626:286::-;6751:4;6789:2;6778:9;6774:18;6766:26;;6802:103;6902:1;6891:9;6887:17;6878:6;6802:103;:::i;:::-;6626:286;;;;:::o;6918:329::-;6977:6;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;6918:329;;;;:::o;7253:117::-;7362:1;7359;7352:12;7376:117;7485:1;7482;7475:12;7499:117;7608:1;7605;7598:12;7636:553;7694:8;7704:6;7754:3;7747:4;7739:6;7735:17;7731:27;7721:122;;7762:79;;:::i;:::-;7721:122;7875:6;7862:20;7852:30;;7905:18;7897:6;7894:30;7891:117;;;7927:79;;:::i;:::-;7891:117;8041:4;8033:6;8029:17;8017:29;;8095:3;8087:4;8079:6;8075:17;8065:8;8061:32;8058:41;8055:128;;;8102:79;;:::i;:::-;8055:128;7636:553;;;;;:::o;8195:529::-;8266:6;8274;8323:2;8311:9;8302:7;8298:23;8294:32;8291:119;;;8329:79;;:::i;:::-;8291:119;8477:1;8466:9;8462:17;8449:31;8507:18;8499:6;8496:30;8493:117;;;8529:79;;:::i;:::-;8493:117;8642:65;8699:7;8690:6;8679:9;8675:22;8642:65;:::i;:::-;8624:83;;;;8420:297;8195:529;;;;;:::o;8730:116::-;8800:21;8815:5;8800:21;:::i;:::-;8793:5;8790:32;8780:60;;8836:1;8833;8826:12;8780:60;8730:116;:::o;8852:133::-;8895:5;8933:6;8920:20;8911:29;;8949:30;8973:5;8949:30;:::i;:::-;8852:133;;;;:::o;8991:468::-;9056:6;9064;9113:2;9101:9;9092:7;9088:23;9084:32;9081:119;;;9119:79;;:::i;:::-;9081:119;9239:1;9264:53;9309:7;9300:6;9289:9;9285:22;9264:53;:::i;:::-;9254:63;;9210:117;9366:2;9392:50;9434:7;9425:6;9414:9;9410:22;9392:50;:::i;:::-;9382:60;;9337:115;8991:468;;;;;:::o;9465:117::-;9574:1;9571;9564:12;9588:180;9636:77;9633:1;9626:88;9733:4;9730:1;9723:15;9757:4;9754:1;9747:15;9774:281;9857:27;9879:4;9857:27;:::i;:::-;9849:6;9845:40;9987:6;9975:10;9972:22;9951:18;9939:10;9936:34;9933:62;9930:88;;;9998:18;;:::i;:::-;9930:88;10038:10;10034:2;10027:22;9817:238;9774:281;;:::o;10061:129::-;10095:6;10122:20;;:::i;:::-;10112:30;;10151:33;10179:4;10171:6;10151:33;:::i;:::-;10061:129;;;:::o;10196:307::-;10257:4;10347:18;10339:6;10336:30;10333:56;;;10369:18;;:::i;:::-;10333:56;10407:29;10429:6;10407:29;:::i;:::-;10399:37;;10491:4;10485;10481:15;10473:23;;10196:307;;;:::o;10509:154::-;10593:6;10588:3;10583;10570:30;10655:1;10646:6;10641:3;10637:16;10630:27;10509:154;;;:::o;10669:410::-;10746:5;10771:65;10787:48;10828:6;10787:48;:::i;:::-;10771:65;:::i;:::-;10762:74;;10859:6;10852:5;10845:21;10897:4;10890:5;10886:16;10935:3;10926:6;10921:3;10917:16;10914:25;10911:112;;;10942:79;;:::i;:::-;10911:112;11032:41;11066:6;11061:3;11056;11032:41;:::i;:::-;10752:327;10669:410;;;;;:::o;11098:338::-;11153:5;11202:3;11195:4;11187:6;11183:17;11179:27;11169:122;;11210:79;;:::i;:::-;11169:122;11327:6;11314:20;11352:78;11426:3;11418:6;11411:4;11403:6;11399:17;11352:78;:::i;:::-;11343:87;;11159:277;11098:338;;;;:::o;11442:943::-;11537:6;11545;11553;11561;11610:3;11598:9;11589:7;11585:23;11581:33;11578:120;;;11617:79;;:::i;:::-;11578:120;11737:1;11762:53;11807:7;11798:6;11787:9;11783:22;11762:53;:::i;:::-;11752:63;;11708:117;11864:2;11890:53;11935:7;11926:6;11915:9;11911:22;11890:53;:::i;:::-;11880:63;;11835:118;11992:2;12018:53;12063:7;12054:6;12043:9;12039:22;12018:53;:::i;:::-;12008:63;;11963:118;12148:2;12137:9;12133:18;12120:32;12179:18;12171:6;12168:30;12165:117;;;12201:79;;:::i;:::-;12165:117;12306:62;12360:7;12351:6;12340:9;12336:22;12306:62;:::i;:::-;12296:72;;12091:287;11442:943;;;;;;;:::o;12391:474::-;12459:6;12467;12516:2;12504:9;12495:7;12491:23;12487:32;12484:119;;;12522:79;;:::i;:::-;12484:119;12642:1;12667:53;12712:7;12703:6;12692:9;12688:22;12667:53;:::i;:::-;12657:63;;12613:117;12769:2;12795:53;12840:7;12831:6;12820:9;12816:22;12795:53;:::i;:::-;12785:63;;12740:118;12391:474;;;;;:::o;12871:180::-;12919:77;12916:1;12909:88;13016:4;13013:1;13006:15;13040:4;13037:1;13030:15;13057:320;13101:6;13138:1;13132:4;13128:12;13118:22;;13185:1;13179:4;13175:12;13206:18;13196:81;;13262:4;13254:6;13250:17;13240:27;;13196:81;13324:2;13316:6;13313:14;13293:18;13290:38;13287:84;;13343:18;;:::i;:::-;13287:84;13108:269;13057:320;;;:::o;13383:180::-;13431:77;13428:1;13421:88;13528:4;13525:1;13518:15;13552:4;13549:1;13542:15;13569:305;13609:3;13628:20;13646:1;13628:20;:::i;:::-;13623:25;;13662:20;13680:1;13662:20;:::i;:::-;13657:25;;13816:1;13748:66;13744:74;13741:1;13738:81;13735:107;;;13822:18;;:::i;:::-;13735:107;13866:1;13863;13859:9;13852:16;;13569:305;;;;:::o;13880:172::-;14020:24;14016:1;14008:6;14004:14;13997:48;13880:172;:::o;14058:366::-;14200:3;14221:67;14285:2;14280:3;14221:67;:::i;:::-;14214:74;;14297:93;14386:3;14297:93;:::i;:::-;14415:2;14410:3;14406:12;14399:19;;14058:366;;;:::o;14430:419::-;14596:4;14634:2;14623:9;14619:18;14611:26;;14683:9;14677:4;14673:20;14669:1;14658:9;14654:17;14647:47;14711:131;14837:4;14711:131;:::i;:::-;14703:139;;14430:419;;;:::o;14855:348::-;14895:7;14918:20;14936:1;14918:20;:::i;:::-;14913:25;;14952:20;14970:1;14952:20;:::i;:::-;14947:25;;15140:1;15072:66;15068:74;15065:1;15062:81;15057:1;15050:9;15043:17;15039:105;15036:131;;;15147:18;;:::i;:::-;15036:131;15195:1;15192;15188:9;15177:20;;14855:348;;;;:::o;15209:180::-;15257:77;15254:1;15247:88;15354:4;15351:1;15344:15;15378:4;15375:1;15368:15;15395:185;15435:1;15452:20;15470:1;15452:20;:::i;:::-;15447:25;;15486:20;15504:1;15486:20;:::i;:::-;15481:25;;15525:1;15515:35;;15530:18;;:::i;:::-;15515:35;15572:1;15569;15565:9;15560:14;;15395:185;;;;:::o;15586:168::-;15726:20;15722:1;15714:6;15710:14;15703:44;15586:168;:::o;15760:366::-;15902:3;15923:67;15987:2;15982:3;15923:67;:::i;:::-;15916:74;;15999:93;16088:3;15999:93;:::i;:::-;16117:2;16112:3;16108:12;16101:19;;15760:366;;;:::o;16132:419::-;16298:4;16336:2;16325:9;16321:18;16313:26;;16385:9;16379:4;16375:20;16371:1;16360:9;16356:17;16349:47;16413:131;16539:4;16413:131;:::i;:::-;16405:139;;16132:419;;;:::o;16557:175::-;16697:27;16693:1;16685:6;16681:14;16674:51;16557:175;:::o;16738:366::-;16880:3;16901:67;16965:2;16960:3;16901:67;:::i;:::-;16894:74;;16977:93;17066:3;16977:93;:::i;:::-;17095:2;17090:3;17086:12;17079:19;;16738:366;;;:::o;17110:419::-;17276:4;17314:2;17303:9;17299:18;17291:26;;17363:9;17357:4;17353:20;17349:1;17338:9;17334:17;17327:47;17391:131;17517:4;17391:131;:::i;:::-;17383:139;;17110:419;;;:::o;17535:182::-;17675:34;17671:1;17663:6;17659:14;17652:58;17535:182;:::o;17723:366::-;17865:3;17886:67;17950:2;17945:3;17886:67;:::i;:::-;17879:74;;17962:93;18051:3;17962:93;:::i;:::-;18080:2;18075:3;18071:12;18064:19;;17723:366;;;:::o;18095:419::-;18261:4;18299:2;18288:9;18284:18;18276:26;;18348:9;18342:4;18338:20;18334:1;18323:9;18319:17;18312:47;18376:131;18502:4;18376:131;:::i;:::-;18368:139;;18095:419;;;:::o;18520:191::-;18560:4;18580:20;18598:1;18580:20;:::i;:::-;18575:25;;18614:20;18632:1;18614:20;:::i;:::-;18609:25;;18653:1;18650;18647:8;18644:34;;;18658:18;;:::i;:::-;18644:34;18703:1;18700;18696:9;18688:17;;18520:191;;;;:::o;18717:171::-;18857:23;18853:1;18845:6;18841:14;18834:47;18717:171;:::o;18894:366::-;19036:3;19057:67;19121:2;19116:3;19057:67;:::i;:::-;19050:74;;19133:93;19222:3;19133:93;:::i;:::-;19251:2;19246:3;19242:12;19235:19;;18894:366;;;:::o;19266:419::-;19432:4;19470:2;19459:9;19455:18;19447:26;;19519:9;19513:4;19509:20;19505:1;19494:9;19490:17;19483:47;19547:131;19673:4;19547:131;:::i;:::-;19539:139;;19266:419;;;:::o;19691:148::-;19793:11;19830:3;19815:18;;19691:148;;;;:::o;19845:377::-;19951:3;19979:39;20012:5;19979:39;:::i;:::-;20034:89;20116:6;20111:3;20034:89;:::i;:::-;20027:96;;20132:52;20177:6;20172:3;20165:4;20158:5;20154:16;20132:52;:::i;:::-;20209:6;20204:3;20200:16;20193:23;;19955:267;19845:377;;;;:::o;20228:435::-;20408:3;20430:95;20521:3;20512:6;20430:95;:::i;:::-;20423:102;;20542:95;20633:3;20624:6;20542:95;:::i;:::-;20535:102;;20654:3;20647:10;;20228:435;;;;;:::o;20669:225::-;20809:34;20805:1;20797:6;20793:14;20786:58;20878:8;20873:2;20865:6;20861:15;20854:33;20669:225;:::o;20900:366::-;21042:3;21063:67;21127:2;21122:3;21063:67;:::i;:::-;21056:74;;21139:93;21228:3;21139:93;:::i;:::-;21257:2;21252:3;21248:12;21241:19;;20900:366;;;:::o;21272:419::-;21438:4;21476:2;21465:9;21461:18;21453:26;;21525:9;21519:4;21515:20;21511:1;21500:9;21496:17;21489:47;21553:131;21679:4;21553:131;:::i;:::-;21545:139;;21272:419;;;:::o;21697:332::-;21818:4;21856:2;21845:9;21841:18;21833:26;;21869:71;21937:1;21926:9;21922:17;21913:6;21869:71;:::i;:::-;21950:72;22018:2;22007:9;22003:18;21994:6;21950:72;:::i;:::-;21697:332;;;;;:::o;22035:137::-;22089:5;22120:6;22114:13;22105:22;;22136:30;22160:5;22136:30;:::i;:::-;22035:137;;;;:::o;22178:345::-;22245:6;22294:2;22282:9;22273:7;22269:23;22265:32;22262:119;;;22300:79;;:::i;:::-;22262:119;22420:1;22445:61;22498:7;22489:6;22478:9;22474:22;22445:61;:::i;:::-;22435:71;;22391:125;22178:345;;;;:::o;22529:182::-;22669:34;22665:1;22657:6;22653:14;22646:58;22529:182;:::o;22717:366::-;22859:3;22880:67;22944:2;22939:3;22880:67;:::i;:::-;22873:74;;22956:93;23045:3;22956:93;:::i;:::-;23074:2;23069:3;23065:12;23058:19;;22717:366;;;:::o;23089:419::-;23255:4;23293:2;23282:9;23278:18;23270:26;;23342:9;23336:4;23332:20;23328:1;23317:9;23313:17;23306:47;23370:131;23496:4;23370:131;:::i;:::-;23362:139;;23089:419;;;:::o;23514:98::-;23565:6;23599:5;23593:12;23583:22;;23514:98;;;:::o;23618:168::-;23701:11;23735:6;23730:3;23723:19;23775:4;23770:3;23766:14;23751:29;;23618:168;;;;:::o;23792:360::-;23878:3;23906:38;23938:5;23906:38;:::i;:::-;23960:70;24023:6;24018:3;23960:70;:::i;:::-;23953:77;;24039:52;24084:6;24079:3;24072:4;24065:5;24061:16;24039:52;:::i;:::-;24116:29;24138:6;24116:29;:::i;:::-;24111:3;24107:39;24100:46;;23882:270;23792:360;;;;:::o;24158:640::-;24353:4;24391:3;24380:9;24376:19;24368:27;;24405:71;24473:1;24462:9;24458:17;24449:6;24405:71;:::i;:::-;24486:72;24554:2;24543:9;24539:18;24530:6;24486:72;:::i;:::-;24568;24636:2;24625:9;24621:18;24612:6;24568:72;:::i;:::-;24687:9;24681:4;24677:20;24672:2;24661:9;24657:18;24650:48;24715:76;24786:4;24777:6;24715:76;:::i;:::-;24707:84;;24158:640;;;;;;;:::o;24804:141::-;24860:5;24891:6;24885:13;24876:22;;24907:32;24933:5;24907:32;:::i;:::-;24804:141;;;;:::o;24951:349::-;25020:6;25069:2;25057:9;25048:7;25044:23;25040:32;25037:119;;;25075:79;;:::i;:::-;25037:119;25195:1;25220:63;25275:7;25266:6;25255:9;25251:22;25220:63;:::i;:::-;25210:73;;25166:127;24951:349;;;;:::o

Swarm Source

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