ETH Price: $3,396.32 (-2.16%)
Gas: 17 Gwei

Contract

0x0000C5BE2b455D1Cc12973685001CfdB016C3b0C
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
__ERC721Lazy Min...161713142022-12-12 21:29:35588 days ago1670880575IN
0x0000C5BE...B016C3b0C
0 ETH0.0014302215.29107776

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
161713112022-12-12 21:28:59588 days ago1670880539  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ERC721LazyMintTransferProxy

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : ERC721LazyMintTransferProxy.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../token/erc721/recomet-erc721/interfaces/IERC721LazyMint.sol";
import "../token/erc721/recomet-erc721/libraries/MintERC721Lib.sol";
import "../token/erc721/recomet-erc721/libraries/SecurityLib.sol";
import "../utils/OperatorControllerUpgradable.sol";
import "../../interfaces/ITransferProxy.sol";

/**
 * @title Transfer proxy for NFT on Recomet.
 */
contract ERC721LazyMintTransferProxy is
    OperatorControllerUpgradeable,
    ITransferProxy
{
    function __ERC721LazyMintTransferProxy_init(address account)
        external
        initializer
    {
        __Context_init_unchained();
        __Ownable_init_unchained();
        __OperatorController_init_unchained(account);
    }

    function transfer(
        AssetLib.AssetData memory asset,
        address from,
        address to
    ) external override onlyOperator {
        (bool isValid, string memory errorMessage) = _validate(asset, from, to);
        require(isValid, errorMessage);
        (
            ,
            address token,
            MintERC721Lib.MintERC721Data memory mintERC721Data,
            SignatureLib.SignatureData memory signatureData
        ) = _decodeAssetTypeData(asset);
        IERC721LazyMint(token).lazyMint(mintERC721Data, signatureData);
    }

    function _decodeAssetTypeData(AssetLib.AssetData memory asset)
        private
        pure
        returns (
            address,
            address,
            MintERC721Lib.MintERC721Data memory,
            SignatureLib.SignatureData memory
        )
    {
        (
            address proxy,
            address token,
            MintERC721Lib.MintERC721Data memory mintERC721Data,
            SignatureLib.SignatureData memory signatureData
        ) = abi.decode(
                asset.assetType.data,
                (
                    address,
                    address,
                    MintERC721Lib.MintERC721Data,
                    SignatureLib.SignatureData
                )
            );
        return (proxy, token, mintERC721Data, signatureData);
    }

    function _validate(
        AssetLib.AssetData memory asset,
        address from,
        address to
    ) private pure returns (bool, string memory) {
        (
            ,
            ,
            MintERC721Lib.MintERC721Data memory mintERC721Data,

        ) = _decodeAssetTypeData(asset);
        if (from == address(0) || from != mintERC721Data.minter) {
            return (
                false,
                "ERC721LazyMintTransferProxy: from verification failed"
            );
        } else if (to == address(0)) {
            return (
                false,
                "ERC721LazyMintTransferProxy: to verification failed"
            );
        }
        return (true, "");
    }

    uint256[50] private __gap;
}

File 2 of 17 : ITransferProxy.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

import "../libraries/AssetLib.sol";

/**
 * @title TransferProxy Interface
 * @notice Interface for Recrow-compatible transfer proxy contracts
 */
interface ITransferProxy {
    function transfer(
        AssetLib.AssetData calldata asset,
        address from,
        address to
    ) external;
}

File 3 of 17 : OperatorControllerUpgradable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

