ETH Price: $2,968.74 (-1.71%)
Gas: 1 Gwei

Token

Cool Frogs (CoolFrogs)
 

Overview

Max Total Supply

4,201 CoolFrogs

Holders

850

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 CoolFrogs
0x3108905c75b4c159ff50a37daae0614b89df5aa6
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:
CoolFrogs

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-09
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// 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();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * 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;

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

    /**
     * @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;

    /**
     * @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;

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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



pragma solidity >=0.8.9 <0.9.0;








contract CoolFrogs is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI;
    string public endPoint = ".json";
    string public hiddenMetadataUri = "";
    bool public revealed = true;

    uint256 public price = 0.0000 ether;
    uint256 public maxPerTx = 4;
    uint256 public maxPerWallet = 12;
    uint256 public maxSupply = 4201;

    constructor() ERC721A("Cool Frogs", "CoolFrogs")  {}

    
    function toggleRevealed() external onlyOwner {
        revealed = !revealed;
    }
    
    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function mint(uint256 amount) external payable {

        require(msg.sender == tx.origin, "You can't mint from a contract.");
        require(msg.value == amount * price, "Please send the exact amount in order to mint.");
        require(totalSupply() + amount <= maxSupply, "Sold out.");
        require(numberMinted(msg.sender) + amount <= maxPerWallet, "You have exceeded the mint limit per wallet.");
        require(amount <= maxPerTx, "You have exceeded the mint limit per transaction.");

        _safeMint(msg.sender, amount);
    }

    function ownerMint(uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= maxSupply, "Can't mint");

        _safeMint(msg.sender, amount);
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        if (revealed == false) {
        return hiddenMetadataUri;
        }

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

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

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }



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

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPoint","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200004a9190620004d1565b5060405180602001604052806000815250600c90816200006b9190620004d1565b506001600d60006101000a81548160ff0219169083151502179055506000600e556004600f55600c601055611069601155348015620000a957600080fd5b506040518060400160405280600a81526020017f436f6f6c2046726f6773000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f436f6f6c46726f677300000000000000000000000000000000000000000000008152508160029081620001279190620004d1565b508060039081620001399190620004d1565b506200014a6200018060201b60201c565b600081905550505062000172620001666200018960201b60201c565b6200019160201b60201c565b6001600981905550620005b8565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d957607f821691505b602082108103620002ef57620002ee62000291565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200031a565b6200036586836200031a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003b2620003ac620003a6846200037d565b62000387565b6200037d565b9050919050565b6000819050919050565b620003ce8362000391565b620003e6620003dd82620003b9565b84845462000327565b825550505050565b600090565b620003fd620003ee565b6200040a818484620003c3565b505050565b5b81811015620004325762000426600082620003f3565b60018101905062000410565b5050565b601f82111562000481576200044b81620002f5565b62000456846200030a565b8101602085101562000466578190505b6200047e62000475856200030a565b8301826200040f565b50505b505050565b600082821c905092915050565b6000620004a66000198460080262000486565b1980831691505092915050565b6000620004c1838362000493565b9150826002028217905092915050565b620004dc8262000257565b67ffffffffffffffff811115620004f857620004f762000262565b5b620005048254620002c0565b6200051182828562000436565b600060209050601f83116001811462000549576000841562000534578287015190505b620005408582620004b3565b865550620005b0565b601f1984166200055986620002f5565b60005b8281101562000583578489015182556001820191506020850194506020810190506200055c565b86831015620005a357848901516200059f601f89168262000493565b8355505b6001600288020188555050505b505050505050565b6131c880620005c86000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461067b578063f19e75d4146106b8578063f2fde38b146106e1578063f968adbe1461070a576101d8565b8063b88d4fde146105ad578063c87b56dd146105d6578063d5abeb0114610613578063dc33e6811461063e576101d8565b8063a035b1fe116100d1578063a035b1fe14610512578063a0712d681461053d578063a22cb46514610559578063a45ba8e714610582576101d8565b8063715018a61461047a5780638da5cb5b1461049157806395d89b41146104bc57806399e51e1c146104e7576101d8565b806342842e0e1161017a5780635bc020bc116101495780635bc020bc146103be5780636352211e146103d55780636c0360eb1461041257806370a082311461043d576101d8565b806342842e0e14610316578063453c23101461033f578063518302271461036a57806355f804b314610395576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780633ccfd60b146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061210a565b610735565b6040516102119190612152565b60405180910390f35b34801561022657600080fd5b5061022f6107c7565b60405161023c91906121fd565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612255565b610859565b60405161027991906122c3565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061230a565b6108d8565b005b3480156102b757600080fd5b506102c0610a1c565b6040516102cd9190612359565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612374565b610a33565b005b34801561030b57600080fd5b50610314610d55565b005b34801561032257600080fd5b5061033d60048036038101906103389190612374565b610e61565b005b34801561034b57600080fd5b50610354610e81565b6040516103619190612359565b60405180910390f35b34801561037657600080fd5b5061037f610e87565b60405161038c9190612152565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b7919061242c565b610e9a565b005b3480156103ca57600080fd5b506103d3610eb8565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612255565b610eec565b60405161040991906122c3565b60405180910390f35b34801561041e57600080fd5b50610427610efe565b60405161043491906121fd565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190612479565b610f8c565b6040516104719190612359565b60405180910390f35b34801561048657600080fd5b5061048f611044565b005b34801561049d57600080fd5b506104a6611058565b6040516104b391906122c3565b60405180910390f35b3480156104c857600080fd5b506104d1611082565b6040516104de91906121fd565b60405180910390f35b3480156104f357600080fd5b506104fc611114565b60405161050991906121fd565b60405180910390f35b34801561051e57600080fd5b506105276111a2565b6040516105349190612359565b60405180910390f35b61055760048036038101906105529190612255565b6111a8565b005b34801561056557600080fd5b50610580600480360381019061057b91906124d2565b611366565b005b34801561058e57600080fd5b506105976114dd565b6040516105a491906121fd565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190612642565b61156b565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612255565b6115de565b60405161060a91906121fd565b60405180910390f35b34801561061f57600080fd5b5061062861172e565b6040516106359190612359565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190612479565b611734565b6040516106729190612359565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d91906126c5565b611746565b6040516106af9190612152565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190612255565b6117da565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612479565b611846565b005b34801561071657600080fd5b5061071f6118c9565b60405161072c9190612359565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107d690612734565b80601f016020809104026020016040519081016040528092919081815260200182805461080290612734565b801561084f5780601f106108245761010080835404028352916020019161084f565b820191906000526020600020905b81548152906001019060200180831161083257829003601f168201915b5050505050905090565b6000610864826118cf565b61089a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e382610eec565b90508073ffffffffffffffffffffffffffffffffffffffff1661090461192e565b73ffffffffffffffffffffffffffffffffffffffff1614610967576109308161092b61192e565b611746565b610966576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a26611936565b6001546000540303905090565b6000610a3e8261193f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ab184611a0b565b91509150610ac78187610ac261192e565b611a32565b610b1357610adc86610ad761192e565b611746565b610b12576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b79576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b868686866001611a76565b8015610b9157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5f85610c3b888887611a7c565b7c020000000000000000000000000000000000000000000000000000000017611aa4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ce55760006001850190506000600460008381526020019081526020016000205403610ce3576000548114610ce2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d4d8686866001611acf565b505050505050565b610d5d611ad5565b600260095403610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906127b1565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610dd090612802565b60006040518083038185875af1925050503d8060008114610e0d576040519150601f19603f3d011682016040523d82523d6000602084013e610e12565b606091505b5050905080610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612863565b60405180910390fd5b506001600981905550565b610e7c8383836040518060200160405280600081525061156b565b505050565b60105481565b600d60009054906101000a900460ff1681565b610ea2611ad5565b8181600a9182610eb3929190612a3a565b505050565b610ec0611ad5565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000610ef78261193f565b9050919050565b600a8054610f0b90612734565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3790612734565b8015610f845780601f10610f5957610100808354040283529160200191610f84565b820191906000526020600020905b815481529060010190602001808311610f6757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61104c611ad5565b6110566000611b53565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109190612734565b80601f01602080910402602001604051908101604052809291908181526020018280546110bd90612734565b801561110a5780601f106110df5761010080835404028352916020019161110a565b820191906000526020600020905b8154815290600101906020018083116110ed57829003601f168201915b5050505050905090565b600b805461112190612734565b80601f016020809104026020016040519081016040528092919081815260200182805461114d90612734565b801561119a5780601f1061116f5761010080835404028352916020019161119a565b820191906000526020600020905b81548152906001019060200180831161117d57829003601f168201915b505050505081565b600e5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d90612b56565b60405180910390fd5b600e54816112249190612ba5565b3414611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90612c71565b60405180910390fd5b60115481611271610a1c565b61127b9190612c91565b11156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390612d11565b60405180910390fd5b601054816112c933611734565b6112d39190612c91565b1115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90612da3565b60405180910390fd5b600f54811115611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090612e35565b60405180910390fd5b6113633382611c19565b50565b61136e61192e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113df61192e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661148c61192e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d19190612152565b60405180910390a35050565b600c80546114ea90612734565b80601f016020809104026020016040519081016040528092919081815260200182805461151690612734565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b505050505081565b611576848484610a33565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115d8576115a184848484611c37565b6115d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115e9826118cf565b61161f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60009054906101000a900460ff161515036116cc57600c805461164790612734565b80601f016020809104026020016040519081016040528092919081815260200182805461167390612734565b80156116c05780601f10611695576101008083540402835291602001916116c0565b820191906000526020600020905b8154815290600101906020018083116116a357829003601f168201915b50505050509050611729565b6000600a80546116db90612734565b9050036116f75760405180602001604052806000815250611726565b600a61170283611d87565b600b60405160200161171693929190612f14565b6040516020818303038152906040525b90505b919050565b60115481565b600061173f82611dce565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117e2611ad5565b601154816117ee610a1c565b6117f89190612c91565b1115611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090612f91565b60405180910390fd5b6118433382611c19565b50565b61184e611ad5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490613023565b60405180910390fd5b6118c681611b53565b50565b600f5481565b6000816118da611936565b111580156118e9575060005482105b8015611927575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061194e611936565b116119d4576000548110156119d35760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036119d1575b600081036119c757600460008360019003935083815260200190815260200160002054905061199d565b8092505050611a06565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a93868684611e25565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611add611e2e565b73ffffffffffffffffffffffffffffffffffffffff16611afb611058565b73ffffffffffffffffffffffffffffffffffffffff1614611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b489061308f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c33828260405180602001604052806000815250611e36565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c5d61192e565b8786866040518563ffffffff1660e01b8152600401611c7f9493929190613104565b6020604051808303816000875af1925050508015611cbb57506040513d601f19601f82011682018060405250810190611cb89190613165565b60015b611d34573d8060008114611ceb576040519150601f19603f3d011682016040523d82523d6000602084013e611cf0565b606091505b506000815103611d2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060806040510190508060405280825b600115611dba57600183039250600a81066030018353600a8104905080611d98575b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b611e408383611ed3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ece57600080549050600083820390505b611e806000868380600101945086611c37565b611eb6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e6d578160005414611ecb57600080fd5b50505b505050565b60008054905060008203611f13576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f206000848385611a76565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f9783611f886000866000611a7c565b611f918561208e565b17611aa4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461203857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611ffd565b5060008203612073576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120896000848385611acf565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e7816120b2565b81146120f257600080fd5b50565b600081359050612104816120de565b92915050565b6000602082840312156121205761211f6120a8565b5b600061212e848285016120f5565b91505092915050565b60008115159050919050565b61214c81612137565b82525050565b60006020820190506121676000830184612143565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a757808201518184015260208101905061218c565b60008484015250505050565b6000601f19601f8301169050919050565b60006121cf8261216d565b6121d98185612178565b93506121e9818560208601612189565b6121f2816121b3565b840191505092915050565b6000602082019050818103600083015261221781846121c4565b905092915050565b6000819050919050565b6122328161221f565b811461223d57600080fd5b50565b60008135905061224f81612229565b92915050565b60006020828403121561226b5761226a6120a8565b5b600061227984828501612240565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122ad82612282565b9050919050565b6122bd816122a2565b82525050565b60006020820190506122d860008301846122b4565b92915050565b6122e7816122a2565b81146122f257600080fd5b50565b600081359050612304816122de565b92915050565b60008060408385031215612321576123206120a8565b5b600061232f858286016122f5565b925050602061234085828601612240565b9150509250929050565b6123538161221f565b82525050565b600060208201905061236e600083018461234a565b92915050565b60008060006060848603121561238d5761238c6120a8565b5b600061239b868287016122f5565b93505060206123ac868287016122f5565b92505060406123bd86828701612240565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126123ec576123eb6123c7565b5b8235905067ffffffffffffffff811115612409576124086123cc565b5b602083019150836001820283011115612425576124246123d1565b5b9250929050565b60008060208385031215612443576124426120a8565b5b600083013567ffffffffffffffff811115612461576124606120ad565b5b61246d858286016123d6565b92509250509250929050565b60006020828403121561248f5761248e6120a8565b5b600061249d848285016122f5565b91505092915050565b6124af81612137565b81146124ba57600080fd5b50565b6000813590506124cc816124a6565b92915050565b600080604083850312156124e9576124e86120a8565b5b60006124f7858286016122f5565b9250506020612508858286016124bd565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61254f826121b3565b810181811067ffffffffffffffff8211171561256e5761256d612517565b5b80604052505050565b600061258161209e565b905061258d8282612546565b919050565b600067ffffffffffffffff8211156125ad576125ac612517565b5b6125b6826121b3565b9050602081019050919050565b82818337600083830152505050565b60006125e56125e084612592565b612577565b90508281526020810184848401111561260157612600612512565b5b61260c8482856125c3565b509392505050565b600082601f830112612629576126286123c7565b5b81356126398482602086016125d2565b91505092915050565b6000806000806080858703121561265c5761265b6120a8565b5b600061266a878288016122f5565b945050602061267b878288016122f5565b935050604061268c87828801612240565b925050606085013567ffffffffffffffff8111156126ad576126ac6120ad565b5b6126b987828801612614565b91505092959194509250565b600080604083850312156126dc576126db6120a8565b5b60006126ea858286016122f5565b92505060206126fb858286016122f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274c57607f821691505b60208210810361275f5761275e612705565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061279b601f83612178565b91506127a682612765565b602082019050919050565b600060208201905081810360008301526127ca8161278e565b9050919050565b600081905092915050565b50565b60006127ec6000836127d1565b91506127f7826127dc565b600082019050919050565b600061280d826127df565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061284d601083612178565b915061285882612817565b602082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128b3565b6128fa86836128b3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061293761293261292d8461221f565b612912565b61221f565b9050919050565b6000819050919050565b6129518361291c565b61296561295d8261293e565b8484546128c0565b825550505050565b600090565b61297a61296d565b612985818484612948565b505050565b5b818110156129a95761299e600082612972565b60018101905061298b565b5050565b601f8211156129ee576129bf8161288e565b6129c8846128a3565b810160208510156129d7578190505b6129eb6129e3856128a3565b83018261298a565b50505b505050565b600082821c905092915050565b6000612a11600019846008026129f3565b1980831691505092915050565b6000612a2a8383612a00565b9150826002028217905092915050565b612a448383612883565b67ffffffffffffffff811115612a5d57612a5c612517565b5b612a678254612734565b612a728282856129ad565b6000601f831160018114612aa15760008415612a8f578287013590505b612a998582612a1e565b865550612b01565b601f198416612aaf8661288e565b60005b82811015612ad757848901358255600182019150602085019450602081019050612ab2565b86831015612af45784890135612af0601f891682612a00565b8355505b6001600288020188555050505b50505050505050565b7f596f752063616e2774206d696e742066726f6d206120636f6e74726163742e00600082015250565b6000612b40601f83612178565b9150612b4b82612b0a565b602082019050919050565b60006020820190508181036000830152612b6f81612b33565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bb08261221f565b9150612bbb8361221f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bf457612bf3612b76565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e7420696e2060008201527f6f7264657220746f206d696e742e000000000000000000000000000000000000602082015250565b6000612c5b602e83612178565b9150612c6682612bff565b604082019050919050565b60006020820190508181036000830152612c8a81612c4e565b9050919050565b6000612c9c8261221f565b9150612ca78361221f565b9250828201905080821115612cbf57612cbe612b76565b5b92915050565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b6000612cfb600983612178565b9150612d0682612cc5565b602082019050919050565b60006020820190508181036000830152612d2a81612cee565b9050919050565b7f596f75206861766520657863656564656420746865206d696e74206c696d697460008201527f207065722077616c6c65742e0000000000000000000000000000000000000000602082015250565b6000612d8d602c83612178565b9150612d9882612d31565b604082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b7f596f75206861766520657863656564656420746865206d696e74206c696d697460008201527f20706572207472616e73616374696f6e2e000000000000000000000000000000602082015250565b6000612e1f603183612178565b9150612e2a82612dc3565b604082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b600081905092915050565b60008154612e6d81612734565b612e778186612e55565b94506001821660008114612e925760018114612ea757612eda565b60ff1983168652811515820286019350612eda565b612eb08561288e565b60005b83811015612ed257815481890152600182019150602081019050612eb3565b838801955050505b50505092915050565b6000612eee8261216d565b612ef88185612e55565b9350612f08818560208601612189565b80840191505092915050565b6000612f208286612e60565b9150612f2c8285612ee3565b9150612f388284612e60565b9150819050949350505050565b7f43616e2774206d696e7400000000000000000000000000000000000000000000600082015250565b6000612f7b600a83612178565b9150612f8682612f45565b602082019050919050565b60006020820190508181036000830152612faa81612f6e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061300d602683612178565b915061301882612fb1565b604082019050919050565b6000602082019050818103600083015261303c81613000565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613079602083612178565b915061308482613043565b602082019050919050565b600060208201905081810360008301526130a88161306c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130d6826130af565b6130e081856130ba565b93506130f0818560208601612189565b6130f9816121b3565b840191505092915050565b600060808201905061311960008301876122b4565b61312660208301866122b4565b613133604083018561234a565b818103606083015261314581846130cb565b905095945050505050565b60008151905061315f816120de565b92915050565b60006020828403121561317b5761317a6120a8565b5b600061318984828501613150565b9150509291505056fea264697066735822122035956893fc15a89b42c0ddc5bd76df786fcd0f0d276a7be9bc8918bd5d90ad2a64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461067b578063f19e75d4146106b8578063f2fde38b146106e1578063f968adbe1461070a576101d8565b8063b88d4fde146105ad578063c87b56dd146105d6578063d5abeb0114610613578063dc33e6811461063e576101d8565b8063a035b1fe116100d1578063a035b1fe14610512578063a0712d681461053d578063a22cb46514610559578063a45ba8e714610582576101d8565b8063715018a61461047a5780638da5cb5b1461049157806395d89b41146104bc57806399e51e1c146104e7576101d8565b806342842e0e1161017a5780635bc020bc116101495780635bc020bc146103be5780636352211e146103d55780636c0360eb1461041257806370a082311461043d576101d8565b806342842e0e14610316578063453c23101461033f578063518302271461036a57806355f804b314610395576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780633ccfd60b146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061210a565b610735565b6040516102119190612152565b60405180910390f35b34801561022657600080fd5b5061022f6107c7565b60405161023c91906121fd565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612255565b610859565b60405161027991906122c3565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061230a565b6108d8565b005b3480156102b757600080fd5b506102c0610a1c565b6040516102cd9190612359565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612374565b610a33565b005b34801561030b57600080fd5b50610314610d55565b005b34801561032257600080fd5b5061033d60048036038101906103389190612374565b610e61565b005b34801561034b57600080fd5b50610354610e81565b6040516103619190612359565b60405180910390f35b34801561037657600080fd5b5061037f610e87565b60405161038c9190612152565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b7919061242c565b610e9a565b005b3480156103ca57600080fd5b506103d3610eb8565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612255565b610eec565b60405161040991906122c3565b60405180910390f35b34801561041e57600080fd5b50610427610efe565b60405161043491906121fd565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190612479565b610f8c565b6040516104719190612359565b60405180910390f35b34801561048657600080fd5b5061048f611044565b005b34801561049d57600080fd5b506104a6611058565b6040516104b391906122c3565b60405180910390f35b3480156104c857600080fd5b506104d1611082565b6040516104de91906121fd565b60405180910390f35b3480156104f357600080fd5b506104fc611114565b60405161050991906121fd565b60405180910390f35b34801561051e57600080fd5b506105276111a2565b6040516105349190612359565b60405180910390f35b61055760048036038101906105529190612255565b6111a8565b005b34801561056557600080fd5b50610580600480360381019061057b91906124d2565b611366565b005b34801561058e57600080fd5b506105976114dd565b6040516105a491906121fd565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190612642565b61156b565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612255565b6115de565b60405161060a91906121fd565b60405180910390f35b34801561061f57600080fd5b5061062861172e565b6040516106359190612359565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190612479565b611734565b6040516106729190612359565b60405180910390f35b34801561068757600080fd5b506106a2600480360381019061069d91906126c5565b611746565b6040516106af9190612152565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190612255565b6117da565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612479565b611846565b005b34801561071657600080fd5b5061071f6118c9565b60405161072c9190612359565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107d690612734565b80601f016020809104026020016040519081016040528092919081815260200182805461080290612734565b801561084f5780601f106108245761010080835404028352916020019161084f565b820191906000526020600020905b81548152906001019060200180831161083257829003601f168201915b5050505050905090565b6000610864826118cf565b61089a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e382610eec565b90508073ffffffffffffffffffffffffffffffffffffffff1661090461192e565b73ffffffffffffffffffffffffffffffffffffffff1614610967576109308161092b61192e565b611746565b610966576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a26611936565b6001546000540303905090565b6000610a3e8261193f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ab184611a0b565b91509150610ac78187610ac261192e565b611a32565b610b1357610adc86610ad761192e565b611746565b610b12576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b79576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b868686866001611a76565b8015610b9157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5f85610c3b888887611a7c565b7c020000000000000000000000000000000000000000000000000000000017611aa4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ce55760006001850190506000600460008381526020019081526020016000205403610ce3576000548114610ce2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d4d8686866001611acf565b505050505050565b610d5d611ad5565b600260095403610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d99906127b1565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610dd090612802565b60006040518083038185875af1925050503d8060008114610e0d576040519150601f19603f3d011682016040523d82523d6000602084013e610e12565b606091505b5050905080610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612863565b60405180910390fd5b506001600981905550565b610e7c8383836040518060200160405280600081525061156b565b505050565b60105481565b600d60009054906101000a900460ff1681565b610ea2611ad5565b8181600a9182610eb3929190612a3a565b505050565b610ec0611ad5565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6000610ef78261193f565b9050919050565b600a8054610f0b90612734565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3790612734565b8015610f845780601f10610f5957610100808354040283529160200191610f84565b820191906000526020600020905b815481529060010190602001808311610f6757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ff3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61104c611ad5565b6110566000611b53565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109190612734565b80601f01602080910402602001604051908101604052809291908181526020018280546110bd90612734565b801561110a5780601f106110df5761010080835404028352916020019161110a565b820191906000526020600020905b8154815290600101906020018083116110ed57829003601f168201915b5050505050905090565b600b805461112190612734565b80601f016020809104026020016040519081016040528092919081815260200182805461114d90612734565b801561119a5780601f1061116f5761010080835404028352916020019161119a565b820191906000526020600020905b81548152906001019060200180831161117d57829003601f168201915b505050505081565b600e5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d90612b56565b60405180910390fd5b600e54816112249190612ba5565b3414611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c90612c71565b60405180910390fd5b60115481611271610a1c565b61127b9190612c91565b11156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b390612d11565b60405180910390fd5b601054816112c933611734565b6112d39190612c91565b1115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90612da3565b60405180910390fd5b600f54811115611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090612e35565b60405180910390fd5b6113633382611c19565b50565b61136e61192e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113df61192e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661148c61192e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114d19190612152565b60405180910390a35050565b600c80546114ea90612734565b80601f016020809104026020016040519081016040528092919081815260200182805461151690612734565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b505050505081565b611576848484610a33565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115d8576115a184848484611c37565b6115d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115e9826118cf565b61161f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60009054906101000a900460ff161515036116cc57600c805461164790612734565b80601f016020809104026020016040519081016040528092919081815260200182805461167390612734565b80156116c05780601f10611695576101008083540402835291602001916116c0565b820191906000526020600020905b8154815290600101906020018083116116a357829003601f168201915b50505050509050611729565b6000600a80546116db90612734565b9050036116f75760405180602001604052806000815250611726565b600a61170283611d87565b600b60405160200161171693929190612f14565b6040516020818303038152906040525b90505b919050565b60115481565b600061173f82611dce565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117e2611ad5565b601154816117ee610a1c565b6117f89190612c91565b1115611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090612f91565b60405180910390fd5b6118433382611c19565b50565b61184e611ad5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490613023565b60405180910390fd5b6118c681611b53565b50565b600f5481565b6000816118da611936565b111580156118e9575060005482105b8015611927575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061194e611936565b116119d4576000548110156119d35760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036119d1575b600081036119c757600460008360019003935083815260200190815260200160002054905061199d565b8092505050611a06565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a93868684611e25565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611add611e2e565b73ffffffffffffffffffffffffffffffffffffffff16611afb611058565b73ffffffffffffffffffffffffffffffffffffffff1614611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b489061308f565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c33828260405180602001604052806000815250611e36565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c5d61192e565b8786866040518563ffffffff1660e01b8152600401611c7f9493929190613104565b6020604051808303816000875af1925050508015611cbb57506040513d601f19601f82011682018060405250810190611cb89190613165565b60015b611d34573d8060008114611ceb576040519150601f19603f3d011682016040523d82523d6000602084013e611cf0565b606091505b506000815103611d2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060806040510190508060405280825b600115611dba57600183039250600a81066030018353600a8104905080611d98575b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b611e408383611ed3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ece57600080549050600083820390505b611e806000868380600101945086611c37565b611eb6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e6d578160005414611ecb57600080fd5b50505b505050565b60008054905060008203611f13576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f206000848385611a76565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f9783611f886000866000611a7c565b611f918561208e565b17611aa4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461203857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611ffd565b5060008203612073576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120896000848385611acf565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120e7816120b2565b81146120f257600080fd5b50565b600081359050612104816120de565b92915050565b6000602082840312156121205761211f6120a8565b5b600061212e848285016120f5565b91505092915050565b60008115159050919050565b61214c81612137565b82525050565b60006020820190506121676000830184612143565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121a757808201518184015260208101905061218c565b60008484015250505050565b6000601f19601f8301169050919050565b60006121cf8261216d565b6121d98185612178565b93506121e9818560208601612189565b6121f2816121b3565b840191505092915050565b6000602082019050818103600083015261221781846121c4565b905092915050565b6000819050919050565b6122328161221f565b811461223d57600080fd5b50565b60008135905061224f81612229565b92915050565b60006020828403121561226b5761226a6120a8565b5b600061227984828501612240565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122ad82612282565b9050919050565b6122bd816122a2565b82525050565b60006020820190506122d860008301846122b4565b92915050565b6122e7816122a2565b81146122f257600080fd5b50565b600081359050612304816122de565b92915050565b60008060408385031215612321576123206120a8565b5b600061232f858286016122f5565b925050602061234085828601612240565b9150509250929050565b6123538161221f565b82525050565b600060208201905061236e600083018461234a565b92915050565b60008060006060848603121561238d5761238c6120a8565b5b600061239b868287016122f5565b93505060206123ac868287016122f5565b92505060406123bd86828701612240565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126123ec576123eb6123c7565b5b8235905067ffffffffffffffff811115612409576124086123cc565b5b602083019150836001820283011115612425576124246123d1565b5b9250929050565b60008060208385031215612443576124426120a8565b5b600083013567ffffffffffffffff811115612461576124606120ad565b5b61246d858286016123d6565b92509250509250929050565b60006020828403121561248f5761248e6120a8565b5b600061249d848285016122f5565b91505092915050565b6124af81612137565b81146124ba57600080fd5b50565b6000813590506124cc816124a6565b92915050565b600080604083850312156124e9576124e86120a8565b5b60006124f7858286016122f5565b9250506020612508858286016124bd565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61254f826121b3565b810181811067ffffffffffffffff8211171561256e5761256d612517565b5b80604052505050565b600061258161209e565b905061258d8282612546565b919050565b600067ffffffffffffffff8211156125ad576125ac612517565b5b6125b6826121b3565b9050602081019050919050565b82818337600083830152505050565b60006125e56125e084612592565b612577565b90508281526020810184848401111561260157612600612512565b5b61260c8482856125c3565b509392505050565b600082601f830112612629576126286123c7565b5b81356126398482602086016125d2565b91505092915050565b6000806000806080858703121561265c5761265b6120a8565b5b600061266a878288016122f5565b945050602061267b878288016122f5565b935050604061268c87828801612240565b925050606085013567ffffffffffffffff8111156126ad576126ac6120ad565b5b6126b987828801612614565b91505092959194509250565b600080604083850312156126dc576126db6120a8565b5b60006126ea858286016122f5565b92505060206126fb858286016122f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061274c57607f821691505b60208210810361275f5761275e612705565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061279b601f83612178565b91506127a682612765565b602082019050919050565b600060208201905081810360008301526127ca8161278e565b9050919050565b600081905092915050565b50565b60006127ec6000836127d1565b91506127f7826127dc565b600082019050919050565b600061280d826127df565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061284d601083612178565b915061285882612817565b602082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128b3565b6128fa86836128b3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061293761293261292d8461221f565b612912565b61221f565b9050919050565b6000819050919050565b6129518361291c565b61296561295d8261293e565b8484546128c0565b825550505050565b600090565b61297a61296d565b612985818484612948565b505050565b5b818110156129a95761299e600082612972565b60018101905061298b565b5050565b601f8211156129ee576129bf8161288e565b6129c8846128a3565b810160208510156129d7578190505b6129eb6129e3856128a3565b83018261298a565b50505b505050565b600082821c905092915050565b6000612a11600019846008026129f3565b1980831691505092915050565b6000612a2a8383612a00565b9150826002028217905092915050565b612a448383612883565b67ffffffffffffffff811115612a5d57612a5c612517565b5b612a678254612734565b612a728282856129ad565b6000601f831160018114612aa15760008415612a8f578287013590505b612a998582612a1e565b865550612b01565b601f198416612aaf8661288e565b60005b82811015612ad757848901358255600182019150602085019450602081019050612ab2565b86831015612af45784890135612af0601f891682612a00565b8355505b6001600288020188555050505b50505050505050565b7f596f752063616e2774206d696e742066726f6d206120636f6e74726163742e00600082015250565b6000612b40601f83612178565b9150612b4b82612b0a565b602082019050919050565b60006020820190508181036000830152612b6f81612b33565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bb08261221f565b9150612bbb8361221f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bf457612bf3612b76565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e7420696e2060008201527f6f7264657220746f206d696e742e000000000000000000000000000000000000602082015250565b6000612c5b602e83612178565b9150612c6682612bff565b604082019050919050565b60006020820190508181036000830152612c8a81612c4e565b9050919050565b6000612c9c8261221f565b9150612ca78361221f565b9250828201905080821115612cbf57612cbe612b76565b5b92915050565b7f536f6c64206f75742e0000000000000000000000000000000000000000000000600082015250565b6000612cfb600983612178565b9150612d0682612cc5565b602082019050919050565b60006020820190508181036000830152612d2a81612cee565b9050919050565b7f596f75206861766520657863656564656420746865206d696e74206c696d697460008201527f207065722077616c6c65742e0000000000000000000000000000000000000000602082015250565b6000612d8d602c83612178565b9150612d9882612d31565b604082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b7f596f75206861766520657863656564656420746865206d696e74206c696d697460008201527f20706572207472616e73616374696f6e2e000000000000000000000000000000602082015250565b6000612e1f603183612178565b9150612e2a82612dc3565b604082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b600081905092915050565b60008154612e6d81612734565b612e778186612e55565b94506001821660008114612e925760018114612ea757612eda565b60ff1983168652811515820286019350612eda565b612eb08561288e565b60005b83811015612ed257815481890152600182019150602081019050612eb3565b838801955050505b50505092915050565b6000612eee8261216d565b612ef88185612e55565b9350612f08818560208601612189565b80840191505092915050565b6000612f208286612e60565b9150612f2c8285612ee3565b9150612f388284612e60565b9150819050949350505050565b7f43616e2774206d696e7400000000000000000000000000000000000000000000600082015250565b6000612f7b600a83612178565b9150612f8682612f45565b602082019050919050565b60006020820190508181036000830152612faa81612f6e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061300d602683612178565b915061301882612fb1565b604082019050919050565b6000602082019050818103600083015261303c81613000565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613079602083612178565b915061308482613043565b602082019050919050565b600060208201905081810360008301526130a88161306c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130d6826130af565b6130e081856130ba565b93506130f0818560208601612189565b6130f9816121b3565b840191505092915050565b600060808201905061311960008301876122b4565b61312660208301866122b4565b613133604083018561234a565b818103606083015261314581846130cb565b905095945050505050565b60008151905061315f816120de565b92915050565b60006020828403121561317b5761317a6120a8565b5b600061318984828501613150565b9150509291505056fea264697066735822122035956893fc15a89b42c0ddc5bd76df786fcd0f0d276a7be9bc8918bd5d90ad2a64736f6c63430008100033

Deployed Bytecode Sourcemap

59797:2285:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27317:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28219:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34702:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34143:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23970:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38409:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61893:186;;;;;;;;;;;;;:::i;:::-;;41322:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60082:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59970:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60323:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60227:84;;;;;;;;;;;;;:::i;:::-;;29612:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59860:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25154:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8065:103;;;;;;;;;;;;;:::i;:::-;;7417:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28395:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59888:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60006:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60433:550;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35260:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59927:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42105:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61176:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60121:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61656:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35725:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60991:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8323:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60048:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27317:639;27402:4;27741:10;27726:25;;:11;:25;;;;:102;;;;27818:10;27803:25;;:11;:25;;;;27726:102;:179;;;;27895:10;27880:25;;:11;:25;;;;27726:179;27706:199;;27317:639;;;:::o;28219:100::-;28273:13;28306:5;28299:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28219:100;:::o;34702:218::-;34778:7;34803:16;34811:7;34803;:16::i;:::-;34798:64;;34828:34;;;;;;;;;;;;;;34798:64;34882:15;:24;34898:7;34882:24;;;;;;;;;;;:30;;;;;;;;;;;;34875:37;;34702:218;;;:::o;34143:400::-;34224:13;34240:16;34248:7;34240;:16::i;:::-;34224:32;;34296:5;34273:28;;:19;:17;:19::i;:::-;:28;;;34269:175;;34321:44;34338:5;34345:19;:17;:19::i;:::-;34321:16;:44::i;:::-;34316:128;;34393:35;;;;;;;;;;;;;;34316:128;34269:175;34489:2;34456:15;:24;34472:7;34456:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34527:7;34523:2;34507:28;;34516:5;34507:28;;;;;;;;;;;;34213:330;34143:400;;:::o;23970:323::-;24031:7;24259:15;:13;:15::i;:::-;24244:12;;24228:13;;:28;:46;24221:53;;23970:323;:::o;38409:2817::-;38543:27;38573;38592:7;38573:18;:27::i;:::-;38543:57;;38658:4;38617:45;;38633:19;38617:45;;;38613:86;;38671:28;;;;;;;;;;;;;;38613:86;38713:27;38742:23;38769:35;38796:7;38769:26;:35::i;:::-;38712:92;;;;38904:68;38929:15;38946:4;38952:19;:17;:19::i;:::-;38904:24;:68::i;:::-;38899:180;;38992:43;39009:4;39015:19;:17;:19::i;:::-;38992:16;:43::i;:::-;38987:92;;39044:35;;;;;;;;;;;;;;38987:92;38899:180;39110:1;39096:16;;:2;:16;;;39092:52;;39121:23;;;;;;;;;;;;;;39092:52;39157:43;39179:4;39185:2;39189:7;39198:1;39157:21;:43::i;:::-;39293:15;39290:160;;;39433:1;39412:19;39405:30;39290:160;39830:18;:24;39849:4;39830:24;;;;;;;;;;;;;;;;39828:26;;;;;;;;;;;;39899:18;:22;39918:2;39899:22;;;;;;;;;;;;;;;;39897:24;;;;;;;;;;;40221:146;40258:2;40307:45;40322:4;40328:2;40332:19;40307:14;:45::i;:::-;20369:8;40279:73;40221:18;:146::i;:::-;40192:17;:26;40210:7;40192:26;;;;;;;;;;;:175;;;;40538:1;20369:8;40487:19;:47;:52;40483:627;;40560:19;40592:1;40582:7;:11;40560:33;;40749:1;40715:17;:30;40733:11;40715:30;;;;;;;;;;;;:35;40711:384;;40853:13;;40838:11;:28;40834:242;;41033:19;41000:17;:30;41018:11;41000:30;;;;;;;;;;;:52;;;;40834:242;40711:384;40541:569;40483:627;41157:7;41153:2;41138:27;;41147:4;41138:27;;;;;;;;;;;;41176:42;41197:4;41203:2;41207:7;41216:1;41176:20;:42::i;:::-;38532:2694;;;38409:2817;;;:::o;61893:186::-;7303:13;:11;:13::i;:::-;4342:1:::1;4940:7;;:19:::0;4932:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4342:1;5073:7;:18;;;;61957:12:::2;61975:10;:15;;61998:21;61975:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61956:68;;;62043:7;62035:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61945:134;4298:1:::1;5252:7;:22;;;;61893:186::o:0;41322:185::-;41460:39;41477:4;41483:2;41487:7;41460:39;;;;;;;;;;;;:16;:39::i;:::-;41322:185;;;:::o;60082:32::-;;;;:::o;59970:27::-;;;;;;;;;;;;;:::o;60323:102::-;7303:13;:11;:13::i;:::-;60409:8:::1;;60399:7;:18;;;;;;;:::i;:::-;;60323:102:::0;;:::o;60227:84::-;7303:13;:11;:13::i;:::-;60295:8:::1;;;;;;;;;;;60294:9;60283:8;;:20;;;;;;;;;;;;;;;;;;60227:84::o:0;29612:152::-;29684:7;29727:27;29746:7;29727:18;:27::i;:::-;29704:52;;29612:152;;;:::o;59860:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25154:233::-;25226:7;25267:1;25250:19;;:5;:19;;;25246:60;;25278:28;;;;;;;;;;;;;;25246:60;19313:13;25324:18;:25;25343:5;25324:25;;;;;;;;;;;;;;;;:55;25317:62;;25154:233;;;:::o;8065:103::-;7303:13;:11;:13::i;:::-;8130:30:::1;8157:1;8130:18;:30::i;:::-;8065:103::o:0;7417:87::-;7463:7;7490:6;;;;;;;;;;;7483:13;;7417:87;:::o;28395:104::-;28451:13;28484:7;28477:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28395:104;:::o;59888:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60006:35::-;;;;:::o;60433:550::-;60515:9;60501:23;;:10;:23;;;60493:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;60601:5;;60592:6;:14;;;;:::i;:::-;60579:9;:27;60571:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;60702:9;;60692:6;60676:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;60668:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;60781:12;;60771:6;60744:24;60757:10;60744:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;60736:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;60871:8;;60861:6;:18;;60853:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;60946:29;60956:10;60968:6;60946:9;:29::i;:::-;60433:550;:::o;35260:308::-;35371:19;:17;:19::i;:::-;35359:31;;:8;:31;;;35355:61;;35399:17;;;;;;;;;;;;;;35355:61;35481:8;35429:18;:39;35448:19;:17;:19::i;:::-;35429:39;;;;;;;;;;;;;;;:49;35469:8;35429:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35541:8;35505:55;;35520:19;:17;:19::i;:::-;35505:55;;;35551:8;35505:55;;;;;;:::i;:::-;;;;;;;;35260:308;;:::o;59927:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42105:399::-;42272:31;42285:4;42291:2;42295:7;42272:12;:31::i;:::-;42336:1;42318:2;:14;;;:19;42314:183;;42357:56;42388:4;42394:2;42398:7;42407:5;42357:30;:56::i;:::-;42352:145;;42441:40;;;;;;;;;;;;;;42352:145;42314:183;42105:399;;;;:::o;61176:363::-;61249:13;61280:16;61288:7;61280;:16::i;:::-;61275:59;;61305:29;;;;;;;;;;;;;;61275:59;61361:5;61349:17;;:8;;;;;;;;;;;:17;;;61345:70;;61386:17;61379:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61345:70;61459:1;61440:7;61434:21;;;;;:::i;:::-;;;:26;:97;;;;;;;;;;;;;;;;;61487:7;61496:18;61506:7;61496:9;:18::i;:::-;61516:8;61470:55;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61434:97;61427:104;;61176:363;;;;:::o;60121:31::-;;;;:::o;61656:113::-;61714:7;61741:20;61755:5;61741:13;:20::i;:::-;61734:27;;61656:113;;;:::o;35725:164::-;35822:4;35846:18;:25;35865:5;35846:25;;;;;;;;;;;;;;;:35;35872:8;35846:35;;;;;;;;;;;;;;;;;;;;;;;;;35839:42;;35725:164;;;;:::o;60991:173::-;7303:13;:11;:13::i;:::-;61090:9:::1;;61080:6;61064:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;61056:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61127:29;61137:10;61149:6;61127:9;:29::i;:::-;60991:173:::0;:::o;8323:201::-;7303:13;:11;:13::i;:::-;8432:1:::1;8412:22;;:8;:22;;::::0;8404:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8488:28;8507:8;8488:18;:28::i;:::-;8323:201:::0;:::o;60048:27::-;;;;:::o;36147:282::-;36212:4;36268:7;36249:15;:13;:15::i;:::-;:26;;:66;;;;;36302:13;;36292:7;:23;36249:66;:153;;;;;36401:1;20089:8;36353:17;:26;36371:7;36353:26;;;;;;;;;;;;:44;:49;36249:153;36229:173;;36147:282;;;:::o;57913:105::-;57973:7;58000:10;57993:17;;57913:105;:::o;61547:101::-;61612:7;61639:1;61632:8;;61547:101;:::o;30767:1275::-;30834:7;30854:12;30869:7;30854:22;;30937:4;30918:15;:13;:15::i;:::-;:23;30914:1061;;30971:13;;30964:4;:20;30960:1015;;;31009:14;31026:17;:23;31044:4;31026:23;;;;;;;;;;;;31009:40;;31143:1;20089:8;31115:6;:24;:29;31111:845;;31780:113;31797:1;31787:6;:11;31780:113;;31840:17;:25;31858:6;;;;;;;31840:25;;;;;;;;;;;;31831:34;;31780:113;;;31926:6;31919:13;;;;;;31111:845;30986:989;30960:1015;30914:1061;32003:31;;;;;;;;;;;;;;30767:1275;;;;:::o;37310:479::-;37412:27;37441:23;37482:38;37523:15;:24;37539:7;37523:24;;;;;;;;;;;37482:65;;37694:18;37671:41;;37751:19;37745:26;37726:45;;37656:126;37310:479;;;:::o;36538:659::-;36687:11;36852:16;36845:5;36841:28;36832:37;;37012:16;37001:9;36997:32;36984:45;;37162:15;37151:9;37148:30;37140:5;37129:9;37126:20;37123:56;37113:66;;36538:659;;;;;:::o;43166:159::-;;;;;:::o;57222:311::-;57357:7;57377:16;20493:3;57403:19;:41;;57377:68;;20493:3;57471:31;57482:4;57488:2;57492:9;57471:10;:31::i;:::-;57463:40;;:62;;57456:69;;;57222:311;;;;;:::o;32590:450::-;32670:14;32838:16;32831:5;32827:28;32818:37;;33015:5;33001:11;32976:23;32972:41;32969:52;32962:5;32959:63;32949:73;;32590:450;;;;:::o;43990:158::-;;;;;:::o;7582:132::-;7657:12;:10;:12::i;:::-;7646:23;;:7;:5;:7::i;:::-;:23;;;7638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7582:132::o;8684:191::-;8758:16;8777:6;;;;;;;;;;;8758:25;;8803:8;8794:6;;:17;;;;;;;;;;;;;;;;;;8858:8;8827:40;;8848:8;8827:40;;;;;;;;;;;;8747:128;8684:191;:::o;51745:112::-;51822:27;51832:2;51836:8;51822:27;;;;;;;;;;;;:9;:27::i;:::-;51745:112;;:::o;44588:716::-;44751:4;44797:2;44772:45;;;44818:19;:17;:19::i;:::-;44839:4;44845:7;44854:5;44772:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44768:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45072:1;45055:6;:13;:18;45051:235;;45101:40;;;;;;;;;;;;;;45051:235;45244:6;45238:13;45229:6;45225:2;45221:15;45214:38;44768:529;44941:54;;;44931:64;;;:6;:64;;;;44924:71;;;44588:716;;;;;;:::o;58120:1581::-;58185:17;58610:4;58603;58597:11;58593:22;58586:29;;58702:3;58696:4;58689:17;58808:3;59047:5;59029:428;59055:1;59029:428;;;59095:1;59090:3;59086:11;59079:18;;59266:2;59260:4;59256:13;59252:2;59248:22;59243:3;59235:36;59360:2;59354:4;59350:13;59342:21;;59427:4;59029:428;59417:25;59029:428;59033:21;59496:3;59491;59487:13;59611:4;59606:3;59602:14;59595:21;;59676:6;59671:3;59664:19;58224:1470;;58120:1581;;;:::o;25469:178::-;25530:7;19313:13;19451:2;25558:18;:25;25577:5;25558:25;;;;;;;;;;;;;;;;:50;;25557:82;25550:89;;25469:178;;;:::o;56923:147::-;57060:6;56923:147;;;;;:::o;5968:98::-;6021:7;6048:10;6041:17;;5968:98;:::o;50972:689::-;51103:19;51109:2;51113:8;51103:5;:19::i;:::-;51182:1;51164:2;:14;;;:19;51160:483;;51204:11;51218:13;;51204:27;;51250:13;51272:8;51266:3;:14;51250:30;;51299:233;51330:62;51369:1;51373:2;51377:7;;;;;;51386:5;51330:30;:62::i;:::-;51325:167;;51428:40;;;;;;;;;;;;;;51325:167;51527:3;51519:5;:11;51299:233;;51614:3;51597:13;;:20;51593:34;;51619:8;;;51593:34;51185:458;;51160:483;50972:689;;;:::o;45766:2454::-;45839:20;45862:13;;45839:36;;45902:1;45890:8;:13;45886:44;;45912:18;;;;;;;;;;;;;;45886:44;45943:61;45973:1;45977:2;45981:12;45995:8;45943:21;:61::i;:::-;46487:1;19451:2;46457:1;:26;;46456:32;46444:8;:45;46418:18;:22;46437:2;46418:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46766:139;46803:2;46857:33;46880:1;46884:2;46888:1;46857:14;:33::i;:::-;46824:30;46845:8;46824:20;:30::i;:::-;:66;46766:18;:139::i;:::-;46732:17;:31;46750:12;46732:31;;;;;;;;;;;:173;;;;46922:16;46953:11;46982:8;46967:12;:23;46953:37;;47237:16;47233:2;47229:25;47217:37;;47609:12;47569:8;47528:1;47466:25;47407:1;47346;47319:335;47734:1;47720:12;47716:20;47674:346;47775:3;47766:7;47763:16;47674:346;;47993:7;47983:8;47980:1;47953:25;47950:1;47947;47942:59;47828:1;47819:7;47815:15;47804:26;;47674:346;;;47678:77;48065:1;48053:8;:13;48049:45;;48075:19;;;;;;;;;;;;;;48049:45;48127:3;48111:13;:19;;;;46192:1950;;48152:60;48181:1;48185:2;48189:12;48203:8;48152:20;:60::i;:::-;45828:2392;45766:2454;;:::o;33142:324::-;33212:14;33445:1;33435:8;33432:15;33406:24;33402:46;33392:56;;33142:324;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:181::-;12477:33;12473:1;12465:6;12461:14;12454:57;12337:181;:::o;12524:366::-;12666:3;12687:67;12751:2;12746:3;12687:67;:::i;:::-;12680:74;;12763:93;12852:3;12763:93;:::i;:::-;12881:2;12876:3;12872:12;12865:19;;12524:366;;;:::o;12896:419::-;13062:4;13100:2;13089:9;13085:18;13077:26;;13149:9;13143:4;13139:20;13135:1;13124:9;13120:17;13113:47;13177:131;13303:4;13177:131;:::i;:::-;13169:139;;12896:419;;;:::o;13321:147::-;13422:11;13459:3;13444:18;;13321:147;;;;:::o;13474:114::-;;:::o;13594:398::-;13753:3;13774:83;13855:1;13850:3;13774:83;:::i;:::-;13767:90;;13866:93;13955:3;13866:93;:::i;:::-;13984:1;13979:3;13975:11;13968:18;;13594:398;;;:::o;13998:379::-;14182:3;14204:147;14347:3;14204:147;:::i;:::-;14197:154;;14368:3;14361:10;;13998:379;;;:::o;14383:166::-;14523:18;14519:1;14511:6;14507:14;14500:42;14383:166;:::o;14555:366::-;14697:3;14718:67;14782:2;14777:3;14718:67;:::i;:::-;14711:74;;14794:93;14883:3;14794:93;:::i;:::-;14912:2;14907:3;14903:12;14896:19;;14555:366;;;:::o;14927:419::-;15093:4;15131:2;15120:9;15116:18;15108:26;;15180:9;15174:4;15170:20;15166:1;15155:9;15151:17;15144:47;15208:131;15334:4;15208:131;:::i;:::-;15200:139;;14927:419;;;:::o;15352:97::-;15411:6;15439:3;15429:13;;15352:97;;;;:::o;15455:141::-;15504:4;15527:3;15519:11;;15550:3;15547:1;15540:14;15584:4;15581:1;15571:18;15563:26;;15455:141;;;:::o;15602:93::-;15639:6;15686:2;15681;15674:5;15670:14;15666:23;15656:33;;15602:93;;;:::o;15701:107::-;15745:8;15795:5;15789:4;15785:16;15764:37;;15701:107;;;;:::o;15814:393::-;15883:6;15933:1;15921:10;15917:18;15956:97;15986:66;15975:9;15956:97;:::i;:::-;16074:39;16104:8;16093:9;16074:39;:::i;:::-;16062:51;;16146:4;16142:9;16135:5;16131:21;16122:30;;16195:4;16185:8;16181:19;16174:5;16171:30;16161:40;;15890:317;;15814:393;;;;;:::o;16213:60::-;16241:3;16262:5;16255:12;;16213:60;;;:::o;16279:142::-;16329:9;16362:53;16380:34;16389:24;16407:5;16389:24;:::i;:::-;16380:34;:::i;:::-;16362:53;:::i;:::-;16349:66;;16279:142;;;:::o;16427:75::-;16470:3;16491:5;16484:12;;16427:75;;;:::o;16508:269::-;16618:39;16649:7;16618:39;:::i;:::-;16679:91;16728:41;16752:16;16728:41;:::i;:::-;16720:6;16713:4;16707:11;16679:91;:::i;:::-;16673:4;16666:105;16584:193;16508:269;;;:::o;16783:73::-;16828:3;16783:73;:::o;16862:189::-;16939:32;;:::i;:::-;16980:65;17038:6;17030;17024:4;16980:65;:::i;:::-;16915:136;16862:189;;:::o;17057:186::-;17117:120;17134:3;17127:5;17124:14;17117:120;;;17188:39;17225:1;17218:5;17188:39;:::i;:::-;17161:1;17154:5;17150:13;17141:22;;17117:120;;;17057:186;;:::o;17249:543::-;17350:2;17345:3;17342:11;17339:446;;;17384:38;17416:5;17384:38;:::i;:::-;17468:29;17486:10;17468:29;:::i;:::-;17458:8;17454:44;17651:2;17639:10;17636:18;17633:49;;;17672:8;17657:23;;17633:49;17695:80;17751:22;17769:3;17751:22;:::i;:::-;17741:8;17737:37;17724:11;17695:80;:::i;:::-;17354:431;;17339:446;17249:543;;;:::o;17798:117::-;17852:8;17902:5;17896:4;17892:16;17871:37;;17798:117;;;;:::o;17921:169::-;17965:6;17998:51;18046:1;18042:6;18034:5;18031:1;18027:13;17998:51;:::i;:::-;17994:56;18079:4;18073;18069:15;18059:25;;17972:118;17921:169;;;;:::o;18095:295::-;18171:4;18317:29;18342:3;18336:4;18317:29;:::i;:::-;18309:37;;18379:3;18376:1;18372:11;18366:4;18363:21;18355:29;;18095:295;;;;:::o;18395:1403::-;18519:44;18559:3;18554;18519:44;:::i;:::-;18628:18;18620:6;18617:30;18614:56;;;18650:18;;:::i;:::-;18614:56;18694:38;18726:4;18720:11;18694:38;:::i;:::-;18779:67;18839:6;18831;18825:4;18779:67;:::i;:::-;18873:1;18902:2;18894:6;18891:14;18919:1;18914:632;;;;19590:1;19607:6;19604:84;;;19663:9;19658:3;19654:19;19641:33;19632:42;;19604:84;19714:67;19774:6;19767:5;19714:67;:::i;:::-;19708:4;19701:81;19563:229;18884:908;;18914:632;18966:4;18962:9;18954:6;18950:22;19000:37;19032:4;19000:37;:::i;:::-;19059:1;19073:215;19087:7;19084:1;19081:14;19073:215;;;19173:9;19168:3;19164:19;19151:33;19143:6;19136:49;19224:1;19216:6;19212:14;19202:24;;19271:2;19260:9;19256:18;19243:31;;19110:4;19107:1;19103:12;19098:17;;19073:215;;;19316:6;19307:7;19304:19;19301:186;;;19381:9;19376:3;19372:19;19359:33;19424:48;19466:4;19458:6;19454:17;19443:9;19424:48;:::i;:::-;19416:6;19409:64;19324:163;19301:186;19533:1;19529;19521:6;19517:14;19513:22;19507:4;19500:36;18921:625;;;18884:908;;18494:1304;;;18395:1403;;;:::o;19804:181::-;19944:33;19940:1;19932:6;19928:14;19921:57;19804:181;:::o;19991:366::-;20133:3;20154:67;20218:2;20213:3;20154:67;:::i;:::-;20147:74;;20230:93;20319:3;20230:93;:::i;:::-;20348:2;20343:3;20339:12;20332:19;;19991:366;;;:::o;20363:419::-;20529:4;20567:2;20556:9;20552:18;20544:26;;20616:9;20610:4;20606:20;20602:1;20591:9;20587:17;20580:47;20644:131;20770:4;20644:131;:::i;:::-;20636:139;;20363:419;;;:::o;20788:180::-;20836:77;20833:1;20826:88;20933:4;20930:1;20923:15;20957:4;20954:1;20947:15;20974:348;21014:7;21037:20;21055:1;21037:20;:::i;:::-;21032:25;;21071:20;21089:1;21071:20;:::i;:::-;21066:25;;21259:1;21191:66;21187:74;21184:1;21181:81;21176:1;21169:9;21162:17;21158:105;21155:131;;;21266:18;;:::i;:::-;21155:131;21314:1;21311;21307:9;21296:20;;20974:348;;;;:::o;21328:233::-;21468:34;21464:1;21456:6;21452:14;21445:58;21537:16;21532:2;21524:6;21520:15;21513:41;21328:233;:::o;21567:366::-;21709:3;21730:67;21794:2;21789:3;21730:67;:::i;:::-;21723:74;;21806:93;21895:3;21806:93;:::i;:::-;21924:2;21919:3;21915:12;21908:19;;21567:366;;;:::o;21939:419::-;22105:4;22143:2;22132:9;22128:18;22120:26;;22192:9;22186:4;22182:20;22178:1;22167:9;22163:17;22156:47;22220:131;22346:4;22220:131;:::i;:::-;22212:139;;21939:419;;;:::o;22364:191::-;22404:3;22423:20;22441:1;22423:20;:::i;:::-;22418:25;;22457:20;22475:1;22457:20;:::i;:::-;22452:25;;22500:1;22497;22493:9;22486:16;;22521:3;22518:1;22515:10;22512:36;;;22528:18;;:::i;:::-;22512:36;22364:191;;;;:::o;22561:159::-;22701:11;22697:1;22689:6;22685:14;22678:35;22561:159;:::o;22726:365::-;22868:3;22889:66;22953:1;22948:3;22889:66;:::i;:::-;22882:73;;22964:93;23053:3;22964:93;:::i;:::-;23082:2;23077:3;23073:12;23066:19;;22726:365;;;:::o;23097:419::-;23263:4;23301:2;23290:9;23286:18;23278:26;;23350:9;23344:4;23340:20;23336:1;23325:9;23321:17;23314:47;23378:131;23504:4;23378:131;:::i;:::-;23370:139;;23097:419;;;:::o;23522:231::-;23662:34;23658:1;23650:6;23646:14;23639:58;23731:14;23726:2;23718:6;23714:15;23707:39;23522:231;:::o;23759:366::-;23901:3;23922:67;23986:2;23981:3;23922:67;:::i;:::-;23915:74;;23998:93;24087:3;23998:93;:::i;:::-;24116:2;24111:3;24107:12;24100:19;;23759:366;;;:::o;24131:419::-;24297:4;24335:2;24324:9;24320:18;24312:26;;24384:9;24378:4;24374:20;24370:1;24359:9;24355:17;24348:47;24412:131;24538:4;24412:131;:::i;:::-;24404:139;;24131:419;;;:::o;24556:236::-;24696:34;24692:1;24684:6;24680:14;24673:58;24765:19;24760:2;24752:6;24748:15;24741:44;24556:236;:::o;24798:366::-;24940:3;24961:67;25025:2;25020:3;24961:67;:::i;:::-;24954:74;;25037:93;25126:3;25037:93;:::i;:::-;25155:2;25150:3;25146:12;25139:19;;24798:366;;;:::o;25170:419::-;25336:4;25374:2;25363:9;25359:18;25351:26;;25423:9;25417:4;25413:20;25409:1;25398:9;25394:17;25387:47;25451:131;25577:4;25451:131;:::i;:::-;25443:139;;25170:419;;;:::o;25595:148::-;25697:11;25734:3;25719:18;;25595:148;;;;:::o;25773:874::-;25876:3;25913:5;25907:12;25942:36;25968:9;25942:36;:::i;:::-;25994:89;26076:6;26071:3;25994:89;:::i;:::-;25987:96;;26114:1;26103:9;26099:17;26130:1;26125:166;;;;26305:1;26300:341;;;;26092:549;;26125:166;26209:4;26205:9;26194;26190:25;26185:3;26178:38;26271:6;26264:14;26257:22;26249:6;26245:35;26240:3;26236:45;26229:52;;26125:166;;26300:341;26367:38;26399:5;26367:38;:::i;:::-;26427:1;26441:154;26455:6;26452:1;26449:13;26441:154;;;26529:7;26523:14;26519:1;26514:3;26510:11;26503:35;26579:1;26570:7;26566:15;26555:26;;26477:4;26474:1;26470:12;26465:17;;26441:154;;;26624:6;26619:3;26615:16;26608:23;;26307:334;;26092:549;;25880:767;;25773:874;;;;:::o;26653:390::-;26759:3;26787:39;26820:5;26787:39;:::i;:::-;26842:89;26924:6;26919:3;26842:89;:::i;:::-;26835:96;;26940:65;26998:6;26993:3;26986:4;26979:5;26975:16;26940:65;:::i;:::-;27030:6;27025:3;27021:16;27014:23;;26763:280;26653:390;;;;:::o;27049:583::-;27271:3;27293:92;27381:3;27372:6;27293:92;:::i;:::-;27286:99;;27402:95;27493:3;27484:6;27402:95;:::i;:::-;27395:102;;27514:92;27602:3;27593:6;27514:92;:::i;:::-;27507:99;;27623:3;27616:10;;27049:583;;;;;;:::o;27638:160::-;27778:12;27774:1;27766:6;27762:14;27755:36;27638:160;:::o;27804:366::-;27946:3;27967:67;28031:2;28026:3;27967:67;:::i;:::-;27960:74;;28043:93;28132:3;28043:93;:::i;:::-;28161:2;28156:3;28152:12;28145:19;;27804:366;;;:::o;28176:419::-;28342:4;28380:2;28369:9;28365:18;28357:26;;28429:9;28423:4;28419:20;28415:1;28404:9;28400:17;28393:47;28457:131;28583:4;28457:131;:::i;:::-;28449:139;;28176:419;;;:::o;28601:225::-;28741:34;28737:1;28729:6;28725:14;28718:58;28810:8;28805:2;28797:6;28793:15;28786:33;28601:225;:::o;28832:366::-;28974:3;28995:67;29059:2;29054:3;28995:67;:::i;:::-;28988:74;;29071:93;29160:3;29071:93;:::i;:::-;29189:2;29184:3;29180:12;29173:19;;28832:366;;;:::o;29204:419::-;29370:4;29408:2;29397:9;29393:18;29385:26;;29457:9;29451:4;29447:20;29443:1;29432:9;29428:17;29421:47;29485:131;29611:4;29485:131;:::i;:::-;29477:139;;29204:419;;;:::o;29629:182::-;29769:34;29765:1;29757:6;29753:14;29746:58;29629:182;:::o;29817:366::-;29959:3;29980:67;30044:2;30039:3;29980:67;:::i;:::-;29973:74;;30056:93;30145:3;30056:93;:::i;:::-;30174:2;30169:3;30165:12;30158:19;;29817:366;;;:::o;30189:419::-;30355:4;30393:2;30382:9;30378:18;30370:26;;30442:9;30436:4;30432:20;30428:1;30417:9;30413:17;30406:47;30470:131;30596:4;30470:131;:::i;:::-;30462:139;;30189:419;;;:::o;30614:98::-;30665:6;30699:5;30693:12;30683:22;;30614:98;;;:::o;30718:168::-;30801:11;30835:6;30830:3;30823:19;30875:4;30870:3;30866:14;30851:29;;30718:168;;;;:::o;30892:373::-;30978:3;31006:38;31038:5;31006:38;:::i;:::-;31060:70;31123:6;31118:3;31060:70;:::i;:::-;31053:77;;31139:65;31197:6;31192:3;31185:4;31178:5;31174:16;31139:65;:::i;:::-;31229:29;31251:6;31229:29;:::i;:::-;31224:3;31220:39;31213:46;;30982:283;30892:373;;;;:::o;31271:640::-;31466:4;31504:3;31493:9;31489:19;31481:27;;31518:71;31586:1;31575:9;31571:17;31562:6;31518:71;:::i;:::-;31599:72;31667:2;31656:9;31652:18;31643:6;31599:72;:::i;:::-;31681;31749:2;31738:9;31734:18;31725:6;31681:72;:::i;:::-;31800:9;31794:4;31790:20;31785:2;31774:9;31770:18;31763:48;31828:76;31899:4;31890:6;31828:76;:::i;:::-;31820:84;;31271:640;;;;;;;:::o;31917:141::-;31973:5;32004:6;31998:13;31989:22;;32020:32;32046:5;32020:32;:::i;:::-;31917:141;;;;:::o;32064:349::-;32133:6;32182:2;32170:9;32161:7;32157:23;32153:32;32150:119;;;32188:79;;:::i;:::-;32150:119;32308:1;32333:63;32388:7;32379:6;32368:9;32364:22;32333:63;:::i;:::-;32323:73;;32279:127;32064:349;;;;:::o

Swarm Source

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