ETH Price: $3,387.87 (-2.67%)
Gas: 1 Gwei

Token

One day,Ujuuna killed in explosion, and his reinca... (UJU)
 

Overview

Max Total Supply

9,592 UJU

Holders

1,978

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 UJU
0x3155092e9e44749e88126ce7f6b52db24a76925f
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:
UjuFreeMint202211

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 32 : 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 32 : 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 3 of 32 : 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 4 of 32 : 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 5 of 32 : 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 6 of 32 : 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 7 of 32 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

File 8 of 32 : 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 9 of 32 : 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 10 of 32 : 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 11 of 32 : 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 12 of 32 : ERC721AntiScam.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

import "./IERC721AntiScam.sol";
import "./lockable/ERC721Lockable.sol";
import "./restrictApprove/ERC721RestrictApprove.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/// @title AntiScam機能付きERC721A
/// @dev Readmeを見てください。

abstract contract ERC721AntiScam is
    IERC721AntiScam,
    ERC721Lockable,
    ERC721RestrictApprove,
    Ownable
{

    /*///////////////////////////////////////////////////////////////
                              OVERRIDES
    //////////////////////////////////////////////////////////////*/

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override(ERC721Lockable, ERC721RestrictApprove)
        returns (bool)
    {
        if (isLocked(owner) || !_isAllowed(owner, operator)) {
            return false;
        }
        return super.isApprovedForAll(owner, operator);
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override(ERC721Lockable, ERC721RestrictApprove)
    {
        require(
            isLocked(msg.sender) == false || approved == false,
            "Can not approve locked token"
        );
        require(
            _isAllowed(operator) || approved == false,
            "RestrictApprove: Can not approve locked token"
        );
        super.setApprovalForAll(operator, approved);
    }

    function _beforeApprove(address to, uint256 tokenId)
        internal
        virtual
        override(ERC721Lockable, ERC721RestrictApprove)
    {
        ERC721Lockable._beforeApprove(to, tokenId);
        ERC721RestrictApprove._beforeApprove(to, tokenId);
    }

    function approve(address to, uint256 tokenId)
        public
        payable
        virtual
        override(ERC721Lockable, ERC721RestrictApprove)
    {
        _beforeApprove(to, tokenId);
        ERC721A.approve(to, tokenId);
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override(ERC721A, ERC721Lockable) {
        ERC721Lockable._beforeTokenTransfers(from, to, startTokenId, quantity);
    }

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override(ERC721Lockable, ERC721RestrictApprove) {
        ERC721Lockable._afterTokenTransfers(from, to, startTokenId, quantity);
        ERC721RestrictApprove._afterTokenTransfers(from, to, startTokenId, quantity);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721Lockable, ERC721RestrictApprove)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC721Lockable.supportsInterface(interfaceId) ||
            ERC721RestrictApprove.supportsInterface(interfaceId) ||
            interfaceId == type(IERC721AntiScam).interfaceId;
    }
}

File 13 of 32 : IERC721AntiScam.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

import "./lockable/IERC721Lockable.sol";
import "./restrictApprove/IERC721RestrictApprove.sol";

/// @title IERC721AntiScam
/// @dev 詐欺防止機能付きコントラクトのインターフェース
/// @author hayatti.eth

interface IERC721AntiScam is IERC721Lockable, IERC721RestrictApprove {
}

File 14 of 32 : ERC721Lockable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

import "./IERC721Lockable.sol";
import "erc721a/contracts/ERC721A.sol";

/// @title トークンのtransfer抑止機能付きコントラクト
/// @dev Readmeを見てください。

abstract contract ERC721Lockable is ERC721A, IERC721Lockable {
    /*//////////////////////////////////////////////////////////////
    ロック変数。トークンごとに個別ロック設定を行う
    //////////////////////////////////////////////////////////////*/
    bool public enableLock = true;
    LockStatus public contractLockStatus = LockStatus.UnLock;

    // token lock
    mapping(uint256 => LockStatus) public tokenLock;

    // wallet lock
    mapping(address => LockStatus) public walletLock;

    /*//////////////////////////////////////////////////////////////
    modifier
    //////////////////////////////////////////////////////////////*/
    modifier existToken(uint256 tokenId) {
        require(
            _exists(tokenId),
            "Lockable: locking query for nonexistent token"
        );
        _;
    }

    /*///////////////////////////////////////////////////////////////
    ロック機能ロジック
    //////////////////////////////////////////////////////////////*/

    // function getLockStatus(uint256 tokenId) external view returns (LockStatus) existToken(tokenId) {
    //     return _getLockStatus(ownerOf(tokenId), tokenId);
    // }

    function isLocked(uint256 tokenId)
        public
        view
        existToken(tokenId)
        returns (bool)
    {
        if (!enableLock) {
            return false;
        }

        if (
            tokenLock[tokenId] == LockStatus.Lock ||
            (tokenLock[tokenId] == LockStatus.UnSet &&
                isLocked(ownerOf(tokenId)))
        ) {
            return true;
        }

        return false;
    }

    function isLocked(address holder) public view returns (bool) {
        if (!enableLock) {
            return false;
        }

        if (
            walletLock[holder] == LockStatus.Lock ||
            (walletLock[holder] == LockStatus.UnSet &&
                contractLockStatus == LockStatus.Lock)
        ) {
            return true;
        }

        return false;
    }

    function getTokensUnderLock() public view returns (uint256[] memory) {
        uint256 start = _startTokenId();
        uint256 end = _nextTokenId();

        return getTokensUnderLock(start, end);
    }

    function getTokensUnderLock(uint256 start, uint256 end)
        public
        view
        returns (uint256[] memory)
    {
        bool[] memory lockList = new bool[](end - start + 1);
        uint256 i = 0;
        uint256 lockCount = 0;
        for (uint256 tokenId = start; tokenId <= end; tokenId++) {
            if (_exists(tokenId) && isLocked(tokenId)) {
                lockList[i] = true;
                lockCount++;
            } else {
                lockList[i] = false;
            }

            i++;
        }

        uint256[] memory tokensUnderLock = new uint256[](lockCount);

        i = 0;
        uint256 j = 0;
        for (uint256 tokenId = start; tokenId <= end; tokenId++) {
            if (lockList[i]) {
                tokensUnderLock[j] = tokenId;
                j++;
            }

            i++;
        }

        return tokensUnderLock;
    }

    function _deleteTokenLock(uint256 tokenId) internal virtual {
        delete tokenLock[tokenId];
    }

    function _setTokenLock(uint256[] calldata tokenIds, LockStatus lockStatus)
        internal
    {
        for (uint256 i = 0; i < tokenIds.length; i++) {
            tokenLock[tokenIds[i]] = lockStatus;
            emit TokenLock(
                ownerOf(tokenIds[i]),
                msg.sender,
                lockStatus,
                tokenIds[i]
            );
        }
    }

    function _setWalletLock(address to, LockStatus lockStatus) internal {
        walletLock[to] = lockStatus;
        emit WalletLock(to, msg.sender, lockStatus);
    }

    function _setContractLock(LockStatus lockStatus) internal {
        contractLockStatus = lockStatus;
    }

    /*///////////////////////////////////////////////////////////////
                              OVERRIDES
    //////////////////////////////////////////////////////////////*/

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        if (isLocked(owner)) {
            return false;
        }
        return super.isApprovedForAll(owner, operator);
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(
            isLocked(msg.sender) == false || approved == false,
            "Can not approve locked token"
        );
        super.setApprovalForAll(operator, approved);
    }

    function _beforeApprove(address /**to**/, uint256 tokenId) internal virtual {
        require(
            isLocked(tokenId) == false,
            "Lockable: Can not approve locked token"
        );
    }

    function approve(address to, uint256 tokenId)
        public
        payable
        virtual
        override
    {
        _beforeApprove(to, tokenId);
        super.approve(to, tokenId);
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 /*quantity*/
    ) internal virtual override {
        // 転送やバーンにおいては、常にstartTokenIdは TokenIDそのものとなります。
        if (from != address(0) && to != address(0)) {
            // トークンがロックされている場合、転送を許可しない
            require(
                isLocked(startTokenId) == false,
                "Lockable: Can not transfer locked token"
            );
        }
    }

    function _afterTokenTransfers(
        address from,
        address, /*to*/
        uint256 startTokenId,
        uint256 /*quantity*/
    ) internal virtual override {
        // 転送やバーンにおいては、常にstartTokenIdは TokenIDそのものとなります。
        if (from != address(0)) {
            // ロックをデフォルトに戻す。
            _deleteTokenLock(startTokenId);
        }
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC721Lockable).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

File 15 of 32 : IERC721Lockable.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

/**
 * @title IERC721Lockable
 * @dev トークンのtransfer抑止機能付きコントラクトのインターフェース
 * @author Lavulite
 */
interface IERC721Lockable {

   enum LockStatus {
      UnSet,
      UnLock,
      Lock
   }

    /**
     * @dev 個別ロックが指定された場合のイベント
     */
    event TokenLock(address indexed holder, address indexed operator, LockStatus lockStatus, uint256 indexed tokenId);
    
    /**
     * @dev ウォレットロックが指定された場合のイベント
     */
    event WalletLock(address indexed holder, address indexed operator, LockStatus lockStatus);

    /**
     * @dev 該当トークンIDのロックステータスを変更する。
     */
    function setTokenLock(uint256[] calldata tokenIds, LockStatus lockStatus) external;

    /**
     * @dev 該当ウォレットのロックステータスを変更する。
     */
    function setWalletLock(address to, LockStatus lockStatus) external;

    /**
     * @dev コントラクトのロックステータスを変更する。
     */
    function setContractLock(LockStatus lockStatus) external;

    /**
     * @dev 該当トークンIDがロックされているかを返す
     */
    function isLocked(uint256 tokenId) external view returns (bool);
    
    /**
     * @dev ウォレットロックを行っているかを返す
     */
    function isLocked(address holder) external view returns (bool);

    /**
     * @dev 転送が拒否されているトークンを全て返す
     */
    function getTokensUnderLock() external view returns (uint256[] memory);

    /**
     * @dev 転送が拒否されているstartからstopまでのトークンIDを返す
     */
    function getTokensUnderLock(uint256 start, uint256 end) external view returns (uint256[] memory);

}

File 16 of 32 : ERC721RestrictApprove.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

import "erc721a/contracts/ERC721A.sol";
import "./IERC721RestrictApprove.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import "../../proxy/interface/IContractAllowListProxy.sol";

/// @title AntiScam機能付きERC721A
/// @dev Readmeを見てください。

abstract contract ERC721RestrictApprove is ERC721A, IERC721RestrictApprove {
    using EnumerableSet for EnumerableSet.AddressSet;

    IContractAllowListProxy public CAL;
    EnumerableSet.AddressSet localAllowedAddresses;

    modifier onlyHolder(uint256 tokenId) {
        require(
            msg.sender == ownerOf(tokenId),
            "RestrictApprove: operation is only holder."
        );
        _;
    }

    /*//////////////////////////////////////////////////////////////
    変数
    //////////////////////////////////////////////////////////////*/
    bool public enableRestrict = true;

    // token lock
    mapping(uint256 => uint256) public tokenCALLevel;

    // wallet lock
    mapping(address => uint256) public walletCALLevel;

    // contract lock
    uint256 public CALLevel = 1;

    /*///////////////////////////////////////////////////////////////
    Approve抑制機能ロジック
    //////////////////////////////////////////////////////////////*/
    function _addLocalContractAllowList(address transferer)
        internal
        virtual
    {
        localAllowedAddresses.add(transferer);
        emit LocalCalAdded(msg.sender, transferer);
    }

    function _removeLocalContractAllowList(address transferer)
        internal
        virtual
    {
        localAllowedAddresses.remove(transferer);
        emit LocalCalRemoved(msg.sender, transferer);
    }

    function _isLocalAllowed(address transferer)
        internal
        view
        virtual
        returns (bool)
    {
        return localAllowedAddresses.contains(transferer);
    }

    function _isAllowed(address transferer)
        internal
        view
        virtual
        returns (bool)
    {
        return _isAllowed(msg.sender, transferer);
    }

    function _isAllowed(uint256 tokenId, address transferer)
        internal
        view
        virtual
        returns (bool)
    {
        uint256 level = _getCALLevel(msg.sender, tokenId);
        return _isAllowed(transferer, level);
    }

    function _isAllowed(address holder, address transferer)
        internal
        view
        virtual
        returns (bool)
    {
        uint256 level = _getCALLevel(holder);
        return _isAllowed(transferer, level);
    }

    function _isAllowed(address transferer, uint256 level)
        internal
        view
        virtual
        returns (bool)
    {
        if (!enableRestrict) {
            return true;
        }

        return _isLocalAllowed(transferer) || CAL.isAllowed(transferer, level);
    }

    function _getCALLevel(address holder, uint256 tokenId)
        internal
        view
        virtual
        returns (uint256)
    {
        if (tokenCALLevel[tokenId] > 0) {
            return tokenCALLevel[tokenId];
        }

        return _getCALLevel(holder);
    }

    function _getCALLevel(address holder)
        internal
        view
        virtual
        returns (uint256)
    {
        if (walletCALLevel[holder] > 0) {
            return walletCALLevel[holder];
        }

        return CALLevel;
    }

    function _setCAL(address _cal) internal virtual {
        CAL = IContractAllowListProxy(_cal);
    }

    function _deleteTokenCALLevel(uint256 tokenId) internal virtual {
        delete tokenCALLevel[tokenId];
    }

    function setTokenCALLevel(uint256 tokenId, uint256 level)
        external
        virtual
        onlyHolder(tokenId)
    {
        tokenCALLevel[tokenId] = level;
    }

    function setWalletCALLevel(uint256 level)
        external
        virtual
    {
        walletCALLevel[msg.sender] = level;
    }

    /*///////////////////////////////////////////////////////////////
                              OVERRIDES
    //////////////////////////////////////////////////////////////*/

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        if (_isAllowed(owner, operator) == false) {
            return false;
        }
        return super.isApprovedForAll(owner, operator);
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(
            _isAllowed(operator) || approved == false,
            "RestrictApprove: Can not approve locked token"
        );
        super.setApprovalForAll(operator, approved);
    }

    function _beforeApprove(address to, uint256 tokenId)
        internal
        virtual
    {
        if (to != address(0)) {
            require(_isAllowed(tokenId, to), "RestrictApprove: The contract is not allowed.");
        }
    }

    function approve(address to, uint256 tokenId)
        public
        payable
        virtual
        override
    {
        _beforeApprove(to, tokenId);
        super.approve(to, tokenId);
    }

    function _afterTokenTransfers(
        address from,
        address, /*to*/
        uint256 startTokenId,
        uint256 /*quantity*/
    ) internal virtual override {
        // 転送やバーンにおいては、常にstartTokenIdは TokenIDそのものとなります。
        if (from != address(0)) {
            // CALレベルをデフォルトに戻す。
            _deleteTokenCALLevel(startTokenId);
        }
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            interfaceId == type(IERC721RestrictApprove).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

File 17 of 32 : IERC721RestrictApprove.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

/// @title IERC721RestrictApprove
/// @dev Approve抑制機能付きコントラクトのインターフェース
/// @author Lavulite

interface IERC721RestrictApprove {
    /**
     * @dev CALレベルが変更された場合のイベント
     */
    event CalLevelChanged(address indexed operator, uint256 indexed level);
    
    /**
     * @dev LocalContractAllowListnに追加された場合のイベント
     */
    event LocalCalAdded(address indexed operator, address indexed transferer);

    /**
     * @dev LocalContractAllowListnに削除された場合のイベント
     */
    event LocalCalRemoved(address indexed operator, address indexed transferer);

    /**
     * @dev CALを利用する場合のCALのレベルを設定する。レベルが高いほど、許可されるコントラクトの範囲が狭い。
     */
    function setCALLevel(uint256 level) external;

    /**
     * @dev CALのアドレスをセットする。
     */
    function setCAL(address calAddress) external;

    /**
     * @dev CALのリストに無い独自の許可アドレスを追加する場合、こちらにアドレスを記載する。
     */
    function addLocalContractAllowList(address transferer) external;

    /**
     * @dev CALのリストにある独自の許可アドレスを削除する場合、こちらにアドレスを記載する。
     */
    function removeLocalContractAllowList(address transferer) external;

}

File 18 of 32 : IContractAllowListProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;

interface IContractAllowListProxy {
    function isAllowed(address _transferer, uint256 _level)
        external
        view
        returns (bool);
}

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

import {OperatorFilterer} from "./OperatorFilterer.sol";

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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

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

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

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

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // 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) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

File 22 of 32 : UjuFreeMint202211.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.0 <0.9.0;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "erc721-multi-sales/contracts/multi-wallet/merkletree/ERC721MultiSaleByMerkleMultiWallet.sol";
import "contract-allow-list/contracts/ERC721AntiScam/ERC721AntiScam.sol";
import {DefaultOperatorFilterer} from "./libs/DefaultOperatorFilterer.sol";

contract UjuFreeMint202211 is
    DefaultOperatorFilterer,
    ERC721AntiScam,
    ERC721MultiSaleByMerkleMultiWallet,
    AccessControl
{
    bytes32 public ADMIN = "ADMIN";

    string public baseURI = "";
    string public baseExtension = ".json";

    constructor(address ownerAddress, uint256 ownerMintAmount)
        ERC721A(
            "One day,Ujuuna killed in explosion, and his reincarnation is decided at generative.",
            "UJU"
        )
    {
        grantRole(ADMIN, msg.sender);
        withdrawAddress = payable(ownerAddress);
        _safeMint(ownerAddress, ownerMintAmount);
    }

    // ==================================================================
    // original
    // ==================================================================
    function totalBurned() external view returns (uint256) {
        return _totalBurned();
    }

    function adminMint(address[] calldata to, uint256[] calldata amount)
        external
        onlyRole(ADMIN)
    {
        require(to.length == amount.length);
        for (uint256 i = 0; i < to.length; i++) {
            _safeMint(to[i], amount[i]);
        }
    }

    // ==================================================================
    // overrive ERC721A for operator-filter-registry
    // ==================================================================
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

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

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

    // ==================================================================
    // override ERC721
    // ==================================================================
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        return
            string(abi.encodePacked(ERC721A.tokenURI(tokenId), baseExtension));
    }

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

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

    // ==================================================================
    // override ERC721MultiSaleByMerkleMultWallet
    // ==================================================================
    function claim(
        uint256 userId,
        uint256 amount,
        uint256 allowedAmount,
        bytes32[] calldata merkleProof
    ) external payable enoughEth(amount) {
        _claim(userId, amount, allowedAmount, merkleProof);
        _safeMint(msg.sender, amount);
    }

    function exchange(
        uint256 userId,
        uint256[] calldata burnTokenIds,
        uint256 allowedAmount,
        bytes32[] calldata merkleProof
    ) external payable enoughEth(burnTokenIds.length) {
        _exchange(userId, burnTokenIds, allowedAmount, merkleProof);

        for (uint256 i = 0; i < burnTokenIds.length; i++) {
            uint256 tokenId = burnTokenIds[i];
            require(msg.sender == ownerOf(tokenId), "only holder.");
            _burn(tokenId);
        }

        _safeMint(msg.sender, burnTokenIds.length);
    }

    function setCurrentSale(Sale calldata sale, bytes32 merkleRoot)
        external
        onlyRole(ADMIN)
    {
        _setCurrentSale(sale);
        _merkleRoot = merkleRoot;
    }

    // ==================================================================
    // override BasicSale
    // ==================================================================
    function pause() external onlyRole(ADMIN) {
        _pause();
    }

    function unpause() external onlyRole(ADMIN) {
        _unpause();
    }

    function withdraw() external onlyRole(ADMIN) {
        _withdraw();
    }

    function setWithdrawAddress(address payable value)
        external
        onlyRole(ADMIN)
    {
        withdrawAddress = value;
    }

    function setMaxSupply(uint256 value) external onlyRole(ADMIN) {
        maxSupply = value;
    }

    function _totalSupply() internal view override returns (uint256) {
        return totalSupply();
    }

    // ==================================================================
    // override ERC721RestrictApprove
    // ==================================================================
    function addLocalContractAllowList(address transferer)
        external
        onlyRole(ADMIN)
    {
        _addLocalContractAllowList(transferer);
    }

    function removeLocalContractAllowList(address transferer)
        external
        onlyRole(ADMIN)
    {
        _removeLocalContractAllowList(transferer);
    }

    function setCAL(address calAddress) external onlyRole(ADMIN) {
        _setCAL(calAddress);
    }

    function setCALLevel(uint256 level) external onlyRole(ADMIN) {
        CALLevel = level;
    }

    function setEnableRestrict(bool value) external onlyRole(ADMIN) {
        enableRestrict = value;
    }

    // ==================================================================
    // override ERC721Loclable
    // ==================================================================
    function setContractLock(LockStatus lockStatus) external onlyRole(ADMIN) {
        _setContractLock(lockStatus);
    }

    function setWalletLock(address to, LockStatus lockStatus) external {
        require(msg.sender == to, "only yourself.");
        _setWalletLock(to, lockStatus);
    }

    function setTokenLock(uint256[] calldata tokenIds, LockStatus lockStatus)
        external
    {
        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(msg.sender == ownerOf(tokenIds[i]), "not owner.");
        }
        _setTokenLock(tokenIds, lockStatus);
    }

    function setEnableLock(bool value) external onlyRole(ADMIN) {
        enableLock = value;
    }

    // ==================================================================
    // operations
    // ==================================================================
    function grantRole(bytes32 role, address account)
        public
        override
        onlyOwner
    {
        _grantRole(role, account);
    }

    function revokeRole(bytes32 role, address account)
        public
        override
        onlyOwner
    {
        _revokeRole(role, account);
    }

    function setBaseURI(string memory _value) external onlyRole(ADMIN) {
        baseURI = _value;
    }

    function setBaseExtension(string memory _value) external onlyRole(ADMIN) {
        baseExtension = _value;
    }

    // ==================================================================
    // interface
    // ==================================================================
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(AccessControl, ERC721AntiScam)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC721AntiScam.supportsInterface(interfaceId) ||
            AccessControl.supportsInterface(interfaceId);
    }
}