contract OperatorControllerUpgradeable is OwnableUpgradeable {
    mapping(address => bool) _operators;

    event OperatorSet(address indexed account, bool indexed status);

    modifier onlyOperator() {
        address sender = _msgSender();
        (bool isValid, string memory errorMessage) = _validateOperator(sender);
        require(isValid, errorMessage);
        _;
    }

    modifier onlyOperatorOrOwner() {
        address sender = _msgSender();
        (bool isValid, string memory errorMessage) = _validateOperatorOrOwner(
            sender
        );
        require(isValid, errorMessage);
        _;
    }

    function __OperatorController_init_unchained(address account) internal {
        _setOperator(account, true);
    }

    function addOperator(address account) external onlyOwner {
        _setOperator(account, true);
    }

    function removeOperator(address account) external onlyOwner {
        _setOperator(account, false);
    }

    function isOperator(address account) external view returns (bool) {
        return _isOperator(account);
    }

    function _setOperator(address account, bool status) internal {
        _operators[account] = status;
        emit OperatorSet(account, status);
    }

    function _isOperator(address account) internal view returns (bool) {
        return _operators[account];
    }

    function _isOperatorOrOwner(address account) internal view returns (bool) {
        return owner() == account || _isOperator(account);
    }

    function _validateOperator(address account)
        internal
        view
        returns (bool, string memory)
    {
        if (!_isOperator(account)) {
            return (
                false,
                "OperatorControllerUpgradeable: operator verification failed"
            );
        }
        return (true, "");
    }

    function _validateOperatorOrOwner(address account)
        internal
        view
        returns (bool, string memory)
    {
        if (!_isOperatorOrOwner(account)) {
            return (
                false,
                "OperatorControllerUpgradeable: operator or owner verification failed"
            );
        }
        return (true, "");
    }

    uint256[50] private __gap;
}

File 4 of 17 : MintERC721Lib.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../interfaces/IERC721LazyMint.sol";
import "./SecurityLib.sol";
import "./SignatureLib.sol";

library MintERC721Lib {
    bytes4 constant _INTERFACE_ID_LAZY_MINT = type(IERC721LazyMint).interfaceId;

    struct MintERC721Data {
        SecurityLib.SecurityData securityData;
        address minter;
        address to;
        uint256 tokenId;
        bytes data;
    }

    bytes32 private constant _MINT_ERC721_TYPEHASH =
        keccak256(
            bytes(
                "MintERC721Data(SecurityData securityData,address minter,address to,uint256 tokenId,bytes data)SecurityData(uint256 validFrom,uint256 validTo,uint256 salt)"
            )
        );

    function validate(MintERC721Data memory mintERC721Data)
        internal
        view
        returns (bool, string memory)
    {
        address minter = address(uint160(mintERC721Data.tokenId >> 96));
        if (minter != mintERC721Data.minter) {
            return (false, "MintERC721Lib: valid tokenId verification failed");
        }
        (
            bool isSecurityDataValid,
            string memory securityDataErrorMessage
        ) = SecurityLib.validate(mintERC721Data.securityData);
        if (!isSecurityDataValid) {
            return (false, securityDataErrorMessage);
        }
        return (true, "");
    }

    function hash(MintERC721Data memory mintERC721Data)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    _MINT_ERC721_TYPEHASH,
                    SecurityLib.hash(mintERC721Data.securityData),
                    mintERC721Data.minter,
                    mintERC721Data.to,
                    mintERC721Data.tokenId,
                    keccak256(mintERC721Data.data)
                )
            );
    }
}

File 5 of 17 : IERC721LazyMint.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol";
import "../libraries/PartLib.sol";
import "../libraries/MintERC721Lib.sol";
import "../libraries/SignatureLib.sol";

interface IERC721LazyMint is IERC721Upgradeable {
    event Minted(bytes32 indexed mintERC721Hash);

    function lazyMint(
        MintERC721Lib.MintERC721Data memory mintERC721Data,
        SignatureLib.SignatureData memory signatureData
    ) external;

    function isMinted(uint256 tokenId) external view returns (bool);
}

File 6 of 17 : SecurityLib.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

library SecurityLib {
    struct SecurityData {
        uint256 validFrom;
        uint256 validTo;
        uint256 salt;
    }

    bytes32 private constant _SECURITY_TYPEHASH =
        keccak256(
            abi.encodePacked(
                "SecurityData(uint256 validFrom,uint256 validTo,uint256 salt)"
            )
        );

    function validate(SecurityData memory securityData)
        internal
        view
        returns (bool, string memory)
    {
        if (securityData.validFrom > block.timestamp) {
            return (false, "SecurityLib: valid from verification failed");
        } else if (securityData.validTo < block.timestamp) {
            return (false, "SecurityLib: valid to verification failed");
        }
        return (true, "");
    }

    function hash(SecurityData memory securityData)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    _SECURITY_TYPEHASH,
                    securityData.validFrom,
                    securityData.validTo,
                    securityData.salt
                )
            );
    }
}

