ETH Price: $3,485.95 (+3.69%)
Gas: 2 Gwei

Token

ShadowMonkeyComics (SMC)
 

Overview

Max Total Supply

2,330 SMC

Holders

331

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thadream.eth
Balance
2 SMC
0x35566a5b3adb28dd3fbc64434c87af09382e7e83
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:
ShadowMonkeyComics

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 100 runs

Other Settings:
default evmVersion
File 1 of 29 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 2 of 29 : AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControlEnumerable.sol";
import "./AccessControl.sol";
import "../utils/structs/EnumerableSet.sol";

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

File 3 of 29 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 4 of 29 : IAccessControlEnumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

File 5 of 29 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 6 of 29 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 7 of 29 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 8 of 29 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 9 of 29 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @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, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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 (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 10 of 29 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../utils/Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _burn(tokenId);
    }
}

File 11 of 29 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 12 of 29 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 13 of 29 : ERC721Royalty.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/ERC721Royalty.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../common/ERC2981.sol";
import "../../../utils/introspection/ERC165.sol";

/**
 * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment
 * information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC721Royalty is ERC2981, ERC721 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);
        _resetTokenRoyalty(tokenId);
    }
}

File 14 of 29 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 15 of 29 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

File 16 of 29 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token 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);
}

File 17 of 29 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 18 of 29 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

File 20 of 29 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 21 of 29 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 22 of 29 : Strings.sol
// SPDX-License-Identifier: MIT
// 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 23 of 29 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 24 of 29 : ERC721M.sol
// SPDX-License-Identifier: AGPL-3.0-only
// @author creco.xyz 🐊 2023 
    
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";


interface IMetadata {
  function tokenURI(uint256 tokenId, uint256 dna) external view returns (string memory);
}

abstract contract ERC721M is 
    Ownable,
    AccessControlEnumerable,
    ERC721Burnable,
    ERC721Enumerable,
    ERC721Pausable,
    ERC721Royalty,
    DefaultOperatorFilterer
 {

    using Strings for uint256;
    
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    uint public constant MAX_NFT_SUPPLY = 2330;
    uint public tokenTracker = 0; // first tokenId = 1

    bool public isFrozenDNA;
    bool public isStartingIndexSet;
    bool public useOperatorFilter = true;  // toggle OpenSea's filter

    string public baseTokenURI;
    address payable public beneficiary;
    uint public startIndex;

    mapping(uint256 => uint8) public dna; // 0 if not exists, 1 if exists
    mapping(uint256 => uint256) private tokenIdToDNA;
  
    IMetadata public metadata;

    struct NFT {
        uint256 tokenId;
        uint256 dna;
    }
    
    // permission modifiers
    modifier onlyAdmin {
         require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "ERC721Access: must have Admin role");
         _;
    } 

    modifier onlyMinter {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC721Access: must have Minter role");
        _;
    } 

    modifier onlyPauser {
         require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721Access: must have Pauser role");
        _;
    }

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

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

   constructor(
        string memory name,
        string memory symbol,
        string memory _baseTokenURI, 
        address payable _beneficiary
    ) ERC721(name, symbol) {
        baseTokenURI = _baseTokenURI;
        beneficiary = _beneficiary;
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); // set admin permissions
    }

    function setDefaultRoyalty(address receiver, uint96 feeNumerator) onlyAdmin public {
      _setDefaultRoyalty(receiver, feeNumerator);
    }

    function setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) onlyAdmin public {
      _setTokenRoyalty(tokenId, receiver, feeNumerator);
    }

    function setOperatorFilter(bool isActive) onlyAdmin public {
      useOperatorFilter = isActive;
    }

    function setMetadataContract(address _contractAddress) onlyAdmin public {
      metadata = IMetadata(_contractAddress);
    }

    function setBaseTokenURI(string memory _uri) onlyAdmin public {
      baseTokenURI = _uri;
    }

    function setBeneficiary(address payable _beneficiary) onlyAdmin public {
      beneficiary = _beneficiary;
    }
    
    function mintTo(address _to) onlyMinter public returns(uint256) {
      require(tokenTracker < MAX_NFT_SUPPLY, "ERC721M - max supply reached" );
      tokenTracker++;       
      _mint(_to, tokenTracker);
      return tokenTracker;
    }

    // calc costs
    function setDNA(uint256[] memory _tokenIds, uint256[] memory _dnaArr) onlyMinter public {
      require(!isFrozenDNA, "ERC721M - DNA is final for this collection");
      require(_tokenIds.length == _dnaArr.length, "ERC721M - DNA data missing");
      for (uint i = 0; i < _tokenIds.length; i++) {
        uint currentDNA = _dnaArr[i];
        uint currentTokenId = _tokenIds[i];
        require((currentTokenId <= MAX_NFT_SUPPLY && currentTokenId > 0), "ERC721M - DNA index not valid");
        require(dna[currentDNA] == 0, "ERC721M - DNA must be unique"); // make sure DNA is unique
        
        // free old DNA in case of DNA update
        uint oldDNA = tokenIdToDNA[currentTokenId];
        if(oldDNA != 0) {
          dna[oldDNA] = 0;
        }
        tokenIdToDNA[currentTokenId] = currentDNA;
        dna[currentDNA] = 1; // flag DNA 
      }
    }

    function freezeDNA() onlyAdmin public {
      isFrozenDNA = true;
    }

    function finalizeStartIndexTest() public view returns(uint) {
      uint256 rand = uint256(keccak256(abi.encodePacked(block.timestamp, _msgSender(), blockhash(block.number - 1))));
      uint256 _startIndex = rand % MAX_NFT_SUPPLY;
      return _startIndex;
    }

    // can only be called once 
    function finalizeStartIndex() public {
      require(!isStartingIndexSet, "ERC721M - startIndex has already been set");
      require((tokenTracker == MAX_NFT_SUPPLY), "ERC721M - Not all tokens minted");
      require((tokenIdToDNA[MAX_NFT_SUPPLY] != 0), "ERC721M - Not all DNA set");
      isStartingIndexSet = true;
      uint256 rand = uint256(keccak256(abi.encodePacked(block.timestamp, _msgSender(), blockhash(block.number - 1))));
      startIndex = rand % MAX_NFT_SUPPLY;
    }

    function getDNA(uint256 tokenId) public view returns(uint256) {
      uint256 dnaIndex = tokenId;
      if (isStartingIndexSet) {
        dnaIndex = (tokenId + startIndex) % MAX_NFT_SUPPLY;
        if (dnaIndex == 0) { // tokenId 0 does not exist 
          dnaIndex = MAX_NFT_SUPPLY;
        }
      }
      return tokenIdToDNA[dnaIndex];
    }

    function tokensOfOwner(address owner) public view returns (NFT[] memory) {  
      uint balance = balanceOf(owner);
      NFT[] memory tokensOwned = new NFT[](balance);
      for (uint256 i=0; i < balance; i++){
          uint tokenId = tokenOfOwnerByIndex(owner, i);
          tokensOwned[i].tokenId = tokenId;
          tokensOwned[i].dna =  getDNA(tokenId);
      }
      return tokensOwned;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
      require(_exists(tokenId), "ERC721M - URI query for nonexistent token");
      uint256 tokenDNA = getDNA(tokenId);
      if(address(metadata) != address(0x0)) {
        return metadata.tokenURI(tokenId, tokenDNA);
      }
      return bytes(baseTokenURI).length > 0 ? string(abi.encodePacked(baseTokenURI, tokenId.toString() )) : "";
    }

    function pause() onlyPauser public virtual {
        _pause();
    }

    function unpause() onlyPauser public virtual {
        _unpause();
    }

    function _burn(uint256 tokenId) internal virtual override(
      ERC721,
      ERC721Royalty
    ) {
      super._burn(tokenId);
    }

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

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

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

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

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
      super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override (
          AccessControlEnumerable, 
          ERC721, 
          ERC721Enumerable,
          ERC721Royalty
        )
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    } 
}

File 25 of 29 : ShadowMonkeyComics.sol
// SPDX-License-Identifier: AGPL-3.0-only
// @author creco.xyz 🐊 2023 
                                                                                             
pragma solidity ^0.8.17;
import "./lib/ERC721M.sol";

//    _____ _               _                 __  __             _                 _____                _          
//   / ____| |             | |               |  \/  |           | |               / ____|              (_)         
//  | (___ | |__   __ _  __| | _____      __ | \  / | ___  _ __ | | _____ _   _  | |     ___  _ __ ___  _  ___ ___ 
//   \___ \| '_ \ / _` |/ _` |/ _ \ \ /\ / / | |\/| |/ _ \| '_ \| |/ / _ \ | | | | |    / _ \| '_ ` _ \| |/ __/ __|
//   ____) | | | | (_| | (_| | (_) \ V  V /  | |  | | (_) | | | |   <  __/ |_| | | |___| (_) | | | | | | | (__\__ \
//  |_____/|_| |_|\__,_|\__,_|\___/ \_/\_/   |_|  |_|\___/|_| |_|_|\_\___|\__, |  \_____\___/|_| |_| |_|_|\___|___/
//                                                                         __/ |                                   
//                                                                        |___/                                                                                      
// ...............................................,,.....,*S#:...............................
// ..............................................?##S%*;;S@@@*.,:;;:.........................
// ............................................,:?@@@@@@@@@@@@S#@@@#,........................
// ........................................:+?S#@@@@@@@@@@@@@@@@@@@#;,.......................
// ......................................;%@@@@@@@@@@@@@@@@@@@@@@@@@@@S+,....................
// ....................................:%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#;...................
// ...................................;#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*..................
// ..................................:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+.................
// .................................,S@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,................
// .................................;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*................
// ..........................,;**?*+?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%................
// .,;+*+:,................,?@@@@@@@@@@@@@@@@@@%++*#@@@@@@@@@@@@@@##@@@@@@@@%..,,,...........
// +#@@@@@#S*;,............?@@@@@@@@@@@@@@@@@@?::::+@@@@@@@@@@@@%;::;#@@@@@@#%S###S?;........
// @@@@@@@@@@@#*:..........S@@@@@@@@@@@@@@@@@@*:::::S@@@@@@@@@@%:::::?@@@@@@@@@@@@@@@S;......
// +@@@@@@@@@@@@@%:........*@@@@@@@@@@@@@@@@@@S;:::+@@@@@@@@@@@%:::::S@@@@@@@@@@@@@@@@@;.....
// .;%#@@@@@@@@@@@@%:......,#@@@@@@@@@@@@@@@@@@@S%S@@@@@@@@@@@@@%*+*S@@@@@@@@@@@@@@@@@@%.....
// ...,;?#@@@@@@@@@@@?,.....:S@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@S.....
// ......,+S@@@@@@@@@@#;.....,*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#:.....
// .........;%@@@@@@@@@@+......,*S#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#?,......
// ...........;@@@@@@@@@@+........*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#S?;,........
// ............*@@@@@@@@@@;.....,?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+,,............
// ............,#@@@@@@@@@%.....;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#:.............
// .............%@@@@@@@@@@,....:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%.............
// .............S@@@@@@@@@S......*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@S.............
// ............:@@@@@@@@@@;.......+#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#;.............
// ............+@@@@@@@@#;.........,S@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+,..............
// ............*@@@@@@@#:..........*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%.................
// ............*@@@@@@@+.........,?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+................
// ............;@@@@@@@?........,S@@@@@@@@+%@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@:...............
// ............,@@@@@@@@;.......+@@@@@@@@@,;@@@@@@@@@@@@@@@@@@@@@#;,*@@@@@@@@#,..............
// .............%@@@@@@@@?;,....%@@@@@@@@#,,@@@@@@@@@@@@@@@@@@@@@;..+@@@@@@@@@%..............
// .............:@@@@@@@@@@#%*;:#@@@@@@@@@,,#@@@@@@@@@@@@@@@@@@@S...*@@@@@@@@@@+.............
// ..............;#@@@@@@@@@@@@@@@@@@@@@@@?%@@@@@@@@@@@@@@@@@@@@#:..%@@@@@@@@@@#,............
// ...............,?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#,.#@@@@@@@@@@#.............
// .................,+S@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?+@@@@@@@@@@@#+............
// ....................,;?S@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%...........
// ........................:*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?..........
// ........................:S@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?.........
// .......................+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@;........
// ......................;#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@S:.......
// ....................;%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#%;....
// ..................:S@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@S;..
// ..................*@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*.
// ..................,+%#@@@@@@S,?@@@@@@@@@@@@@@%++*???%%%?*****%@@@@@@@@@@@@@@@@@@@@@@@@@@@?
// .....................,+%S%?+,.;@@@@@@@@@@@@@;.................S@@@@@@@@@@@@S%#@@@@@@@@@@@S
// ..............................+@@@@@@@@@@@@@*.................*@@@@@@@@@@@S..,*#@@@@@@%+:,
// ..............................,?SSSSSSSS%%%%+.................?@@@@@@@@@@@#,...,;*%%?;....
// ..............................................................,;++***????*:...............
// ..........................................................................................
// ..........................................................................................
// ................................................................................,.........


contract ShadowMonkeyComics is ERC721M {

    constructor(string memory _name, string memory _symbol, string memory _baseUri, address payable _beneficiary) 
    ERC721M(_name, _symbol, _baseUri, _beneficiary) {
    }

}

File 26 of 29 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

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

File 27 of 29 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 28 of 29 : Constants.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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

File 29 of 29 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

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

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 100
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address payable","name":"_beneficiary","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beneficiary","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dna","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalizeStartIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalizeStartIndexTest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeDNA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getDNA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isFrozenDNA","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isStartingIndexSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"contract IMetadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_beneficiary","type":"address"}],"name":"setBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_dnaArr","type":"uint256[]"}],"name":"setDNA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"setMetadataContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setOperatorFilter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenTracker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"dna","type":"uint256"}],"internalType":"struct ERC721M.NFT[]","name":"","type":"tuple[]"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useOperatorFilter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

608060405260006010556011805462ff00001916620100001790553480156200002757600080fd5b5060405162004085380380620040858339810160408190526200004a9162000492565b83838383733cc6cdda760b79bafa08df41ecfa224f810dceb660018585620000723362000230565b6005620000808382620005d3565b5060066200008f8282620005d3565b5050600f805460ff19169055506daaeb6d7670e522a718067333cd4e3b15620001e15780156200012f57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200011057600080fd5b505af115801562000125573d6000803e3d6000fd5b50505050620001e1565b6001600160a01b03821615620001805760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000f5565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001c757600080fd5b505af1158015620001dc573d6000803e3d6000fd5b505050505b5060129050620001f28382620005d3565b50601380546001600160a01b0319166001600160a01b0383161790556200022260006200021c3390565b62000280565b50505050505050506200069f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200028c828262000290565b5050565b620002a78282620002d360201b620018241760201c565b6000828152600260209081526040909120620002ce9183906200188f6200035b821b17901c565b505050565b60008281526001602090815260408083206001600160a01b038516845290915290205460ff166200028c5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b600062000372836001600160a01b0384166200037b565b90505b92915050565b6000818152600183016020526040812054620003c45750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000375565b50600062000375565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003f557600080fd5b81516001600160401b0380821115620004125762000412620003cd565b604051601f8301601f19908116603f011681019082821181831017156200043d576200043d620003cd565b816040528381526020925086838588010111156200045a57600080fd5b600091505b838210156200047e57858201830151818301840152908201906200045f565b600093810190920192909252949350505050565b60008060008060808587031215620004a957600080fd5b84516001600160401b0380821115620004c157600080fd5b620004cf88838901620003e3565b95506020870151915080821115620004e657600080fd5b620004f488838901620003e3565b945060408701519150808211156200050b57600080fd5b506200051a87828801620003e3565b606087015190935090506001600160a01b03811681146200053a57600080fd5b939692955090935050565b600181811c908216806200055a57607f821691505b6020821081036200057b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ce57600081815260208120601f850160051c81016020861015620005aa5750805b601f850160051c820191505b81811015620005cb57828155600101620005b6565b505050505050565b81516001600160401b03811115620005ef57620005ef620003cd565b620006078162000600845462000545565b8462000581565b602080601f8311600181146200063f5760008415620006265750858301515b600019600386901b1c1916600185901b178555620005cb565b600085815260208120601f198616915b8281101562000670578886015182559484019460019091019084016200064f565b50858210156200068f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6139d680620006af6000396000f3fe608060405234801561001057600080fd5b506004361061030e5760003560e01c80635c975abb1161019e578063b88d4fde116100ef578063d547741f1161009d578063d547741f146106a8578063d547cfb7146106bb578063d5bbe924146106c3578063e5187f43146106d6578063e63ab1e9146106e9578063e985e9c5146106fe578063f2fde38b14610711578063f666ec311461072457600080fd5b8063b88d4fde14610631578063c87b56dd14610644578063ca15c87314610657578063cf4e986e1461066a578063cf62e9ca1461067d578063d258810114610686578063d53913931461069357600080fd5b80638da5cb5b1161014c5780638da5cb5b146105ce5780639010d07c146105df57806391d14854146105f257806395d89b4114610605578063a217fddf1461060d578063a22cb46514610615578063b5077f441461062857600080fd5b80635c975abb1461055a5780636352211e1461056557806370a0823114610578578063715018a61461058b578063755edd17146105935780638456cb59146105a65780638462151c146105ae57600080fd5b8063373807ae1161026357806342966c681161021157806342966c68146104e45780634a34bf85146104f75780634f6ccce7146104ff5780635882581c146105125780635944c7531461051a5780635a01a2501461052d5780635bb209a5146105355780635c4448ae1461054857600080fd5b8063373807ae1461047257806338af3eed14610485578063392f37e9146104985780633e0e828b146104ab5780633f4ba83a146104b457806341f43434146104bc57806342842e0e146104d157600080fd5b806323b872dd116102c057806323b872dd146103bd578063248a9ca3146103d05780632a55205a146103f45780632f2ff15d146104265780632f745c591461043957806330176e131461044c57806336568abe1461045f57600080fd5b806301ffc9a71461031357806304634d8d1461033b57806306fdde0314610350578063081812fc14610365578063095ea7b31461038557806318160ddd146103985780631c31f710146103aa575b600080fd5b610326610321366004612dcb565b610759565b60405190151581526020015b60405180910390f35b61034e610349366004612e14565b61076a565b005b6103586107a8565b6040516103329190612e99565b610378610373366004612eac565b61083a565b6040516103329190612ec5565b61034e610393366004612ed9565b610861565b600d545b604051908152602001610332565b61034e6103b8366004612f05565b61088c565b61034e6103cb366004612f22565b6108d5565b61039c6103de366004612eac565b6000908152600160208190526040909120015490565b610407610402366004612f63565b610916565b604080516001600160a01b039093168352602083019190915201610332565b61034e610434366004612f85565b6109c2565b61039c610447366004612ed9565b6109e8565b61034e61045a366004613060565b610a7e565b61034e61046d366004612f85565b610ab1565b61034e610480366004613127565b610b2b565b601354610378906001600160a01b031681565b601754610378906001600160a01b031681565b61039c60145481565b61034e610d81565b6103786daaeb6d7670e522a718067333cd4e81565b61034e6104df366004612f22565b610dbf565b61034e6104f2366004612eac565b610dfa565b61039c610e2d565b61039c61050d366004612eac565b610e7f565b61034e610f12565b61034e61052836600461318a565b610f48565b61034e610f7a565b61039c610543366004612eac565b611113565b60115461032690610100900460ff1681565b600f5460ff16610326565b610378610573366004612eac565b611167565b61039c610586366004612f05565b61119c565b61034e611222565b61039c6105a1366004612f05565b611234565b61034e6112e8565b6105c16105bc366004612f05565b611324565b60405161033291906131c8565b6000546001600160a01b0316610378565b6103786105ed366004612f63565b611411565b610326610600366004612f85565b611429565b610358611454565b61039c600081565b61034e610623366004613225565b611463565b61039c61091a81565b61034e61063f366004613253565b611489565b610358610652366004612eac565b6114cc565b61039c610665366004612eac565b611629565b61034e6106783660046132d2565b611640565b61039c60105481565b6011546103269060ff1681565b61039c60008051602061396183398151915281565b61034e6106b6366004612f85565b611683565b6103586116a9565b6011546103269062010000900460ff1681565b61034e6106e4366004612f05565b611737565b61039c60008051602061394183398151915281565b61032661070c3660046132ef565b611780565b61034e61071f366004612f05565b6117ae565b610747610732366004612eac565b60156020526000908152604090205460ff1681565b60405160ff9091168152602001610332565b6000610764826118a4565b92915050565b610775600033611429565b61079a5760405162461bcd60e51b81526004016107919061331d565b60405180910390fd5b6107a482826118af565b5050565b6060600580546107b79061335f565b80601f01602080910402602001604051908101604052809291908181526020018280546107e39061335f565b80156108305780601f1061080557610100808354040283529160200191610830565b820191906000526020600020905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b600061084582611965565b506000908152600960205260409020546001600160a01b031690565b601154829062010000900460ff161561087d5761087d8161198a565b6108878383611a3a565b505050565b610897600033611429565b6108b35760405162461bcd60e51b81526004016107919061331d565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b03811633148015906108f7575060115462010000900460ff165b15610905576109053361198a565b610910848484611b4a565b50505050565b60008281526004602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161098b5750604080518082019091526003546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906109aa906001600160601b0316876133af565b6109b491906133dc565b915196919550909350505050565b600082815260016020819052604090912001546109de81611b7a565b6108878383611b84565b60006109f38361119c565b8210610a555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610791565b506001600160a01b03919091166000908152600b60209081526040808320938352929052205490565b610a89600033611429565b610aa55760405162461bcd60e51b81526004016107919061331d565b60126107a4828261343e565b6001600160a01b0381163314610b215760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610791565b6107a48282611ba6565b610b4360008051602061396183398151915233611429565b610b5f5760405162461bcd60e51b8152600401610791906134fd565b60115460ff1615610bc55760405162461bcd60e51b815260206004820152602a60248201527f4552433732314d202d20444e412069732066696e616c20666f7220746869732060448201526931b7b63632b1ba34b7b760b11b6064820152608401610791565b8051825114610c165760405162461bcd60e51b815260206004820152601a60248201527f4552433732314d202d20444e412064617461206d697373696e670000000000006044820152606401610791565b60005b8251811015610887576000828281518110610c3657610c36613540565b602002602001015190506000848381518110610c5457610c54613540565b6020026020010151905061091a8111158015610c705750600081115b610cbc5760405162461bcd60e51b815260206004820152601d60248201527f4552433732314d202d20444e4120696e646578206e6f742076616c69640000006044820152606401610791565b60008281526015602052604090205460ff1615610d1b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732314d202d20444e41206d75737420626520756e69717565000000006044820152606401610791565b6000818152601660205260409020548015610d47576000818152601560205260409020805460ff191690555b5060009081526016602090815260408083208490559282526015905220805460ff1916600117905580610d7981613556565b915050610c19565b610d9960008051602061394183398151915233611429565b610db55760405162461bcd60e51b81526004016107919061356f565b610dbd611bc8565b565b826001600160a01b0381163314801590610de1575060115462010000900460ff165b15610def57610def3361198a565b610910848484611c14565b610e05335b82611c2f565b610e215760405162461bcd60e51b8152600401610791906135b2565b610e2a81611c8e565b50565b6000804233610e3d600143613600565b40604051602001610e5093929190613613565b60408051601f19818403018152919052805160209091012090506000610e7861091a8361363b565b9392505050565b6000610e8a600d5490565b8210610eed5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610791565b600d8281548110610f0057610f00613540565b90600052602060002001549050919050565b610f1d600033611429565b610f395760405162461bcd60e51b81526004016107919061331d565b6011805460ff19166001179055565b610f53600033611429565b610f6f5760405162461bcd60e51b81526004016107919061331d565b610887838383611c97565b601154610100900460ff1615610fe45760405162461bcd60e51b815260206004820152602960248201527f4552433732314d202d207374617274496e6465782068617320616c7265616479604482015268081899595b881cd95d60ba1b6064820152608401610791565b61091a601054146110375760405162461bcd60e51b815260206004820152601f60248201527f4552433732314d202d204e6f7420616c6c20746f6b656e73206d696e746564006044820152606401610791565b61091a600090815260166020527f6a520dada05815d304432510579abaed02df82700b252f83b10338163b5a8dff5490036110b05760405162461bcd60e51b8152602060048201526019602482015278115490cdcc8c53480b48139bdd08185b1b08111390481cd95d603a1b6044820152606401610791565b6011805461ff0019166101001790556000426110c93390565b6110d4600143613600565b406040516020016110e793929190613613565b60408051601f198184030181529190528051602090910120905061110d61091a8261363b565b60145550565b6011546000908290610100900460ff16156111525761091a60145484611139919061364f565b611143919061363b565b905080600003611152575061091a5b60009081526016602052604090205492915050565b6000818152600760205260408120546001600160a01b0316806107645760405162461bcd60e51b815260040161079190613662565b60006001600160a01b0382166112065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610791565b506001600160a01b031660009081526008602052604090205490565b61122a611d62565b610dbd6000611dbc565b600061124e60008051602061396183398151915233611429565b61126a5760405162461bcd60e51b8152600401610791906134fd565b61091a601054106112bd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732314d202d206d617820737570706c792072656163686564000000006044820152606401610791565b601080549060006112cd83613556565b91905055506112de82601054611e0c565b506010545b919050565b61130060008051602061394183398151915233611429565b61131c5760405162461bcd60e51b81526004016107919061356f565b610dbd611f39565b606060006113318361119c565b90506000816001600160401b0381111561134d5761134d612fb5565b60405190808252806020026020018201604052801561139257816020015b604080518082019091526000808252602082015281526020019060019003908161136b5790505b50905060005b828110156114095760006113ac86836109e8565b9050808383815181106113c1576113c1613540565b6020908102919091010151526113d681611113565b8383815181106113e8576113e8613540565b6020908102919091018101510152508061140181613556565b915050611398565b509392505050565b6000828152600260205260408120610e789083611f76565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546107b79061335f565b601154829062010000900460ff161561147f5761147f8161198a565b6108878383611f82565b836001600160a01b03811633148015906114ab575060115462010000900460ff165b156114b9576114b93361198a565b6114c585858585611f8d565b5050505050565b60606114d782611fbf565b6115355760405162461bcd60e51b815260206004820152602960248201527f4552433732314d202d2055524920717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610791565b600061154083611113565b6017549091506001600160a01b0316156115cc576017546040516392cb829d60e01b815260048101859052602481018390526001600160a01b03909116906392cb829d90604401600060405180830381865afa1580156115a4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e789190810190613694565b6000601280546115db9061335f565b9050116115f75760405180602001604052806000815250610e78565b601261160284611fdc565b60405160200161161392919061370a565b6040516020818303038152906040529392505050565b6000818152600260205260408120610764906120dc565b61164b600033611429565b6116675760405162461bcd60e51b81526004016107919061331d565b60118054911515620100000262ff000019909216919091179055565b6000828152600160208190526040909120015461169f81611b7a565b6108878383611ba6565b601280546116b69061335f565b80601f01602080910402602001604051908101604052809291908181526020018280546116e29061335f565b801561172f5780601f106117045761010080835404028352916020019161172f565b820191906000526020600020905b81548152906001019060200180831161171257829003601f168201915b505050505081565b611742600033611429565b61175e5760405162461bcd60e51b81526004016107919061331d565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b6117b6611d62565b6001600160a01b03811661181b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610791565b610e2a81611dbc565b61182e8282611429565b6107a45760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000610e78836001600160a01b0384166120e6565b600061076482612135565b6127106001600160601b03821611156118da5760405162461bcd60e51b815260040161079190613791565b6001600160a01b03821661192c5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401610791565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600355565b61196e81611fbf565b610e2a5760405162461bcd60e51b815260040161079190613662565b6daaeb6d7670e522a718067333cd4e3b15610e2a57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156119f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1b91906137db565b610e2a5780604051633b79c77360e21b81526004016107919190612ec5565b6000611a4582611167565b9050806001600160a01b0316836001600160a01b031603611ab25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610791565b336001600160a01b0382161480611ace5750611ace8133611780565b611b405760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610791565b610887838361215a565b611b5333610dff565b611b6f5760405162461bcd60e51b8152600401610791906135b2565b6108878383836121c8565b610e2a813361235d565b611b8e8282611824565b6000828152600260205260409020610887908261188f565b611bb082826123c1565b60008281526002602052604090206108879082612428565b611bd061243d565b600f805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604051611c0a9190612ec5565b60405180910390a1565b61088783838360405180602001604052806000815250611489565b600080611c3b83611167565b9050806001600160a01b0316846001600160a01b03161480611c625750611c628185611780565b80611c865750836001600160a01b0316611c7b8461083a565b6001600160a01b0316145b949350505050565b610e2a81612486565b6127106001600160601b0382161115611cc25760405162461bcd60e51b815260040161079190613791565b6001600160a01b038216611d185760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610791565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600490529190942093519051909116600160a01b029116179055565b6000546001600160a01b03163314610dbd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610791565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216611e625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610791565b611e6b81611fbf565b15611eb85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610791565b611ec4600083836124a0565b6001600160a01b0382166000908152600860205260408120805460019290611eed90849061364f565b909155505060008181526007602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020613981833981519152908290a45050565b611f416124ab565b600f805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bfd3390565b6000610e7883836124f1565b6107a433838361251b565b611f973383611c2f565b611fb35760405162461bcd60e51b8152600401610791906135b2565b610910848484846125e5565b6000908152600760205260409020546001600160a01b0316151590565b6060816000036120035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561202d578061201781613556565b91506120269050600a836133dc565b9150612007565b6000816001600160401b0381111561204757612047612fb5565b6040519080825280601f01601f191660200182016040528015612071576020820181803683370190505b5090505b8415611c8657612086600183613600565b9150612093600a8661363b565b61209e90603061364f565b60f81b8183815181106120b3576120b3613540565b60200101906001600160f81b031916908160001a9053506120d5600a866133dc565b9450612075565b6000610764825490565b600081815260018301602052604081205461212d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610764565b506000610764565b60006001600160e01b0319821663780e9d6360e01b1480610764575061076482612618565b600081815260096020526040902080546001600160a01b0319166001600160a01b038416908117909155819061218f82611167565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b03166121db82611167565b6001600160a01b03161461223f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610791565b6001600160a01b0382166122a15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610791565b6122ac8383836124a0565b6122b760008261215a565b6001600160a01b03831660009081526008602052604081208054600192906122e0908490613600565b90915550506001600160a01b038216600090815260086020526040812080546001929061230e90849061364f565b909155505060008181526007602052604080822080546001600160a01b0319166001600160a01b03868116918217909255915184939187169160008051602061398183398151915291a4505050565b6123678282611429565b6107a45761237f816001600160a01b03166014612658565b61238a836020612658565b60405160200161239b9291906137f8565b60408051601f198184030181529082905262461bcd60e51b825261079191600401612e99565b6123cb8282611429565b156107a45760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610e78836001600160a01b0384166127f3565b600f5460ff16610dbd5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610791565b61248f816128e6565b600090815260046020526040812055565b61088783838361297b565b600f5460ff1615610dbd5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610791565b600082600001828154811061250857612508613540565b9060005260206000200154905092915050565b816001600160a01b0316836001600160a01b0316036125785760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610791565b6001600160a01b038381166000818152600a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6125f08484846121c8565b6125fc848484846129ed565b6109105760405162461bcd60e51b815260040161079190613867565b60006001600160e01b031982166380ac58cd60e01b148061264957506001600160e01b03198216635b5e139f60e01b145b80610764575061076482612aee565b606060006126678360026133af565b61267290600261364f565b6001600160401b0381111561268957612689612fb5565b6040519080825280601f01601f1916602001820160405280156126b3576020820181803683370190505b509050600360fc1b816000815181106126ce576126ce613540565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106126fd576126fd613540565b60200101906001600160f81b031916908160001a90535060006127218460026133af565b61272c90600161364f565b90505b60018111156127a4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061276057612760613540565b1a60f81b82828151811061277657612776613540565b60200101906001600160f81b031916908160001a90535060049490941c9361279d816138b9565b905061272f565b508315610e785760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610791565b600081815260018301602052604081205480156128dc576000612817600183613600565b855490915060009061282b90600190613600565b905081811461289057600086600001828154811061284b5761284b613540565b906000526020600020015490508087600001848154811061286e5761286e613540565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806128a1576128a16138d0565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610764565b6000915050610764565b60006128f182611167565b90506128ff816000846124a0565b61290a60008361215a565b6001600160a01b0381166000908152600860205260408120805460019290612933908490613600565b909155505060008281526007602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020613981833981519152908390a45050565b612986838383612b13565b600f5460ff16156108875760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610791565b60006001600160a01b0384163b15612ae357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a319033908990889088906004016138e6565b6020604051808303816000875af1925050508015612a6c575060408051601f3d908101601f19168201909252612a6991810190613923565b60015b612ac9573d808015612a9a576040519150601f19603f3d011682016040523d82523d6000602084013e612a9f565b606091505b508051600003612ac15760405162461bcd60e51b815260040161079190613867565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c86565b506001949350505050565b60006001600160e01b0319821663152a902d60e11b1480610764575061076482612bcb565b6001600160a01b038316612b6e57612b6981600d80546000838152600e60205260408120829055600182018355919091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50155565b612b91565b816001600160a01b0316836001600160a01b031614612b9157612b918382612bf0565b6001600160a01b038216612ba85761088781612c8d565b826001600160a01b0316826001600160a01b031614610887576108878282612d3c565b60006001600160e01b03198216635a05180f60e01b1480610764575061076482612d80565b60006001612bfd8461119c565b612c079190613600565b6000838152600c6020526040902054909150808214612c5a576001600160a01b0384166000908152600b602090815260408083208584528252808320548484528184208190558352600c90915290208190555b506000918252600c602090815260408084208490556001600160a01b039094168352600b81528383209183525290812055565b600d54600090612c9f90600190613600565b6000838152600e6020526040812054600d8054939450909284908110612cc757612cc7613540565b9060005260206000200154905080600d8381548110612ce857612ce8613540565b6000918252602080832090910192909255828152600e9091526040808220849055858252812055600d805480612d2057612d206138d0565b6001900381819060005260206000200160009055905550505050565b6000612d478361119c565b6001600160a01b039093166000908152600b602090815260408083208684528252808320859055938252600c9052919091209190915550565b60006001600160e01b03198216637965db0b60e01b148061076457506301ffc9a760e01b6001600160e01b0319831614610764565b6001600160e01b031981168114610e2a57600080fd5b600060208284031215612ddd57600080fd5b8135610e7881612db5565b6001600160a01b0381168114610e2a57600080fd5b80356001600160601b03811681146112e357600080fd5b60008060408385031215612e2757600080fd5b8235612e3281612de8565b9150612e4060208401612dfd565b90509250929050565b60005b83811015612e64578181015183820152602001612e4c565b50506000910152565b60008151808452612e85816020860160208601612e49565b601f01601f19169290920160200192915050565b602081526000610e786020830184612e6d565b600060208284031215612ebe57600080fd5b5035919050565b6001600160a01b0391909116815260200190565b60008060408385031215612eec57600080fd5b8235612ef781612de8565b946020939093013593505050565b600060208284031215612f1757600080fd5b8135610e7881612de8565b600080600060608486031215612f3757600080fd5b8335612f4281612de8565b92506020840135612f5281612de8565b929592945050506040919091013590565b60008060408385031215612f7657600080fd5b50508035926020909101359150565b60008060408385031215612f9857600080fd5b823591506020830135612faa81612de8565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612ff357612ff3612fb5565b604052919050565b60006001600160401b0382111561301457613014612fb5565b50601f01601f191660200190565b600061303561303084612ffb565b612fcb565b905082815283838301111561304957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561307257600080fd5b81356001600160401b0381111561308857600080fd5b8201601f8101841361309957600080fd5b611c8684823560208401613022565b600082601f8301126130b957600080fd5b813560206001600160401b038211156130d4576130d4612fb5565b8160051b6130e3828201612fcb565b92835284810182019282810190878511156130fd57600080fd5b83870192505b8483101561311c57823582529183019190830190613103565b979650505050505050565b6000806040838503121561313a57600080fd5b82356001600160401b038082111561315157600080fd5b61315d868387016130a8565b9350602085013591508082111561317357600080fd5b50613180858286016130a8565b9150509250929050565b60008060006060848603121561319f57600080fd5b8335925060208401356131b181612de8565b91506131bf60408501612dfd565b90509250925092565b602080825282518282018190526000919060409081850190868401855b8281101561320a578151805185528601518685015292840192908501906001016131e5565b5091979650505050505050565b8015158114610e2a57600080fd5b6000806040838503121561323857600080fd5b823561324381612de8565b91506020830135612faa81613217565b6000806000806080858703121561326957600080fd5b843561327481612de8565b9350602085013561328481612de8565b92506040850135915060608501356001600160401b038111156132a657600080fd5b8501601f810187136132b757600080fd5b6132c687823560208401613022565b91505092959194509250565b6000602082840312156132e457600080fd5b8135610e7881613217565b6000806040838503121561330257600080fd5b823561330d81612de8565b91506020830135612faa81612de8565b60208082526022908201527f4552433732314163636573733a206d75737420686176652041646d696e20726f6040820152616c6560f01b606082015260800190565b600181811c9082168061337357607f821691505b60208210810361339357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761076457610764613399565b634e487b7160e01b600052601260045260246000fd5b6000826133eb576133eb6133c6565b500490565b601f82111561088757600081815260208120601f850160051c810160208610156134175750805b601f850160051c820191505b8181101561343657828155600101613423565b505050505050565b81516001600160401b0381111561345757613457612fb5565b61346b81613465845461335f565b846133f0565b602080601f8311600181146134a057600084156134885750858301515b600019600386901b1c1916600185901b178555613436565b600085815260208120601f198616915b828110156134cf578886015182559484019460019091019084016134b0565b50858210156134ed5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526023908201527f4552433732314163636573733a206d7573742068617665204d696e74657220726040820152626f6c6560e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006001820161356857613568613399565b5060010190565b60208082526023908201527f4552433732314163636573733a206d75737420686176652050617573657220726040820152626f6c6560e81b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b8181038181111561076457610764613399565b92835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b60008261364a5761364a6133c6565b500690565b8082018082111561076457610764613399565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b6000602082840312156136a657600080fd5b81516001600160401b038111156136bc57600080fd5b8201601f810184136136cd57600080fd5b80516136db61303082612ffb565b8181528560208385010111156136f057600080fd5b613701826020830160208601612e49565b95945050505050565b60008084546137188161335f565b60018281168015613730576001811461374557613774565b60ff1984168752821515830287019450613774565b8860005260208060002060005b8581101561376b5781548a820152908401908201613752565b50505082870194505b505050508351613788818360208801612e49565b01949350505050565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b6000602082840312156137ed57600080fd5b8151610e7881613217565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b81526000835161382a816017850160208801612e49565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161385b816028840160208801612e49565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000816138c8576138c8613399565b506000190190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061391990830184612e6d565b9695505050505050565b60006020828403121561393557600080fd5b8151610e7881612db556fe65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212205c9a684656075a46e11d25d19186ca332dbfab74e52edbb50370dc16ad20ecee64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000005c3385b7105a69eb94a5293a198f3a1a5918f9940000000000000000000000000000000000000000000000000000000000000012536861646f774d6f6e6b6579436f6d69637300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534d430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f637265636f2e78797a2f6170692f6d6574612f736861646f772d6d6f6e6b65792d636f6d6963732f00000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061030e5760003560e01c80635c975abb1161019e578063b88d4fde116100ef578063d547741f1161009d578063d547741f146106a8578063d547cfb7146106bb578063d5bbe924146106c3578063e5187f43146106d6578063e63ab1e9146106e9578063e985e9c5146106fe578063f2fde38b14610711578063f666ec311461072457600080fd5b8063b88d4fde14610631578063c87b56dd14610644578063ca15c87314610657578063cf4e986e1461066a578063cf62e9ca1461067d578063d258810114610686578063d53913931461069357600080fd5b80638da5cb5b1161014c5780638da5cb5b146105ce5780639010d07c146105df57806391d14854146105f257806395d89b4114610605578063a217fddf1461060d578063a22cb46514610615578063b5077f441461062857600080fd5b80635c975abb1461055a5780636352211e1461056557806370a0823114610578578063715018a61461058b578063755edd17146105935780638456cb59146105a65780638462151c146105ae57600080fd5b8063373807ae1161026357806342966c681161021157806342966c68146104e45780634a34bf85146104f75780634f6ccce7146104ff5780635882581c146105125780635944c7531461051a5780635a01a2501461052d5780635bb209a5146105355780635c4448ae1461054857600080fd5b8063373807ae1461047257806338af3eed14610485578063392f37e9146104985780633e0e828b146104ab5780633f4ba83a146104b457806341f43434146104bc57806342842e0e146104d157600080fd5b806323b872dd116102c057806323b872dd146103bd578063248a9ca3146103d05780632a55205a146103f45780632f2ff15d146104265780632f745c591461043957806330176e131461044c57806336568abe1461045f57600080fd5b806301ffc9a71461031357806304634d8d1461033b57806306fdde0314610350578063081812fc14610365578063095ea7b31461038557806318160ddd146103985780631c31f710146103aa575b600080fd5b610326610321366004612dcb565b610759565b60405190151581526020015b60405180910390f35b61034e610349366004612e14565b61076a565b005b6103586107a8565b6040516103329190612e99565b610378610373366004612eac565b61083a565b6040516103329190612ec5565b61034e610393366004612ed9565b610861565b600d545b604051908152602001610332565b61034e6103b8366004612f05565b61088c565b61034e6103cb366004612f22565b6108d5565b61039c6103de366004612eac565b6000908152600160208190526040909120015490565b610407610402366004612f63565b610916565b604080516001600160a01b039093168352602083019190915201610332565b61034e610434366004612f85565b6109c2565b61039c610447366004612ed9565b6109e8565b61034e61045a366004613060565b610a7e565b61034e61046d366004612f85565b610ab1565b61034e610480366004613127565b610b2b565b601354610378906001600160a01b031681565b601754610378906001600160a01b031681565b61039c60145481565b61034e610d81565b6103786daaeb6d7670e522a718067333cd4e81565b61034e6104df366004612f22565b610dbf565b61034e6104f2366004612eac565b610dfa565b61039c610e2d565b61039c61050d366004612eac565b610e7f565b61034e610f12565b61034e61052836600461318a565b610f48565b61034e610f7a565b61039c610543366004612eac565b611113565b60115461032690610100900460ff1681565b600f5460ff16610326565b610378610573366004612eac565b611167565b61039c610586366004612f05565b61119c565b61034e611222565b61039c6105a1366004612f05565b611234565b61034e6112e8565b6105c16105bc366004612f05565b611324565b60405161033291906131c8565b6000546001600160a01b0316610378565b6103786105ed366004612f63565b611411565b610326610600366004612f85565b611429565b610358611454565b61039c600081565b61034e610623366004613225565b611463565b61039c61091a81565b61034e61063f366004613253565b611489565b610358610652366004612eac565b6114cc565b61039c610665366004612eac565b611629565b61034e6106783660046132d2565b611640565b61039c60105481565b6011546103269060ff1681565b61039c60008051602061396183398151915281565b61034e6106b6366004612f85565b611683565b6103586116a9565b6011546103269062010000900460ff1681565b61034e6106e4366004612f05565b611737565b61039c60008051602061394183398151915281565b61032661070c3660046132ef565b611780565b61034e61071f366004612f05565b6117ae565b610747610732366004612eac565b60156020526000908152604090205460ff1681565b60405160ff9091168152602001610332565b6000610764826118a4565b92915050565b610775600033611429565b61079a5760405162461bcd60e51b81526004016107919061331d565b60405180910390fd5b6107a482826118af565b5050565b6060600580546107b79061335f565b80601f01602080910402602001604051908101604052809291908181526020018280546107e39061335f565b80156108305780601f1061080557610100808354040283529160200191610830565b820191906000526020600020905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b600061084582611965565b506000908152600960205260409020546001600160a01b031690565b601154829062010000900460ff161561087d5761087d8161198a565b6108878383611a3a565b505050565b610897600033611429565b6108b35760405162461bcd60e51b81526004016107919061331d565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b03811633148015906108f7575060115462010000900460ff165b15610905576109053361198a565b610910848484611b4a565b50505050565b60008281526004602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161098b5750604080518082019091526003546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906109aa906001600160601b0316876133af565b6109b491906133dc565b915196919550909350505050565b600082815260016020819052604090912001546109de81611b7a565b6108878383611b84565b60006109f38361119c565b8210610a555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610791565b506001600160a01b03919091166000908152600b60209081526040808320938352929052205490565b610a89600033611429565b610aa55760405162461bcd60e51b81526004016107919061331d565b60126107a4828261343e565b6001600160a01b0381163314610b215760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610791565b6107a48282611ba6565b610b4360008051602061396183398151915233611429565b610b5f5760405162461bcd60e51b8152600401610791906134fd565b60115460ff1615610bc55760405162461bcd60e51b815260206004820152602a60248201527f4552433732314d202d20444e412069732066696e616c20666f7220746869732060448201526931b7b63632b1ba34b7b760b11b6064820152608401610791565b8051825114610c165760405162461bcd60e51b815260206004820152601a60248201527f4552433732314d202d20444e412064617461206d697373696e670000000000006044820152606401610791565b60005b8251811015610887576000828281518110610c3657610c36613540565b602002602001015190506000848381518110610c5457610c54613540565b6020026020010151905061091a8111158015610c705750600081115b610cbc5760405162461bcd60e51b815260206004820152601d60248201527f4552433732314d202d20444e4120696e646578206e6f742076616c69640000006044820152606401610791565b60008281526015602052604090205460ff1615610d1b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732314d202d20444e41206d75737420626520756e69717565000000006044820152606401610791565b6000818152601660205260409020548015610d47576000818152601560205260409020805460ff191690555b5060009081526016602090815260408083208490559282526015905220805460ff1916600117905580610d7981613556565b915050610c19565b610d9960008051602061394183398151915233611429565b610db55760405162461bcd60e51b81526004016107919061356f565b610dbd611bc8565b565b826001600160a01b0381163314801590610de1575060115462010000900460ff165b15610def57610def3361198a565b610910848484611c14565b610e05335b82611c2f565b610e215760405162461bcd60e51b8152600401610791906135b2565b610e2a81611c8e565b50565b6000804233610e3d600143613600565b40604051602001610e5093929190613613565b60408051601f19818403018152919052805160209091012090506000610e7861091a8361363b565b9392505050565b6000610e8a600d5490565b8210610eed5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610791565b600d8281548110610f0057610f00613540565b90600052602060002001549050919050565b610f1d600033611429565b610f395760405162461bcd60e51b81526004016107919061331d565b6011805460ff19166001179055565b610f53600033611429565b610f6f5760405162461bcd60e51b81526004016107919061331d565b610887838383611c97565b601154610100900460ff1615610fe45760405162461bcd60e51b815260206004820152602960248201527f4552433732314d202d207374617274496e6465782068617320616c7265616479604482015268081899595b881cd95d60ba1b6064820152608401610791565b61091a601054146110375760405162461bcd60e51b815260206004820152601f60248201527f4552433732314d202d204e6f7420616c6c20746f6b656e73206d696e746564006044820152606401610791565b61091a600090815260166020527f6a520dada05815d304432510579abaed02df82700b252f83b10338163b5a8dff5490036110b05760405162461bcd60e51b8152602060048201526019602482015278115490cdcc8c53480b48139bdd08185b1b08111390481cd95d603a1b6044820152606401610791565b6011805461ff0019166101001790556000426110c93390565b6110d4600143613600565b406040516020016110e793929190613613565b60408051601f198184030181529190528051602090910120905061110d61091a8261363b565b60145550565b6011546000908290610100900460ff16156111525761091a60145484611139919061364f565b611143919061363b565b905080600003611152575061091a5b60009081526016602052604090205492915050565b6000818152600760205260408120546001600160a01b0316806107645760405162461bcd60e51b815260040161079190613662565b60006001600160a01b0382166112065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610791565b506001600160a01b031660009081526008602052604090205490565b61122a611d62565b610dbd6000611dbc565b600061124e60008051602061396183398151915233611429565b61126a5760405162461bcd60e51b8152600401610791906134fd565b61091a601054106112bd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732314d202d206d617820737570706c792072656163686564000000006044820152606401610791565b601080549060006112cd83613556565b91905055506112de82601054611e0c565b506010545b919050565b61130060008051602061394183398151915233611429565b61131c5760405162461bcd60e51b81526004016107919061356f565b610dbd611f39565b606060006113318361119c565b90506000816001600160401b0381111561134d5761134d612fb5565b60405190808252806020026020018201604052801561139257816020015b604080518082019091526000808252602082015281526020019060019003908161136b5790505b50905060005b828110156114095760006113ac86836109e8565b9050808383815181106113c1576113c1613540565b6020908102919091010151526113d681611113565b8383815181106113e8576113e8613540565b6020908102919091018101510152508061140181613556565b915050611398565b509392505050565b6000828152600260205260408120610e789083611f76565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546107b79061335f565b601154829062010000900460ff161561147f5761147f8161198a565b6108878383611f82565b836001600160a01b03811633148015906114ab575060115462010000900460ff165b156114b9576114b93361198a565b6114c585858585611f8d565b5050505050565b60606114d782611fbf565b6115355760405162461bcd60e51b815260206004820152602960248201527f4552433732314d202d2055524920717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610791565b600061154083611113565b6017549091506001600160a01b0316156115cc576017546040516392cb829d60e01b815260048101859052602481018390526001600160a01b03909116906392cb829d90604401600060405180830381865afa1580156115a4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e789190810190613694565b6000601280546115db9061335f565b9050116115f75760405180602001604052806000815250610e78565b601261160284611fdc565b60405160200161161392919061370a565b6040516020818303038152906040529392505050565b6000818152600260205260408120610764906120dc565b61164b600033611429565b6116675760405162461bcd60e51b81526004016107919061331d565b60118054911515620100000262ff000019909216919091179055565b6000828152600160208190526040909120015461169f81611b7a565b6108878383611ba6565b601280546116b69061335f565b80601f01602080910402602001604051908101604052809291908181526020018280546116e29061335f565b801561172f5780601f106117045761010080835404028352916020019161172f565b820191906000526020600020905b81548152906001019060200180831161171257829003601f168201915b505050505081565b611742600033611429565b61175e5760405162461bcd60e51b81526004016107919061331d565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b6117b6611d62565b6001600160a01b03811661181b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610791565b610e2a81611dbc565b61182e8282611429565b6107a45760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000610e78836001600160a01b0384166120e6565b600061076482612135565b6127106001600160601b03821611156118da5760405162461bcd60e51b815260040161079190613791565b6001600160a01b03821661192c5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401610791565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600355565b61196e81611fbf565b610e2a5760405162461bcd60e51b815260040161079190613662565b6daaeb6d7670e522a718067333cd4e3b15610e2a57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156119f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1b91906137db565b610e2a5780604051633b79c77360e21b81526004016107919190612ec5565b6000611a4582611167565b9050806001600160a01b0316836001600160a01b031603611ab25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610791565b336001600160a01b0382161480611ace5750611ace8133611780565b611b405760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610791565b610887838361215a565b611b5333610dff565b611b6f5760405162461bcd60e51b8152600401610791906135b2565b6108878383836121c8565b610e2a813361235d565b611b8e8282611824565b6000828152600260205260409020610887908261188f565b611bb082826123c1565b60008281526002602052604090206108879082612428565b611bd061243d565b600f805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604051611c0a9190612ec5565b60405180910390a1565b61088783838360405180602001604052806000815250611489565b600080611c3b83611167565b9050806001600160a01b0316846001600160a01b03161480611c625750611c628185611780565b80611c865750836001600160a01b0316611c7b8461083a565b6001600160a01b0316145b949350505050565b610e2a81612486565b6127106001600160601b0382161115611cc25760405162461bcd60e51b815260040161079190613791565b6001600160a01b038216611d185760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610791565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600490529190942093519051909116600160a01b029116179055565b6000546001600160a01b03163314610dbd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610791565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216611e625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610791565b611e6b81611fbf565b15611eb85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610791565b611ec4600083836124a0565b6001600160a01b0382166000908152600860205260408120805460019290611eed90849061364f565b909155505060008181526007602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020613981833981519152908290a45050565b611f416124ab565b600f805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bfd3390565b6000610e7883836124f1565b6107a433838361251b565b611f973383611c2f565b611fb35760405162461bcd60e51b8152600401610791906135b2565b610910848484846125e5565b6000908152600760205260409020546001600160a01b0316151590565b6060816000036120035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561202d578061201781613556565b91506120269050600a836133dc565b9150612007565b6000816001600160401b0381111561204757612047612fb5565b6040519080825280601f01601f191660200182016040528015612071576020820181803683370190505b5090505b8415611c8657612086600183613600565b9150612093600a8661363b565b61209e90603061364f565b60f81b8183815181106120b3576120b3613540565b60200101906001600160f81b031916908160001a9053506120d5600a866133dc565b9450612075565b6000610764825490565b600081815260018301602052604081205461212d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610764565b506000610764565b60006001600160e01b0319821663780e9d6360e01b1480610764575061076482612618565b600081815260096020526040902080546001600160a01b0319166001600160a01b038416908117909155819061218f82611167565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b03166121db82611167565b6001600160a01b03161461223f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610791565b6001600160a01b0382166122a15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610791565b6122ac8383836124a0565b6122b760008261215a565b6001600160a01b03831660009081526008602052604081208054600192906122e0908490613600565b90915550506001600160a01b038216600090815260086020526040812080546001929061230e90849061364f565b909155505060008181526007602052604080822080546001600160a01b0319166001600160a01b03868116918217909255915184939187169160008051602061398183398151915291a4505050565b6123678282611429565b6107a45761237f816001600160a01b03166014612658565b61238a836020612658565b60405160200161239b9291906137f8565b60408051601f198184030181529082905262461bcd60e51b825261079191600401612e99565b6123cb8282611429565b156107a45760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610e78836001600160a01b0384166127f3565b600f5460ff16610dbd5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610791565b61248f816128e6565b600090815260046020526040812055565b61088783838361297b565b600f5460ff1615610dbd5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610791565b600082600001828154811061250857612508613540565b9060005260206000200154905092915050565b816001600160a01b0316836001600160a01b0316036125785760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610791565b6001600160a01b038381166000818152600a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6125f08484846121c8565b6125fc848484846129ed565b6109105760405162461bcd60e51b815260040161079190613867565b60006001600160e01b031982166380ac58cd60e01b148061264957506001600160e01b03198216635b5e139f60e01b145b80610764575061076482612aee565b606060006126678360026133af565b61267290600261364f565b6001600160401b0381111561268957612689612fb5565b6040519080825280601f01601f1916602001820160405280156126b3576020820181803683370190505b509050600360fc1b816000815181106126ce576126ce613540565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106126fd576126fd613540565b60200101906001600160f81b031916908160001a90535060006127218460026133af565b61272c90600161364f565b90505b60018111156127a4576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061276057612760613540565b1a60f81b82828151811061277657612776613540565b60200101906001600160f81b031916908160001a90535060049490941c9361279d816138b9565b905061272f565b508315610e785760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610791565b600081815260018301602052604081205480156128dc576000612817600183613600565b855490915060009061282b90600190613600565b905081811461289057600086600001828154811061284b5761284b613540565b906000526020600020015490508087600001848154811061286e5761286e613540565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806128a1576128a16138d0565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610764565b6000915050610764565b60006128f182611167565b90506128ff816000846124a0565b61290a60008361215a565b6001600160a01b0381166000908152600860205260408120805460019290612933908490613600565b909155505060008281526007602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020613981833981519152908390a45050565b612986838383612b13565b600f5460ff16156108875760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610791565b60006001600160a01b0384163b15612ae357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a319033908990889088906004016138e6565b6020604051808303816000875af1925050508015612a6c575060408051601f3d908101601f19168201909252612a6991810190613923565b60015b612ac9573d808015612a9a576040519150601f19603f3d011682016040523d82523d6000602084013e612a9f565b606091505b508051600003612ac15760405162461bcd60e51b815260040161079190613867565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c86565b506001949350505050565b60006001600160e01b0319821663152a902d60e11b1480610764575061076482612bcb565b6001600160a01b038316612b6e57612b6981600d80546000838152600e60205260408120829055600182018355919091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50155565b612b91565b816001600160a01b0316836001600160a01b031614612b9157612b918382612bf0565b6001600160a01b038216612ba85761088781612c8d565b826001600160a01b0316826001600160a01b031614610887576108878282612d3c565b60006001600160e01b03198216635a05180f60e01b1480610764575061076482612d80565b60006001612bfd8461119c565b612c079190613600565b6000838152600c6020526040902054909150808214612c5a576001600160a01b0384166000908152600b602090815260408083208584528252808320548484528184208190558352600c90915290208190555b506000918252600c602090815260408084208490556001600160a01b039094168352600b81528383209183525290812055565b600d54600090612c9f90600190613600565b6000838152600e6020526040812054600d8054939450909284908110612cc757612cc7613540565b9060005260206000200154905080600d8381548110612ce857612ce8613540565b6000918252602080832090910192909255828152600e9091526040808220849055858252812055600d805480612d2057612d206138d0565b6001900381819060005260206000200160009055905550505050565b6000612d478361119c565b6001600160a01b039093166000908152600b602090815260408083208684528252808320859055938252600c9052919091209190915550565b60006001600160e01b03198216637965db0b60e01b148061076457506301ffc9a760e01b6001600160e01b0319831614610764565b6001600160e01b031981168114610e2a57600080fd5b600060208284031215612ddd57600080fd5b8135610e7881612db5565b6001600160a01b0381168114610e2a57600080fd5b80356001600160601b03811681146112e357600080fd5b60008060408385031215612e2757600080fd5b8235612e3281612de8565b9150612e4060208401612dfd565b90509250929050565b60005b83811015612e64578181015183820152602001612e4c565b50506000910152565b60008151808452612e85816020860160208601612e49565b601f01601f19169290920160200192915050565b602081526000610e786020830184612e6d565b600060208284031215612ebe57600080fd5b5035919050565b6001600160a01b0391909116815260200190565b60008060408385031215612eec57600080fd5b8235612ef781612de8565b946020939093013593505050565b600060208284031215612f1757600080fd5b8135610e7881612de8565b600080600060608486031215612f3757600080fd5b8335612f4281612de8565b92506020840135612f5281612de8565b929592945050506040919091013590565b60008060408385031215612f7657600080fd5b50508035926020909101359150565b60008060408385031215612f9857600080fd5b823591506020830135612faa81612de8565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612ff357612ff3612fb5565b604052919050565b60006001600160401b0382111561301457613014612fb5565b50601f01601f191660200190565b600061303561303084612ffb565b612fcb565b905082815283838301111561304957600080fd5b828260208301376000602084830101529392505050565b60006020828403121561307257600080fd5b81356001600160401b0381111561308857600080fd5b8201601f8101841361309957600080fd5b611c8684823560208401613022565b600082601f8301126130b957600080fd5b813560206001600160401b038211156130d4576130d4612fb5565b8160051b6130e3828201612fcb565b92835284810182019282810190878511156130fd57600080fd5b83870192505b8483101561311c57823582529183019190830190613103565b979650505050505050565b6000806040838503121561313a57600080fd5b82356001600160401b038082111561315157600080fd5b61315d868387016130a8565b9350602085013591508082111561317357600080fd5b50613180858286016130a8565b9150509250929050565b60008060006060848603121561319f57600080fd5b8335925060208401356131b181612de8565b91506131bf60408501612dfd565b90509250925092565b602080825282518282018190526000919060409081850190868401855b8281101561320a578151805185528601518685015292840192908501906001016131e5565b5091979650505050505050565b8015158114610e2a57600080fd5b6000806040838503121561323857600080fd5b823561324381612de8565b91506020830135612faa81613217565b6000806000806080858703121561326957600080fd5b843561327481612de8565b9350602085013561328481612de8565b92506040850135915060608501356001600160401b038111156132a657600080fd5b8501601f810187136132b757600080fd5b6132c687823560208401613022565b91505092959194509250565b6000602082840312156132e457600080fd5b8135610e7881613217565b6000806040838503121561330257600080fd5b823561330d81612de8565b91506020830135612faa81612de8565b60208082526022908201527f4552433732314163636573733a206d75737420686176652041646d696e20726f6040820152616c6560f01b606082015260800190565b600181811c9082168061337357607f821691505b60208210810361339357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761076457610764613399565b634e487b7160e01b600052601260045260246000fd5b6000826133eb576133eb6133c6565b500490565b601f82111561088757600081815260208120601f850160051c810160208610156134175750805b601f850160051c820191505b8181101561343657828155600101613423565b505050505050565b81516001600160401b0381111561345757613457612fb5565b61346b81613465845461335f565b846133f0565b602080601f8311600181146134a057600084156134885750858301515b600019600386901b1c1916600185901b178555613436565b600085815260208120601f198616915b828110156134cf578886015182559484019460019091019084016134b0565b50858210156134ed5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526023908201527f4552433732314163636573733a206d7573742068617665204d696e74657220726040820152626f6c6560e81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006001820161356857613568613399565b5060010190565b60208082526023908201527f4552433732314163636573733a206d75737420686176652050617573657220726040820152626f6c6560e81b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b8181038181111561076457610764613399565b92835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b60008261364a5761364a6133c6565b500690565b8082018082111561076457610764613399565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b6000602082840312156136a657600080fd5b81516001600160401b038111156136bc57600080fd5b8201601f810184136136cd57600080fd5b80516136db61303082612ffb565b8181528560208385010111156136f057600080fd5b613701826020830160208601612e49565b95945050505050565b60008084546137188161335f565b60018281168015613730576001811461374557613774565b60ff1984168752821515830287019450613774565b8860005260208060002060005b8581101561376b5781548a820152908401908201613752565b50505082870194505b505050508351613788818360208801612e49565b01949350505050565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b6000602082840312156137ed57600080fd5b8151610e7881613217565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b81526000835161382a816017850160208801612e49565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161385b816028840160208801612e49565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000816138c8576138c8613399565b506000190190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061391990830184612e6d565b9695505050505050565b60006020828403121561393557600080fd5b8151610e7881612db556fe65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212205c9a684656075a46e11d25d19186ca332dbfab74e52edbb50370dc16ad20ecee64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000005c3385b7105a69eb94a5293a198f3a1a5918f9940000000000000000000000000000000000000000000000000000000000000012536861646f774d6f6e6b6579436f6d69637300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003534d430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f637265636f2e78797a2f6170692f6d6574612f736861646f772d6d6f6e6b65792d636f6d6963732f00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): ShadowMonkeyComics
Arg [1] : _symbol (string): SMC
Arg [2] : _baseUri (string): https://creco.xyz/api/meta/shadow-monkey-comics/
Arg [3] : _beneficiary (address): 0x5C3385b7105a69Eb94A5293a198f3A1a5918f994

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000005c3385b7105a69eb94a5293a198f3a1a5918f994
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 536861646f774d6f6e6b6579436f6d6963730000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 534d430000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [9] : 68747470733a2f2f637265636f2e78797a2f6170692f6d6574612f736861646f
Arg [10] : 772d6d6f6e6b65792d636f6d6963732f00000000000000000000000000000000


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.