ETH Price: $3,394.25 (-1.22%)
Gas: 2 Gwei

Token

GreenBean (GB)
 

Overview

Max Total Supply

9,695 GB

Holders

4,577

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x6432839a27d8ea33473fec5c9e1742a5d0600a41
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

This one's still a little green...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GreenBean

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : GreenBean.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import {BitMaps} from "@openzeppelin/contracts/utils/structs/BitMaps.sol";
import "closedsea/OperatorFilterer.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

error ChunkAlreadyProcessed();
error MismatchedArrays();
error InitialLockOn();
error MismatchedTokenOwnerForClaim();
error CannotBeClaimed();
error ClaimWindowNotOpen();
error OverMaxSupply();

interface Azuki {
    function ownerOf(uint256 tokenId) external view returns (address owner);
}

contract GreenBean is
    ERC1155Burnable,
    OperatorFilterer,
    Ownable,
    ERC2981,
    ReentrancyGuard
{
    using EnumerableSet for EnumerableSet.UintSet;
    using BitMaps for BitMaps.BitMap;

    // The set of chunks processed for the airdrop.
    // Intent is to help prevent double processing of chunks.
    EnumerableSet.UintSet private _processedChunksForAirdrop;

    string private _name = "GreenBean";
    string private _symbol = "GB";

    bool public initialLockOn = true;

    Azuki public immutable AZUKI;
    uint256 public immutable MAX_SUPPLY;

    bool public operatorFilteringEnabled;

    constructor(address _azukiAddress, uint256 _maxSupply) ERC1155("") {
        AZUKI = Azuki(_azukiAddress);
        MAX_SUPPLY = _maxSupply;
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    bool public claimOpen = false;
    // Keys are azuki token ids
    BitMaps.BitMap private _azukiCanClaim;

    uint256 public totalMinted = 0;

    function setNameAndSymbol(
        string calldata _newName,
        string calldata _newSymbol
    ) external onlyOwner {
        _name = _newName;
        _symbol = _newSymbol;
    }

    // Thin wrapper around privilegedMint which does chunkNum checks to reduce chance of double processing chunks in a manual airdrop.
    function airdrop(
        address[] calldata receivers,
        uint256[] calldata amounts,
        uint256 chunkNum
    ) external onlyOwner {
        if (_processedChunksForAirdrop.contains(chunkNum))
            revert ChunkAlreadyProcessed();
        privilegedMint(receivers, amounts);
        _processedChunksForAirdrop.add(chunkNum);
    }

    function privilegedMint(
        address[] calldata receivers,
        uint256[] calldata amounts
    ) public nonReentrant onlyOwner {
        if (receivers.length != amounts.length || receivers.length == 0)
            revert MismatchedArrays();
        for (uint256 i; i < receivers.length; ) {
            _mint(receivers[i], 0, amounts[i], "");
            unchecked {
                ++i;
            }
        }
        totalMinted += receivers.length;
        if (totalMinted > MAX_SUPPLY) {
            revert OverMaxSupply();
        }
    }

    function setTokenUri(string calldata newUri) external onlyOwner {
        _setURI(newUri);
    }

    // ----------------------------------------------
    // Claim Window
    // ----------------------------------------------

    function claim(uint256[] calldata azukiTokenIds) external nonReentrant {
        if (!claimOpen) {
            revert ClaimWindowNotOpen();
        }
        uint256 numToClaim = azukiTokenIds.length;
        if (totalMinted + numToClaim > MAX_SUPPLY) {
            revert OverMaxSupply();
        }
        for (uint256 i; i < numToClaim; ) {
            uint256 azukiId = azukiTokenIds[i];
            if (AZUKI.ownerOf(azukiId) != msg.sender)
                revert MismatchedTokenOwnerForClaim();
            if (!_azukiCanClaim.get(azukiId)) revert CannotBeClaimed();
            _azukiCanClaim.unset(azukiId);
            unchecked {
                ++i;
            }
        }
        totalMinted += numToClaim;
        _mint(msg.sender, 0, numToClaim, "");
    }

    function setClaimState(bool _claimOpen) external onlyOwner {
        claimOpen = _claimOpen;
    }

    function setCanClaim(uint256[] calldata azukiIds) external onlyOwner {
        for (uint256 i; i < azukiIds.length; ) {
            _azukiCanClaim.set(azukiIds[i]);
            unchecked {
                ++i;
            }
        }
    }

    function getCanClaims(uint256[] calldata azukiIds)
        external
        view
        returns (bool[] memory)
    {
        bool[] memory result = new bool[](azukiIds.length);
        for (uint256 i; i < azukiIds.length; ) {
            result[i] = _azukiCanClaim.get(azukiIds[i]);
            unchecked {
                ++i;
            }
        }
        return result;
    }

    // -------------------
    // Break transfer lock
    // -------------------
    function breakLock() external onlyOwner {
        initialLockOn = false;
    }

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

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        uint256 amount,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        if (initialLockOn) revert InitialLockOn();
        super.safeTransferFrom(from, to, tokenId, amount, data);
    }

    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        if (initialLockOn) revert InitialLockOn();
        super.safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC1155, ERC2981)
        returns (bool)
    {
        return
            ERC1155.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

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

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }
}