File 7 of 17 : AssetLib.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

/**
 * @title AssetLib
 * @notice Library for handling Asset data structure
 */
library AssetLib {
    /*//////////////////////////////////////////////////////////////
                        ASSET CLASS CONSTANTS
    //////////////////////////////////////////////////////////////*/

    /// @notice Bytes4 representations of allowed asset (token) classes.
    bytes4 public constant ETH_ASSET_CLASS = bytes4(keccak256("ETH"));
    bytes4 public constant ERC20_ASSET_CLASS = bytes4(keccak256("ERC20"));
    bytes4 public constant ERC721_ASSET_CLASS = bytes4(keccak256("ERC721"));
    bytes4 public constant ERC1155_ASSET_CLASS = bytes4(keccak256("ERC1155"));
    bytes4 public constant PROXY_ASSET_CLASS = bytes4(keccak256("PROXY"));

    /// @notice Asset typehash for EIP712 compatibility.
    bytes32 public constant ASSET_TYPE_TYPEHASH =
        keccak256("AssetType(bytes4 assetClass,bytes data)");
    bytes32 public constant ASSET_TYPEHASH =
        keccak256(
            "AssetData(AssetType assetType,uint256 value,address recipient)AssetType(bytes4 assetClass,bytes data)"
        );

    /*//////////////////////////////////////////////////////////////
                          ASSET DATA STRUCTURE
    //////////////////////////////////////////////////////////////*/

    /// @notice Struct holding the asset's class and details
    struct AssetType {
        // Asset (token) classification
        bytes4 assetClass;
        // Additional asset information (ex: contract address, tokenId)
        bytes data;
    }

    /// @notice Struct holding the data for an asset transfer
    struct AssetData {
        // Specification of the asset
        AssetType assetType;
        // Amount of asset to transfer
        uint256 value;
        // Transfer reecipient of the asset
        address recipient;
    }

    /*//////////////////////////////////////////////////////////////
                            DECODE LOGIC
    //////////////////////////////////////////////////////////////*/

    /**
     * @notice Decode additional data associated with the asset.
     * @param assetType AssetType of the asset.
     */
    function decodeAssetTypeData(AssetType memory assetType)
        internal
        pure
        returns (address, uint256)
    {
        if (
            assetType.assetClass == AssetLib.ERC721_ASSET_CLASS ||
            assetType.assetClass == AssetLib.ERC1155_ASSET_CLASS
        ) {
            (address token, uint256 tokenId) = abi.decode(
                assetType.data,
                (address, uint256)
            );
            return (token, tokenId);
        } else if (assetType.assetClass == AssetLib.ERC20_ASSET_CLASS) {
            address token = abi.decode(assetType.data, (address));
            return (token, 0);
        } else if (assetType.assetClass == AssetLib.PROXY_ASSET_CLASS) {
            address proxy = abi.decode(assetType.data, (address));
            return (proxy, 0);
        }
        return (address(0), 0);
    }

    /*//////////////////////////////////////////////////////////////
                             HASH FUNCTIONS
    //////////////////////////////////////////////////////////////*/

    /**
     * @notice EIP712-compatible hash of AssetType.
     * @param assetType AssetType of the asset.
     * @return hash of the assetType.
     */
    function hash(AssetType calldata assetType)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    ASSET_TYPE_TYPEHASH,
                    assetType.assetClass,
                    keccak256(assetType.data)
                )
            );
    }

    /**
     * @notice EIP712-compatible hash of AssetData.
     * @param asset AssetData of the asset.
     * @return hash of the asset.
     */
    function hash(AssetData calldata asset) internal pure returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    ASSET_TYPEHASH,
                    hash(asset.assetType),
                    asset.value,
                    asset.recipient
                )
            );
    }

    /**
     * @notice EIP712-compatible hash packing of AssetData.
     * @param assets AssetData assets to pack.
     * @return hash of the assets.
     */
    function packAssets(AssetData[] calldata assets)
        internal
        pure
        returns (bytes32)
    {
        bytes32[] memory assetHashes = new bytes32[](assets.length);
        for (uint256 i = 0; i < assets.length; i++) {
            assetHashes[i] = hash(assets[i]);
        }
        return keccak256(abi.encodePacked(assetHashes));
    }
}

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

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 9 of 17 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 10 of 17 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
     * initialization step. This is essential to configure modules that are added through upgrades and that require
     * initialization.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