File 23 of 32 : BasicSale.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;

import "./Sale.sol";
import "./IBasicSale.sol";

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

abstract contract BasicSale is IBasicSale, Pausable {
    using Address for address payable;
    // ==================================================================
    // Event
    // ==================================================================
    event ChangeSale(uint8 oldId, uint8 newId);

    // ==================================================================
    // Variables
    // ==================================================================
    address payable public withdrawAddress;
    uint256 public maxSupply;
    Sale internal _currentSale;
    uint256 internal _soldCount = 0;

    // ==================================================================
    // Modifier
    // ==================================================================
    modifier isNotOverMaxSaleSupply(uint256 amount) {
        require(
            amount + _soldCount <= _currentSale.maxSupply,
            "claim is over the max sale supply."
        );
        _;
    }
    
    modifier isNotOverMaxSupply(uint256 amount) {
        require(
            amount + _totalSupply() <= maxSupply,
            "claim is over the max supply."
        );
        _;
    }

    modifier enoughEth(uint256 amount) {
        require(msg.value >= _currentSale.mintCost * amount, "not enough eth.");
        _;
    }

    modifier whenClaimSale() {
        require(_currentSale.saleType == SaleType.CLAIM, "not claim sale now.");
        _;
    }

    modifier whenExcahngeSale() {
        require(
            _currentSale.saleType == SaleType.EXCHANGE,
            "not exchange sale now."
        );
        _;
    }

    // ==================================================================
    // Functions
    // ==================================================================
    function getCurrentSale()
        external
        view
        virtual
        returns (
            uint8,
            SaleType,
            uint256,
            uint256
        )
    {
        return (
            _currentSale.id,
            _currentSale.saleType,
            _currentSale.mintCost,
            _currentSale.maxSupply
        );
    }

    function _withdraw() internal virtual {
        require(
            withdrawAddress != address(0),
            "withdraw address is 0 address."
        );
        withdrawAddress.sendValue(address(this).balance);
    }

    function _setCurrentSale(Sale calldata sale) internal virtual {
        uint8 oldId = _currentSale.id;
        _currentSale = sale;
        _soldCount = 0;

        emit ChangeSale(oldId, sale.id);
    }

    function _totalSupply() internal view virtual returns (uint256);
}

File 24 of 32 : IBasicSale.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;

import "./Sale.sol";

interface IBasicSale {
    function getCurrentSale()
        external
        view
        returns (
            uint8,
            SaleType,
            uint256,
            uint256
        );

    function setCurrentSale(Sale calldata sale) external;

    function withdraw() external;

    function setWithdrawAddress(address payable value) external;

    function setMaxSupply(uint256 value) external;

    function pause() external;

    function unpause() external;
}

File 25 of 32 : ERC721MultiSaleMultiWallet.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;

import "./IERC721MultiSaleMultiWallet.sol";
import "../BasicSale.sol";
import "../Sale.sol";
import "../SalesRecord.sol";

