ETH Price: $3,386.99 (-2.70%)
Gas: 1 Gwei

Token

Big town pets (BTP)
 

Overview

Max Total Supply

10,000 BTP

Holders

496

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
53 BTP
0x48c5a96ad931f92025f6fce41967bf45bd65adf7
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:
Pets

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 2022-12-15
*/

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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


// File erc721a/contracts/[email protected]

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File erc721a/contracts/[email protected]

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.13;

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


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

pragma solidity ^0.8.13;

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

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

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


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

pragma solidity ^0.8.13;

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

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


// File contracts/BigTownChef/Pets.sol


pragma solidity ^0.8.13;




contract Pets is DefaultOperatorFilterer, ERC721A, Ownable {
    uint256 public immutable maxSupply;
    string private _baseTokenURI;
    bool public isRevealed;
    address public minter;

    modifier onlyMinter() {
        require(minter == _msgSender(), "Pets: only minter can mint");
        _;
    }

    constructor(
        uint256 _maxSupply,
        string memory name,
		string memory symbol,
        string memory baseTokenURI
    )
        ERC721A(name, symbol)
    {
        maxSupply = _maxSupply;
        _baseTokenURI = baseTokenURI;
        minter = _msgSender();
    }

    function setMinter(address _minter) public onlyOwner {
        minter = _minter;
    }

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

    function setBaseTokenURI(string calldata newTokenURI) public onlyOwner {
        _baseTokenURI = newTokenURI;
    }

    function exists(uint256 tokenId) external view returns (bool) {
        return _exists(tokenId);
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "nonexistent token");

        if(isRevealed) {
            return string(abi.encodePacked(_baseTokenURI, Strings.toString(tokenId)));
        }

        return _baseTokenURI;
    }

    function mintAdmin(uint256 quantity, address to) public onlyMinter {
        require(totalSupply() + quantity <= maxSupply, "max supply reached");
        ERC721A._mint(to, quantity);
    }

    function setRevealed(bool _isRevealed) public onlyOwner {
        isRevealed = _isRevealed;
    }

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

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

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

    function 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"newTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRevealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b50604051620036ba380380620036ba833981810160405281019062000037919062000687565b8282733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002455780156200010b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620000d19291906200079b565b600060405180830381600087803b158015620000ec57600080fd5b505af115801562000101573d6000803e3d6000fd5b5050505062000244565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620001c5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200018b9291906200079b565b600060405180830381600087803b158015620001a657600080fd5b505af1158015620001bb573d6000803e3d6000fd5b5050505062000243565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200020e9190620007c8565b600060405180830381600087803b1580156200022957600080fd5b505af11580156200023e573d6000803e3d6000fd5b505050505b5b5b505081600290805190602001906200025f929190620003ff565b50806003908051906020019062000278929190620003ff565b50620002896200032c60201b60201c565b6000819055505050620002b1620002a56200033160201b60201c565b6200033960201b60201c565b83608081815250508060099080519060200190620002d1929190620003ff565b50620002e26200033160201b60201c565b600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000849565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200040d9062000814565b90600052602060002090601f0160209004810192826200043157600085556200047d565b82601f106200044c57805160ff19168380011785556200047d565b828001600101855582156200047d579182015b828111156200047c5782518255916020019190600101906200045f565b5b5090506200048c919062000490565b5090565b5b80821115620004ab57600081600090555060010162000491565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620004d881620004c3565b8114620004e457600080fd5b50565b600081519050620004f881620004cd565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005538262000508565b810181811067ffffffffffffffff8211171562000575576200057462000519565b5b80604052505050565b60006200058a620004af565b905062000598828262000548565b919050565b600067ffffffffffffffff821115620005bb57620005ba62000519565b5b620005c68262000508565b9050602081019050919050565b60005b83811015620005f3578082015181840152602081019050620005d6565b8381111562000603576000848401525b50505050565b6000620006206200061a846200059d565b6200057e565b9050828152602081018484840111156200063f576200063e62000503565b5b6200064c848285620005d3565b509392505050565b600082601f8301126200066c576200066b620004fe565b5b81516200067e84826020860162000609565b91505092915050565b60008060008060808587031215620006a457620006a3620004b9565b5b6000620006b487828801620004e7565b945050602085015167ffffffffffffffff811115620006d857620006d7620004be565b5b620006e68782880162000654565b935050604085015167ffffffffffffffff8111156200070a5762000709620004be565b5b620007188782880162000654565b925050606085015167ffffffffffffffff8111156200073c576200073b620004be565b5b6200074a8782880162000654565b91505092959194509250565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007838262000756565b9050919050565b620007958162000776565b82525050565b6000604082019050620007b260008301856200078a565b620007c160208301846200078a565b9392505050565b6000602082019050620007df60008301846200078a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200082d57607f821691505b602082108103620008435762000842620007e5565b5b50919050565b608051612e4e6200086c60003960008181610c0d0152610e1e0152612e4e6000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063b88d4fde1161008a578063e0a8085311610064578063e0a808531461054e578063e985e9c514610577578063f2fde38b146105b4578063fca3b5aa146105dd57610181565b8063b88d4fde146104ca578063c87b56dd146104e6578063d5abeb011461052357610181565b806370a08231146103ce578063715018a61461040b5780638da5cb5b1461042257806395d89b411461044d5780639d034fe914610478578063a22cb465146104a157610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e1461030d5780634f558e791461032957806354214f69146103665780636352211e1461039157610181565b806323b872dd1461029d57806330176e13146102b957806341f43434146102e257610181565b806301ffc9a71461018657806306fdde03146101c357806307546172146101ee578063081812fc14610219578063095ea7b31461025657806318160ddd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612088565b610606565b6040516101ba91906120d0565b60405180910390f35b3480156101cf57600080fd5b506101d8610698565b6040516101e59190612184565b60405180910390f35b3480156101fa57600080fd5b5061020361072a565b60405161021091906121e7565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b9190612238565b610750565b60405161024d91906121e7565b60405180910390f35b610270600480360381019061026b9190612291565b6107cf565b005b34801561027e57600080fd5b506102876107e8565b60405161029491906122e0565b60405180910390f35b6102b760048036038101906102b291906122fb565b6107ff565b005b3480156102c557600080fd5b506102e060048036038101906102db91906123b3565b61084e565b005b3480156102ee57600080fd5b506102f76108e0565b604051610304919061245f565b60405180910390f35b610327600480360381019061032291906122fb565b6108f2565b005b34801561033557600080fd5b50610350600480360381019061034b9190612238565b610941565b60405161035d91906120d0565b60405180910390f35b34801561037257600080fd5b5061037b610953565b60405161038891906120d0565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612238565b610966565b6040516103c591906121e7565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f0919061247a565b610978565b60405161040291906122e0565b60405180910390f35b34801561041757600080fd5b50610420610a30565b005b34801561042e57600080fd5b50610437610ab8565b60405161044491906121e7565b60405180910390f35b34801561045957600080fd5b50610462610ae2565b60405161046f9190612184565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a91906124a7565b610b74565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190612513565b610c8e565b005b6104e460048036038101906104df9190612683565b610ca7565b005b3480156104f257600080fd5b5061050d60048036038101906105089190612238565b610cf8565b60405161051a9190612184565b60405180910390f35b34801561052f57600080fd5b50610538610e1c565b60405161054591906122e0565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190612706565b610e40565b005b34801561058357600080fd5b5061059e60048036038101906105999190612733565b610ed9565b6040516105ab91906120d0565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d6919061247a565b610f6d565b005b3480156105e957600080fd5b5061060460048036038101906105ff919061247a565b611064565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106915750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106a7906127a2565b80601f01602080910402602001604051908101604052809291908181526020018280546106d3906127a2565b80156107205780601f106106f557610100808354040283529160200191610720565b820191906000526020600020905b81548152906001019060200180831161070357829003601f168201915b5050505050905090565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061075b82611124565b610791576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816107d981611183565b6107e38383611280565b505050565b60006107f26113c4565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461083d5761083c33611183565b5b6108488484846113c9565b50505050565b6108566116eb565b73ffffffffffffffffffffffffffffffffffffffff16610874610ab8565b73ffffffffffffffffffffffffffffffffffffffff16146108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c19061281f565b60405180910390fd5b8181600991906108db929190611f79565b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109305761092f33611183565b5b61093b8484846116f3565b50505050565b600061094c82611124565b9050919050565b600a60009054906101000a900460ff1681565b600061097182611713565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109df576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610a386116eb565b73ffffffffffffffffffffffffffffffffffffffff16610a56610ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa39061281f565b60405180910390fd5b610ab660006117df565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610af1906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1d906127a2565b8015610b6a5780601f10610b3f57610100808354040283529160200191610b6a565b820191906000526020600020905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b610b7c6116eb565b73ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c029061288b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000082610c356107e8565b610c3f91906128da565b1115610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c779061297c565b60405180910390fd5b610c8a81836118a5565b5050565b81610c9881611183565b610ca28383611a60565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ce557610ce433611183565b5b610cf185858585611b6b565b5050505050565b6060610d0382611124565b610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906129e8565b60405180910390fd5b600a60009054906101000a900460ff1615610d89576009610d6283611bde565b604051602001610d73929190612ad8565b6040516020818303038152906040529050610e17565b60098054610d96906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc2906127a2565b8015610e0f5780601f10610de457610100808354040283529160200191610e0f565b820191906000526020600020905b815481529060010190602001808311610df257829003601f168201915b505050505090505b919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610e486116eb565b73ffffffffffffffffffffffffffffffffffffffff16610e66610ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb39061281f565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f756116eb565b73ffffffffffffffffffffffffffffffffffffffff16610f93610ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe09061281f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90612b6e565b60405180910390fd5b611061816117df565b50565b61106c6116eb565b73ffffffffffffffffffffffffffffffffffffffff1661108a610ab8565b73ffffffffffffffffffffffffffffffffffffffff16146110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d79061281f565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008161112f6113c4565b1115801561113e575060005482105b801561117c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561127d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111fa929190612b8e565b602060405180830381865afa158015611217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123b9190612bcc565b61127c57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161127391906121e7565b60405180910390fd5b5b50565b600061128b82610966565b90508073ffffffffffffffffffffffffffffffffffffffff166112ac611d3e565b73ffffffffffffffffffffffffffffffffffffffff161461130f576112d8816112d3611d3e565b610ed9565b61130e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113d482611713565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461143b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061144784611d46565b9150915061145d8187611458611d3e565b611d6d565b6114a9576114728661146d611d3e565b610ed9565b6114a8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361150f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61151c8686866001611db1565b801561152757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115f5856115d1888887611db7565b7c020000000000000000000000000000000000000000000000000000000017611ddf565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361167b5760006001850190506000600460008381526020019081526020016000205403611679576000548114611678578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116e38686866001611e0a565b505050505050565b600033905090565b61170e83838360405180602001604052806000815250610ca7565b505050565b600080829050806117226113c4565b116117a8576000548110156117a75760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117a5575b6000810361179b576004600083600190039350838152602001908152602001600020549050611771565b80925050506117da565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036118e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118f26000848385611db1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119698361195a6000866000611db7565b61196385611e10565b17611ddf565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611a0a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506119cf565b5060008203611a45576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611a5b6000848385611e0a565b505050565b8060076000611a6d611d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1a611d3e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5f91906120d0565b60405180910390a35050565b611b768484846107ff565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bd857611ba184848484611e20565b611bd7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203611c25576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d39565b600082905060005b60008214611c57578080611c4090612bf9565b915050600a82611c509190612c70565b9150611c2d565b60008167ffffffffffffffff811115611c7357611c72612558565b5b6040519080825280601f01601f191660200182016040528015611ca55781602001600182028036833780820191505090505b5090505b60008514611d3257600182611cbe9190612ca1565b9150600a85611ccd9190612cd5565b6030611cd991906128da565b60f81b818381518110611cef57611cee612d06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d2b9190612c70565b9450611ca9565b8093505050505b919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dce868684611f70565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e46611d3e565b8786866040518563ffffffff1660e01b8152600401611e689493929190612d8a565b6020604051808303816000875af1925050508015611ea457506040513d601f19601f82011682018060405250810190611ea19190612deb565b60015b611f1d573d8060008114611ed4576040519150601f19603f3d011682016040523d82523d6000602084013e611ed9565b606091505b506000815103611f15576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b828054611f85906127a2565b90600052602060002090601f016020900481019282611fa75760008555611fee565b82601f10611fc057803560ff1916838001178555611fee565b82800160010185558215611fee579182015b82811115611fed578235825591602001919060010190611fd2565b5b509050611ffb9190611fff565b5090565b5b80821115612018576000816000905550600101612000565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61206581612030565b811461207057600080fd5b50565b6000813590506120828161205c565b92915050565b60006020828403121561209e5761209d612026565b5b60006120ac84828501612073565b91505092915050565b60008115159050919050565b6120ca816120b5565b82525050565b60006020820190506120e560008301846120c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561212557808201518184015260208101905061210a565b83811115612134576000848401525b50505050565b6000601f19601f8301169050919050565b6000612156826120eb565b61216081856120f6565b9350612170818560208601612107565b6121798161213a565b840191505092915050565b6000602082019050818103600083015261219e818461214b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121d1826121a6565b9050919050565b6121e1816121c6565b82525050565b60006020820190506121fc60008301846121d8565b92915050565b6000819050919050565b61221581612202565b811461222057600080fd5b50565b6000813590506122328161220c565b92915050565b60006020828403121561224e5761224d612026565b5b600061225c84828501612223565b91505092915050565b61226e816121c6565b811461227957600080fd5b50565b60008135905061228b81612265565b92915050565b600080604083850312156122a8576122a7612026565b5b60006122b68582860161227c565b92505060206122c785828601612223565b9150509250929050565b6122da81612202565b82525050565b60006020820190506122f560008301846122d1565b92915050565b60008060006060848603121561231457612313612026565b5b60006123228682870161227c565b93505060206123338682870161227c565b925050604061234486828701612223565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126123735761237261234e565b5b8235905067ffffffffffffffff8111156123905761238f612353565b5b6020830191508360018202830111156123ac576123ab612358565b5b9250929050565b600080602083850312156123ca576123c9612026565b5b600083013567ffffffffffffffff8111156123e8576123e761202b565b5b6123f48582860161235d565b92509250509250929050565b6000819050919050565b600061242561242061241b846121a6565b612400565b6121a6565b9050919050565b60006124378261240a565b9050919050565b60006124498261242c565b9050919050565b6124598161243e565b82525050565b60006020820190506124746000830184612450565b92915050565b6000602082840312156124905761248f612026565b5b600061249e8482850161227c565b91505092915050565b600080604083850312156124be576124bd612026565b5b60006124cc85828601612223565b92505060206124dd8582860161227c565b9150509250929050565b6124f0816120b5565b81146124fb57600080fd5b50565b60008135905061250d816124e7565b92915050565b6000806040838503121561252a57612529612026565b5b60006125388582860161227c565b9250506020612549858286016124fe565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125908261213a565b810181811067ffffffffffffffff821117156125af576125ae612558565b5b80604052505050565b60006125c261201c565b90506125ce8282612587565b919050565b600067ffffffffffffffff8211156125ee576125ed612558565b5b6125f78261213a565b9050602081019050919050565b82818337600083830152505050565b6000612626612621846125d3565b6125b8565b90508281526020810184848401111561264257612641612553565b5b61264d848285612604565b509392505050565b600082601f83011261266a5761266961234e565b5b813561267a848260208601612613565b91505092915050565b6000806000806080858703121561269d5761269c612026565b5b60006126ab8782880161227c565b94505060206126bc8782880161227c565b93505060406126cd87828801612223565b925050606085013567ffffffffffffffff8111156126ee576126ed61202b565b5b6126fa87828801612655565b91505092959194509250565b60006020828403121561271c5761271b612026565b5b600061272a848285016124fe565b91505092915050565b6000806040838503121561274a57612749612026565b5b60006127588582860161227c565b92505060206127698582860161227c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127ba57607f821691505b6020821081036127cd576127cc612773565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128096020836120f6565b9150612814826127d3565b602082019050919050565b60006020820190508181036000830152612838816127fc565b9050919050565b7f506574733a206f6e6c79206d696e7465722063616e206d696e74000000000000600082015250565b6000612875601a836120f6565b91506128808261283f565b602082019050919050565b600060208201905081810360008301526128a481612868565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128e582612202565b91506128f083612202565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612925576129246128ab565b5b828201905092915050565b7f6d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006129666012836120f6565b915061297182612930565b602082019050919050565b6000602082019050818103600083015261299581612959565b9050919050565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b60006129d26011836120f6565b91506129dd8261299c565b602082019050919050565b60006020820190508181036000830152612a01816129c5565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612a35816127a2565b612a3f8186612a08565b94506001821660008114612a5a5760018114612a6b57612a9e565b60ff19831686528186019350612a9e565b612a7485612a13565b60005b83811015612a9657815481890152600182019150602081019050612a77565b838801955050505b50505092915050565b6000612ab2826120eb565b612abc8185612a08565b9350612acc818560208601612107565b80840191505092915050565b6000612ae48285612a28565b9150612af08284612aa7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b586026836120f6565b9150612b6382612afc565b604082019050919050565b60006020820190508181036000830152612b8781612b4b565b9050919050565b6000604082019050612ba360008301856121d8565b612bb060208301846121d8565b9392505050565b600081519050612bc6816124e7565b92915050565b600060208284031215612be257612be1612026565b5b6000612bf084828501612bb7565b91505092915050565b6000612c0482612202565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612c3657612c356128ab565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c7b82612202565b9150612c8683612202565b925082612c9657612c95612c41565b5b828204905092915050565b6000612cac82612202565b9150612cb783612202565b925082821015612cca57612cc96128ab565b5b828203905092915050565b6000612ce082612202565b9150612ceb83612202565b925082612cfb57612cfa612c41565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612d5c82612d35565b612d668185612d40565b9350612d76818560208601612107565b612d7f8161213a565b840191505092915050565b6000608082019050612d9f60008301876121d8565b612dac60208301866121d8565b612db960408301856122d1565b8181036060830152612dcb8184612d51565b905095945050505050565b600081519050612de58161205c565b92915050565b600060208284031215612e0157612e00612026565b5b6000612e0f84828501612dd6565b9150509291505056fea2646970667358221220ca7a68a4bc6c6efce85ad0f00e2df091377f304fd28dcf2cf78beedd8d76931e64736f6c634300080d00330000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000d42696720746f776e207065747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000342545000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d565a42687054504550374439563942797a7377394c6a615852514c374c57757179387a36695638594e6863730000000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063b88d4fde1161008a578063e0a8085311610064578063e0a808531461054e578063e985e9c514610577578063f2fde38b146105b4578063fca3b5aa146105dd57610181565b8063b88d4fde146104ca578063c87b56dd146104e6578063d5abeb011461052357610181565b806370a08231146103ce578063715018a61461040b5780638da5cb5b1461042257806395d89b411461044d5780639d034fe914610478578063a22cb465146104a157610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e1461030d5780634f558e791461032957806354214f69146103665780636352211e1461039157610181565b806323b872dd1461029d57806330176e13146102b957806341f43434146102e257610181565b806301ffc9a71461018657806306fdde03146101c357806307546172146101ee578063081812fc14610219578063095ea7b31461025657806318160ddd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612088565b610606565b6040516101ba91906120d0565b60405180910390f35b3480156101cf57600080fd5b506101d8610698565b6040516101e59190612184565b60405180910390f35b3480156101fa57600080fd5b5061020361072a565b60405161021091906121e7565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b9190612238565b610750565b60405161024d91906121e7565b60405180910390f35b610270600480360381019061026b9190612291565b6107cf565b005b34801561027e57600080fd5b506102876107e8565b60405161029491906122e0565b60405180910390f35b6102b760048036038101906102b291906122fb565b6107ff565b005b3480156102c557600080fd5b506102e060048036038101906102db91906123b3565b61084e565b005b3480156102ee57600080fd5b506102f76108e0565b604051610304919061245f565b60405180910390f35b610327600480360381019061032291906122fb565b6108f2565b005b34801561033557600080fd5b50610350600480360381019061034b9190612238565b610941565b60405161035d91906120d0565b60405180910390f35b34801561037257600080fd5b5061037b610953565b60405161038891906120d0565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612238565b610966565b6040516103c591906121e7565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f0919061247a565b610978565b60405161040291906122e0565b60405180910390f35b34801561041757600080fd5b50610420610a30565b005b34801561042e57600080fd5b50610437610ab8565b60405161044491906121e7565b60405180910390f35b34801561045957600080fd5b50610462610ae2565b60405161046f9190612184565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a91906124a7565b610b74565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190612513565b610c8e565b005b6104e460048036038101906104df9190612683565b610ca7565b005b3480156104f257600080fd5b5061050d60048036038101906105089190612238565b610cf8565b60405161051a9190612184565b60405180910390f35b34801561052f57600080fd5b50610538610e1c565b60405161054591906122e0565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190612706565b610e40565b005b34801561058357600080fd5b5061059e60048036038101906105999190612733565b610ed9565b6040516105ab91906120d0565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d6919061247a565b610f6d565b005b3480156105e957600080fd5b5061060460048036038101906105ff919061247a565b611064565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106915750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106a7906127a2565b80601f01602080910402602001604051908101604052809291908181526020018280546106d3906127a2565b80156107205780601f106106f557610100808354040283529160200191610720565b820191906000526020600020905b81548152906001019060200180831161070357829003601f168201915b5050505050905090565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061075b82611124565b610791576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816107d981611183565b6107e38383611280565b505050565b60006107f26113c4565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461083d5761083c33611183565b5b6108488484846113c9565b50505050565b6108566116eb565b73ffffffffffffffffffffffffffffffffffffffff16610874610ab8565b73ffffffffffffffffffffffffffffffffffffffff16146108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c19061281f565b60405180910390fd5b8181600991906108db929190611f79565b505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109305761092f33611183565b5b61093b8484846116f3565b50505050565b600061094c82611124565b9050919050565b600a60009054906101000a900460ff1681565b600061097182611713565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109df576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610a386116eb565b73ffffffffffffffffffffffffffffffffffffffff16610a56610ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa39061281f565b60405180910390fd5b610ab660006117df565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610af1906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1d906127a2565b8015610b6a5780601f10610b3f57610100808354040283529160200191610b6a565b820191906000526020600020905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b610b7c6116eb565b73ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c029061288b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000271082610c356107e8565b610c3f91906128da565b1115610c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c779061297c565b60405180910390fd5b610c8a81836118a5565b5050565b81610c9881611183565b610ca28383611a60565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ce557610ce433611183565b5b610cf185858585611b6b565b5050505050565b6060610d0382611124565b610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d39906129e8565b60405180910390fd5b600a60009054906101000a900460ff1615610d89576009610d6283611bde565b604051602001610d73929190612ad8565b6040516020818303038152906040529050610e17565b60098054610d96906127a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc2906127a2565b8015610e0f5780601f10610de457610100808354040283529160200191610e0f565b820191906000526020600020905b815481529060010190602001808311610df257829003601f168201915b505050505090505b919050565b7f000000000000000000000000000000000000000000000000000000000000271081565b610e486116eb565b73ffffffffffffffffffffffffffffffffffffffff16610e66610ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb39061281f565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f756116eb565b73ffffffffffffffffffffffffffffffffffffffff16610f93610ab8565b73ffffffffffffffffffffffffffffffffffffffff1614610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe09061281f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90612b6e565b60405180910390fd5b611061816117df565b50565b61106c6116eb565b73ffffffffffffffffffffffffffffffffffffffff1661108a610ab8565b73ffffffffffffffffffffffffffffffffffffffff16146110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d79061281f565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008161112f6113c4565b1115801561113e575060005482105b801561117c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561127d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016111fa929190612b8e565b602060405180830381865afa158015611217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123b9190612bcc565b61127c57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161127391906121e7565b60405180910390fd5b5b50565b600061128b82610966565b90508073ffffffffffffffffffffffffffffffffffffffff166112ac611d3e565b73ffffffffffffffffffffffffffffffffffffffff161461130f576112d8816112d3611d3e565b610ed9565b61130e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113d482611713565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461143b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061144784611d46565b9150915061145d8187611458611d3e565b611d6d565b6114a9576114728661146d611d3e565b610ed9565b6114a8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361150f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61151c8686866001611db1565b801561152757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115f5856115d1888887611db7565b7c020000000000000000000000000000000000000000000000000000000017611ddf565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361167b5760006001850190506000600460008381526020019081526020016000205403611679576000548114611678578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116e38686866001611e0a565b505050505050565b600033905090565b61170e83838360405180602001604052806000815250610ca7565b505050565b600080829050806117226113c4565b116117a8576000548110156117a75760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117a5575b6000810361179b576004600083600190039350838152602001908152602001600020549050611771565b80925050506117da565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036118e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118f26000848385611db1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119698361195a6000866000611db7565b61196385611e10565b17611ddf565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611a0a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506119cf565b5060008203611a45576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611a5b6000848385611e0a565b505050565b8060076000611a6d611d3e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b1a611d3e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5f91906120d0565b60405180910390a35050565b611b768484846107ff565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bd857611ba184848484611e20565b611bd7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203611c25576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d39565b600082905060005b60008214611c57578080611c4090612bf9565b915050600a82611c509190612c70565b9150611c2d565b60008167ffffffffffffffff811115611c7357611c72612558565b5b6040519080825280601f01601f191660200182016040528015611ca55781602001600182028036833780820191505090505b5090505b60008514611d3257600182611cbe9190612ca1565b9150600a85611ccd9190612cd5565b6030611cd991906128da565b60f81b818381518110611cef57611cee612d06565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d2b9190612c70565b9450611ca9565b8093505050505b919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dce868684611f70565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e46611d3e565b8786866040518563ffffffff1660e01b8152600401611e689493929190612d8a565b6020604051808303816000875af1925050508015611ea457506040513d601f19601f82011682018060405250810190611ea19190612deb565b60015b611f1d573d8060008114611ed4576040519150601f19603f3d011682016040523d82523d6000602084013e611ed9565b606091505b506000815103611f15576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b828054611f85906127a2565b90600052602060002090601f016020900481019282611fa75760008555611fee565b82601f10611fc057803560ff1916838001178555611fee565b82800160010185558215611fee579182015b82811115611fed578235825591602001919060010190611fd2565b5b509050611ffb9190611fff565b5090565b5b80821115612018576000816000905550600101612000565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61206581612030565b811461207057600080fd5b50565b6000813590506120828161205c565b92915050565b60006020828403121561209e5761209d612026565b5b60006120ac84828501612073565b91505092915050565b60008115159050919050565b6120ca816120b5565b82525050565b60006020820190506120e560008301846120c1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561212557808201518184015260208101905061210a565b83811115612134576000848401525b50505050565b6000601f19601f8301169050919050565b6000612156826120eb565b61216081856120f6565b9350612170818560208601612107565b6121798161213a565b840191505092915050565b6000602082019050818103600083015261219e818461214b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121d1826121a6565b9050919050565b6121e1816121c6565b82525050565b60006020820190506121fc60008301846121d8565b92915050565b6000819050919050565b61221581612202565b811461222057600080fd5b50565b6000813590506122328161220c565b92915050565b60006020828403121561224e5761224d612026565b5b600061225c84828501612223565b91505092915050565b61226e816121c6565b811461227957600080fd5b50565b60008135905061228b81612265565b92915050565b600080604083850312156122a8576122a7612026565b5b60006122b68582860161227c565b92505060206122c785828601612223565b9150509250929050565b6122da81612202565b82525050565b60006020820190506122f560008301846122d1565b92915050565b60008060006060848603121561231457612313612026565b5b60006123228682870161227c565b93505060206123338682870161227c565b925050604061234486828701612223565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126123735761237261234e565b5b8235905067ffffffffffffffff8111156123905761238f612353565b5b6020830191508360018202830111156123ac576123ab612358565b5b9250929050565b600080602083850312156123ca576123c9612026565b5b600083013567ffffffffffffffff8111156123e8576123e761202b565b5b6123f48582860161235d565b92509250509250929050565b6000819050919050565b600061242561242061241b846121a6565b612400565b6121a6565b9050919050565b60006124378261240a565b9050919050565b60006124498261242c565b9050919050565b6124598161243e565b82525050565b60006020820190506124746000830184612450565b92915050565b6000602082840312156124905761248f612026565b5b600061249e8482850161227c565b91505092915050565b600080604083850312156124be576124bd612026565b5b60006124cc85828601612223565b92505060206124dd8582860161227c565b9150509250929050565b6124f0816120b5565b81146124fb57600080fd5b50565b60008135905061250d816124e7565b92915050565b6000806040838503121561252a57612529612026565b5b60006125388582860161227c565b9250506020612549858286016124fe565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125908261213a565b810181811067ffffffffffffffff821117156125af576125ae612558565b5b80604052505050565b60006125c261201c565b90506125ce8282612587565b919050565b600067ffffffffffffffff8211156125ee576125ed612558565b5b6125f78261213a565b9050602081019050919050565b82818337600083830152505050565b6000612626612621846125d3565b6125b8565b90508281526020810184848401111561264257612641612553565b5b61264d848285612604565b509392505050565b600082601f83011261266a5761266961234e565b5b813561267a848260208601612613565b91505092915050565b6000806000806080858703121561269d5761269c612026565b5b60006126ab8782880161227c565b94505060206126bc8782880161227c565b93505060406126cd87828801612223565b925050606085013567ffffffffffffffff8111156126ee576126ed61202b565b5b6126fa87828801612655565b91505092959194509250565b60006020828403121561271c5761271b612026565b5b600061272a848285016124fe565b91505092915050565b6000806040838503121561274a57612749612026565b5b60006127588582860161227c565b92505060206127698582860161227c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127ba57607f821691505b6020821081036127cd576127cc612773565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128096020836120f6565b9150612814826127d3565b602082019050919050565b60006020820190508181036000830152612838816127fc565b9050919050565b7f506574733a206f6e6c79206d696e7465722063616e206d696e74000000000000600082015250565b6000612875601a836120f6565b91506128808261283f565b602082019050919050565b600060208201905081810360008301526128a481612868565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128e582612202565b91506128f083612202565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612925576129246128ab565b5b828201905092915050565b7f6d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006129666012836120f6565b915061297182612930565b602082019050919050565b6000602082019050818103600083015261299581612959565b9050919050565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b60006129d26011836120f6565b91506129dd8261299c565b602082019050919050565b60006020820190508181036000830152612a01816129c5565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612a35816127a2565b612a3f8186612a08565b94506001821660008114612a5a5760018114612a6b57612a9e565b60ff19831686528186019350612a9e565b612a7485612a13565b60005b83811015612a9657815481890152600182019150602081019050612a77565b838801955050505b50505092915050565b6000612ab2826120eb565b612abc8185612a08565b9350612acc818560208601612107565b80840191505092915050565b6000612ae48285612a28565b9150612af08284612aa7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b586026836120f6565b9150612b6382612afc565b604082019050919050565b60006020820190508181036000830152612b8781612b4b565b9050919050565b6000604082019050612ba360008301856121d8565b612bb060208301846121d8565b9392505050565b600081519050612bc6816124e7565b92915050565b600060208284031215612be257612be1612026565b5b6000612bf084828501612bb7565b91505092915050565b6000612c0482612202565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612c3657612c356128ab565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c7b82612202565b9150612c8683612202565b925082612c9657612c95612c41565b5b828204905092915050565b6000612cac82612202565b9150612cb783612202565b925082821015612cca57612cc96128ab565b5b828203905092915050565b6000612ce082612202565b9150612ceb83612202565b925082612cfb57612cfa612c41565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612d5c82612d35565b612d668185612d40565b9350612d76818560208601612107565b612d7f8161213a565b840191505092915050565b6000608082019050612d9f60008301876121d8565b612dac60208301866121d8565b612db960408301856122d1565b8181036060830152612dcb8184612d51565b905095945050505050565b600081519050612de58161205c565b92915050565b600060208284031215612e0157612e00612026565b5b6000612e0f84828501612dd6565b9150509291505056fea2646970667358221220ca7a68a4bc6c6efce85ad0f00e2df091377f304fd28dcf2cf78beedd8d76931e64736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000d42696720746f776e207065747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000342545000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d565a42687054504550374439563942797a7377394c6a615852514c374c57757179387a36695638594e6863730000000000000000000000

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 10000
Arg [1] : name (string): Big town pets
Arg [2] : symbol (string): BTP
Arg [3] : baseTokenURI (string): ipfs://QmVZBhpTPEP7D9V9Byzsw9LjaXRQL7LWuqy8z6iV8YNhcs

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 42696720746f776e207065747300000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4254500000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [9] : 697066733a2f2f516d565a42687054504550374439563942797a7377394c6a61
Arg [10] : 5852514c374c57757179387a36695638594e6863730000000000000000000000