File 12 of 17 : SignatureLib.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

library SignatureLib {
    struct SignatureData {
        bytes32 root;
        bytes32[] proof;
        bytes signature;
    }

    bytes32 private constant _SIGNATURE_TYPEHASH =
        keccak256("SignatureData(bytes32 root)");

    function hash(SignatureData memory signatureData)
        internal
        pure
        returns (bytes32)
    {
        return keccak256(abi.encode(_SIGNATURE_TYPEHASH, signatureData.root));
    }
}

File 13 of 17 : PartLib.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./BasisPointLib.sol";

library PartLib {
    bytes32 public constant TYPE_HASH =
        keccak256("PartData(address account,uint256 value)");

    struct PartData {
        address payable account;
        uint256 value;
    }

    function hash(PartData memory part) internal pure returns (bytes32) {
        return keccak256(abi.encode(TYPE_HASH, part.account, part.value));
    }

    function validate(PartData memory part)
        internal
        pure
        returns (bool, string memory)
    {
        if (part.account == address(0x0)) {
            return (false, "PartLib: account verification failed");
        }
        if (part.value == 0 || part.value > BasisPointLib._BPS_BASE) {
            return (false, "PartLib: value verification failed");
        }
        return (true, "");
    }
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721Upgradeable is IERC165Upgradeable {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

File 15 of 17 : BasisPointLib.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/math/SafeMath.sol";

library BasisPointLib {
    using SafeMath for uint256;

    uint256 constant _BPS_BASE = 10000;

    function bp(uint256 value, uint256 bpValue)
        internal
        pure
        returns (uint256)
    {
        return value.mul(bpValue).div(_BPS_BASE);
    }
}

File 16 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 17 of 17 : IERC165Upgradeable.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 IERC165Upgradeable {
    /**
     * @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
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"OperatorSet","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"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"__ERC721LazyMintTransferProxy_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isOperator","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":"account","type":"address"}],"name":"removeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"bytes4","name":"assetClass","type":"bytes4"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct AssetLib.AssetType","name":"assetType","type":"tuple"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"internalType":"struct AssetLib.AssetData","name":"asset","type":"tuple"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50610e89806100206000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80639870d7fe1161005b5780639870d7fe146101065780639b09e94114610119578063ac8a584a1461012c578063f2fde38b1461013f57600080fd5b806348c269f11461008d5780636d70f7ae146100a2578063715018a6146100e35780638da5cb5b146100eb575b600080fd5b6100a061009b36600461076b565b610152565b005b6100ce6100b036600461076b565b6001600160a01b031660009081526065602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100a061027a565b6033546040516001600160a01b0390911681526020016100da565b6100a061011436600461076b565b61028e565b6100a061012736600461086d565b6102a4565b6100a061013a36600461076b565b61038b565b6100a061014d36600461076b565b61039e565b600054610100900460ff16158080156101725750600054600160ff909116105b8061018c5750303b15801561018c575060005460ff166001145b6101f45760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b6000805460ff191660011790558015610217576000805461ff0019166101001790555b61021f610414565b61022761043b565b61023082610296565b8015610276576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050565b61028261046b565b61028c60006104c5565b565b61029661046b565b6102a1816001610517565b50565b336000806102b18361056b565b915091508181906102d55760405162461bcd60e51b81526004016101eb91906109ff565b506000806102e48888886105cb565b915091508181906103085760405162461bcd60e51b81526004016101eb91906109ff565b5060008060006103178b610686565b93509350935050826001600160a01b031663c2046e4683836040518363ffffffff1660e01b815260040161034c929190610a83565b600060405180830381600087803b15801561036657600080fd5b505af115801561037a573d6000803e3d6000fd5b505050505050505050505050505050565b61039361046b565b6102a1816000610517565b6103a661046b565b6001600160a01b03811661040b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101eb565b6102a1816104c5565b600054610100900460ff1661028c5760405162461bcd60e51b81526004016101eb90610b0b565b600054610100900460ff166104625760405162461bcd60e51b81526004016101eb90610b0b565b61028c336104c5565b6033546001600160a01b0316331461028c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101eb565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260656020526040808220805460ff191685151590811790915590519092917f1a594081ae893ab78e67d9b9e843547318164322d32c65369d78a96172d9dc8f91a35050565b6001600160a01b03811660009081526065602052604081205460609060ff166105b25760006040518060600160405280603b8152602001610db1603b913991509150915091565b5050604080516020810190915260008152600192909150565b6000606060006105da86610686565b50925050506001600160a01b038516158061060b575080602001516001600160a01b0316856001600160a01b031614155b15610635576000604051806060016040528060358152602001610dec60359139925092505061067e565b6001600160a01b038416610668576000604051806060016040528060338152602001610e2160339139925092505061067e565b5050604080516020810190915260008152600191505b935093915050565b6000806106916106e3565b60408051606080820183526000825260208201819052918101919091526000806000808860000151602001518060200190518101906106d09190610c8e565b929c919b50995090975095505050505050565b6040518060a0016040528061071260405180606001604052806000815260200160008152602001600081525090565b815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001606081525090565b6001600160a01b03811681146102a157600080fd5b803561076681610746565b919050565b60006020828403121561077d57600080fd5b813561078881610746565b9392505050565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff811182821017156107c8576107c861078f565b60405290565b6040805190810167ffffffffffffffff811182821017156107c8576107c861078f565b60405160a0810167ffffffffffffffff811182821017156107c8576107c861078f565b604051601f8201601f1916810167ffffffffffffffff8111828210171561083d5761083d61078f565b604052919050565b600067ffffffffffffffff82111561085f5761085f61078f565b50601f01601f191660200190565b60008060006060848603121561088257600080fd5b833567ffffffffffffffff8082111561089a57600080fd5b90850190606082880312156108ae57600080fd5b6108b66107a5565b8235828111156108c557600080fd5b83016040818a0312156108d757600080fd5b6108df6107ce565b81356001600160e01b0319811681146108f757600080fd5b81526020828101358581111561090c57600080fd5b83019450601f85018b1361091f57600080fd5b8435925061093461092f84610845565b610814565b8381528b8285880101111561094857600080fd5b838287018383013760008185018301528282015281845285810135848201526109736040870161075b565b6040850152839850610986818b0161075b565b975050505050505061099a6040850161075b565b90509250925092565b60005b838110156109be5781810151838201526020016109a6565b838111156109cd576000848401525b50505050565b600081518084526109eb8160208601602086016109a3565b601f01601f19169290920160200192915050565b60208152600061078860208301846109d3565b600060608301825184526020808401516060828701528281518085526080880191508383019450600092505b80831015610a5e5784518252938301936001929092019190830190610a3e565b50604086015193508681036040880152610a7881856109d3565b979650505050505050565b604081526000835180516040840152602081015160608401526040810151608084015250602084015160018060a01b0380821660a08501528060408701511660c08501525050606084015160e0830152608084015160e0610100840152610aee6101208401826109d3565b90508281036020840152610b028185610a12565b95945050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b805161076681610746565b600082601f830112610b7257600080fd5b8151610b8061092f82610845565b818152846020838601011115610b9557600080fd5b610ba68260208301602087016109a3565b949350505050565b600060608284031215610bc057600080fd5b610bc86107a5565b90508151815260208083015167ffffffffffffffff80821115610bea57600080fd5b818501915085601f830112610bfe57600080fd5b815181811115610c1057610c1061078f565b8060051b610c1f858201610814565b9182528381018501918581019089841115610c3957600080fd5b948601945b83861015610c5757855182529486019490860190610c3e565b8087890152505050506040850151925080831115610c7457600080fd5b5050610c8284828501610b61565b60408301525092915050565b60008060008060808587031215610ca457600080fd5b8451610caf81610746565b6020860151909450610cc081610746565b604086015190935067ffffffffffffffff80821115610cde57600080fd5b9086019081880360e0811215610cf357600080fd5b610cfb6107f1565b6060821215610d0957600080fd5b610d116107a5565b9150835182526020840151602083015260408401516040830152818152610d3a60608501610b56565b6020820152610d4b60808501610b56565b604082015260a0840151606082015260c0840151915082821115610d6e57600080fd5b610d7a8a838601610b61565b6080820152606089015190955092505080821115610d9757600080fd5b50610da487828801610bae565b9150509295919450925056fe4f70657261746f72436f6e74726f6c6c65725570677261646561626c653a206f70657261746f7220766572696669636174696f6e206661696c65644552433732314c617a794d696e745472616e7366657250726f78793a2066726f6d20766572696669636174696f6e206661696c65644552433732314c617a794d696e745472616e7366657250726f78793a20746f20766572696669636174696f6e206661696c6564a2646970667358221220d5ecc5ad74cf1dfd9a7552651ef4982d88d08c252decfe3d745e212e62dbae0464736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100885760003560e01c80639870d7fe1161005b5780639870d7fe146101065780639b09e94114610119578063ac8a584a1461012c578063f2fde38b1461013f57600080fd5b806348c269f11461008d5780636d70f7ae146100a2578063715018a6146100e35780638da5cb5b146100eb575b600080fd5b6100a061009b36600461076b565b610152565b005b6100ce6100b036600461076b565b6001600160a01b031660009081526065602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6100a061027a565b6033546040516001600160a01b0390911681526020016100da565b6100a061011436600461076b565b61028e565b6100a061012736600461086d565b6102a4565b6100a061013a36600461076b565b61038b565b6100a061014d36600461076b565b61039e565b600054610100900460ff16158080156101725750600054600160ff909116105b8061018c5750303b15801561018c575060005460ff166001145b6101f45760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b6000805460ff191660011790558015610217576000805461ff0019166101001790555b61021f610414565b61022761043b565b61023082610296565b8015610276576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050565b61028261046b565b61028c60006104c5565b565b61029661046b565b6102a1816001610517565b50565b336000806102b18361056b565b915091508181906102d55760405162461bcd60e51b81526004016101eb91906109ff565b506000806102e48888886105cb565b915091508181906103085760405162461bcd60e51b81526004016101eb91906109ff565b5060008060006103178b610686565b93509350935050826001600160a01b031663c2046e4683836040518363ffffffff1660e01b815260040161034c929190610a83565b600060405180830381600087803b15801561036657600080fd5b505af115801561037a573d6000803e3d6000fd5b505050505050505050505050505050565b61039361046b565b6102a1816000610517565b6103a661046b565b6001600160a01b03811661040b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101eb565b6102a1816104c5565b600054610100900460ff1661028c5760405162461bcd60e51b81526004016101eb90610b0b565b600054610100900460ff166104625760405162461bcd60e51b81526004016101eb90610b0b565b61028c336104c5565b6033546001600160a01b0316331461028c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101eb565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260656020526040808220805460ff191685151590811790915590519092917f1a594081ae893ab78e67d9b9e843547318164322d32c65369d78a96172d9dc8f91a35050565b6001600160a01b03811660009081526065602052604081205460609060ff166105b25760006040518060600160405280603b8152602001610db1603b913991509150915091565b5050604080516020810190915260008152600192909150565b6000606060006105da86610686565b50925050506001600160a01b038516158061060b575080602001516001600160a01b0316856001600160a01b031614155b15610635576000604051806060016040528060358152602001610dec60359139925092505061067e565b6001600160a01b038416610668576000604051806060016040528060338152602001610e2160339139925092505061067e565b5050604080516020810190915260008152600191505b935093915050565b6000806106916106e3565b60408051606080820183526000825260208201819052918101919091526000806000808860000151602001518060200190518101906106d09190610c8e565b929c919b50995090975095505050505050565b6040518060a0016040528061071260405180606001604052806000815260200160008152602001600081525090565b815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001606081525090565b6001600160a01b03811681146102a157600080fd5b803561076681610746565b919050565b60006020828403121561077d57600080fd5b813561078881610746565b9392505050565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff811182821017156107c8576107c861078f565b60405290565b6040805190810167ffffffffffffffff811182821017156107c8576107c861078f565b60405160a0810167ffffffffffffffff811182821017156107c8576107c861078f565b604051601f8201601f1916810167ffffffffffffffff8111828210171561083d5761083d61078f565b604052919050565b600067ffffffffffffffff82111561085f5761085f61078f565b50601f01601f191660200190565b60008060006060848603121561088257600080fd5b833567ffffffffffffffff8082111561089a57600080fd5b90850190606082880312156108ae57600080fd5b6108b66107a5565b8235828111156108c557600080fd5b83016040818a0312156108d757600080fd5b6108df6107ce565b81356001600160e01b0319811681146108f757600080fd5b81526020828101358581111561090c57600080fd5b83019450601f85018b1361091f57600080fd5b8435925061093461092f84610845565b610814565b8381528b8285880101111561094857600080fd5b838287018383013760008185018301528282015281845285810135848201526109736040870161075b565b6040850152839850610986818b0161075b565b975050505050505061099a6040850161075b565b90509250925092565b60005b838110156109be5781810151838201526020016109a6565b838111156109cd576000848401525b50505050565b600081518084526109eb8160208601602086016109a3565b601f01601f19169290920160200192915050565b60208152600061078860208301846109d3565b600060608301825184526020808401516060828701528281518085526080880191508383019450600092505b80831015610a5e5784518252938301936001929092019190830190610a3e565b50604086015193508681036040880152610a7881856109d3565b979650505050505050565b604081526000835180516040840152602081015160608401526040810151608084015250602084015160018060a01b0380821660a08501528060408701511660c08501525050606084015160e0830152608084015160e0610100840152610aee6101208401826109d3565b90508281036020840152610b028185610a12565b95945050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b805161076681610746565b600082601f830112610b7257600080fd5b8151610b8061092f82610845565b818152846020838601011115610b9557600080fd5b610ba68260208301602087016109a3565b949350505050565b600060608284031215610bc057600080fd5b610bc86107a5565b90508151815260208083015167ffffffffffffffff80821115610bea57600080fd5b818501915085601f830112610bfe57600080fd5b815181811115610c1057610c1061078f565b8060051b610c1f858201610814565b9182528381018501918581019089841115610c3957600080fd5b948601945b83861015610c5757855182529486019490860190610c3e565b8087890152505050506040850151925080831115610c7457600080fd5b5050610c8284828501610b61565b60408301525092915050565b60008060008060808587031215610ca457600080fd5b8451610caf81610746565b6020860151909450610cc081610746565b604086015190935067ffffffffffffffff80821115610cde57600080fd5b9086019081880360e0811215610cf357600080fd5b610cfb6107f1565b6060821215610d0957600080fd5b610d116107a5565b9150835182526020840151602083015260408401516040830152818152610d3a60608501610b56565b6020820152610d4b60808501610b56565b604082015260a0840151606082015260c0840151915082821115610d6e57600080fd5b610d7a8a838601610b61565b6080820152606089015190955092505080821115610d9757600080fd5b50610da487828801610bae565b9150509295919450925056fe4f70657261746f72436f6e74726f6c6c65725570677261646561626c653a206f70657261746f7220766572696669636174696f6e206661696c65644552433732314c617a794d696e745472616e7366657250726f78793a2066726f6d20766572696669636174696f6e206661696c65644552433732314c617a794d696e745472616e7366657250726f78793a20746f20766572696669636174696f6e206661696c6564a2646970667358221220d5ecc5ad74cf1dfd9a7552651ef4982d88d08c252decfe3d745e212e62dbae0464736f6c63430008090033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.