abstract contract ERC721MultiSaleMultiWallet is IERC721MultiSaleMultiWallet, BasicSale {
    // ==================================================================
    // Variables
    // ==================================================================
    mapping(uint256 => SalesRecord) internal _salesRecordByBuyer;

    // ==================================================================
    // Modifier
    // ==================================================================
    modifier isNotOverAllowedAmount(uint256 userId, uint256 amount, uint256 allowedAmount) {
        require(
            getBuyCount(userId) + amount <= allowedAmount,
            "claim is over allowed amount."
        );
        _;
    }

    // ==================================================================
    // Function
    // ==================================================================
    // ------------------------------------------------------------------
    // external & public
    // ------------------------------------------------------------------
    function getBuyCount(uint256 userId) public view returns(uint256){
        SalesRecord storage record = _salesRecordByBuyer[userId];

        if (record.id == _currentSale.id) {
            return record.amount;
        } else {
            return 0;
        }
    }

    // ------------------------------------------------------------------
    // internal & private
    // ------------------------------------------------------------------
    function _claim(uint256 userId, uint256 amount, uint256 allowedAmount)
        internal
        virtual
        whenNotPaused
        isNotOverMaxSupply(amount)
        isNotOverMaxSaleSupply(amount)
        isNotOverAllowedAmount(userId, amount, allowedAmount)
        whenClaimSale
    {
        _record(userId, amount);
    }

    function _exchange(uint256 userId, uint256[] calldata burnTokenIds, uint256 allowedAmount)
        internal
        virtual
        whenNotPaused
        isNotOverMaxSaleSupply(burnTokenIds.length)
        isNotOverAllowedAmount(userId, burnTokenIds.length, allowedAmount)
        whenExcahngeSale
    {
        _record(userId, burnTokenIds.length);
    }

    function _record(uint256 userId, uint256 amount) private {
        SalesRecord storage record = _salesRecordByBuyer[userId];

        if (record.id == _currentSale.id) {
            record.amount += amount;
        } else {
            record.id = _currentSale.id;
            record.amount = amount;
        }

        _soldCount += amount;
    }
}

File 26 of 32 : IERC721MultiSaleMultiWallet.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;

interface IERC721MultiSaleMultiWallet {
    function getBuyCount(uint256 userId) external view returns(uint256);
}

File 27 of 32 : ERC721MultiSaleByMerkleMultiWallet.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./IERC721MultiSaleByMerkleMultiWallet.sol";
import "../ERC721MultiSaleMultiWallet.sol";

abstract contract ERC721MultiSaleByMerkleMultiWallet is
    IERC721MultiSaleByMerkleMultiWallet,
    ERC721MultiSaleMultiWallet
{
    bytes32 internal _merkleRoot;

    // ==================================================================
    // Modifier
    // ==================================================================
    modifier hasRight(
        uint256 userId,
        uint256 amount,
        uint256 allowedAmount,
        bytes32[] calldata merkleProof
    ) {
        bytes32 node = keccak256(
            abi.encodePacked(userId, msg.sender, allowedAmount)
        );
        require(
            MerkleProof.verifyCalldata(merkleProof, _merkleRoot, node),
            "invalid proof."
        );
        _;
    }

    // ==================================================================
    // Function
    // ==================================================================
    function _claim(
        uint256 userId,
        uint256 amount,
        uint256 allowedAmount,
        bytes32[] calldata merkleProof
    ) internal virtual hasRight(userId, amount, allowedAmount, merkleProof) {
        _claim(userId, amount, allowedAmount);
    }

    function _exchange(
        uint256 userId,
        uint256[] calldata burnTokenIds,
        uint256 allowedAmount,
        bytes32[] calldata merkleProof
    )
        internal
        virtual
        hasRight(userId, burnTokenIds.length, allowedAmount, merkleProof)
    {
        _exchange(userId, burnTokenIds, allowedAmount);
    }

    function _setCurrentSale(Sale calldata sale, bytes32 merkleRoot) internal {
        _merkleRoot = merkleRoot;
        _setCurrentSale(sale);
    }

    // ------------------------------------------------------------------
    // unused super function
    // ------------------------------------------------------------------
    function setCurrentSale(
        Sale calldata /** sale */
    ) external pure virtual {
        revert("no use.");
    }
}

File 28 of 32 : IERC721MultiSaleByMerkleMultiWallet.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;

import "../../Sale.sol";

interface IERC721MultiSaleByMerkleMultiWallet {

  function claim(uint256 userId, uint256 amount, uint256 allowedAmount, bytes32[] calldata merkleProof) external payable;
  
  function exchange(uint256 userId, uint256[] calldata burnTokenIds, uint256 allowedAmount, bytes32[] calldata merkleProof) external payable;

  function setCurrentSale(Sale calldata sale, bytes32 merkleRoot) external;
}

File 29 of 32 : Sale.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;

enum SaleType {
  CLAIM,
  EXCHANGE
}

struct Sale {
    uint8 id;
    SaleType saleType;
    uint256 mintCost;
    uint256 maxSupply;
}

File 30 of 32 : SalesRecord.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;

struct SalesRecord {
    uint8 id;
    uint256 amount;
}