Deployed Bytecode Sourcemap

62622:2746:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24072:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24974:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62793:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31465:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65200:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20725:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64315:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63458:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60040:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64535:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63583:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62764:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26367:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21909:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2711:103;;;;;;;;;;;;;:::i;:::-;;2060:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25150:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64008:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65016:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64763:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63695:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62688:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64208:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32414:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2969:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63240:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24072:639;24157:4;24496:10;24481:25;;:11;:25;;;;:102;;;;24573:10;24558:25;;:11;:25;;;;24481:102;:179;;;;24650:10;24635:25;;:11;:25;;;;24481:179;24461:199;;24072:639;;;:::o;24974:100::-;25028:13;25061:5;25054:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24974:100;:::o;62793:21::-;;;;;;;;;;;;;:::o;31465:218::-;31541:7;31566:16;31574:7;31566;:16::i;:::-;31561:64;;31591:34;;;;;;;;;;;;;;31561:64;31645:15;:24;31661:7;31645:24;;;;;;;;;;;:30;;;;;;;;;;;;31638:37;;31465:218;;;:::o;65200:165::-;65304:8;61561:30;61582:8;61561:20;:30::i;:::-;65325:32:::1;65339:8;65349:7;65325:13;:32::i;:::-;65200:165:::0;;;:::o;20725:323::-;20786:7;21014:15;:13;:15::i;:::-;20999:12;;20983:13;;:28;:46;20976:53;;20725:323;:::o;64315:212::-;64460:4;61389:10;61381:18;;:4;:18;;;61377:83;;61416:32;61437:10;61416:20;:32::i;:::-;61377:83;64482:37:::1;64501:4;64507:2;64511:7;64482:18;:37::i;:::-;64315:212:::0;;;;:::o;63458:117::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63556:11:::1;;63540:13;:27;;;;;;;:::i;:::-;;63458:117:::0;;:::o;60040:143::-;60140:42;60040:143;:::o;64535:220::-;64684:4;61389:10;61381:18;;:4;:18;;;61377:83;;61416:32;61437:10;61416:20;:32::i;:::-;61377:83;64706:41:::1;64729:4;64735:2;64739:7;64706:22;:41::i;:::-;64535:220:::0;;;;:::o;63583:104::-;63639:4;63663:16;63671:7;63663;:16::i;:::-;63656:23;;63583:104;;;:::o;62764:22::-;;;;;;;;;;;;;:::o;26367:152::-;26439:7;26482:27;26501:7;26482:18;:27::i;:::-;26459:52;;26367:152;;;:::o;21909:233::-;21981:7;22022:1;22005:19;;:5;:19;;;22001:60;;22033:28;;;;;;;;;;;;;;22001:60;16068:13;22079:18;:25;22098:5;22079:25;;;;;;;;;;;;;;;;:55;22072:62;;21909:233;;;:::o;2711:103::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2776:30:::1;2803:1;2776:18;:30::i;:::-;2711:103::o:0;2060:87::-;2106:7;2133:6;;;;;;;;;;;2126:13;;2060:87;:::o;25150:104::-;25206:13;25239:7;25232:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25150:104;:::o;64008:192::-;62874:12;:10;:12::i;:::-;62864:22;;:6;;;;;;;;;;;:22;;;62856:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;64122:9:::1;64110:8;64094:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;64086:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64165:27;64179:2;64183:8;64165:13;:27::i;:::-;64008:192:::0;;:::o;65016:176::-;65120:8;61561:30;61582:8;61561:20;:30::i;:::-;65141:43:::1;65165:8;65175;65141:23;:43::i;:::-;65016:176:::0;;;:::o;64763:245::-;64931:4;61389:10;61381:18;;:4;:18;;;61377:83;;61416:32;61437:10;61416:20;:32::i;:::-;61377:83;64953:47:::1;64976:4;64982:2;64986:7;64995:4;64953:22;:47::i;:::-;64763:245:::0;;;;;:::o;63695:305::-;63760:13;63794:16;63802:7;63794;:16::i;:::-;63786:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63848:10;;;;;;;;;;;63845:115;;;63906:13;63921:25;63938:7;63921:16;:25::i;:::-;63889:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63875:73;;;;63845:115;63979:13;63972:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63695:305;;;;:::o;62688:34::-;;;:::o;64208:99::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64288:11:::1;64275:10;;:24;;;;;;;;;;;;;;;;;;64208:99:::0;:::o;32414:164::-;32511:4;32535:18;:25;32554:5;32535:25;;;;;;;;;;;;;;;:35;32561:8;32535:35;;;;;;;;;;;;;;;;;;;;;;;;;32528:42;;32414:164;;;;:::o;2969:201::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3078:1:::1;3058:22;;:8;:22;;::::0;3050:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3134:28;3153:8;3134:18;:28::i;:::-;2969:201:::0;:::o;63240:88::-;2291:12;:10;:12::i;:::-;2280:23;;:7;:5;:7::i;:::-;:23;;;2272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63313:7:::1;63304:6;;:16;;;;;;;;;;;;;;;;;;63240:88:::0;:::o;32836:282::-;32901:4;32957:7;32938:15;:13;:15::i;:::-;:26;;:66;;;;;32991:13;;32981:7;:23;32938:66;:153;;;;;33090:1;16844:8;33042:17;:26;33060:7;33042:26;;;;;;;;;;;;:44;:49;32938:153;32918:173;;32836:282;;;:::o;61619:419::-;61858:1;60140:42;61810:45;;;:49;61806:225;;;60140:42;61881;;;61932:4;61939:8;61881:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61876:144;;61995:8;61976:28;;;;;;;;;;;:::i;:::-;;;;;;;;61876:144;61806:225;61619:419;:::o;30898:408::-;30987:13;31003:16;31011:7;31003;:16::i;:::-;30987:32;;31059:5;31036:28;;:19;:17;:19::i;:::-;:28;;;31032:175;;31084:44;31101:5;31108:19;:17;:19::i;:::-;31084:16;:44::i;:::-;31079:128;;31156:35;;;;;;;;;;;;;;31079:128;31032:175;31252:2;31219:15;:24;31235:7;31219:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31290:7;31286:2;31270:28;;31279:5;31270:28;;;;;;;;;;;;30976:330;30898:408;;:::o;20241:92::-;20297:7;20241:92;:::o;35104:2825::-;35246:27;35276;35295:7;35276:18;:27::i;:::-;35246:57;;35361:4;35320:45;;35336:19;35320:45;;;35316:86;;35374:28;;;;;;;;;;;;;;35316:86;35416:27;35445:23;35472:35;35499:7;35472:26;:35::i;:::-;35415:92;;;;35607:68;35632:15;35649:4;35655:19;:17;:19::i;:::-;35607:24;:68::i;:::-;35602:180;;35695:43;35712:4;35718:19;:17;:19::i;:::-;35695:16;:43::i;:::-;35690:92;;35747:35;;;;;;;;;;;;;;35690:92;35602:180;35813:1;35799:16;;:2;:16;;;35795:52;;35824:23;;;;;;;;;;;;;;35795:52;35860:43;35882:4;35888:2;35892:7;35901:1;35860:21;:43::i;:::-;35996:15;35993:160;;;36136:1;36115:19;36108:30;35993:160;36533:18;:24;36552:4;36533:24;;;;;;;;;;;;;;;;36531:26;;;;;;;;;;;;36602:18;:22;36621:2;36602:22;;;;;;;;;;;;;;;;36600:24;;;;;;;;;;;36924:146;36961:2;37010:45;37025:4;37031:2;37035:19;37010:14;:45::i;:::-;17124:8;36982:73;36924:18;:146::i;:::-;36895:17;:26;36913:7;36895:26;;;;;;;;;;;:175;;;;37241:1;17124:8;37190:19;:47;:52;37186:627;;37263:19;37295:1;37285:7;:11;37263:33;;37452:1;37418:17;:30;37436:11;37418:30;;;;;;;;;;;;:35;37414:384;;37556:13;;37541:11;:28;37537:242;;37736:19;37703:17;:30;37721:11;37703:30;;;;;;;;;;;:52;;;;37537:242;37414:384;37244:569;37186:627;37860:7;37856:2;37841:27;;37850:4;37841:27;;;;;;;;;;;;37879:42;37900:4;37906:2;37910:7;37919:1;37879:20;:42::i;:::-;35235:2694;;;35104:2825;;;:::o;780:98::-;833:7;860:10;853:17;;780:98;:::o;38025:193::-;38171:39;38188:4;38194:2;38198:7;38171:39;;;;;;;;;;;;:16;:39::i;:::-;38025:193;;;:::o;27522:1275::-;27589:7;27609:12;27624:7;27609:22;;27692:4;27673:15;:13;:15::i;:::-;:23;27669:1061;;27726:13;;27719:4;:20;27715:1015;;;27764:14;27781:17;:23;27799:4;27781:23;;;;;;;;;;;;27764:40;;27898:1;16844:8;27870:6;:24;:29;27866:845;;28535:113;28552:1;28542:6;:11;28535:113;;28595:17;:25;28613:6;;;;;;;28595:25;;;;;;;;;;;;28586:34;;28535:113;;;28681:6;28674:13;;;;;;27866:845;27741:989;27715:1015;27669:1061;28758:31;;;;;;;;;;;;;;27522:1275;;;;:::o;3330:191::-;3404:16;3423:6;;;;;;;;;;;3404:25;;3449:8;3440:6;;:17;;;;;;;;;;;;;;;;;;3504:8;3473:40;;3494:8;3473:40;;;;;;;;;;;;3393:128;3330:191;:::o;42485:2966::-;42558:20;42581:13;;42558:36;;42621:1;42609:8;:13;42605:44;;42631:18;;;;;;;;;;;;;;42605:44;42662:61;42692:1;42696:2;42700:12;42714:8;42662:21;:61::i;:::-;43206:1;16206:2;43176:1;:26;;43175:32;43163:8;:45;43137:18;:22;43156:2;43137:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43485:139;43522:2;43576:33;43599:1;43603:2;43607:1;43576:14;:33::i;:::-;43543:30;43564:8;43543:20;:30::i;:::-;:66;43485:18;:139::i;:::-;43451:17;:31;43469:12;43451:31;;;;;;;;;;;:173;;;;43641:16;43672:11;43701:8;43686:12;:23;43672:37;;44222:16;44218:2;44214:25;44202:37;;44594:12;44554:8;44513:1;44451:25;44392:1;44331;44304:335;44965:1;44951:12;44947:20;44905:346;45006:3;44997:7;44994:16;44905:346;;45224:7;45214:8;45211:1;45184:25;45181:1;45178;45173:59;45059:1;45050:7;45046:15;45035:26;;44905:346;;;44909:77;45296:1;45284:8;:13;45280:45;;45306:19;;;;;;;;;;;;;;45280:45;45358:3;45342:13;:19;;;;42911:2462;;45383:60;45412:1;45416:2;45420:12;45434:8;45383:20;:60::i;:::-;42547:2904;42485:2966;;:::o;32023:234::-;32170:8;32118:18;:39;32137:19;:17;:19::i;:::-;32118:39;;;;;;;;;;;;;;;:49;32158:8;32118:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32230:8;32194:55;;32209:19;:17;:19::i;:::-;32194:55;;;32240:8;32194:55;;;;;;:::i;:::-;;;;;;;;32023:234;;:::o;38816:407::-;38991:31;39004:4;39010:2;39014:7;38991:12;:31::i;:::-;39055:1;39037:2;:14;;;:19;39033:183;;39076:56;39107:4;39113:2;39117:7;39126:5;39076:30;:56::i;:::-;39071:145;;39160:40;;;;;;;;;;;;;;39071:145;39033:183;38816:407;;;;:::o;3899:723::-;3955:13;4185:1;4176:5;:10;4172:53;;4203:10;;;;;;;;;;;;;;;;;;;;;4172:53;4235:12;4250:5;4235:20;;4266:14;4291:78;4306:1;4298:4;:9;4291:78;;4324:8;;;;;:::i;:::-;;;;4355:2;4347:10;;;;;:::i;:::-;;;4291:78;;;4379:19;4411:6;4401:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4379:39;;4429:154;4445:1;4436:5;:10;4429:154;;4473:1;4463:11;;;;;:::i;:::-;;;4540:2;4532:5;:10;;;;:::i;:::-;4519:2;:24;;;;:::i;:::-;4506:39;;4489:6;4496;4489:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4569:2;4560:11;;;;;:::i;:::-;;;4429:154;;;4607:6;4593:21;;;;;3899:723;;;;:::o;55144:105::-;55204:7;55231:10;55224:17;;55144:105;:::o;33999:485::-;34101:27;34130:23;34171:38;34212:15;:24;34228:7;34212:24;;;;;;;;;;;34171:65;;34389:18;34366:41;;34446:19;34440:26;34421:45;;34351:126;33999:485;;;:::o;33227:659::-;33376:11;33541:16;33534:5;33530:28;33521:37;;33701:16;33690:9;33686:32;33673:45;;33851:15;33840:9;33837:30;33829:5;33818:9;33815:20;33812:56;33802:66;;33227:659;;;;;:::o;39885:159::-;;;;;:::o;54453:311::-;54588:7;54608:16;17248:3;54634:19;:41;;54608:68;;17248:3;54702:31;54713:4;54719:2;54723:9;54702:10;:31::i;:::-;54694:40;;:62;;54687:69;;;54453:311;;;;;:::o;29345:450::-;29425:14;29593:16;29586:5;29582:28;29573:37;;29770:5;29756:11;29731:23;29727:41;29724:52;29717:5;29714:63;29704:73;;29345:450;;;;:::o;40709:158::-;;;;;:::o;29897:324::-;29967:14;30200:1;30190:8;30187:15;30161:24;30157:46;30147:56;;29897:324;;;:::o;41307:716::-;41470:4;41516:2;41491:45;;;41537:19;:17;:19::i;:::-;41558:4;41564:7;41573:5;41491:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41487:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41791:1;41774:6;:13;:18;41770:235;;41820:40;;;;;;;;;;;;;;41770:235;41963:6;41957:13;41948:6;41944:2;41940:15;41933:38;41487:529;41660:54;;;41650:64;;;:6;:64;;;;41643:71;;;41307:716;;;;;;:::o;54154:147::-;54291:6;54154:147;;;;;:::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:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:118::-;3229:24;3247:5;3229:24;:::i;:::-;3224:3;3217:37;3142:118;;:::o;3266:222::-;3359:4;3397:2;3386:9;3382:18;3374:26;;3410:71;3478:1;3467:9;3463:17;3454:6;3410:71;:::i;:::-;3266:222;;;;:::o;3494:77::-;3531:7;3560:5;3549:16;;3494:77;;;:::o;3577:122::-;3650:24;3668:5;3650:24;:::i;:::-;3643:5;3640:35;3630:63;;3689:1;3686;3679:12;3630:63;3577:122;:::o;3705:139::-;3751:5;3789:6;3776:20;3767:29;;3805:33;3832:5;3805:33;:::i;:::-;3705:139;;;;:::o;3850:329::-;3909:6;3958:2;3946:9;3937:7;3933:23;3929:32;3926:119;;;3964:79;;:::i;:::-;3926:119;4084:1;4109:53;4154:7;4145:6;4134:9;4130:22;4109:53;:::i;:::-;4099:63;;4055:117;3850:329;;;;:::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:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:60::-;7420:3;7441:5;7434:12;;7392:60;;;:::o;7458:142::-;7508:9;7541:53;7559:34;7568:24;7586:5;7568:24;:::i;:::-;7559:34;:::i;:::-;7541:53;:::i;:::-;7528:66;;7458:142;;;:::o;7606:126::-;7656:9;7689:37;7720:5;7689:37;:::i;:::-;7676:50;;7606:126;;;:::o;7738:158::-;7820:9;7853:37;7884:5;7853:37;:::i;:::-;7840:50;;7738:158;;;:::o;7902:195::-;8021:69;8084:5;8021:69;:::i;:::-;8016:3;8009:82;7902:195;;:::o;8103:286::-;8228:4;8266:2;8255:9;8251:18;8243:26;;8279:103;8379:1;8368:9;8364:17;8355:6;8279:103;:::i;:::-;8103:286;;;;:::o;8395:329::-;8454:6;8503:2;8491:9;8482:7;8478:23;8474:32;8471:119;;;8509:79;;:::i;:::-;8471:119;8629:1;8654:53;8699:7;8690:6;8679:9;8675:22;8654:53;:::i;:::-;8644:63;;8600:117;8395:329;;;;:::o;8730:474::-;8798:6;8806;8855:2;8843:9;8834:7;8830:23;8826:32;8823:119;;;8861:79;;:::i;:::-;8823:119;8981:1;9006:53;9051:7;9042:6;9031:9;9027:22;9006:53;:::i;:::-;8996:63;;8952:117;9108:2;9134:53;9179:7;9170:6;9159:9;9155:22;9134:53;:::i;:::-;9124:63;;9079:118;8730:474;;;;;:::o;9210:116::-;9280:21;9295:5;9280:21;:::i;:::-;9273:5;9270:32;9260:60;;9316:1;9313;9306:12;9260:60;9210:116;:::o;9332:133::-;9375:5;9413:6;9400:20;9391:29;;9429:30;9453:5;9429:30;:::i;:::-;9332:133;;;;:::o;9471:468::-;9536:6;9544;9593:2;9581:9;9572:7;9568:23;9564:32;9561:119;;;9599:79;;:::i;:::-;9561:119;9719:1;9744:53;9789:7;9780:6;9769:9;9765:22;9744:53;:::i;:::-;9734:63;;9690:117;9846:2;9872:50;9914:7;9905:6;9894:9;9890:22;9872:50;:::i;:::-;9862:60;;9817:115;9471:468;;;;;:::o;9945:117::-;10054:1;10051;10044:12;10068:180;10116:77;10113:1;10106:88;10213:4;10210:1;10203:15;10237:4;10234:1;10227:15;10254:281;10337:27;10359:4;10337:27;:::i;:::-;10329:6;10325:40;10467:6;10455:10;10452:22;10431:18;10419:10;10416:34;10413:62;10410:88;;;10478:18;;:::i;:::-;10410:88;10518:10;10514:2;10507:22;10297:238;10254:281;;:::o;10541:129::-;10575:6;10602:20;;:::i;:::-;10592:30;;10631:33;10659:4;10651:6;10631:33;:::i;:::-;10541:129;;;:::o;10676:307::-;10737:4;10827:18;10819:6;10816:30;10813:56;;;10849:18;;:::i;:::-;10813:56;10887:29;10909:6;10887:29;:::i;:::-;10879:37;;10971:4;10965;10961:15;10953:23;;10676:307;;;:::o;10989:154::-;11073:6;11068:3;11063;11050:30;11135:1;11126:6;11121:3;11117:16;11110:27;10989:154;;;:::o;11149:410::-;11226:5;11251:65;11267:48;11308:6;11267:48;:::i;:::-;11251:65;:::i;:::-;11242:74;;11339:6;11332:5;11325:21;11377:4;11370:5;11366:16;11415:3;11406:6;11401:3;11397:16;11394:25;11391:112;;;11422:79;;:::i;:::-;11391:112;11512:41;11546:6;11541:3;11536;11512:41;:::i;:::-;11232:327;11149:410;;;;;:::o;11578:338::-;11633:5;11682:3;11675:4;11667:6;11663:17;11659:27;11649:122;;11690:79;;:::i;:::-;11649:122;11807:6;11794:20;11832:78;11906:3;11898:6;11891:4;11883:6;11879:17;11832:78;:::i;:::-;11823:87;;11639:277;11578:338;;;;:::o;11922:943::-;12017:6;12025;12033;12041;12090:3;12078:9;12069:7;12065:23;12061:33;12058:120;;;12097:79;;:::i;:::-;12058:120;12217:1;12242:53;12287:7;12278:6;12267:9;12263:22;12242:53;:::i;:::-;12232:63;;12188:117;12344:2;12370:53;12415:7;12406:6;12395:9;12391:22;12370:53;:::i;:::-;12360:63;;12315:118;12472:2;12498:53;12543:7;12534:6;12523:9;12519:22;12498:53;:::i;:::-;12488:63;;12443:118;12628:2;12617:9;12613:18;12600:32;12659:18;12651:6;12648:30;12645:117;;;12681:79;;:::i;:::-;12645:117;12786:62;12840:7;12831:6;12820:9;12816:22;12786:62;:::i;:::-;12776:72;;12571:287;11922:943;;;;;;;:::o;12871:323::-;12927:6;12976:2;12964:9;12955:7;12951:23;12947:32;12944:119;;;12982:79;;:::i;:::-;12944:119;13102:1;13127:50;13169:7;13160:6;13149:9;13145:22;13127:50;:::i;:::-;13117:60;;13073:114;12871:323;;;;:::o;13200:474::-;13268:6;13276;13325:2;13313:9;13304:7;13300:23;13296:32;13293:119;;;13331:79;;:::i;:::-;13293:119;13451:1;13476:53;13521:7;13512:6;13501:9;13497:22;13476:53;:::i;:::-;13466:63;;13422:117;13578:2;13604:53;13649:7;13640:6;13629:9;13625:22;13604:53;:::i;:::-;13594:63;;13549:118;13200:474;;;;;:::o;13680:180::-;13728:77;13725:1;13718:88;13825:4;13822:1;13815:15;13849:4;13846:1;13839:15;13866:320;13910:6;13947:1;13941:4;13937:12;13927:22;;13994:1;13988:4;13984:12;14015:18;14005:81;;14071:4;14063:6;14059:17;14049:27;;14005:81;14133:2;14125:6;14122:14;14102:18;14099:38;14096:84;;14152:18;;:::i;:::-;14096:84;13917:269;13866:320;;;:::o;14192:182::-;14332:34;14328:1;14320:6;14316:14;14309:58;14192:182;:::o;14380:366::-;14522:3;14543:67;14607:2;14602:3;14543:67;:::i;:::-;14536:74;;14619:93;14708:3;14619:93;:::i;:::-;14737:2;14732:3;14728:12;14721:19;;14380:366;;;:::o;14752:419::-;14918:4;14956:2;14945:9;14941:18;14933:26;;15005:9;14999:4;14995:20;14991:1;14980:9;14976:17;14969:47;15033:131;15159:4;15033:131;:::i;:::-;15025:139;;14752:419;;;:::o;15177:176::-;15317:28;15313:1;15305:6;15301:14;15294:52;15177:176;:::o;15359:366::-;15501:3;15522:67;15586:2;15581:3;15522:67;:::i;:::-;15515:74;;15598:93;15687:3;15598:93;:::i;:::-;15716:2;15711:3;15707:12;15700:19;;15359:366;;;:::o;15731:419::-;15897:4;15935:2;15924:9;15920:18;15912:26;;15984:9;15978:4;15974:20;15970:1;15959:9;15955:17;15948:47;16012:131;16138:4;16012:131;:::i;:::-;16004:139;;15731:419;;;:::o;16156:180::-;16204:77;16201:1;16194:88;16301:4;16298:1;16291:15;16325:4;16322:1;16315:15;16342:305;16382:3;16401:20;16419:1;16401:20;:::i;:::-;16396:25;;16435:20;16453:1;16435:20;:::i;:::-;16430:25;;16589:1;16521:66;16517:74;16514:1;16511:81;16508:107;;;16595:18;;:::i;:::-;16508:107;16639:1;16636;16632:9;16625:16;;16342:305;;;;:::o;16653:168::-;16793:20;16789:1;16781:6;16777:14;16770:44;16653:168;:::o;16827:366::-;16969:3;16990:67;17054:2;17049:3;16990:67;:::i;:::-;16983:74;;17066:93;17155:3;17066:93;:::i;:::-;17184:2;17179:3;17175:12;17168:19;;16827:366;;;:::o;17199:419::-;17365:4;17403:2;17392:9;17388:18;17380:26;;17452:9;17446:4;17442:20;17438:1;17427:9;17423:17;17416:47;17480:131;17606:4;17480:131;:::i;:::-;17472:139;;17199:419;;;:::o;17624:167::-;17764:19;17760:1;17752:6;17748:14;17741:43;17624:167;:::o;17797:366::-;17939:3;17960:67;18024:2;18019:3;17960:67;:::i;:::-;17953:74;;18036:93;18125:3;18036:93;:::i;:::-;18154:2;18149:3;18145:12;18138:19;;17797:366;;;:::o;18169:419::-;18335:4;18373:2;18362:9;18358:18;18350:26;;18422:9;18416:4;18412:20;18408:1;18397:9;18393:17;18386:47;18450:131;18576:4;18450:131;:::i;:::-;18442:139;;18169:419;;;:::o;18594:148::-;18696:11;18733:3;18718:18;;18594:148;;;;:::o;18748:141::-;18797:4;18820:3;18812:11;;18843:3;18840:1;18833:14;18877:4;18874:1;18864:18;18856:26;;18748:141;;;:::o;18919:845::-;19022:3;19059:5;19053:12;19088:36;19114:9;19088:36;:::i;:::-;19140:89;19222:6;19217:3;19140:89;:::i;:::-;19133:96;;19260:1;19249:9;19245:17;19276:1;19271:137;;;;19422:1;19417:341;;;;19238:520;;19271:137;19355:4;19351:9;19340;19336:25;19331:3;19324:38;19391:6;19386:3;19382:16;19375:23;;19271:137;;19417:341;19484:38;19516:5;19484:38;:::i;:::-;19544:1;19558:154;19572:6;19569:1;19566:13;19558:154;;;19646:7;19640:14;19636:1;19631:3;19627:11;19620:35;19696:1;19687:7;19683:15;19672:26;;19594:4;19591:1;19587:12;19582:17;;19558:154;;;19741:6;19736:3;19732:16;19725:23;;19424:334;;19238:520;;19026:738;;18919:845;;;;:::o;19770:377::-;19876:3;19904:39;19937:5;19904:39;:::i;:::-;19959:89;20041:6;20036:3;19959:89;:::i;:::-;19952:96;;20057:52;20102:6;20097:3;20090:4;20083:5;20079:16;20057:52;:::i;:::-;20134:6;20129:3;20125:16;20118:23;;19880:267;19770:377;;;;:::o;20153:429::-;20330:3;20352:92;20440:3;20431:6;20352:92;:::i;:::-;20345:99;;20461:95;20552:3;20543:6;20461:95;:::i;:::-;20454:102;;20573:3;20566:10;;20153:429;;;;;:::o;20588:225::-;20728:34;20724:1;20716:6;20712:14;20705:58;20797:8;20792:2;20784:6;20780:15;20773:33;20588:225;:::o;20819:366::-;20961:3;20982:67;21046:2;21041:3;20982:67;:::i;:::-;20975:74;;21058:93;21147:3;21058:93;:::i;:::-;21176:2;21171:3;21167:12;21160:19;;20819:366;;;:::o;21191:419::-;21357:4;21395:2;21384:9;21380:18;21372:26;;21444:9;21438:4;21434:20;21430:1;21419:9;21415:17;21408:47;21472:131;21598:4;21472:131;:::i;:::-;21464:139;;21191:419;;;:::o;21616:332::-;21737:4;21775:2;21764:9;21760:18;21752:26;;21788:71;21856:1;21845:9;21841:17;21832:6;21788:71;:::i;:::-;21869:72;21937:2;21926:9;21922:18;21913:6;21869:72;:::i;:::-;21616:332;;;;;:::o;21954:137::-;22008:5;22039:6;22033:13;22024:22;;22055:30;22079:5;22055:30;:::i;:::-;21954:137;;;;:::o;22097:345::-;22164:6;22213:2;22201:9;22192:7;22188:23;22184:32;22181:119;;;22219:79;;:::i;:::-;22181:119;22339:1;22364:61;22417:7;22408:6;22397:9;22393:22;22364:61;:::i;:::-;22354:71;;22310:125;22097:345;;;;:::o;22448:233::-;22487:3;22510:24;22528:5;22510:24;:::i;:::-;22501:33;;22556:66;22549:5;22546:77;22543:103;;22626:18;;:::i;:::-;22543:103;22673:1;22666:5;22662:13;22655:20;;22448:233;;;:::o;22687:180::-;22735:77;22732:1;22725:88;22832:4;22829:1;22822:15;22856:4;22853:1;22846:15;22873:185;22913:1;22930:20;22948:1;22930:20;:::i;:::-;22925:25;;22964:20;22982:1;22964:20;:::i;:::-;22959:25;;23003:1;22993:35;;23008:18;;:::i;:::-;22993:35;23050:1;23047;23043:9;23038:14;;22873:185;;;;:::o;23064:191::-;23104:4;23124:20;23142:1;23124:20;:::i;:::-;23119:25;;23158:20;23176:1;23158:20;:::i;:::-;23153:25;;23197:1;23194;23191:8;23188:34;;;23202:18;;:::i;:::-;23188:34;23247:1;23244;23240:9;23232:17;;23064:191;;;;:::o;23261:176::-;23293:1;23310:20;23328:1;23310:20;:::i;:::-;23305:25;;23344:20;23362:1;23344:20;:::i;:::-;23339:25;;23383:1;23373:35;;23388:18;;:::i;:::-;23373:35;23429:1;23426;23422:9;23417:14;;23261:176;;;;:::o;23443:180::-;23491:77;23488:1;23481:88;23588:4;23585:1;23578:15;23612:4;23609:1;23602:15;23629:98;23680:6;23714:5;23708:12;23698:22;;23629:98;;;:::o;23733:168::-;23816:11;23850:6;23845:3;23838:19;23890:4;23885:3;23881:14;23866:29;;23733:168;;;;:::o;23907:360::-;23993:3;24021:38;24053:5;24021:38;:::i;:::-;24075:70;24138:6;24133:3;24075:70;:::i;:::-;24068:77;;24154:52;24199:6;24194:3;24187:4;24180:5;24176:16;24154:52;:::i;:::-;24231:29;24253:6;24231:29;:::i;:::-;24226:3;24222:39;24215:46;;23997:270;23907:360;;;;:::o;24273:640::-;24468:4;24506:3;24495:9;24491:19;24483:27;;24520:71;24588:1;24577:9;24573:17;24564:6;24520:71;:::i;:::-;24601:72;24669:2;24658:9;24654:18;24645:6;24601:72;:::i;:::-;24683;24751:2;24740:9;24736:18;24727:6;24683:72;:::i;:::-;24802:9;24796:4;24792:20;24787:2;24776:9;24772:18;24765:48;24830:76;24901:4;24892:6;24830:76;:::i;:::-;24822:84;;24273:640;;;;;;;:::o;24919:141::-;24975:5;25006:6;25000:13;24991:22;;25022:32;25048:5;25022:32;:::i;:::-;24919:141;;;;:::o;25066:349::-;25135:6;25184:2;25172:9;25163:7;25159:23;25155:32;25152:119;;;25190:79;;:::i;:::-;25152:119;25310:1;25335:63;25390:7;25381:6;25370:9;25366:22;25335:63;:::i;:::-;25325:73;;25281:127;25066:349;;;;:::o

Swarm Source

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