File 2 of 17 : 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 3 of 17 : ERC1155Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(address account, uint256 id, uint256 value) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(address account, uint256[] memory ids, uint256[] memory values) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 4 of 17 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

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.
 *
 * ```solidity
 * 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) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

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

        return result;
    }

    // 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 in 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 5 of 17 : BitMaps.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/BitMaps.sol)
pragma solidity ^0.8.0;

/**
 * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.
 * Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
 */
library BitMaps {
    struct BitMap {
        mapping(uint256 => uint256) _data;
    }

    /**
     * @dev Returns whether the bit at `index` is set.
     */
    function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        return bitmap._data[bucket] & mask != 0;
    }

    /**
     * @dev Sets the bit at `index` to the boolean `value`.
     */
    function setTo(BitMap storage bitmap, uint256 index, bool value) internal {
        if (value) {
            set(bitmap, index);
        } else {
            unset(bitmap, index);
        }
    }

    /**
     * @dev Sets the bit at `index`.
     */
    function set(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        bitmap._data[bucket] |= mask;
    }

    /**
     * @dev Unsets the bit at `index`.
     */
    function unset(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        bitmap._data[bucket] &= ~mask;
    }
}

File 6 of 17 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

File 8 of 17 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 9 of 17 : 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 10 of 17 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    ) public view virtual override returns (uint256[] memory) {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address to, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address from, uint256 id, uint256 amount) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address from, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 11 of 17 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

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

File 12 of 17 : 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 13 of 17 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] calldata accounts,
        uint256[] calldata ids
    ) external view returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 14 of 17 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 15 of 17 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 16 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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 17 of 17 : 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);
}

Settings
{
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "ERC721A/=lib/ERC721A/contracts/",
    "closedsea/=lib/closedsea/src/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "erc721a-upgradeable/=lib/closedsea/lib/erc721a-upgradeable/contracts/",
    "erc721a/=lib/erc721a/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts-upgradeable/=lib/closedsea/lib/openzeppelin-contracts-upgradeable/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "operator-filter-registry/=lib/closedsea/",
    "solbase/=lib/solbase/",
    "solmate/=lib/solmate/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_azukiAddress","type":"address"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CannotBeClaimed","type":"error"},{"inputs":[],"name":"ChunkAlreadyProcessed","type":"error"},{"inputs":[],"name":"ClaimWindowNotOpen","type":"error"},{"inputs":[],"name":"InitialLockOn","type":"error"},{"inputs":[],"name":"MismatchedArrays","type":"error"},{"inputs":[],"name":"MismatchedTokenOwnerForClaim","type":"error"},{"inputs":[],"name":"OverMaxSupply","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"AZUKI","outputs":[{"internalType":"contract Azuki","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256","name":"chunkNum","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breakLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"azukiTokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"azukiIds","type":"uint256[]"}],"name":"getCanClaims","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialLockOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"privilegedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"azukiIds","type":"uint256[]"}],"name":"setCanClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_claimOpen","type":"bool"}],"name":"setClaimState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newName","type":"string"},{"internalType":"string","name":"_newSymbol","type":"string"}],"name":"setNameAndSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

610100604052600960c08181526823b932b2b72132b0b760b91b60e0526200002890826200029a565b5060408051808201909152600281526123a160f11b6020820152600a906200005190826200029a565b50600b805462ff00ff191660011790556000600d553480156200007357600080fd5b50604051620030bf380380620030bf833981016040819052620000969162000366565b604080516020810190915260008152620000b081620000f4565b50620000bc3362000106565b60016006556001600160a01b03821660805260a0819052620000dd62000158565b5050600b805461ff001916610100179055620003a2565b60026200010282826200029a565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000179733cc6cdda760b79bafa08df41ecfa224f810dceb660016200017b565b565b6001600160a01b0390911690637d3e3dbe81620001ab5782620001a45750634420e486620001ab565b5063a0af29035b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620001eb578060005160e01c03620001eb57600080fd5b5060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022057607f821691505b6020821081036200024157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029557600081815260208120601f850160051c81016020861015620002705750805b601f850160051c820191505b8181101562000291578281556001016200027c565b5050505b505050565b81516001600160401b03811115620002b657620002b6620001f5565b620002ce81620002c784546200020b565b8462000247565b602080601f831160018114620003065760008415620002ed5750858301515b600019600386901b1c1916600185901b17855562000291565b600085815260208120601f198616915b82811015620003375788860151825594840194600190910190840162000316565b5085821015620003565787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080604083850312156200037a57600080fd5b82516001600160a01b03811681146200039257600080fd5b6020939093015192949293505050565b60805160a051612ce2620003dd6000396000818161030f01528181610a0f0152610c4701526000818161045a0152610cc50152612ce26000f3fe608060405234801561001057600080fd5b50600436106101fa5760003560e01c80635a4462151161011a578063a2309ff8116100ad578063e985e9c51161007c578063e985e9c51461047c578063f242432a146104b8578063f2fde38b146104cb578063f5298aca146104de578063fb796e6c146104f157600080fd5b8063a2309ff814610431578063a70138c11461043a578063b7c0b8e814610442578063d2c8ed4c1461045557600080fd5b8063731186eb116100e9578063731186eb146103de5780638da5cb5b146103f157806395d89b4114610416578063a22cb4651461041e57600080fd5b80635a4462151461039d5780636b20c454146103b05780636ba4c138146103c3578063715018a6146103d657600080fd5b80632eb2c2d6116101925780634202d18d116101615780634202d18d146103445780634b014e28146103575780634b8bcb581461036a5780634e1273f41461037d57600080fd5b80632eb2c2d6146102ea578063326e3f1b146102fd57806332cb6b0c1461030a57806333d66b5b1461033157600080fd5b806306fdde03116101ce57806306fdde03146102705780630e89341c1461028557806324846647146102985780632a55205a146102b857600080fd5b8062fdd58e146101ff57806301ffc9a71461022557806304634d8d146102485780630675b7c61461025d575b600080fd5b61021261020d366004611df1565b610503565b6040519081526020015b60405180910390f35b610238610233366004611e33565b61059c565b604051901515815260200161021c565b61025b610256366004611e50565b6105b6565b005b61025b61026b366004611ed6565b6105cc565b610278610613565b60405161021c9190611f5d565b610278610293366004611f70565b6106a5565b6102ab6102a6366004611fcd565b610739565b60405161021c9190612002565b6102cb6102c6366004612048565b6107ea565b604080516001600160a01b03909316835260208301919091520161021c565b61025b6102f83660046121b3565b610898565b600b546102389060ff1681565b6102127f000000000000000000000000000000000000000000000000000000000000000081565b61025b61033f366004611fcd565b6108fb565b61025b610352366004612260565b610947565b61025b6103653660046122e0565b610a5d565b600b546102389062010000900460ff1681565b61039061038b3660046122fb565b610a81565b60405161021c9190612402565b61025b6103ab366004612415565b610ba2565b61025b6103be366004612474565b610bcc565b61025b6103d1366004611fcd565b610c0f565b61025b610e1c565b61025b6103ec3660046124e9565b610e30565b6003546001600160a01b03165b6040516001600160a01b03909116815260200161021c565b610278610e78565b61025b61042c36600461255c565b610e87565b610212600d5481565b61025b610ecf565b61025b6104503660046122e0565b610ee3565b6103fe7f000000000000000000000000000000000000000000000000000000000000000081565b61023861048a366004612591565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61025b6104c63660046125bf565b610f05565b61025b6104d9366004612627565b610f60565b61025b6104ec366004612644565b610fd9565b600b5461023890610100900460ff1681565b60006001600160a01b0383166105735760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006105a78261101c565b8061059657506105968261106c565b6105be611091565b6105c882826110eb565b5050565b6105d4611091565b6105c882828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506111e892505050565b60606009805461062290612679565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90612679565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b6060600280546106b490612679565b80601f01602080910402602001604051908101604052809291908181526020018280546106e090612679565b801561072d5780601f106107025761010080835404028352916020019161072d565b820191906000526020600020905b81548152906001019060200180831161071057829003601f168201915b50505050509050919050565b60606000826001600160401b038111156107555761075561206a565b60405190808252806020026020018201604052801561077e578160200160208202803683370190505b50905060005b838110156107e2576107b88585838181106107a1576107a16126b3565b90506020020135600c6111f490919063ffffffff16565b8282815181106107ca576107ca6126b3565b91151560209283029190910190910152600101610784565b509392505050565b60008281526005602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161085f5750604080518082019091526004546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061087e906001600160601b0316876126df565b61088891906126f6565b91519350909150505b9250929050565b846001600160a01b03811633146108c257600b54610100900460ff16156108c2576108c233611218565b600b5460ff16156108e6576040516307b6e39f60e11b815260040160405180910390fd5b6108f3868686868661125c565b505050505050565b610903611091565b60005b818110156109425761093a838383818110610923576109236126b3565b90506020020135600c6112a190919063ffffffff16565b600101610906565b505050565b61094f6112ca565b610957611091565b8281141580610964575082155b156109825760405163a121188760e01b815260040160405180910390fd5b60005b838110156109ef576109e78585838181106109a2576109a26126b3565b90506020020160208101906109b79190612627565b60008585858181106109cb576109cb6126b3565b9050602002013560405180602001604052806000815250611323565b600101610985565b5083839050600d6000828254610a059190612718565b9091555050600d547f00000000000000000000000000000000000000000000000000000000000000001015610a4d57604051634c9c5c3360e11b815260040160405180910390fd5b610a576001600655565b50505050565b610a65611091565b600b8054911515620100000262ff000019909216919091179055565b60608151835114610ae65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161056a565b600083516001600160401b03811115610b0157610b0161206a565b604051908082528060200260200182016040528015610b2a578160200160208202803683370190505b50905060005b84518110156107e257610b75858281518110610b4e57610b4e6126b3565b6020026020010151858381518110610b6857610b686126b3565b6020026020010151610503565b828281518110610b8757610b876126b3565b6020908102919091010152610b9b8161272b565b9050610b30565b610baa611091565b6009610bb784868361278a565b50600a610bc582848361278a565b5050505050565b6001600160a01b038316331480610be85750610be8833361048a565b610c045760405162461bcd60e51b815260040161056a90612849565b610942838383611437565b610c176112ca565b600b5462010000900460ff16610c40576040516309ca1d3560e11b815260040160405180910390fd5b600d5481907f000000000000000000000000000000000000000000000000000000000000000090610c72908390612718565b1115610c9157604051634c9c5c3360e11b815260040160405180910390fd5b60005b81811015610ddb576000848483818110610cb057610cb06126b3565b905060200201359050336001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316636352211e836040518263ffffffff1660e01b8152600401610d1191815260200190565b602060405180830381865afa158015610d2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d529190612897565b6001600160a01b031614610d795760405163242e855d60e11b815260040160405180910390fd5b600881901c6000908152600c6020526040902054600160ff83161b16610db25760405163474f486760e11b815260040160405180910390fd5b600881901c6000908152600c602052604090208054600160ff84161b1916905550600101610c94565b5080600d6000828254610dee9190612718565b92505081905550610e113360008360405180602001604052806000815250611323565b506105c86001600655565b610e24611091565b610e2e60006115c1565b565b610e38611091565b610e43600782611613565b15610e6157604051639acc88ef60e01b815260040160405180910390fd5b610e6d85858585610947565b6108f360078261162e565b6060600a805461062290612679565b81600b54610100900460ff1615610ea157610ea181611218565b600b5460ff1615610ec5576040516307b6e39f60e11b815260040160405180910390fd5b610942838361163a565b610ed7611091565b600b805460ff19169055565b610eeb611091565b600b80549115156101000261ff0019909216919091179055565b846001600160a01b0381163314610f2f57600b54610100900460ff1615610f2f57610f2f33611218565b600b5460ff1615610f53576040516307b6e39f60e11b815260040160405180910390fd5b6108f38686868686611645565b610f68611091565b6001600160a01b038116610fcd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056a565b610fd6816115c1565b50565b6001600160a01b038316331480610ff55750610ff5833361048a565b6110115760405162461bcd60e51b815260040161056a90612849565b61094283838361168a565b60006001600160e01b03198216636cdb3d1360e11b148061104d57506001600160e01b031982166303a24d0760e21b145b8061059657506301ffc9a760e01b6001600160e01b0319831614610596565b60006001600160e01b0319821663152a902d60e11b148061059657506105968261101c565b6003546001600160a01b03163314610e2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161056a565b6127106001600160601b03821611156111595760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161056a565b6001600160a01b0382166111af5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161056a565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600455565b60026105c882826128b4565b600881901c600090815260208390526040902054600160ff83161b16151592915050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611254573d6000803e3d6000fd5b6000603a5250565b6001600160a01b0385163314806112785750611278853361048a565b6112945760405162461bcd60e51b815260040161056a90612849565b610bc5858585858561178e565b600881901c600090815260209290925260409091208054600160ff9093169290921b9091179055565b60026006540361131c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056a565b6002600655565b6001600160a01b0384166113835760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161056a565b33600061138f85611922565b9050600061139c85611922565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906113ce908490612718565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461142e8360008989898961196d565b50505050505050565b6001600160a01b03831661145d5760405162461bcd60e51b815260040161056a90612973565b805182511461147e5760405162461bcd60e51b815260040161056a906129b6565b604080516020810190915260009081905233905b83518110156115545760008482815181106114af576114af6126b3565b6020026020010151905060008483815181106114cd576114cd6126b3565b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561151d5760405162461bcd60e51b815260040161056a906129fe565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061154c8161272b565b915050611492565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516115a5929190612a42565b60405180910390a4604080516020810190915260009052610a57565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815260018301602052604081205415155b9392505050565b60006116278383611ac8565b6105c8338383611b17565b6001600160a01b0385163314806116615750611661853361048a565b61167d5760405162461bcd60e51b815260040161056a90612849565b610bc58585858585611bf7565b6001600160a01b0383166116b05760405162461bcd60e51b815260040161056a90612973565b3360006116bc84611922565b905060006116c984611922565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156117165760405162461bcd60e51b815260040161056a906129fe565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a460408051602081019091526000905261142e565b81518351146117af5760405162461bcd60e51b815260040161056a906129b6565b6001600160a01b0384166117d55760405162461bcd60e51b815260040161056a90612a70565b3360005b84518110156118bc5760008582815181106117f6576117f66126b3565b602002602001015190506000858381518110611814576118146126b3565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156118645760405162461bcd60e51b815260040161056a90612ab5565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906118a1908490612718565b92505081905550505050806118b59061272b565b90506117d9565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161190c929190612a42565b60405180910390a46108f3818787878787611d21565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061195c5761195c6126b3565b602090810291909101015292915050565b6001600160a01b0384163b156108f35760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906119b19089908990889088908890600401612aff565b6020604051808303816000875af19250505080156119ec575060408051601f3d908101601f191682019092526119e991810190612b44565b60015b611a98576119f8612b61565b806308c379a003611a315750611a0c612b7d565b80611a175750611a33565b8060405162461bcd60e51b815260040161056a9190611f5d565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161056a565b6001600160e01b0319811663f23a6e6160e01b1461142e5760405162461bcd60e51b815260040161056a90612c06565b6000818152600183016020526040812054611b0f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610596565b506000610596565b816001600160a01b0316836001600160a01b031603611b8a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161056a565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611c1d5760405162461bcd60e51b815260040161056a90612a70565b336000611c2985611922565b90506000611c3685611922565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015611c795760405162461bcd60e51b815260040161056a90612ab5565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611cb6908490612718565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d16848a8a8a8a8a61196d565b505050505050505050565b6001600160a01b0384163b156108f35760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611d659089908990889088908890600401612c4e565b6020604051808303816000875af1925050508015611da0575060408051601f3d908101601f19168201909252611d9d91810190612b44565b60015b611dac576119f8612b61565b6001600160e01b0319811663bc197c8160e01b1461142e5760405162461bcd60e51b815260040161056a90612c06565b6001600160a01b0381168114610fd657600080fd5b60008060408385031215611e0457600080fd5b8235611e0f81611ddc565b946020939093013593505050565b6001600160e01b031981168114610fd657600080fd5b600060208284031215611e4557600080fd5b813561162781611e1d565b60008060408385031215611e6357600080fd5b8235611e6e81611ddc565b915060208301356001600160601b0381168114611e8a57600080fd5b809150509250929050565b60008083601f840112611ea757600080fd5b5081356001600160401b03811115611ebe57600080fd5b60208301915083602082850101111561089157600080fd5b60008060208385031215611ee957600080fd5b82356001600160401b03811115611eff57600080fd5b611f0b85828601611e95565b90969095509350505050565b6000815180845260005b81811015611f3d57602081850181015186830182015201611f21565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006116276020830184611f17565b600060208284031215611f8257600080fd5b5035919050565b60008083601f840112611f9b57600080fd5b5081356001600160401b03811115611fb257600080fd5b6020830191508360208260051b850101111561089157600080fd5b60008060208385031215611fe057600080fd5b82356001600160401b03811115611ff657600080fd5b611f0b85828601611f89565b6020808252825182820181905260009190848201906040850190845b8181101561203c57835115158352928401929184019160010161201e565b50909695505050505050565b6000806040838503121561205b57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b03811182821017156120a5576120a561206a565b6040525050565b60006001600160401b038211156120c5576120c561206a565b5060051b60200190565b600082601f8301126120e057600080fd5b813560206120ed826120ac565b6040516120fa8282612080565b83815260059390931b850182019282810191508684111561211a57600080fd5b8286015b84811015612135578035835291830191830161211e565b509695505050505050565b600082601f83011261215157600080fd5b81356001600160401b0381111561216a5761216a61206a565b604051612181601f8301601f191660200182612080565b81815284602083860101111561219657600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156121cb57600080fd5b85356121d681611ddc565b945060208601356121e681611ddc565b935060408601356001600160401b038082111561220257600080fd5b61220e89838a016120cf565b9450606088013591508082111561222457600080fd5b61223089838a016120cf565b9350608088013591508082111561224657600080fd5b5061225388828901612140565b9150509295509295909350565b6000806000806040858703121561227657600080fd5b84356001600160401b038082111561228d57600080fd5b61229988838901611f89565b909650945060208701359150808211156122b257600080fd5b506122bf87828801611f89565b95989497509550505050565b803580151581146122db57600080fd5b919050565b6000602082840312156122f257600080fd5b611627826122cb565b6000806040838503121561230e57600080fd5b82356001600160401b038082111561232557600080fd5b818501915085601f83011261233957600080fd5b81356020612346826120ac565b6040516123538282612080565b83815260059390931b850182019282810191508984111561237357600080fd5b948201945b8386101561239a57853561238b81611ddc565b82529482019490820190612378565b965050860135925050808211156123b057600080fd5b506123bd858286016120cf565b9150509250929050565b600081518084526020808501945080840160005b838110156123f7578151875295820195908201906001016123db565b509495945050505050565b60208152600061162760208301846123c7565b6000806000806040858703121561242b57600080fd5b84356001600160401b038082111561244257600080fd5b61244e88838901611e95565b9096509450602087013591508082111561246757600080fd5b506122bf87828801611e95565b60008060006060848603121561248957600080fd5b833561249481611ddc565b925060208401356001600160401b03808211156124b057600080fd5b6124bc878388016120cf565b935060408601359150808211156124d257600080fd5b506124df868287016120cf565b9150509250925092565b60008060008060006060868803121561250157600080fd5b85356001600160401b038082111561251857600080fd5b61252489838a01611f89565b9097509550602088013591508082111561253d57600080fd5b5061254a88828901611f89565b96999598509660400135949350505050565b6000806040838503121561256f57600080fd5b823561257a81611ddc565b9150612588602084016122cb565b90509250929050565b600080604083850312156125a457600080fd5b82356125af81611ddc565b91506020830135611e8a81611ddc565b600080600080600060a086880312156125d757600080fd5b85356125e281611ddc565b945060208601356125f281611ddc565b9350604086013592506060860135915060808601356001600160401b0381111561261b57600080fd5b61225388828901612140565b60006020828403121561263957600080fd5b813561162781611ddc565b60008060006060848603121561265957600080fd5b833561266481611ddc565b95602085013595506040909401359392505050565b600181811c9082168061268d57607f821691505b6020821081036126ad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610596576105966126c9565b60008261271357634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610596576105966126c9565b60006001820161273d5761273d6126c9565b5060010190565b601f82111561094257600081815260208120601f850160051c8101602086101561276b5750805b601f850160051c820191505b818110156108f357828155600101612777565b6001600160401b038311156127a1576127a161206a565b6127b5836127af8354612679565b83612744565b6000601f8411600181146127e957600085156127d15750838201355b600019600387901b1c1916600186901b178355610bc5565b600083815260209020601f19861690835b8281101561281a57868501358255602094850194600190920191016127fa565b50868210156128375760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b6000602082840312156128a957600080fd5b815161162781611ddc565b81516001600160401b038111156128cd576128cd61206a565b6128e1816128db8454612679565b84612744565b602080601f83116001811461291657600084156128fe5750858301515b600019600386901b1c1916600185901b1785556108f3565b600085815260208120601f198616915b8281101561294557888601518255948401946001909101908401612926565b50858210156129635787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b604081526000612a5560408301856123c7565b8281036020840152612a6781856123c7565b95945050505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612b3990830184611f17565b979650505050505050565b600060208284031215612b5657600080fd5b815161162781611e1d565b600060033d1115612b7a5760046000803e5060005160e01c5b90565b600060443d1015612b8b5790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612bba57505050505090565b8285019150815181811115612bd25750505050505090565b843d8701016020828501011115612bec5750505050505090565b612bfb60208286010187612080565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090612c7a908301866123c7565b8281036060840152612c8c81866123c7565b90508281036080840152612ca08185611f17565b9897505050505050505056fea2646970667358221220e7cc4e90bc681a900137d60c77f70a8b13855989acd4011c0c0b5c343074b75e64736f6c63430008120033000000000000000000000000ed5af388653567af2f388e6224dc7c4b3241c5440000000000000000000000000000000000000000000000000000000000002710

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fa5760003560e01c80635a4462151161011a578063a2309ff8116100ad578063e985e9c51161007c578063e985e9c51461047c578063f242432a146104b8578063f2fde38b146104cb578063f5298aca146104de578063fb796e6c146104f157600080fd5b8063a2309ff814610431578063a70138c11461043a578063b7c0b8e814610442578063d2c8ed4c1461045557600080fd5b8063731186eb116100e9578063731186eb146103de5780638da5cb5b146103f157806395d89b4114610416578063a22cb4651461041e57600080fd5b80635a4462151461039d5780636b20c454146103b05780636ba4c138146103c3578063715018a6146103d657600080fd5b80632eb2c2d6116101925780634202d18d116101615780634202d18d146103445780634b014e28146103575780634b8bcb581461036a5780634e1273f41461037d57600080fd5b80632eb2c2d6146102ea578063326e3f1b146102fd57806332cb6b0c1461030a57806333d66b5b1461033157600080fd5b806306fdde03116101ce57806306fdde03146102705780630e89341c1461028557806324846647146102985780632a55205a146102b857600080fd5b8062fdd58e146101ff57806301ffc9a71461022557806304634d8d146102485780630675b7c61461025d575b600080fd5b61021261020d366004611df1565b610503565b6040519081526020015b60405180910390f35b610238610233366004611e33565b61059c565b604051901515815260200161021c565b61025b610256366004611e50565b6105b6565b005b61025b61026b366004611ed6565b6105cc565b610278610613565b60405161021c9190611f5d565b610278610293366004611f70565b6106a5565b6102ab6102a6366004611fcd565b610739565b60405161021c9190612002565b6102cb6102c6366004612048565b6107ea565b604080516001600160a01b03909316835260208301919091520161021c565b61025b6102f83660046121b3565b610898565b600b546102389060ff1681565b6102127f000000000000000000000000000000000000000000000000000000000000271081565b61025b61033f366004611fcd565b6108fb565b61025b610352366004612260565b610947565b61025b6103653660046122e0565b610a5d565b600b546102389062010000900460ff1681565b61039061038b3660046122fb565b610a81565b60405161021c9190612402565b61025b6103ab366004612415565b610ba2565b61025b6103be366004612474565b610bcc565b61025b6103d1366004611fcd565b610c0f565b61025b610e1c565b61025b6103ec3660046124e9565b610e30565b6003546001600160a01b03165b6040516001600160a01b03909116815260200161021c565b610278610e78565b61025b61042c36600461255c565b610e87565b610212600d5481565b61025b610ecf565b61025b6104503660046122e0565b610ee3565b6103fe7f000000000000000000000000ed5af388653567af2f388e6224dc7c4b3241c54481565b61023861048a366004612591565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61025b6104c63660046125bf565b610f05565b61025b6104d9366004612627565b610f60565b61025b6104ec366004612644565b610fd9565b600b5461023890610100900460ff1681565b60006001600160a01b0383166105735760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006105a78261101c565b8061059657506105968261106c565b6105be611091565b6105c882826110eb565b5050565b6105d4611091565b6105c882828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506111e892505050565b60606009805461062290612679565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90612679565b801561069b5780601f106106705761010080835404028352916020019161069b565b820191906000526020600020905b81548152906001019060200180831161067e57829003601f168201915b5050505050905090565b6060600280546106b490612679565b80601f01602080910402602001604051908101604052809291908181526020018280546106e090612679565b801561072d5780601f106107025761010080835404028352916020019161072d565b820191906000526020600020905b81548152906001019060200180831161071057829003601f168201915b50505050509050919050565b60606000826001600160401b038111156107555761075561206a565b60405190808252806020026020018201604052801561077e578160200160208202803683370190505b50905060005b838110156107e2576107b88585838181106107a1576107a16126b3565b90506020020135600c6111f490919063ffffffff16565b8282815181106107ca576107ca6126b3565b91151560209283029190910190910152600101610784565b509392505050565b60008281526005602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161085f5750604080518082019091526004546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061087e906001600160601b0316876126df565b61088891906126f6565b91519350909150505b9250929050565b846001600160a01b03811633146108c257600b54610100900460ff16156108c2576108c233611218565b600b5460ff16156108e6576040516307b6e39f60e11b815260040160405180910390fd5b6108f3868686868661125c565b505050505050565b610903611091565b60005b818110156109425761093a838383818110610923576109236126b3565b90506020020135600c6112a190919063ffffffff16565b600101610906565b505050565b61094f6112ca565b610957611091565b8281141580610964575082155b156109825760405163a121188760e01b815260040160405180910390fd5b60005b838110156109ef576109e78585838181106109a2576109a26126b3565b90506020020160208101906109b79190612627565b60008585858181106109cb576109cb6126b3565b9050602002013560405180602001604052806000815250611323565b600101610985565b5083839050600d6000828254610a059190612718565b9091555050600d547f00000000000000000000000000000000000000000000000000000000000027101015610a4d57604051634c9c5c3360e11b815260040160405180910390fd5b610a576001600655565b50505050565b610a65611091565b600b8054911515620100000262ff000019909216919091179055565b60608151835114610ae65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161056a565b600083516001600160401b03811115610b0157610b0161206a565b604051908082528060200260200182016040528015610b2a578160200160208202803683370190505b50905060005b84518110156107e257610b75858281518110610b4e57610b4e6126b3565b6020026020010151858381518110610b6857610b686126b3565b6020026020010151610503565b828281518110610b8757610b876126b3565b6020908102919091010152610b9b8161272b565b9050610b30565b610baa611091565b6009610bb784868361278a565b50600a610bc582848361278a565b5050505050565b6001600160a01b038316331480610be85750610be8833361048a565b610c045760405162461bcd60e51b815260040161056a90612849565b610942838383611437565b610c176112ca565b600b5462010000900460ff16610c40576040516309ca1d3560e11b815260040160405180910390fd5b600d5481907f000000000000000000000000000000000000000000000000000000000000271090610c72908390612718565b1115610c9157604051634c9c5c3360e11b815260040160405180910390fd5b60005b81811015610ddb576000848483818110610cb057610cb06126b3565b905060200201359050336001600160a01b03167f000000000000000000000000ed5af388653567af2f388e6224dc7c4b3241c5446001600160a01b0316636352211e836040518263ffffffff1660e01b8152600401610d1191815260200190565b602060405180830381865afa158015610d2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d529190612897565b6001600160a01b031614610d795760405163242e855d60e11b815260040160405180910390fd5b600881901c6000908152600c6020526040902054600160ff83161b16610db25760405163474f486760e11b815260040160405180910390fd5b600881901c6000908152600c602052604090208054600160ff84161b1916905550600101610c94565b5080600d6000828254610dee9190612718565b92505081905550610e113360008360405180602001604052806000815250611323565b506105c86001600655565b610e24611091565b610e2e60006115c1565b565b610e38611091565b610e43600782611613565b15610e6157604051639acc88ef60e01b815260040160405180910390fd5b610e6d85858585610947565b6108f360078261162e565b6060600a805461062290612679565b81600b54610100900460ff1615610ea157610ea181611218565b600b5460ff1615610ec5576040516307b6e39f60e11b815260040160405180910390fd5b610942838361163a565b610ed7611091565b600b805460ff19169055565b610eeb611091565b600b80549115156101000261ff0019909216919091179055565b846001600160a01b0381163314610f2f57600b54610100900460ff1615610f2f57610f2f33611218565b600b5460ff1615610f53576040516307b6e39f60e11b815260040160405180910390fd5b6108f38686868686611645565b610f68611091565b6001600160a01b038116610fcd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056a565b610fd6816115c1565b50565b6001600160a01b038316331480610ff55750610ff5833361048a565b6110115760405162461bcd60e51b815260040161056a90612849565b61094283838361168a565b60006001600160e01b03198216636cdb3d1360e11b148061104d57506001600160e01b031982166303a24d0760e21b145b8061059657506301ffc9a760e01b6001600160e01b0319831614610596565b60006001600160e01b0319821663152a902d60e11b148061059657506105968261101c565b6003546001600160a01b03163314610e2e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161056a565b6127106001600160601b03821611156111595760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161056a565b6001600160a01b0382166111af5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161056a565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600455565b60026105c882826128b4565b600881901c600090815260208390526040902054600160ff83161b16151592915050565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611254573d6000803e3d6000fd5b6000603a5250565b6001600160a01b0385163314806112785750611278853361048a565b6112945760405162461bcd60e51b815260040161056a90612849565b610bc5858585858561178e565b600881901c600090815260209290925260409091208054600160ff9093169290921b9091179055565b60026006540361131c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161056a565b6002600655565b6001600160a01b0384166113835760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161056a565b33600061138f85611922565b9050600061139c85611922565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906113ce908490612718565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461142e8360008989898961196d565b50505050505050565b6001600160a01b03831661145d5760405162461bcd60e51b815260040161056a90612973565b805182511461147e5760405162461bcd60e51b815260040161056a906129b6565b604080516020810190915260009081905233905b83518110156115545760008482815181106114af576114af6126b3565b6020026020010151905060008483815181106114cd576114cd6126b3565b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561151d5760405162461bcd60e51b815260040161056a906129fe565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061154c8161272b565b915050611492565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516115a5929190612a42565b60405180910390a4604080516020810190915260009052610a57565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815260018301602052604081205415155b9392505050565b60006116278383611ac8565b6105c8338383611b17565b6001600160a01b0385163314806116615750611661853361048a565b61167d5760405162461bcd60e51b815260040161056a90612849565b610bc58585858585611bf7565b6001600160a01b0383166116b05760405162461bcd60e51b815260040161056a90612973565b3360006116bc84611922565b905060006116c984611922565b60408051602080820183526000918290528882528181528282206001600160a01b038b16835290522054909150848110156117165760405162461bcd60e51b815260040161056a906129fe565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a460408051602081019091526000905261142e565b81518351146117af5760405162461bcd60e51b815260040161056a906129b6565b6001600160a01b0384166117d55760405162461bcd60e51b815260040161056a90612a70565b3360005b84518110156118bc5760008582815181106117f6576117f66126b3565b602002602001015190506000858381518110611814576118146126b3565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156118645760405162461bcd60e51b815260040161056a90612ab5565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906118a1908490612718565b92505081905550505050806118b59061272b565b90506117d9565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161190c929190612a42565b60405180910390a46108f3818787878787611d21565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061195c5761195c6126b3565b602090810291909101015292915050565b6001600160a01b0384163b156108f35760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906119b19089908990889088908890600401612aff565b6020604051808303816000875af19250505080156119ec575060408051601f3d908101601f191682019092526119e991810190612b44565b60015b611a98576119f8612b61565b806308c379a003611a315750611a0c612b7d565b80611a175750611a33565b8060405162461bcd60e51b815260040161056a9190611f5d565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161056a565b6001600160e01b0319811663f23a6e6160e01b1461142e5760405162461bcd60e51b815260040161056a90612c06565b6000818152600183016020526040812054611b0f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610596565b506000610596565b816001600160a01b0316836001600160a01b031603611b8a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161056a565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611c1d5760405162461bcd60e51b815260040161056a90612a70565b336000611c2985611922565b90506000611c3685611922565b90506000868152602081815260408083206001600160a01b038c16845290915290205485811015611c795760405162461bcd60e51b815260040161056a90612ab5565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611cb6908490612718565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d16848a8a8a8a8a61196d565b505050505050505050565b6001600160a01b0384163b156108f35760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611d659089908990889088908890600401612c4e565b6020604051808303816000875af1925050508015611da0575060408051601f3d908101601f19168201909252611d9d91810190612b44565b60015b611dac576119f8612b61565b6001600160e01b0319811663bc197c8160e01b1461142e5760405162461bcd60e51b815260040161056a90612c06565b6001600160a01b0381168114610fd657600080fd5b60008060408385031215611e0457600080fd5b8235611e0f81611ddc565b946020939093013593505050565b6001600160e01b031981168114610fd657600080fd5b600060208284031215611e4557600080fd5b813561162781611e1d565b60008060408385031215611e6357600080fd5b8235611e6e81611ddc565b915060208301356001600160601b0381168114611e8a57600080fd5b809150509250929050565b60008083601f840112611ea757600080fd5b5081356001600160401b03811115611ebe57600080fd5b60208301915083602082850101111561089157600080fd5b60008060208385031215611ee957600080fd5b82356001600160401b03811115611eff57600080fd5b611f0b85828601611e95565b90969095509350505050565b6000815180845260005b81811015611f3d57602081850181015186830182015201611f21565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006116276020830184611f17565b600060208284031215611f8257600080fd5b5035919050565b60008083601f840112611f9b57600080fd5b5081356001600160401b03811115611fb257600080fd5b6020830191508360208260051b850101111561089157600080fd5b60008060208385031215611fe057600080fd5b82356001600160401b03811115611ff657600080fd5b611f0b85828601611f89565b6020808252825182820181905260009190848201906040850190845b8181101561203c57835115158352928401929184019160010161201e565b50909695505050505050565b6000806040838503121561205b57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b03811182821017156120a5576120a561206a565b6040525050565b60006001600160401b038211156120c5576120c561206a565b5060051b60200190565b600082601f8301126120e057600080fd5b813560206120ed826120ac565b6040516120fa8282612080565b83815260059390931b850182019282810191508684111561211a57600080fd5b8286015b84811015612135578035835291830191830161211e565b509695505050505050565b600082601f83011261215157600080fd5b81356001600160401b0381111561216a5761216a61206a565b604051612181601f8301601f191660200182612080565b81815284602083860101111561219657600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a086880312156121cb57600080fd5b85356121d681611ddc565b945060208601356121e681611ddc565b935060408601356001600160401b038082111561220257600080fd5b61220e89838a016120cf565b9450606088013591508082111561222457600080fd5b61223089838a016120cf565b9350608088013591508082111561224657600080fd5b5061225388828901612140565b9150509295509295909350565b6000806000806040858703121561227657600080fd5b84356001600160401b038082111561228d57600080fd5b61229988838901611f89565b909650945060208701359150808211156122b257600080fd5b506122bf87828801611f89565b95989497509550505050565b803580151581146122db57600080fd5b919050565b6000602082840312156122f257600080fd5b611627826122cb565b6000806040838503121561230e57600080fd5b82356001600160401b038082111561232557600080fd5b818501915085601f83011261233957600080fd5b81356020612346826120ac565b6040516123538282612080565b83815260059390931b850182019282810191508984111561237357600080fd5b948201945b8386101561239a57853561238b81611ddc565b82529482019490820190612378565b965050860135925050808211156123b057600080fd5b506123bd858286016120cf565b9150509250929050565b600081518084526020808501945080840160005b838110156123f7578151875295820195908201906001016123db565b509495945050505050565b60208152600061162760208301846123c7565b6000806000806040858703121561242b57600080fd5b84356001600160401b038082111561244257600080fd5b61244e88838901611e95565b9096509450602087013591508082111561246757600080fd5b506122bf87828801611e95565b60008060006060848603121561248957600080fd5b833561249481611ddc565b925060208401356001600160401b03808211156124b057600080fd5b6124bc878388016120cf565b935060408601359150808211156124d257600080fd5b506124df868287016120cf565b9150509250925092565b60008060008060006060868803121561250157600080fd5b85356001600160401b038082111561251857600080fd5b61252489838a01611f89565b9097509550602088013591508082111561253d57600080fd5b5061254a88828901611f89565b96999598509660400135949350505050565b6000806040838503121561256f57600080fd5b823561257a81611ddc565b9150612588602084016122cb565b90509250929050565b600080604083850312156125a457600080fd5b82356125af81611ddc565b91506020830135611e8a81611ddc565b600080600080600060a086880312156125d757600080fd5b85356125e281611ddc565b945060208601356125f281611ddc565b9350604086013592506060860135915060808601356001600160401b0381111561261b57600080fd5b61225388828901612140565b60006020828403121561263957600080fd5b813561162781611ddc565b60008060006060848603121561265957600080fd5b833561266481611ddc565b95602085013595506040909401359392505050565b600181811c9082168061268d57607f821691505b6020821081036126ad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610596576105966126c9565b60008261271357634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610596576105966126c9565b60006001820161273d5761273d6126c9565b5060010190565b601f82111561094257600081815260208120601f850160051c8101602086101561276b5750805b601f850160051c820191505b818110156108f357828155600101612777565b6001600160401b038311156127a1576127a161206a565b6127b5836127af8354612679565b83612744565b6000601f8411600181146127e957600085156127d15750838201355b600019600387901b1c1916600186901b178355610bc5565b600083815260209020601f19861690835b8281101561281a57868501358255602094850194600190920191016127fa565b50868210156128375760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b6000602082840312156128a957600080fd5b815161162781611ddc565b81516001600160401b038111156128cd576128cd61206a565b6128e1816128db8454612679565b84612744565b602080601f83116001811461291657600084156128fe5750858301515b600019600386901b1c1916600185901b1785556108f3565b600085815260208120601f198616915b8281101561294557888601518255948401946001909101908401612926565b50858210156129635787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b604081526000612a5560408301856123c7565b8281036020840152612a6781856123c7565b95945050505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612b3990830184611f17565b979650505050505050565b600060208284031215612b5657600080fd5b815161162781611e1d565b600060033d1115612b7a5760046000803e5060005160e01c5b90565b600060443d1015612b8b5790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612bba57505050505090565b8285019150815181811115612bd25750505050505090565b843d8701016020828501011115612bec5750505050505090565b612bfb60208286010187612080565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a060408201819052600090612c7a908301866123c7565b8281036060840152612c8c81866123c7565b90508281036080840152612ca08185611f17565b9897505050505050505056fea2646970667358221220e7cc4e90bc681a900137d60c77f70a8b13855989acd4011c0c0b5c343074b75e64736f6c63430008120033

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

000000000000000000000000ed5af388653567af2f388e6224dc7c4b3241c5440000000000000000000000000000000000000000000000000000000000002710

-----Decoded View---------------
Arg [0] : _azukiAddress (address): 0xED5AF388653567Af2F388E6224dC7C4b3241C544
Arg [1] : _maxSupply (uint256): 10000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ed5af388653567af2f388e6224dc7c4b3241c544
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710


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.