File 31 of 32 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 32 of 32 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"ownerAddress","type":"address"},{"internalType":"uint256","name":"ownerMintAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"uint256","name":"level","type":"uint256"}],"name":"CalLevelChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"oldId","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"newId","type":"uint8"}],"name":"ChangeSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"transferer","type":"address"}],"name":"LocalCalAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"transferer","type":"address"}],"name":"LocalCalRemoved","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":"holder","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"enum IERC721Lockable.LockStatus","name":"lockStatus","type":"uint8"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenLock","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"enum IERC721Lockable.LockStatus","name":"lockStatus","type":"uint8"}],"name":"WalletLock","type":"event"},{"inputs":[],"name":"ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CAL","outputs":[{"internalType":"contract IContractAllowListProxy","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CALLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transferer","type":"address"}],"name":"addLocalContractAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"userId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"allowedAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractLockStatus","outputs":[{"internalType":"enum IERC721Lockable.LockStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableRestrict","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"userId","type":"uint256"},{"internalType":"uint256[]","name":"burnTokenIds","type":"uint256[]"},{"internalType":"uint256","name":"allowedAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"exchange","outputs":[],"stateMutability":"payable","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":"userId","type":"uint256"}],"name":"getBuyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSale","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"enum SaleType","name":"","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"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":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"getTokensUnderLock","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokensUnderLock","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":[{"internalType":"address","name":"holder","type":"address"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transferer","type":"address"}],"name":"removeLocalContractAllowList","outputs":[],"stateMutability":"nonpayable","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_value","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_value","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"calAddress","type":"address"}],"name":"setCAL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setCALLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IERC721Lockable.LockStatus","name":"lockStatus","type":"uint8"}],"name":"setContractLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"id","type":"uint8"},{"internalType":"enum SaleType","name":"saleType","type":"uint8"},{"internalType":"uint256","name":"mintCost","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"internalType":"struct Sale","name":"sale","type":"tuple"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setCurrentSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"id","type":"uint8"},{"internalType":"enum SaleType","name":"saleType","type":"uint8"},{"internalType":"uint256","name":"mintCost","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"internalType":"struct Sale","name":"","type":"tuple"}],"name":"setCurrentSale","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setEnableLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setEnableRestrict","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setTokenCALLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"enum IERC721Lockable.LockStatus","name":"lockStatus","type":"uint8"}],"name":"setTokenLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setWalletCALLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"enum IERC721Lockable.LockStatus","name":"lockStatus","type":"uint8"}],"name":"setWalletLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"value","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenCALLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenLock","outputs":[{"internalType":"enum IERC721Lockable.LockStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletCALLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletLock","outputs":[{"internalType":"enum IERC721Lockable.LockStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6008805461ffff1916610101179055600e805460ff19166001908117909155601155600060188190556420a226a4a760d91b601c5560a06040526080908152601d906200004d908262000b32565b50604080518082019091526005815264173539b7b760d91b6020820152601e9062000079908262000b32565b503480156200008757600080fd5b506040516200541d3803806200541d833981016040819052620000aa9162000bfe565b604051806080016040528060538152602001620053aa60539139604080518082019091526003815262554a5560e81b6020820152733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b156200023a5780156200018857604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200016957600080fd5b505af11580156200017e573d6000803e3d6000fd5b505050506200023a565b6001600160a01b03821615620001d95760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200014e565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022057600080fd5b505af115801562000235573d6000803e3d6000fd5b505050505b50600290506200024b838262000b32565b5060036200025a828262000b32565b50506001600055506200026d33620002b8565b6012805460ff60a01b19169055601c546200028990336200030a565b601380546001600160a01b0319166001600160a01b038416179055620002b0828262000324565b505062000cd9565b601280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200031462000346565b620003208282620003a8565b5050565b620003208282604051806020016040528060008152506200044c60201b60201c565b6012546001600160a01b03163314620003a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b6000828152601b602090815260408083206001600160a01b038516845290915290205460ff1662000320576000828152601b602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620004083390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620004588383620004c3565b6001600160a01b0383163b15620004be576000548281035b60018101906200048690600090879086620005bd565b620004a4576040516368d2bf6b60e11b815260040160405180910390fd5b81811062000470578160005414620004bb57600080fd5b50505b505050565b6000805490829003620004e95760405163b562e8dd60e01b815260040160405180910390fd5b620004f86000848385620006b1565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020620053fd8339815191528180a4600183015b818114620005875780836000600080516020620053fd833981519152600080a46001016200055e565b5081600003620005a957604051622e076360e81b815260040160405180910390fd5b6000908155620004be9150848385620006d0565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620005f490339089908890889060040162000c3a565b6020604051808303816000875af192505050801562000632575060408051601f3d908101601f191682019092526200062f9181019062000cad565b60015b62000694573d80801562000663576040519150601f19603f3d011682016040523d82523d6000602084013e62000668565b606091505b5080516000036200068c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b620006ca848484846200070260201b62001ddc1760201c565b50505050565b620006e9848484846200079360201b62001e671760201c565b620006ca84848484620007bf60201b62001e911760201c565b6001600160a01b038416158015906200072357506001600160a01b03831615155b15620006ca576200073482620007e4565b15620006ca5760405162461bcd60e51b815260206004820152602760248201527f4c6f636b61626c653a2043616e206e6f74207472616e73666572206c6f636b6560448201526632103a37b5b2b760c91b60648201526084016200039d565b6001600160a01b03841615620006ca576000828152600960205260409020805460ff19169055620006ca565b6001600160a01b03841615620006ca576000828152600f6020526040812055620006ca565b600081620007f281620008fa565b620008565760405162461bcd60e51b815260206004820152602d60248201527f4c6f636b61626c653a206c6f636b696e6720717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016200039d565b60085460ff166200086b5760009150620008f4565b600260008481526009602052604090205460ff16600281111562000893576200089362000a7e565b1480620008df575060008381526009602052604081205460ff166002811115620008c157620008c162000a7e565b148015620008df5750620008df620008d98462000934565b62000941565b15620008ef5760019150620008f4565b600091505b50919050565b6000816001111580156200090f575060005482105b80156200092e5750600082815260046020526040902054600160e01b16155b92915050565b60006200092e8262000a03565b60085460009060ff166200095757506000919050565b60026001600160a01b0383166000908152600a602052604090205460ff16600281111562000989576200098962000a7e565b1480620009ed57506001600160a01b0382166000908152600a602052604081205460ff166002811115620009c157620009c162000a7e565b148015620009ed57506002600854610100900460ff166002811115620009eb57620009eb62000a7e565b145b15620009fb57506001919050565b506000919050565b6000818060011162000a655760005481101562000a655760008181526004602052604081205490600160e01b8216900362000a63575b8060000362000a5c57506000190160008181526004602052604090205462000a39565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000abf57607f821691505b602082108103620008f457634e487b7160e01b600052602260045260246000fd5b601f821115620004be57600081815260208120601f850160051c8101602086101562000b095750805b601f850160051c820191505b8181101562000b2a5782815560010162000b15565b505050505050565b81516001600160401b0381111562000b4e5762000b4e62000a94565b62000b668162000b5f845462000aaa565b8462000ae0565b602080601f83116001811462000b9e576000841562000b855750858301515b600019600386901b1c1916600185901b17855562000b2a565b600085815260208120601f198616915b8281101562000bcf5788860151825594840194600190910190840162000bae565b508582101562000bee5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000806040838503121562000c1257600080fd5b82516001600160a01b038116811462000c2a57600080fd5b6020939093015192949293505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000c895785810182015185820160a00152810162000c6b565b5050600060a0828501015260a0601f19601f83011684010191505095945050505050565b60006020828403121562000cc057600080fd5b81516001600160e01b03198116811462000a5c57600080fd5b6146c18062000ce96000396000f3fe6080604052600436106103ef5760003560e01c80636f8b44b011610208578063a41216ac11610118578063d89135cd116100ab578063eb0562971161007a578063eb05629714610bbb578063f2fde38b14610bd0578063f3b3059e14610bf0578063f6aacfb114610c10578063ff76821214610c3057600080fd5b8063d89135cd14610b53578063da3ef23f14610b68578063e985e9c514610b88578063ea25e17614610ba857600080fd5b8063c6682862116100e7578063c668286214610ae8578063c87b56dd14610afd578063d547741f14610b1d578063d5abeb0114610b3d57600080fd5b8063a41216ac14610a68578063a49340cc14610a88578063b31391cb14610aa8578063b88d4fde14610ad557600080fd5b80638a3c0fad1161019b57806395d89b411161016a57806395d89b41146109d1578063a059b164146109e6578063a217fddf14610a06578063a22cb46514610a1b578063a35c23ad14610a3b57600080fd5b80638a3c0fad146109535780638da5cb5b146109735780638ee2e28c1461099157806391d14854146109b157600080fd5b806379884269116101d757806379884269146108ce5780637c3dc173146108fe5780638456cb591461091e578063874a8b021461093357600080fd5b80636f8b44b01461085957806370a0823114610879578063715018a61461089957806372b44d71146108ae57600080fd5b806336568abe116103035780634a4fbeec1161029657806355f804b31161026557806355f804b3146107ac5780635c64bb72146107cc5780635c975abb146108055780636352211e146108245780636c0360eb1461084457600080fd5b80634a4fbeec146107295780634b81d8bd146107495780634f3db346146107765780634fdaf0521461078c57600080fd5b80633ccfd60b116102d25780633ccfd60b146106d95780633f4ba83a146106ee57806342842e0e1461070357806347cf4e1b1461071657600080fd5b806336568abe1461065f578063374032a11461067f578063396e8f53146106995780633ab1a494146106b957600080fd5b806310c395bf116103865780632398f843116103555780632398f843146105b957806323b872dd146105e6578063248a9ca3146105f95780632a0acc6a146106295780632f2ff15d1461063f57600080fd5b806310c395bf1461052057806313c528261461054c5780631581b6001461057c57806318160ddd1461059c57600080fd5b806307265389116103c2578063072653891461049b578063081812fc146104b5578063095ea7b3146104ed5780630f4345e21461050057600080fd5b8063019a7ab1146103f457806301ffc9a714610427578063025e332e1461045757806306fdde0314610479575b600080fd5b34801561040057600080fd5b5061041461040f366004613afa565b610c50565b6040519081526020015b60405180910390f35b34801561043357600080fd5b50610447610442366004613b29565b610c88565b604051901515815260200161041e565b34801561046357600080fd5b50610477610472366004613b5b565b610cb7565b005b34801561048557600080fd5b5061048e610ce6565b60405161041e9190613bc8565b3480156104a757600080fd5b50600e546104479060ff1681565b3480156104c157600080fd5b506104d56104d0366004613afa565b610d78565b6040516001600160a01b03909116815260200161041e565b6104776104fb366004613bdb565b610dbc565b34801561050c57600080fd5b5061047761051b366004613afa565b610dd0565b34801561052c57600080fd5b5060085461053f90610100900460ff1681565b60405161041e9190613c1d565b34801561055857600080fd5b5061053f610567366004613b5b565b600a6020526000908152604090205460ff1681565b34801561058857600080fd5b506013546104d5906001600160a01b031681565b3480156105a857600080fd5b506001546000540360001901610414565b3480156105c557600080fd5b506104146105d4366004613b5b565b60106020526000908152604090205481565b6104776105f4366004613c37565b610de2565b34801561060557600080fd5b50610414610614366004613afa565b6000908152601b602052604090206001015490565b34801561063557600080fd5b50610414601c5481565b34801561064b57600080fd5b5061047761065a366004613c78565b610f43565b34801561066b57600080fd5b5061047761067a366004613c78565b610f55565b34801561068b57600080fd5b506008546104479060ff1681565b3480156106a557600080fd5b50600b546104d5906001600160a01b031681565b3480156106c557600080fd5b506104776106d4366004613b5b565b610fcf565b3480156106e557600080fd5b50610477610ffe565b3480156106fa57600080fd5b50610477611015565b610477610711366004613c37565b611029565b610477610724366004613cf3565b61117a565b34801561073557600080fd5b50610447610744366004613b5b565b611289565b34801561075557600080fd5b50610769610764366004613d75565b61133e565b60405161041e9190613d97565b34801561078257600080fd5b5061041460115481565b34801561079857600080fd5b506104776107a7366004613def565b61150c565b3480156107b857600080fd5b506104776107c7366004613e95565b611521565b3480156107d857600080fd5b506107f560155460165460175460ff808416936101009004169293565b60405161041e9493929190613edd565b34801561081157600080fd5b50601254600160a01b900460ff16610447565b34801561083057600080fd5b506104d561083f366004613afa565b61153e565b34801561085057600080fd5b5061048e611549565b34801561086557600080fd5b50610477610874366004613afa565b6115d7565b34801561088557600080fd5b50610414610894366004613b5b565b6115e9565b3480156108a557600080fd5b50610477611637565b3480156108ba57600080fd5b506104776108c9366004613b5b565b61164b565b3480156108da57600080fd5b5061053f6108e9366004613afa565b60096020526000908152604090205460ff1681565b34801561090a57600080fd5b50610477610919366004613d75565b611660565b34801561092a57600080fd5b506104776116f0565b34801561093f57600080fd5b5061047761094e366004613f12565b611704565b34801561095f57600080fd5b5061047761096e366004613f59565b611757565b34801561097f57600080fd5b506012546001600160a01b03166104d5565b34801561099d57600080fd5b506104776109ac366004613f84565b611773565b3480156109bd57600080fd5b506104476109cc366004613c78565b6117a5565b3480156109dd57600080fd5b5061048e6117d0565b3480156109f257600080fd5b50610477610a01366004613fae565b6117df565b348015610a1257600080fd5b50610414600081565b348015610a2757600080fd5b50610477610a36366004613fcb565b6117ff565b348015610a4757600080fd5b50610477610a56366004613afa565b33600090815260106020526040902055565b348015610a7457600080fd5b50610477610a83366004613fae565b611896565b348015610a9457600080fd5b50610477610aa3366004613ff9565b6118b6565b348015610ab457600080fd5b50610414610ac3366004613afa565b600f6020526000908152604090205481565b610477610ae3366004614064565b61193b565b348015610af457600080fd5b5061048e611a9a565b348015610b0957600080fd5b5061048e610b18366004613afa565b611aa7565b348015610b2957600080fd5b50610477610b38366004613c78565b611adb565b348015610b4957600080fd5b5061041460145481565b348015610b5f57600080fd5b50610414611ae3565b348015610b7457600080fd5b50610477610b83366004613e95565b611af3565b348015610b9457600080fd5b50610447610ba33660046140e3565b611b0b565b610477610bb6366004614111565b611b46565b348015610bc757600080fd5b50610769611bae565b348015610bdc57600080fd5b50610477610beb366004613b5b565b611bc8565b348015610bfc57600080fd5b50610477610c0b366004614171565b611c3e565b348015610c1c57600080fd5b50610447610c2b366004613afa565b611cd5565b348015610c3c57600080fd5b50610477610c4b366004613b5b565b611dc7565b6000818152601960205260408120601554815460ff918216911603610c79576001015492915050565b50600092915050565b50919050565b6000610c9382611eb4565b80610ca25750610ca282611f02565b80610cb15750610cb182611f40565b92915050565b601c54610cc381611f75565b600b80546001600160a01b0319166001600160a01b0384161790555050565b5050565b606060028054610cf5906141c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d21906141c4565b8015610d6e5780601f10610d4357610100808354040283529160200191610d6e565b820191906000526020600020905b815481529060010190602001808311610d5157829003601f168201915b5050505050905090565b6000610d8382611f7f565b610da0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b610dc68282611fb4565b610ce28282611fc8565b601c54610ddc81611f75565b50601155565b826daaeb6d7670e522a718067333cd4e3b15610f3257336001600160a01b03821603610e1857610e13848484612068565b610f3d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8b91906141f8565b8015610f0e5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610eea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0e91906141f8565b610f3257604051633b79c77360e21b81523360048201526024015b60405180910390fd5b610f3d848484612068565b50505050565b610f4b61220a565b610ce28282612264565b6001600160a01b0381163314610fc55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610f29565b610ce282826122ea565b601c54610fdb81611f75565b50601380546001600160a01b0319166001600160a01b0392909216919091179055565b601c5461100a81611f75565b611012612351565b50565b601c5461102181611f75565b6110126123bf565b826daaeb6d7670e522a718067333cd4e3b1561116f57336001600160a01b0382160361105a57610e13848484612414565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110cd91906141f8565b80156111505750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561112c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115091906141f8565b61116f57604051633b79c77360e21b8152336004820152602401610f29565b610f3d848484612414565b601654849061118a90829061422b565b3410156111cb5760405162461bcd60e51b815260206004820152600f60248201526e3737ba1032b737bab3b41032ba341760891b6044820152606401610f29565b6111d987878787878761242f565b60005b858110156112755760008787838181106111f8576111f8614242565b90506020020135905061120a8161153e565b6001600160a01b0316336001600160a01b0316146112595760405162461bcd60e51b815260206004820152600c60248201526b37b7363c903437b63232b91760a11b6044820152606401610f29565b611262816124ee565b508061126d81614258565b9150506111dc565b5061128033866124f9565b50505050505050565b60085460009060ff1661129e57506000919050565b60026001600160a01b0383166000908152600a602052604090205460ff1660028111156112cd576112cd613c07565b148061132957506001600160a01b0382166000908152600a602052604081205460ff16600281111561130157611301613c07565b14801561132957506002600854610100900460ff16600281111561132757611327613c07565b145b1561133657506001919050565b506000919050565b6060600061134c8484614271565b611357906001614284565b6001600160401b0381111561136e5761136e613e0a565b604051908082528060200260200182016040528015611397578160200160208202803683370190505b509050600080855b85811161143f576113af81611f7f565b80156113bf57506113bf81611cd5565b156113fa5760018484815181106113d8576113d8614242565b91151560209283029190910190910152816113f281614258565b92505061141f565b600084848151811061140e5761140e614242565b911515602092830291909101909101525b8261142981614258565b935050808061143790614258565b91505061139f565b506000816001600160401b0381111561145a5761145a613e0a565b604051908082528060200260200182016040528015611483578160200160208202803683370190505b5060009350905082875b8781116114ff578585815181106114a6576114a6614242565b6020026020010151156114df57808383815181106114c6576114c6614242565b6020908102919091010152816114db81614258565b9250505b846114e981614258565b95505080806114f790614258565b91505061148d565b5090979650505050505050565b601c5461151881611f75565b610ce282612513565b601c5461152d81611f75565b601d61153983826142dd565b505050565b6000610cb18261253c565b601d8054611556906141c4565b80601f0160208091040260200160405190810160405280929190818152602001828054611582906141c4565b80156115cf5780601f106115a4576101008083540402835291602001916115cf565b820191906000526020600020905b8154815290600101906020018083116115b257829003601f168201915b505050505081565b601c546115e381611f75565b50601455565b60006001600160a01b038216611612576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61163f61220a565b61164960006125ab565b565b601c5461165781611f75565b610ce2826125fd565b8161166a8161153e565b6001600160a01b0316336001600160a01b0316146116dd5760405162461bcd60e51b815260206004820152602a60248201527f5265737472696374417070726f76653a206f7065726174696f6e206973206f6e604482015269363c903437b63232b91760b11b6064820152608401610f29565b506000918252600f602052604090912055565b601c546116fc81611f75565b611012612642565b336001600160a01b0383161461174d5760405162461bcd60e51b815260206004820152600e60248201526d37b7363c903cb7bab939b2b6331760911b6044820152606401610f29565b610ce28282612685565b601c5461176381611f75565b61176c8361270e565b50601a5550565b60405162461bcd60e51b81526020600482015260076024820152663737903ab9b29760c91b6044820152606401610f29565b6000918252601b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610cf5906141c4565b601c546117eb81611f75565b50600e805460ff1916911515919091179055565b61180833611289565b1580611812575080155b61185e5760405162461bcd60e51b815260206004820152601c60248201527f43616e206e6f7420617070726f7665206c6f636b656420746f6b656e000000006044820152606401610f29565b61186782612779565b80611870575080155b61188c5760405162461bcd60e51b8152600401610f299061439c565b610ce28282612785565b601c546118a281611f75565b506008805460ff1916911515919091179055565b601c546118c281611f75565b8382146118ce57600080fd5b60005b84811015611933576119218686838181106118ee576118ee614242565b90506020020160208101906119039190613b5b565b85858481811061191557611915614242565b905060200201356124f9565b8061192b81614258565b9150506118d1565b505050505050565b836daaeb6d7670e522a718067333cd4e3b15611a8757336001600160a01b038216036119725761196d858585856127bd565b611a93565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156119c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e591906141f8565b8015611a685750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6891906141f8565b611a8757604051633b79c77360e21b8152336004820152602401610f29565b611a93858585856127bd565b5050505050565b601e8054611556906141c4565b6060611ab282612801565b601e604051602001611ac59291906143e9565b6040516020818303038152906040529050919050565b610fc561220a565b6000611aee60015490565b905090565b601c54611aff81611f75565b601e61153983826142dd565b6000611b1683611289565b80611b285750611b268383612884565b155b15611b3557506000610cb1565b611b3f83836128a4565b9392505050565b6016548490611b5690829061422b565b341015611b975760405162461bcd60e51b815260206004820152600f60248201526e3737ba1032b737bab3b41032ba341760891b6044820152606401610f29565b611ba486868686866128cb565b61193333866124f9565b600054606090600190611bc1828261133e565b9250505090565b611bd061220a565b6001600160a01b038116611c355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f29565b611012816125ab565b60005b82811015611cc957611c6a848483818110611c5e57611c5e614242565b9050602002013561153e565b6001600160a01b0316336001600160a01b031614611cb75760405162461bcd60e51b815260206004820152600a6024820152693737ba1037bbb732b91760b11b6044820152606401610f29565b80611cc181614258565b915050611c41565b50611539838383612985565b600081611ce181611f7f565b611d435760405162461bcd60e51b815260206004820152602d60248201527f4c6f636b61626c653a206c6f636b696e6720717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610f29565b60085460ff16611d565760009150610c82565b600260008481526009602052604090205460ff166002811115611d7b57611d7b613c07565b1480611db9575060008381526009602052604081205460ff166002811115611da557611da5613c07565b148015611db95750611db96107448461153e565b15610c795760019150610c82565b601c54611dd381611f75565b610ce282612a69565b6001600160a01b03841615801590611dfc57506001600160a01b03831615155b15610f3d57611e0a82611cd5565b15610f3d5760405162461bcd60e51b815260206004820152602760248201527f4c6f636b61626c653a2043616e206e6f74207472616e73666572206c6f636b6560448201526632103a37b5b2b760c91b6064820152608401610f29565b6001600160a01b03841615610f3d576000828152600960205260409020805460ff19169055610f3d565b6001600160a01b03841615610f3d576000828152600f6020526040812055610f3d565b60006301ffc9a760e01b6001600160e01b031983161480611ee557506380ac58cd60e01b6001600160e01b03198316145b80610cb15750506001600160e01b031916635b5e139f60e01b1490565b6000611f0d82611eb4565b80611f1c5750611f1c82612aae565b80611f2b5750611f2b82612ad3565b80610cb15750506001600160e01b0319161590565b60006001600160e01b03198216637965db0b60e01b1480610cb157506301ffc9a760e01b6001600160e01b0319831614610cb1565b6110128133612af8565b600081600111158015611f93575060005482105b8015610cb1575050600090815260046020526040902054600160e01b161590565b611fbe8282612b5c565b610ce28282612bc1565b6000611fd38261153e565b9050336001600160a01b0382161461200c57611fef8133611b0b565b61200c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006120738261253c565b9050836001600160a01b0316816001600160a01b0316146120a65760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546120d28187335b6001600160a01b039081169116811491141790565b6120fd576120e08633611b0b565b6120fd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661212457604051633a954ecd60e21b815260040160405180910390fd5b6121318686866001612c3c565b801561213c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036121ce576001840160008181526004602052604081205490036121cc5760005481146121cc5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061466c83398151915260405160405180910390a46119338686866001612c48565b6012546001600160a01b031633146116495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f29565b61226e82826117a5565b610ce2576000828152601b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556122a63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6122f482826117a5565b15610ce2576000828152601b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6013546001600160a01b03166123a95760405162461bcd60e51b815260206004820152601e60248201527f77697468647261772061646472657373206973203020616464726573732e00006044820152606401610f29565b601354611649906001600160a01b031647612c60565b6123c7612d79565b6012805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6115398383836040518060200160405280600081525061193b565b858585905084848460008533856040516020016124719392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6040516020818303038152906040528051906020012090506124978383601a5484612dc9565b6124d45760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b210383937b7b31760911b6044820152606401610f29565b6124e08c8c8c8c612de1565b505050505050505050505050565b611012816000612ef8565b610ce282826040518060200160405280600081525061304c565b6008805482919061ff00191661010083600281111561253457612534613c07565b021790555050565b60008180600111612592576000548110156125925760008181526004602052604081205490600160e01b82169003612590575b80600003611b3f57506000190160008181526004602052604090205461256f565b505b604051636f96cda160e11b815260040160405180910390fd5b601280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612608600c826130b2565b506040516001600160a01b0382169033907f3b01c97343869ca2757fcc37cdb8f71683b0a7aed858e3755f4529a1db85729290600090a350565b61264a6130c7565b6012805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123f73390565b6001600160a01b0382166000908152600a60205260409020805482919060ff191660018360028111156126ba576126ba613c07565b0217905550336001600160a01b0316826001600160a01b03167f9fdb14457e6a7bd3753c649831b026de987c06e52d16459a928540738c2ea34b836040516127029190613c1d565b60405180910390a35050565b6015805460ff169082906127228282614485565b505060006018557f75e3689da7799229d232f2c15fc530f1a386e47a961aea8ccc86ed74cfb4bd4f8161275860208501856144e1565b6040805160ff93841681529290911660208301520160405180910390a15050565b6000610cb13383612884565b61278e82612779565b80612797575080155b6127b35760405162461bcd60e51b8152600401610f299061439c565b610ce28282613114565b6127c8848484610de2565b6001600160a01b0383163b15610f3d576127e48484848461317d565b610f3d576040516368d2bf6b60e11b815260040160405180910390fd5b606061280c82611f7f565b61282957604051630a14c4b560e41b815260040160405180910390fd5b6000612833613265565b905080516000036128535760405180602001604052806000815250611b3f565b8061285d84613274565b60405160200161286e9291906144fe565b6040516020818303038152906040529392505050565b600080612890846132b8565b905061289c83826132fa565b949350505050565b60006128b08383612884565b15156000036128c157506000610cb1565b611b3f8383613393565b8484848484600085338560405160200161290a9392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6040516020818303038152906040528051906020012090506129308383601a5484612dc9565b61296d5760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b210383937b7b31760911b6044820152606401610f29565b6129788b8b8b6133d9565b5050505050505050505050565b60005b82811015610f3d5781600960008686858181106129a7576129a7614242565b60209081029290920135835250810191909152604001600020805460ff191660018360028111156129da576129da613c07565b02179055508383828181106129f1576129f1614242565b90506020020135336001600160a01b0316612a17868685818110611c5e57611c5e614242565b6001600160a01b03167f80a668baf7ac68b329075f26c37b4428d4aa272c3bd4c9611b25f5fb1c473f7c85604051612a4f9190613c1d565b60405180910390a480612a6181614258565b915050612988565b612a74600c82613547565b506040516001600160a01b0382169033907fbd0af1fe0a2c1c7bb340c17a284a291138979c8eeb797e176dbd1c415199af3c90600090a350565b60006001600160e01b03198216632742b5b960e01b1480610cb15750610cb182611eb4565b60006001600160e01b031982166380dfb9af60e01b1480610cb15750610cb182612aae565b612b0282826117a5565b610ce257612b1a816001600160a01b0316601461355c565b612b2583602061355c565b604051602001612b3692919061452d565b60408051601f198184030181529082905262461bcd60e51b8252610f2991600401613bc8565b612b6581611cd5565b15610ce25760405162461bcd60e51b815260206004820152602660248201527f4c6f636b61626c653a2043616e206e6f7420617070726f7665206c6f636b6564604482015265103a37b5b2b760d11b6064820152608401610f29565b6001600160a01b03821615610ce257612bda81836136f7565b610ce25760405162461bcd60e51b815260206004820152602d60248201527f5265737472696374417070726f76653a2054686520636f6e747261637420697360448201526c103737ba1030b63637bbb2b21760991b6064820152608401610f29565b610f3d84848484611ddc565b612c5484848484611e67565b610f3d84848484611e91565b80471015612cb05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610f29565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612cfd576040519150601f19603f3d011682016040523d82523d6000602084013e612d02565b606091505b50509050806115395760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610f29565b601254600160a01b900460ff166116495760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610f29565b600082612dd7868685613704565b1495945050505050565b612de96130c7565b601754601854839190612dfc9083614284565b1115612e1a5760405162461bcd60e51b8152600401610f29906145a2565b8483838082612e2885610c50565b612e329190614284565b1115612e805760405162461bcd60e51b815260206004820152601d60248201527f636c61696d206973206f76657220616c6c6f77656420616d6f756e742e0000006044820152606401610f29565b6001601554610100900460ff166001811115612e9e57612e9e613c07565b14612ee45760405162461bcd60e51b81526020600482015260166024820152753737ba1032bc31b430b733b29039b0b632903737bb9760511b6044820152606401610f29565b612eee8887613750565b5050505050505050565b6000612f038361253c565b905080600080612f2186600090815260066020526040902080549091565b915091508415612f6157612f368184336120bd565b612f6157612f448333611b0b565b612f6157604051632ce44b5f60e11b815260040160405180910390fd5b612f6f836000886001612c3c565b8015612f7a57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003613008576001860160008181526004602052604081205490036130065760005481146130065760008181526004602052604090208590555b505b60405186906000906001600160a01b0386169060008051602061466c833981519152908390a461303c836000886001612c48565b5050600180548101905550505050565b61305683836137c3565b6001600160a01b0383163b15611539576000548281035b613080600086838060010194508661317d565b61309d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061306d578160005414611a9357600080fd5b6000611b3f836001600160a01b0384166138b3565b601254600160a01b900460ff16156116495760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610f29565b61311d33611289565b1580613127575080155b6131735760405162461bcd60e51b815260206004820152601c60248201527f43616e206e6f7420617070726f7665206c6f636b656420746f6b656e000000006044820152606401610f29565b610ce282826139a6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906131b29033908990889088906004016145e4565b6020604051808303816000875af19250505080156131ed575060408051601f3d908101601f191682019092526131ea91810190614621565b60015b61324b573d80801561321b576040519150601f19603f3d011682016040523d82523d6000602084013e613220565b606091505b508051600003613243576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061289c565b6060601d8054610cf5906141c4565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061328e5750819003601f19909101908152919050565b6001600160a01b038116600090815260106020526040812054156132f257506001600160a01b031660009081526010602052604090205490565b505060115490565b600e5460009060ff1661330f57506001610cb1565b61331883613a0b565b80611b3f5750600b54604051630f8350ed60e41b81526001600160a01b038581166004830152602482018590529091169063f8350ed090604401602060405180830381865afa15801561336f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3f91906141f8565b600061339e83611289565b156133ab57506000610cb1565b6001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff16611b3f565b6133e16130c7565b816014546133ed613a35565b6133f79083614284565b11156134455760405162461bcd60e51b815260206004820152601d60248201527f636c61696d206973206f76657220746865206d617820737570706c792e0000006044820152606401610f29565b6017546018548491906134589083614284565b11156134765760405162461bcd60e51b8152600401610f29906145a2565b848484808261348485610c50565b61348e9190614284565b11156134dc5760405162461bcd60e51b815260206004820152601d60248201527f636c61696d206973206f76657220616c6c6f77656420616d6f756e742e0000006044820152606401610f29565b6000601554610100900460ff1660018111156134fa576134fa613c07565b1461353d5760405162461bcd60e51b81526020600482015260136024820152723737ba1031b630b4b69039b0b632903737bb9760691b6044820152606401610f29565b612eee8888613750565b6000611b3f836001600160a01b038416613a4a565b6060600061356b83600261422b565b613576906002614284565b6001600160401b0381111561358d5761358d613e0a565b6040519080825280601f01601f1916602001820160405280156135b7576020820181803683370190505b509050600360fc1b816000815181106135d2576135d2614242565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061360157613601614242565b60200101906001600160f81b031916908160001a905350600061362584600261422b565b613630906001614284565b90505b60018111156136a8576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061366457613664614242565b1a60f81b82828151811061367a5761367a614242565b60200101906001600160f81b031916908160001a90535060049490941c936136a18161463e565b9050613633565b508315611b3f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610f29565b6000806128903385613a99565b600081815b84811015613747576137338287878481811061372757613727614242565b90506020020135613acb565b91508061373f81614258565b915050613709565b50949350505050565b6000828152601960205260409020601554815460ff91821691160361378e57818160010160008282546137839190614284565b909155506137a79050565b601554815460ff191660ff909116178155600181018290555b81601860008282546137b99190614284565b9091555050505050565b60008054908290036137e85760405163b562e8dd60e01b815260040160405180910390fd5b6137f56000848385612c3c565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602061466c8339815191528180a4600183015b818114613880578083600060008051602061466c833981519152600080a460010161385a565b50816000036138a157604051622e076360e81b815260040160405180910390fd5b60009081556115399150848385612c48565b6000818152600183016020526040812054801561399c5760006138d7600183614271565b85549091506000906138eb90600190614271565b905081811461395057600086600001828154811061390b5761390b614242565b906000526020600020015490508087600001848154811061392e5761392e614242565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061396157613961614655565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610cb1565b6000915050610cb1565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101612702565b6000610cb1600c836001600160a01b03811660009081526001830160205260408120541515611b3f565b6000611aee6001546000546000199190030190565b6000818152600183016020526040812054613a9157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cb1565b506000610cb1565b6000818152600f602052604081205415613ac257506000818152600f6020526040902054610cb1565b611b3f836132b8565b6000818310613ae7576000828152602084905260409020611b3f565b6000838152602083905260409020611b3f565b600060208284031215613b0c57600080fd5b5035919050565b6001600160e01b03198116811461101257600080fd5b600060208284031215613b3b57600080fd5b8135611b3f81613b13565b6001600160a01b038116811461101257600080fd5b600060208284031215613b6d57600080fd5b8135611b3f81613b46565b60005b83811015613b93578181015183820152602001613b7b565b50506000910152565b60008151808452613bb4816020860160208601613b78565b601f01601f19169290920160200192915050565b602081526000611b3f6020830184613b9c565b60008060408385031215613bee57600080fd5b8235613bf981613b46565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6020810160038310613c3157613c31613c07565b91905290565b600080600060608486031215613c4c57600080fd5b8335613c5781613b46565b92506020840135613c6781613b46565b929592945050506040919091013590565b60008060408385031215613c8b57600080fd5b823591506020830135613c9d81613b46565b809150509250929050565b60008083601f840112613cba57600080fd5b5081356001600160401b03811115613cd157600080fd5b6020830191508360208260051b8501011115613cec57600080fd5b9250929050565b60008060008060008060808789031215613d0c57600080fd5b8635955060208701356001600160401b0380821115613d2a57600080fd5b613d368a838b01613ca8565b9097509550604089013594506060890135915080821115613d5657600080fd5b50613d6389828a01613ca8565b979a9699509497509295939492505050565b60008060408385031215613d8857600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b81811015613dcf57835183529284019291840191600101613db3565b50909695505050505050565b803560038110613dea57600080fd5b919050565b600060208284031215613e0157600080fd5b611b3f82613ddb565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115613e3a57613e3a613e0a565b604051601f8501601f19908116603f01168101908282118183101715613e6257613e62613e0a565b81604052809350858152868686011115613e7b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613ea757600080fd5b81356001600160401b03811115613ebd57600080fd5b8201601f81018413613ece57600080fd5b61289c84823560208401613e20565b60ff851681526080810160028510613ef757613ef7613c07565b84602083015283604083015282606083015295945050505050565b60008060408385031215613f2557600080fd5b8235613f3081613b46565b9150613f3e60208401613ddb565b90509250929050565b600060808284031215610c8257600080fd5b60008060a08385031215613f6c57600080fd5b613f768484613f47565b946080939093013593505050565b600060808284031215613f9657600080fd5b611b3f8383613f47565b801515811461101257600080fd5b600060208284031215613fc057600080fd5b8135611b3f81613fa0565b60008060408385031215613fde57600080fd5b8235613fe981613b46565b91506020830135613c9d81613fa0565b6000806000806040858703121561400f57600080fd5b84356001600160401b038082111561402657600080fd5b61403288838901613ca8565b9096509450602087013591508082111561404b57600080fd5b5061405887828801613ca8565b95989497509550505050565b6000806000806080858703121561407a57600080fd5b843561408581613b46565b9350602085013561409581613b46565b92506040850135915060608501356001600160401b038111156140b757600080fd5b8501601f810187136140c857600080fd5b6140d787823560208401613e20565b91505092959194509250565b600080604083850312156140f657600080fd5b823561410181613b46565b91506020830135613c9d81613b46565b60008060008060006080868803121561412957600080fd5b85359450602086013593506040860135925060608601356001600160401b0381111561415457600080fd5b61416088828901613ca8565b969995985093965092949392505050565b60008060006040848603121561418657600080fd5b83356001600160401b0381111561419c57600080fd5b6141a886828701613ca8565b90945092506141bb905060208501613ddb565b90509250925092565b600181811c908216806141d857607f821691505b602082108103610c8257634e487b7160e01b600052602260045260246000fd5b60006020828403121561420a57600080fd5b8151611b3f81613fa0565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610cb157610cb1614215565b634e487b7160e01b600052603260045260246000fd5b60006001820161426a5761426a614215565b5060010190565b81810381811115610cb157610cb1614215565b80820180821115610cb157610cb1614215565b601f82111561153957600081815260208120601f850160051c810160208610156142be5750805b601f850160051c820191505b81811015611933578281556001016142ca565b81516001600160401b038111156142f6576142f6613e0a565b61430a8161430484546141c4565b84614297565b602080601f83116001811461433f57600084156143275750858301515b600019600386901b1c1916600185901b178555611933565b600085815260208120601f198616915b8281101561436e5788860151825594840194600190910190840161434f565b508582101561438c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252602d908201527f5265737472696374417070726f76653a2043616e206e6f7420617070726f766560408201526c103637b1b5b2b2103a37b5b2b760991b606082015260800190565b6000835160206143fc8285838901613b78565b81840191506000855461440e816141c4565b60018281168015614426576001811461443b57614467565b60ff1984168752821515830287019450614467565b896000528560002060005b8481101561445f57815489820152908301908701614446565b505082870194505b50929998505050505050505050565b60ff8116811461101257600080fd5b813561449081614476565b60ff8116905081548160ff1982161783556020840135600281106144b357600080fd5b61ff008160081b168361ffff1984161717845550505060408201356001820155606082013560028201555050565b6000602082840312156144f357600080fd5b8135611b3f81614476565b60008351614510818460208801613b78565b835190830190614524818360208801613b78565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614565816017850160208801613b78565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614596816028840160208801613b78565b01602801949350505050565b60208082526022908201527f636c61696d206973206f76657220746865206d61782073616c6520737570706c6040820152613c9760f11b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061461790830184613b9c565b9695505050505050565b60006020828403121561463357600080fd5b8151611b3f81613b13565b60008161464d5761464d614215565b506000190190565b634e487b7160e01b600052603160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200b611fd501b4d9fba33f1471977617385dbc3302e394aec32b626e53501a23e664736f6c634300081100334f6e65206461792c556a75756e61206b696c6c656420696e206578706c6f73696f6e2c20616e6420686973207265696e6361726e6174696f6e20697320646563696465642061742067656e657261746976652eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000000f293381c2dfc0831a5fc68376af938334fbe09c0000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x6080604052600436106103ef5760003560e01c80636f8b44b011610208578063a41216ac11610118578063d89135cd116100ab578063eb0562971161007a578063eb05629714610bbb578063f2fde38b14610bd0578063f3b3059e14610bf0578063f6aacfb114610c10578063ff76821214610c3057600080fd5b8063d89135cd14610b53578063da3ef23f14610b68578063e985e9c514610b88578063ea25e17614610ba857600080fd5b8063c6682862116100e7578063c668286214610ae8578063c87b56dd14610afd578063d547741f14610b1d578063d5abeb0114610b3d57600080fd5b8063a41216ac14610a68578063a49340cc14610a88578063b31391cb14610aa8578063b88d4fde14610ad557600080fd5b80638a3c0fad1161019b57806395d89b411161016a57806395d89b41146109d1578063a059b164146109e6578063a217fddf14610a06578063a22cb46514610a1b578063a35c23ad14610a3b57600080fd5b80638a3c0fad146109535780638da5cb5b146109735780638ee2e28c1461099157806391d14854146109b157600080fd5b806379884269116101d757806379884269146108ce5780637c3dc173146108fe5780638456cb591461091e578063874a8b021461093357600080fd5b80636f8b44b01461085957806370a0823114610879578063715018a61461089957806372b44d71146108ae57600080fd5b806336568abe116103035780634a4fbeec1161029657806355f804b31161026557806355f804b3146107ac5780635c64bb72146107cc5780635c975abb146108055780636352211e146108245780636c0360eb1461084457600080fd5b80634a4fbeec146107295780634b81d8bd146107495780634f3db346146107765780634fdaf0521461078c57600080fd5b80633ccfd60b116102d25780633ccfd60b146106d95780633f4ba83a146106ee57806342842e0e1461070357806347cf4e1b1461071657600080fd5b806336568abe1461065f578063374032a11461067f578063396e8f53146106995780633ab1a494146106b957600080fd5b806310c395bf116103865780632398f843116103555780632398f843146105b957806323b872dd146105e6578063248a9ca3146105f95780632a0acc6a146106295780632f2ff15d1461063f57600080fd5b806310c395bf1461052057806313c528261461054c5780631581b6001461057c57806318160ddd1461059c57600080fd5b806307265389116103c2578063072653891461049b578063081812fc146104b5578063095ea7b3146104ed5780630f4345e21461050057600080fd5b8063019a7ab1146103f457806301ffc9a714610427578063025e332e1461045757806306fdde0314610479575b600080fd5b34801561040057600080fd5b5061041461040f366004613afa565b610c50565b6040519081526020015b60405180910390f35b34801561043357600080fd5b50610447610442366004613b29565b610c88565b604051901515815260200161041e565b34801561046357600080fd5b50610477610472366004613b5b565b610cb7565b005b34801561048557600080fd5b5061048e610ce6565b60405161041e9190613bc8565b3480156104a757600080fd5b50600e546104479060ff1681565b3480156104c157600080fd5b506104d56104d0366004613afa565b610d78565b6040516001600160a01b03909116815260200161041e565b6104776104fb366004613bdb565b610dbc565b34801561050c57600080fd5b5061047761051b366004613afa565b610dd0565b34801561052c57600080fd5b5060085461053f90610100900460ff1681565b60405161041e9190613c1d565b34801561055857600080fd5b5061053f610567366004613b5b565b600a6020526000908152604090205460ff1681565b34801561058857600080fd5b506013546104d5906001600160a01b031681565b3480156105a857600080fd5b506001546000540360001901610414565b3480156105c557600080fd5b506104146105d4366004613b5b565b60106020526000908152604090205481565b6104776105f4366004613c37565b610de2565b34801561060557600080fd5b50610414610614366004613afa565b6000908152601b602052604090206001015490565b34801561063557600080fd5b50610414601c5481565b34801561064b57600080fd5b5061047761065a366004613c78565b610f43565b34801561066b57600080fd5b5061047761067a366004613c78565b610f55565b34801561068b57600080fd5b506008546104479060ff1681565b3480156106a557600080fd5b50600b546104d5906001600160a01b031681565b3480156106c557600080fd5b506104776106d4366004613b5b565b610fcf565b3480156106e557600080fd5b50610477610ffe565b3480156106fa57600080fd5b50610477611015565b610477610711366004613c37565b611029565b610477610724366004613cf3565b61117a565b34801561073557600080fd5b50610447610744366004613b5b565b611289565b34801561075557600080fd5b50610769610764366004613d75565b61133e565b60405161041e9190613d97565b34801561078257600080fd5b5061041460115481565b34801561079857600080fd5b506104776107a7366004613def565b61150c565b3480156107b857600080fd5b506104776107c7366004613e95565b611521565b3480156107d857600080fd5b506107f560155460165460175460ff808416936101009004169293565b60405161041e9493929190613edd565b34801561081157600080fd5b50601254600160a01b900460ff16610447565b34801561083057600080fd5b506104d561083f366004613afa565b61153e565b34801561085057600080fd5b5061048e611549565b34801561086557600080fd5b50610477610874366004613afa565b6115d7565b34801561088557600080fd5b50610414610894366004613b5b565b6115e9565b3480156108a557600080fd5b50610477611637565b3480156108ba57600080fd5b506104776108c9366004613b5b565b61164b565b3480156108da57600080fd5b5061053f6108e9366004613afa565b60096020526000908152604090205460ff1681565b34801561090a57600080fd5b50610477610919366004613d75565b611660565b34801561092a57600080fd5b506104776116f0565b34801561093f57600080fd5b5061047761094e366004613f12565b611704565b34801561095f57600080fd5b5061047761096e366004613f59565b611757565b34801561097f57600080fd5b506012546001600160a01b03166104d5565b34801561099d57600080fd5b506104776109ac366004613f84565b611773565b3480156109bd57600080fd5b506104476109cc366004613c78565b6117a5565b3480156109dd57600080fd5b5061048e6117d0565b3480156109f257600080fd5b50610477610a01366004613fae565b6117df565b348015610a1257600080fd5b50610414600081565b348015610a2757600080fd5b50610477610a36366004613fcb565b6117ff565b348015610a4757600080fd5b50610477610a56366004613afa565b33600090815260106020526040902055565b348015610a7457600080fd5b50610477610a83366004613fae565b611896565b348015610a9457600080fd5b50610477610aa3366004613ff9565b6118b6565b348015610ab457600080fd5b50610414610ac3366004613afa565b600f6020526000908152604090205481565b610477610ae3366004614064565b61193b565b348015610af457600080fd5b5061048e611a9a565b348015610b0957600080fd5b5061048e610b18366004613afa565b611aa7565b348015610b2957600080fd5b50610477610b38366004613c78565b611adb565b348015610b4957600080fd5b5061041460145481565b348015610b5f57600080fd5b50610414611ae3565b348015610b7457600080fd5b50610477610b83366004613e95565b611af3565b348015610b9457600080fd5b50610447610ba33660046140e3565b611b0b565b610477610bb6366004614111565b611b46565b348015610bc757600080fd5b50610769611bae565b348015610bdc57600080fd5b50610477610beb366004613b5b565b611bc8565b348015610bfc57600080fd5b50610477610c0b366004614171565b611c3e565b348015610c1c57600080fd5b50610447610c2b366004613afa565b611cd5565b348015610c3c57600080fd5b50610477610c4b366004613b5b565b611dc7565b6000818152601960205260408120601554815460ff918216911603610c79576001015492915050565b50600092915050565b50919050565b6000610c9382611eb4565b80610ca25750610ca282611f02565b80610cb15750610cb182611f40565b92915050565b601c54610cc381611f75565b600b80546001600160a01b0319166001600160a01b0384161790555050565b5050565b606060028054610cf5906141c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d21906141c4565b8015610d6e5780601f10610d4357610100808354040283529160200191610d6e565b820191906000526020600020905b815481529060010190602001808311610d5157829003601f168201915b5050505050905090565b6000610d8382611f7f565b610da0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b610dc68282611fb4565b610ce28282611fc8565b601c54610ddc81611f75565b50601155565b826daaeb6d7670e522a718067333cd4e3b15610f3257336001600160a01b03821603610e1857610e13848484612068565b610f3d565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8b91906141f8565b8015610f0e5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610eea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0e91906141f8565b610f3257604051633b79c77360e21b81523360048201526024015b60405180910390fd5b610f3d848484612068565b50505050565b610f4b61220a565b610ce28282612264565b6001600160a01b0381163314610fc55760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610f29565b610ce282826122ea565b601c54610fdb81611f75565b50601380546001600160a01b0319166001600160a01b0392909216919091179055565b601c5461100a81611f75565b611012612351565b50565b601c5461102181611f75565b6110126123bf565b826daaeb6d7670e522a718067333cd4e3b1561116f57336001600160a01b0382160361105a57610e13848484612414565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110cd91906141f8565b80156111505750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561112c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115091906141f8565b61116f57604051633b79c77360e21b8152336004820152602401610f29565b610f3d848484612414565b601654849061118a90829061422b565b3410156111cb5760405162461bcd60e51b815260206004820152600f60248201526e3737ba1032b737bab3b41032ba341760891b6044820152606401610f29565b6111d987878787878761242f565b60005b858110156112755760008787838181106111f8576111f8614242565b90506020020135905061120a8161153e565b6001600160a01b0316336001600160a01b0316146112595760405162461bcd60e51b815260206004820152600c60248201526b37b7363c903437b63232b91760a11b6044820152606401610f29565b611262816124ee565b508061126d81614258565b9150506111dc565b5061128033866124f9565b50505050505050565b60085460009060ff1661129e57506000919050565b60026001600160a01b0383166000908152600a602052604090205460ff1660028111156112cd576112cd613c07565b148061132957506001600160a01b0382166000908152600a602052604081205460ff16600281111561130157611301613c07565b14801561132957506002600854610100900460ff16600281111561132757611327613c07565b145b1561133657506001919050565b506000919050565b6060600061134c8484614271565b611357906001614284565b6001600160401b0381111561136e5761136e613e0a565b604051908082528060200260200182016040528015611397578160200160208202803683370190505b509050600080855b85811161143f576113af81611f7f565b80156113bf57506113bf81611cd5565b156113fa5760018484815181106113d8576113d8614242565b91151560209283029190910190910152816113f281614258565b92505061141f565b600084848151811061140e5761140e614242565b911515602092830291909101909101525b8261142981614258565b935050808061143790614258565b91505061139f565b506000816001600160401b0381111561145a5761145a613e0a565b604051908082528060200260200182016040528015611483578160200160208202803683370190505b5060009350905082875b8781116114ff578585815181106114a6576114a6614242565b6020026020010151156114df57808383815181106114c6576114c6614242565b6020908102919091010152816114db81614258565b9250505b846114e981614258565b95505080806114f790614258565b91505061148d565b5090979650505050505050565b601c5461151881611f75565b610ce282612513565b601c5461152d81611f75565b601d61153983826142dd565b505050565b6000610cb18261253c565b601d8054611556906141c4565b80601f0160208091040260200160405190810160405280929190818152602001828054611582906141c4565b80156115cf5780601f106115a4576101008083540402835291602001916115cf565b820191906000526020600020905b8154815290600101906020018083116115b257829003601f168201915b505050505081565b601c546115e381611f75565b50601455565b60006001600160a01b038216611612576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61163f61220a565b61164960006125ab565b565b601c5461165781611f75565b610ce2826125fd565b8161166a8161153e565b6001600160a01b0316336001600160a01b0316146116dd5760405162461bcd60e51b815260206004820152602a60248201527f5265737472696374417070726f76653a206f7065726174696f6e206973206f6e604482015269363c903437b63232b91760b11b6064820152608401610f29565b506000918252600f602052604090912055565b601c546116fc81611f75565b611012612642565b336001600160a01b0383161461174d5760405162461bcd60e51b815260206004820152600e60248201526d37b7363c903cb7bab939b2b6331760911b6044820152606401610f29565b610ce28282612685565b601c5461176381611f75565b61176c8361270e565b50601a5550565b60405162461bcd60e51b81526020600482015260076024820152663737903ab9b29760c91b6044820152606401610f29565b6000918252601b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610cf5906141c4565b601c546117eb81611f75565b50600e805460ff1916911515919091179055565b61180833611289565b1580611812575080155b61185e5760405162461bcd60e51b815260206004820152601c60248201527f43616e206e6f7420617070726f7665206c6f636b656420746f6b656e000000006044820152606401610f29565b61186782612779565b80611870575080155b61188c5760405162461bcd60e51b8152600401610f299061439c565b610ce28282612785565b601c546118a281611f75565b506008805460ff1916911515919091179055565b601c546118c281611f75565b8382146118ce57600080fd5b60005b84811015611933576119218686838181106118ee576118ee614242565b90506020020160208101906119039190613b5b565b85858481811061191557611915614242565b905060200201356124f9565b8061192b81614258565b9150506118d1565b505050505050565b836daaeb6d7670e522a718067333cd4e3b15611a8757336001600160a01b038216036119725761196d858585856127bd565b611a93565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156119c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e591906141f8565b8015611a685750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6891906141f8565b611a8757604051633b79c77360e21b8152336004820152602401610f29565b611a93858585856127bd565b5050505050565b601e8054611556906141c4565b6060611ab282612801565b601e604051602001611ac59291906143e9565b6040516020818303038152906040529050919050565b610fc561220a565b6000611aee60015490565b905090565b601c54611aff81611f75565b601e61153983826142dd565b6000611b1683611289565b80611b285750611b268383612884565b155b15611b3557506000610cb1565b611b3f83836128a4565b9392505050565b6016548490611b5690829061422b565b341015611b975760405162461bcd60e51b815260206004820152600f60248201526e3737ba1032b737bab3b41032ba341760891b6044820152606401610f29565b611ba486868686866128cb565b61193333866124f9565b600054606090600190611bc1828261133e565b9250505090565b611bd061220a565b6001600160a01b038116611c355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f29565b611012816125ab565b60005b82811015611cc957611c6a848483818110611c5e57611c5e614242565b9050602002013561153e565b6001600160a01b0316336001600160a01b031614611cb75760405162461bcd60e51b815260206004820152600a6024820152693737ba1037bbb732b91760b11b6044820152606401610f29565b80611cc181614258565b915050611c41565b50611539838383612985565b600081611ce181611f7f565b611d435760405162461bcd60e51b815260206004820152602d60248201527f4c6f636b61626c653a206c6f636b696e6720717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610f29565b60085460ff16611d565760009150610c82565b600260008481526009602052604090205460ff166002811115611d7b57611d7b613c07565b1480611db9575060008381526009602052604081205460ff166002811115611da557611da5613c07565b148015611db95750611db96107448461153e565b15610c795760019150610c82565b601c54611dd381611f75565b610ce282612a69565b6001600160a01b03841615801590611dfc57506001600160a01b03831615155b15610f3d57611e0a82611cd5565b15610f3d5760405162461bcd60e51b815260206004820152602760248201527f4c6f636b61626c653a2043616e206e6f74207472616e73666572206c6f636b6560448201526632103a37b5b2b760c91b6064820152608401610f29565b6001600160a01b03841615610f3d576000828152600960205260409020805460ff19169055610f3d565b6001600160a01b03841615610f3d576000828152600f6020526040812055610f3d565b60006301ffc9a760e01b6001600160e01b031983161480611ee557506380ac58cd60e01b6001600160e01b03198316145b80610cb15750506001600160e01b031916635b5e139f60e01b1490565b6000611f0d82611eb4565b80611f1c5750611f1c82612aae565b80611f2b5750611f2b82612ad3565b80610cb15750506001600160e01b0319161590565b60006001600160e01b03198216637965db0b60e01b1480610cb157506301ffc9a760e01b6001600160e01b0319831614610cb1565b6110128133612af8565b600081600111158015611f93575060005482105b8015610cb1575050600090815260046020526040902054600160e01b161590565b611fbe8282612b5c565b610ce28282612bc1565b6000611fd38261153e565b9050336001600160a01b0382161461200c57611fef8133611b0b565b61200c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006120738261253c565b9050836001600160a01b0316816001600160a01b0316146120a65760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546120d28187335b6001600160a01b039081169116811491141790565b6120fd576120e08633611b0b565b6120fd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661212457604051633a954ecd60e21b815260040160405180910390fd5b6121318686866001612c3c565b801561213c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036121ce576001840160008181526004602052604081205490036121cc5760005481146121cc5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b031660008051602061466c83398151915260405160405180910390a46119338686866001612c48565b6012546001600160a01b031633146116495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f29565b61226e82826117a5565b610ce2576000828152601b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556122a63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6122f482826117a5565b15610ce2576000828152601b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6013546001600160a01b03166123a95760405162461bcd60e51b815260206004820152601e60248201527f77697468647261772061646472657373206973203020616464726573732e00006044820152606401610f29565b601354611649906001600160a01b031647612c60565b6123c7612d79565b6012805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6115398383836040518060200160405280600081525061193b565b858585905084848460008533856040516020016124719392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6040516020818303038152906040528051906020012090506124978383601a5484612dc9565b6124d45760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b210383937b7b31760911b6044820152606401610f29565b6124e08c8c8c8c612de1565b505050505050505050505050565b611012816000612ef8565b610ce282826040518060200160405280600081525061304c565b6008805482919061ff00191661010083600281111561253457612534613c07565b021790555050565b60008180600111612592576000548110156125925760008181526004602052604081205490600160e01b82169003612590575b80600003611b3f57506000190160008181526004602052604090205461256f565b505b604051636f96cda160e11b815260040160405180910390fd5b601280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612608600c826130b2565b506040516001600160a01b0382169033907f3b01c97343869ca2757fcc37cdb8f71683b0a7aed858e3755f4529a1db85729290600090a350565b61264a6130c7565b6012805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123f73390565b6001600160a01b0382166000908152600a60205260409020805482919060ff191660018360028111156126ba576126ba613c07565b0217905550336001600160a01b0316826001600160a01b03167f9fdb14457e6a7bd3753c649831b026de987c06e52d16459a928540738c2ea34b836040516127029190613c1d565b60405180910390a35050565b6015805460ff169082906127228282614485565b505060006018557f75e3689da7799229d232f2c15fc530f1a386e47a961aea8ccc86ed74cfb4bd4f8161275860208501856144e1565b6040805160ff93841681529290911660208301520160405180910390a15050565b6000610cb13383612884565b61278e82612779565b80612797575080155b6127b35760405162461bcd60e51b8152600401610f299061439c565b610ce28282613114565b6127c8848484610de2565b6001600160a01b0383163b15610f3d576127e48484848461317d565b610f3d576040516368d2bf6b60e11b815260040160405180910390fd5b606061280c82611f7f565b61282957604051630a14c4b560e41b815260040160405180910390fd5b6000612833613265565b905080516000036128535760405180602001604052806000815250611b3f565b8061285d84613274565b60405160200161286e9291906144fe565b6040516020818303038152906040529392505050565b600080612890846132b8565b905061289c83826132fa565b949350505050565b60006128b08383612884565b15156000036128c157506000610cb1565b611b3f8383613393565b8484848484600085338560405160200161290a9392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b6040516020818303038152906040528051906020012090506129308383601a5484612dc9565b61296d5760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b210383937b7b31760911b6044820152606401610f29565b6129788b8b8b6133d9565b5050505050505050505050565b60005b82811015610f3d5781600960008686858181106129a7576129a7614242565b60209081029290920135835250810191909152604001600020805460ff191660018360028111156129da576129da613c07565b02179055508383828181106129f1576129f1614242565b90506020020135336001600160a01b0316612a17868685818110611c5e57611c5e614242565b6001600160a01b03167f80a668baf7ac68b329075f26c37b4428d4aa272c3bd4c9611b25f5fb1c473f7c85604051612a4f9190613c1d565b60405180910390a480612a6181614258565b915050612988565b612a74600c82613547565b506040516001600160a01b0382169033907fbd0af1fe0a2c1c7bb340c17a284a291138979c8eeb797e176dbd1c415199af3c90600090a350565b60006001600160e01b03198216632742b5b960e01b1480610cb15750610cb182611eb4565b60006001600160e01b031982166380dfb9af60e01b1480610cb15750610cb182612aae565b612b0282826117a5565b610ce257612b1a816001600160a01b0316601461355c565b612b2583602061355c565b604051602001612b3692919061452d565b60408051601f198184030181529082905262461bcd60e51b8252610f2991600401613bc8565b612b6581611cd5565b15610ce25760405162461bcd60e51b815260206004820152602660248201527f4c6f636b61626c653a2043616e206e6f7420617070726f7665206c6f636b6564604482015265103a37b5b2b760d11b6064820152608401610f29565b6001600160a01b03821615610ce257612bda81836136f7565b610ce25760405162461bcd60e51b815260206004820152602d60248201527f5265737472696374417070726f76653a2054686520636f6e747261637420697360448201526c103737ba1030b63637bbb2b21760991b6064820152608401610f29565b610f3d84848484611ddc565b612c5484848484611e67565b610f3d84848484611e91565b80471015612cb05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610f29565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612cfd576040519150601f19603f3d011682016040523d82523d6000602084013e612d02565b606091505b50509050806115395760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610f29565b601254600160a01b900460ff166116495760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610f29565b600082612dd7868685613704565b1495945050505050565b612de96130c7565b601754601854839190612dfc9083614284565b1115612e1a5760405162461bcd60e51b8152600401610f29906145a2565b8483838082612e2885610c50565b612e329190614284565b1115612e805760405162461bcd60e51b815260206004820152601d60248201527f636c61696d206973206f76657220616c6c6f77656420616d6f756e742e0000006044820152606401610f29565b6001601554610100900460ff166001811115612e9e57612e9e613c07565b14612ee45760405162461bcd60e51b81526020600482015260166024820152753737ba1032bc31b430b733b29039b0b632903737bb9760511b6044820152606401610f29565b612eee8887613750565b5050505050505050565b6000612f038361253c565b905080600080612f2186600090815260066020526040902080549091565b915091508415612f6157612f368184336120bd565b612f6157612f448333611b0b565b612f6157604051632ce44b5f60e11b815260040160405180910390fd5b612f6f836000886001612c3c565b8015612f7a57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b85169003613008576001860160008181526004602052604081205490036130065760005481146130065760008181526004602052604090208590555b505b60405186906000906001600160a01b0386169060008051602061466c833981519152908390a461303c836000886001612c48565b5050600180548101905550505050565b61305683836137c3565b6001600160a01b0383163b15611539576000548281035b613080600086838060010194508661317d565b61309d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061306d578160005414611a9357600080fd5b6000611b3f836001600160a01b0384166138b3565b601254600160a01b900460ff16156116495760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610f29565b61311d33611289565b1580613127575080155b6131735760405162461bcd60e51b815260206004820152601c60248201527f43616e206e6f7420617070726f7665206c6f636b656420746f6b656e000000006044820152606401610f29565b610ce282826139a6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906131b29033908990889088906004016145e4565b6020604051808303816000875af19250505080156131ed575060408051601f3d908101601f191682019092526131ea91810190614621565b60015b61324b573d80801561321b576040519150601f19603f3d011682016040523d82523d6000602084013e613220565b606091505b508051600003613243576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061289c565b6060601d8054610cf5906141c4565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061328e5750819003601f19909101908152919050565b6001600160a01b038116600090815260106020526040812054156132f257506001600160a01b031660009081526010602052604090205490565b505060115490565b600e5460009060ff1661330f57506001610cb1565b61331883613a0b565b80611b3f5750600b54604051630f8350ed60e41b81526001600160a01b038581166004830152602482018590529091169063f8350ed090604401602060405180830381865afa15801561336f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3f91906141f8565b600061339e83611289565b156133ab57506000610cb1565b6001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff16611b3f565b6133e16130c7565b816014546133ed613a35565b6133f79083614284565b11156134455760405162461bcd60e51b815260206004820152601d60248201527f636c61696d206973206f76657220746865206d617820737570706c792e0000006044820152606401610f29565b6017546018548491906134589083614284565b11156134765760405162461bcd60e51b8152600401610f29906145a2565b848484808261348485610c50565b61348e9190614284565b11156134dc5760405162461bcd60e51b815260206004820152601d60248201527f636c61696d206973206f76657220616c6c6f77656420616d6f756e742e0000006044820152606401610f29565b6000601554610100900460ff1660018111156134fa576134fa613c07565b1461353d5760405162461bcd60e51b81526020600482015260136024820152723737ba1031b630b4b69039b0b632903737bb9760691b6044820152606401610f29565b612eee8888613750565b6000611b3f836001600160a01b038416613a4a565b6060600061356b83600261422b565b613576906002614284565b6001600160401b0381111561358d5761358d613e0a565b6040519080825280601f01601f1916602001820160405280156135b7576020820181803683370190505b509050600360fc1b816000815181106135d2576135d2614242565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061360157613601614242565b60200101906001600160f81b031916908160001a905350600061362584600261422b565b613630906001614284565b90505b60018111156136a8576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061366457613664614242565b1a60f81b82828151811061367a5761367a614242565b60200101906001600160f81b031916908160001a90535060049490941c936136a18161463e565b9050613633565b508315611b3f5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610f29565b6000806128903385613a99565b600081815b84811015613747576137338287878481811061372757613727614242565b90506020020135613acb565b91508061373f81614258565b915050613709565b50949350505050565b6000828152601960205260409020601554815460ff91821691160361378e57818160010160008282546137839190614284565b909155506137a79050565b601554815460ff191660ff909116178155600181018290555b81601860008282546137b99190614284565b9091555050505050565b60008054908290036137e85760405163b562e8dd60e01b815260040160405180910390fd5b6137f56000848385612c3c565b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602061466c8339815191528180a4600183015b818114613880578083600060008051602061466c833981519152600080a460010161385a565b50816000036138a157604051622e076360e81b815260040160405180910390fd5b60009081556115399150848385612c48565b6000818152600183016020526040812054801561399c5760006138d7600183614271565b85549091506000906138eb90600190614271565b905081811461395057600086600001828154811061390b5761390b614242565b906000526020600020015490508087600001848154811061392e5761392e614242565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061396157613961614655565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610cb1565b6000915050610cb1565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101612702565b6000610cb1600c836001600160a01b03811660009081526001830160205260408120541515611b3f565b6000611aee6001546000546000199190030190565b6000818152600183016020526040812054613a9157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610cb1565b506000610cb1565b6000818152600f602052604081205415613ac257506000818152600f6020526040902054610cb1565b611b3f836132b8565b6000818310613ae7576000828152602084905260409020611b3f565b6000838152602083905260409020611b3f565b600060208284031215613b0c57600080fd5b5035919050565b6001600160e01b03198116811461101257600080fd5b600060208284031215613b3b57600080fd5b8135611b3f81613b13565b6001600160a01b038116811461101257600080fd5b600060208284031215613b6d57600080fd5b8135611b3f81613b46565b60005b83811015613b93578181015183820152602001613b7b565b50506000910152565b60008151808452613bb4816020860160208601613b78565b601f01601f19169290920160200192915050565b602081526000611b3f6020830184613b9c565b60008060408385031215613bee57600080fd5b8235613bf981613b46565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b6020810160038310613c3157613c31613c07565b91905290565b600080600060608486031215613c4c57600080fd5b8335613c5781613b46565b92506020840135613c6781613b46565b929592945050506040919091013590565b60008060408385031215613c8b57600080fd5b823591506020830135613c9d81613b46565b809150509250929050565b60008083601f840112613cba57600080fd5b5081356001600160401b03811115613cd157600080fd5b6020830191508360208260051b8501011115613cec57600080fd5b9250929050565b60008060008060008060808789031215613d0c57600080fd5b8635955060208701356001600160401b0380821115613d2a57600080fd5b613d368a838b01613ca8565b9097509550604089013594506060890135915080821115613d5657600080fd5b50613d6389828a01613ca8565b979a9699509497509295939492505050565b60008060408385031215613d8857600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b81811015613dcf57835183529284019291840191600101613db3565b50909695505050505050565b803560038110613dea57600080fd5b919050565b600060208284031215613e0157600080fd5b611b3f82613ddb565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115613e3a57613e3a613e0a565b604051601f8501601f19908116603f01168101908282118183101715613e6257613e62613e0a565b81604052809350858152868686011115613e7b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613ea757600080fd5b81356001600160401b03811115613ebd57600080fd5b8201601f81018413613ece57600080fd5b61289c84823560208401613e20565b60ff851681526080810160028510613ef757613ef7613c07565b84602083015283604083015282606083015295945050505050565b60008060408385031215613f2557600080fd5b8235613f3081613b46565b9150613f3e60208401613ddb565b90509250929050565b600060808284031215610c8257600080fd5b60008060a08385031215613f6c57600080fd5b613f768484613f47565b946080939093013593505050565b600060808284031215613f9657600080fd5b611b3f8383613f47565b801515811461101257600080fd5b600060208284031215613fc057600080fd5b8135611b3f81613fa0565b60008060408385031215613fde57600080fd5b8235613fe981613b46565b91506020830135613c9d81613fa0565b6000806000806040858703121561400f57600080fd5b84356001600160401b038082111561402657600080fd5b61403288838901613ca8565b9096509450602087013591508082111561404b57600080fd5b5061405887828801613ca8565b95989497509550505050565b6000806000806080858703121561407a57600080fd5b843561408581613b46565b9350602085013561409581613b46565b92506040850135915060608501356001600160401b038111156140b757600080fd5b8501601f810187136140c857600080fd5b6140d787823560208401613e20565b91505092959194509250565b600080604083850312156140f657600080fd5b823561410181613b46565b91506020830135613c9d81613b46565b60008060008060006080868803121561412957600080fd5b85359450602086013593506040860135925060608601356001600160401b0381111561415457600080fd5b61416088828901613ca8565b969995985093965092949392505050565b60008060006040848603121561418657600080fd5b83356001600160401b0381111561419c57600080fd5b6141a886828701613ca8565b90945092506141bb905060208501613ddb565b90509250925092565b600181811c908216806141d857607f821691505b602082108103610c8257634e487b7160e01b600052602260045260246000fd5b60006020828403121561420a57600080fd5b8151611b3f81613fa0565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610cb157610cb1614215565b634e487b7160e01b600052603260045260246000fd5b60006001820161426a5761426a614215565b5060010190565b81810381811115610cb157610cb1614215565b80820180821115610cb157610cb1614215565b601f82111561153957600081815260208120601f850160051c810160208610156142be5750805b601f850160051c820191505b81811015611933578281556001016142ca565b81516001600160401b038111156142f6576142f6613e0a565b61430a8161430484546141c4565b84614297565b602080601f83116001811461433f57600084156143275750858301515b600019600386901b1c1916600185901b178555611933565b600085815260208120601f198616915b8281101561436e5788860151825594840194600190910190840161434f565b508582101561438c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6020808252602d908201527f5265737472696374417070726f76653a2043616e206e6f7420617070726f766560408201526c103637b1b5b2b2103a37b5b2b760991b606082015260800190565b6000835160206143fc8285838901613b78565b81840191506000855461440e816141c4565b60018281168015614426576001811461443b57614467565b60ff1984168752821515830287019450614467565b896000528560002060005b8481101561445f57815489820152908301908701614446565b505082870194505b50929998505050505050505050565b60ff8116811461101257600080fd5b813561449081614476565b60ff8116905081548160ff1982161783556020840135600281106144b357600080fd5b61ff008160081b168361ffff1984161717845550505060408201356001820155606082013560028201555050565b6000602082840312156144f357600080fd5b8135611b3f81614476565b60008351614510818460208801613b78565b835190830190614524818360208801613b78565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614565816017850160208801613b78565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614596816028840160208801613b78565b01602801949350505050565b60208082526022908201527f636c61696d206973206f76657220746865206d61782073616c6520737570706c6040820152613c9760f11b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061461790830184613b9c565b9695505050505050565b60006020828403121561463357600080fd5b8151611b3f81613b13565b60008161464d5761464d614215565b506000190190565b634e487b7160e01b600052603160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200b611fd501b4d9fba33f1471977617385dbc3302e394aec32b626e53501a23e664736f6c63430008110033

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

0000000000000000000000000f293381c2dfc0831a5fc68376af938334fbe09c0000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : ownerAddress (address): 0x0F293381c2DFC0831A5FC68376aF938334FBE09C
Arg [1] : ownerMintAmount (uint256): 1

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000f293381c2dfc0831a5fc68376af938334fbe09c
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001


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.