ETH Price: $3,125.66 (-0.35%)
Gas: 9.46 Gwei

Contract

0x9cbf164420286357b268674F6Bf0fA29800D59aE
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60806040194385312024-03-15 6:21:59248 days ago1710483719IN
 Create: TokenGateway
0 ETH0.0712770738.32333714

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TokenGateway

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 24 : TokenGateway.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";

import "../interfaces/IGateway.sol";
import "../interfaces/IGatewayGuarded.sol";

import "../interfaces/IBasicERC721.sol";
import "../interfaces/IBasicERC1155.sol";
import "../interfaces/IBasicERC20.sol";
import "../interfaces/IPausable.sol";

import "../interfaces/IGatewayGuardedOwnable.sol";

contract TokenGateway is Initializable, AccessControl, IGateway {
    
    using EnumerableSet for EnumerableSet.AddressSet;

    /********************************************************************
     *                          Role System                             *
     ********************************************************************/

    /**
     * The role responsible for setting manager of contracts.
     * @notice Can only call `setManagerOf`.
     */
    bytes32 public constant GATEWAY_MANAGER_ROLE =
        keccak256("GATEWAY_MANAGER_ROLE");

    /**
     * Store a one-to-one relationship between a certain nft contract
     * and a manager address.
     */
    mapping(address => address) _nftManager;
    mapping(address => address) nftPreviousManager;
    mapping(address => uint256) nftManagerGraceTimeStart;

    /**
     * Store whitelist addresses that may operate with NFTs without approval
     */
    mapping(address => bool) public override operatorWhitelist;

    /**
     * Store a one-to-many relationship between a certain nft contract
     * and some minter addresses.
     */
    mapping (address => EnumerableSet.AddressSet) _minters;

    event TransferGatewayOwnership(
        address indexed previousGatewayManager,
        address indexed newGatewayManager
    );

    event AssignManager(
        address indexed assigner,
        address indexed contractAddress,
        address previousContractManager,
        address indexed newContractManager
    );

    event AddOperatorWhitelist(address indexed operator);

    event RemoveOperatorWhitelist(address indexed operator);

    event AddMinter(address indexed tokenAddress, address minter);

    event RemoveMinter(address indexed tokenAddress, address minter);

    // only Manager or Whitelist or Minter
    modifier onlyWithMintAccess(address _tokenContract) {
        require(
            isInManagement(msg.sender, _tokenContract)
                || operatorWhitelist[msg.sender] 
                || _minters[_tokenContract].contains(msg.sender),
            "TokenGateway: caller is not manager of the token contract and is not in whitelist and is not in minter set"
        );
        _;
    }

    modifier onlyManagerOrGateway(address _tokenContract) {
        require(
            isInManagement(msg.sender, _tokenContract) 
                || hasRole(GATEWAY_MANAGER_ROLE, msg.sender),
            "TokenGateway: caller is not manager of the token contract and is not gateway manager"
        );
        _;
    }

    /**
     * NFTGateway is an upgradeable function.
     * When initializing the gateway, a gateway admin address
     * should be designated.
     */
    function initialize(address _gatewayAdmin) public initializer {
        _grantRole(DEFAULT_ADMIN_ROLE, _gatewayAdmin);
        _grantRole(GATEWAY_MANAGER_ROLE, _gatewayAdmin);
    }

    /********************************************************************
     *               Interfaces exposed to nft managers                 *
     ********************************************************************/

    /**
     * Call `mint` function on a BasicERC721 contract through gateway
     */
    function ERC721_mint(
        address _tokenContract,
        address _recipient,
        uint256 _tokenId
    ) external override onlyWithMintAccess(_tokenContract) {
        IBasicERC721(_tokenContract).mint(_recipient, _tokenId);
    }

    /**
     * Call `mint` function on a BasicERC721 contract through gateway
     */
    function ERC721_mintBatch(
        address _tokenContract,
        address _recipient,
        uint256[] calldata _tokenId
    ) external override onlyWithMintAccess(_tokenContract) {
        IBasicERC721(_tokenContract).mintBatch(_recipient, _tokenId);
    }

    /**
     * Call `setURI` function on a BasicERC721 contract through gateway
     */
    function ERC721_setURI(
        address _tokenContract,
        string calldata _newURI
    ) external override onlyManagerOrGateway(_tokenContract) {
        IBasicERC721(_tokenContract).setURI(_newURI);
    }

    /**
     * Call `mint` function on a BasicERC1155 contract through gateway
     */
    function ERC1155_mint(
        address _tokenContract,
        address _account,
        uint256 _id,
        uint256 _amount,
        bytes calldata _data
    ) external override onlyWithMintAccess(_tokenContract) {
        IBasicERC1155(_tokenContract).mint(_account, _id, _amount, _data);
    }

    /**
     * Call `mintBatch` function on a BasicERC1155 contract through gateway
     */
    function ERC1155_mintBatch(
        address _tokenContract,
        address _to,
        uint256[] calldata _ids,
        uint256[] calldata _amounts,
        bytes calldata _data
    ) external override onlyWithMintAccess(_tokenContract) {
        IBasicERC1155(_tokenContract).mintBatch(_to, _ids, _amounts, _data);
    }

    /**
     * Call `setURI` function on a BasicERC1155 contract through gateway
     */
    function ERC1155_setURI(
        address _tokenContract,
        string calldata _newuri
    ) external override onlyManagerOrGateway(_tokenContract) {
        IBasicERC1155(_tokenContract).setURI(_newuri);
    }

    function ERC20_mint(
        address _erc20Contract,
        address _recipient,
        uint256 _amount
    ) external override onlyWithMintAccess(_erc20Contract) {
        IBasicERC20(_erc20Contract).mint(_recipient, _amount);
    }

    function pause(
        address _contract
    ) external override onlyManagerOrGateway(_contract) {
        IPausable(_contract).pause();
    }

    function unpause(
        address _contract
    ) external override onlyManagerOrGateway(_contract) {
        IPausable(_contract).unpause();
    }

    /********************************************************************
     *                       Manage nft managers                        *
     ********************************************************************/

    function resetOwner(
        address _tokenContract,
        address _newOwner
    ) external onlyRole(GATEWAY_MANAGER_ROLE) {
        IGatewayGuardedOwnable(_tokenContract).resetOwner(_newOwner);
    }

    /**
     * Set the manager of a certain NFT contract.
     *
     * Note The previous manager of the nft still has access to management during
     * the grace period, which spans 1 day.
     */
    function setManagerOf(
        address _tokenContract,
        address _manager
    ) external override onlyManagerOrGateway(_tokenContract) {
        emit AssignManager(
            msg.sender,
            _tokenContract,
            _nftManager[_tokenContract],
            _manager
        );

        nftPreviousManager[_tokenContract] = _nftManager[_tokenContract];
        nftManagerGraceTimeStart[_tokenContract] = block.timestamp;

        _nftManager[_tokenContract] = _manager;
    }

    /**
     * Add minter to the specific minters set
     */
    function addMinter(
        address _tokenAddress,
        address minter
    ) external onlyManagerOrGateway(_tokenAddress) {
        _minters[_tokenAddress].add(minter);
        emit AddMinter(_tokenAddress, minter);
    }

    function removeMinter(
        address _tokenAddress, 
        address minter
    ) external onlyManagerOrGateway(_tokenAddress) {
        _minters[_tokenAddress].remove(minter);
        emit RemoveMinter(_tokenAddress, minter);
    }

    /********************************************************************
     *                      Admin-only functions                        *
     ********************************************************************/
    /**
     * Add an nft operator to the whitelist
     */
    function addOperatorWhitelist(
        address _operator
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        // Check if the _operator is a contract address
        require(
            AddressUpgradeable.isContract(_operator),
            "TokenGateway: operator is not contract"
        );

        operatorWhitelist[_operator] = true;

        emit AddOperatorWhitelist(_operator);
    }

    /**
     * Remove an nft operator from the whitelist
     */
    function removeOperatorWhitelist(
        address _operator
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        operatorWhitelist[_operator] = false;

        emit RemoveOperatorWhitelist(_operator);
    }

    /**
     * Add a manager
     * @notice Only the admin should call this function.
     */
    function addManager(
        address _manager
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        _grantRole(GATEWAY_MANAGER_ROLE, _manager);
    }

    /**
     * Remove a manager
     * @notice Only the admin should call this function.
     */
    function removeManager(
        address _manager
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        _revokeRole(GATEWAY_MANAGER_ROLE, _manager);
    }

    /**
     * This is the only way of changing the gateway of a certain contract.
     * @notice Should be rarely called.
     */
    function setGatewayOf(
        address _tokenContract,
        address _newGateway
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(
            _newGateway != address(this),
            "TokenGateway: new gateway should be different than the current one"
        );

        _nftManager[_tokenContract] = address(0);
        nftPreviousManager[_tokenContract] = address(0);
        IGatewayGuarded(_tokenContract).setGateway(_newGateway);
    }

    /**
     * Change the gateway manager address.
     * @notice Should be rarely called.
     */
    function transferGatewayOwnership(
        address _gatewayAdmin
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(
            _gatewayAdmin != msg.sender,
            "TokenGateway: new gateway admin should be different than the current one"
        );

        emit TransferGatewayOwnership(msg.sender, _gatewayAdmin);

        // The new gateway manager picks up his role.
        _grantRole(DEFAULT_ADMIN_ROLE, _gatewayAdmin);

        // The previous gateway manager renounces his big role.
        _revokeRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    /**
     * @dev Return the token manager address for _tokenContract
     * @notice If `nftManager` is not set in gateway, the owner of the _tokenContract is returned
     */
    function nftManager(
        address _tokenContract
    ) public view override returns (address) {
        address configuredManager = _nftManager[_tokenContract];
        if (configuredManager == address(0)) {
            try Ownable(_tokenContract).owner() returns (address _owner) {
                return _owner;
            } catch {}
        }
        return configuredManager;
    }

    function minters(address _nftAddress) public view returns (address[] memory) {
        return  _minters[_nftAddress].values();
    }

    function isMinter(address _nftAddress, address _minter) public view returns (bool) {
        return _minters[_nftAddress].contains(_minter);
    }

    /**
     * @dev Check if address `_x` is in management.
     * @notice If `_x` is the previous manager and the grace period has not
     * passed, still returns true.
     */
    function isInManagement(
        address _x,
        address _tokenContract
    ) public view override returns (bool) {
        try Ownable(_tokenContract).owner() returns (address _owner) {
            if (_owner == _x) {
                return true;
            }
        } catch {}
        return
            _x == _nftManager[_tokenContract] ||
            (_x == nftPreviousManager[_tokenContract] &&
                block.timestamp <
                nftManagerGraceTimeStart[_tokenContract] + 1 days);
    }
}

File 2 of 24 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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]
 * ```solidity
 * 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.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    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.
     *
     * 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.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * 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.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    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.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized != type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}

File 3 of 24 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
     *
     * 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.8.0/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 4 of 24 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

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

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 24 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 7 of 24 : 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 8 of 24 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

File 9 of 24 : 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 10 of 24 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 11 of 24 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 12 of 24 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 13 of 24 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 14 of 24 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 15 of 24 : IBasicERC1155.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IBasicERC1155 {
    function mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    function mintBatch(
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;

    function mintAirdrop(
        address[] calldata accounts,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    function setURI(string calldata newuri) external;
}

File 16 of 24 : IBasicERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IBasicERC20 {
    function mint(address to, uint256 amount) external;
}

File 17 of 24 : IBasicERC721.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IBasicERC721 {
    function mint(address to, uint256 tokenId) external;

    function mintBatch(address to, uint256[] calldata tokenId) external;

    function setURI(string calldata newBaseURI) external;
}

File 18 of 24 : IERC1155Gateway.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IERC1155Gateway {
    /********************************************************************
     *                        ERC1155 interfaces                        *
     ********************************************************************/

    /**
     * @dev Mint ERC1155 tokens.
     * @param account receiver of the minted tokens
     * @param id id of tokens to be minted
     * @param amount amount of tokens to be minted
     */
    function ERC1155_mint(
        address nftContract,
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) external;

    /**
     * @dev Mint a batch of ERC1155 tokens.
     *
     * See {ERC1155_mint}
     */
    function ERC1155_mintBatch(
        address nftContract,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) external;

    /**
     * @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 ERC1155_setURI(address nftContract, string memory newuri) external;
}

File 19 of 24 : IERC20Gateway.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IERC20Gateway {
    /********************************************************************
     *                         ERC20 interfaces                         *
     ********************************************************************/

    /**
     * @dev Mint some ERC20 tokens to the recipient address.
     * @notice Only gateway contract is authorized to mint.
     * @param recipient The recipient of the minted ERC20 tokens.
     * @param amount The amount to be minted.
     */
    function ERC20_mint(
        address erc20Contract,
        address recipient,
        uint256 amount
    ) external;
}

File 20 of 24 : IERC721Gateway.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IERC721Gateway {
    /********************************************************************
     *                        ERC721 interfaces                         *
     ********************************************************************/

    /**
     * @dev Mint an ERC721 token to the given address.
     * @notice Only gateway contract is authorized to mint.
     * @param recipient The recipient of the minted NFT.
     * @param tokenId The tokenId to be minted.
     */
    function ERC721_mint(
        address nftContract,
        address recipient,
        uint256 tokenId
    ) external;

    function ERC721_mintBatch(
        address nftContract,
        address recipient,
        uint256[] calldata tokenId
    ) external;

    /**
     * @dev Set `baseURI` of the ERC721 token. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`.
     */
    function ERC721_setURI(address nftContract, string memory newURI) external;
}

File 21 of 24 : IGateway.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC721Gateway.sol";
import "./IERC1155Gateway.sol";
import "./IERC20Gateway.sol";

interface IGateway is IERC721Gateway, IERC1155Gateway, IERC20Gateway {
    function operatorWhitelist(address _operator) external view returns (bool);

    function setManagerOf(address _nftContract, address _manager) external;

    function nftManager(address _nftContract) external view returns (address);

    function isInManagement(
        address _x,
        address _tokenContract
    ) external view returns (bool);

    function pause(address _contract) external;

    function unpause(address _contract) external;
}

File 22 of 24 : IGatewayGuarded.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * The management interface exposed to gateway.
 */
interface IGatewayGuarded {
    /**
     * @dev Set the gateway contract address.
     * @notice Only gateway contract is authorized to set a
     * new gateway address.
     * @notice This function should be rarely used.
     * @param gateway The new gateway address.
     */
    function setGateway(address gateway) external;
}

File 23 of 24 : IGatewayGuardedOwnable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IGatewayGuarded.sol";

/**
 * The management interface exposed to gateway.
 */
interface IGatewayGuardedOwnable is IGatewayGuarded {
    /**
     * @dev Reset the owner of the NFT contract.
     * @notice Only gateway contract is authorized to reset a
     * owner in case, for example, the old owner lost his keys.
     * @param newOwner The new owner of the contract.
     */
    function resetOwner(address newOwner) external;
}

File 24 of 24 : IPausable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IPausable {
    function pause() external;

    function unpause() external;
}

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

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"AddMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"}],"name":"AddOperatorWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"assigner","type":"address"},{"indexed":true,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"address","name":"previousContractManager","type":"address"},{"indexed":true,"internalType":"address","name":"newContractManager","type":"address"}],"name":"AssignManager","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"RemoveMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"}],"name":"RemoveOperatorWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousGatewayManager","type":"address"},{"indexed":true,"internalType":"address","name":"newGatewayManager","type":"address"}],"name":"TransferGatewayOwnership","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"ERC1155_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","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":"ERC1155_mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"string","name":"_newuri","type":"string"}],"name":"ERC1155_setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20Contract","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ERC20_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ERC721_mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"ERC721_mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"string","name":"_newURI","type":"string"}],"name":"ERC721_setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"GATEWAY_MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"addManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"addOperatorWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_gatewayAdmin","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_x","type":"address"},{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"isInManagement","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"address","name":"_minter","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"}],"name":"minters","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"nftManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"operatorWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"removeManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"removeOperatorWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_newOwner","type":"address"}],"name":"resetOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_newGateway","type":"address"}],"name":"setGatewayOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_manager","type":"address"}],"name":"setManagerOf","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":[{"internalType":"address","name":"_gatewayAdmin","type":"address"}],"name":"transferGatewayOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b506120ad806100206000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80637b1d63181161011a578063c27025f5116100ad578063db65385d1161007c578063db65385d1461040d578063e03c863214610459578063ec1b14ab146103fa578063f46eccc41461047c578063fa188df21461049c57600080fd5b8063c27025f51461040d578063c4d66de814610420578063d547741f14610433578063da6b6a1c1461044657600080fd5b80639cb9f9d3116100e95780639cb9f9d3146103b4578063a217fddf146103df578063ac18de43146103e7578063c1590515146103fa57600080fd5b80637b1d63181461036857806391d148541461037b57806399f4ea4e1461038e5780639c6694a9146103a157600080fd5b806331ae22321161019257806357b001f91161016157806357b001f91461031a5780635853abbc1461032d57806366a980581461034257806376a67a511461035557600080fd5b806331ae2232146102ce57806336568abe146102e15780633ef84c32146102f4578063502cbce61461030757600080fd5b806319b244e5116101ce57806319b244e514610263578063248a9ca3146102765780632d06177a146102a85780632f2ff15d146102bb57600080fd5b806301ffc9a7146102005780631285391014610228578063170488471461023b5780631922cc4314610250575b600080fd5b61021361020e366004611895565b6104af565b60405190151581526020015b60405180910390f35b6102136102363660046118d4565b6104e6565b61024e61024936600461190d565b6105e9565b005b61024e61025e3660046118d4565b6106ac565b61024e61027136600461190d565b610725565b61029a61028436600461192a565b6000908152600160208190526040909120015490565b60405190815260200161021f565b61024e6102b636600461190d565b61077a565b61024e6102c9366004611943565b6107a1565b61024e6102dc3660046119f6565b6107cc565b61024e6102ef366004611943565b6108aa565b61024e6103023660046118d4565b610924565b61024e610315366004611ab5565b610a13565b61024e61032836600461190d565b610aeb565b61029a60008051602061205883398151915281565b61024e6103503660046118d4565b610b87565b61024e61036336600461190d565b610c7a565b61024e6103763660046118d4565b610cfa565b610213610389366004611943565b610da8565b61024e61039c366004611b31565b610dd3565b61024e6103af36600461190d565b610ea5565b6103c76103c236600461190d565b610f8b565b6040516001600160a01b03909116815260200161021f565b61029a600081565b61024e6103f536600461190d565b611013565b61024e610408366004611b96565b611036565b61024e61041b366004611bd7565b611108565b61024e61042e36600461190d565b61117b565b61024e610441366004611943565b6112a7565b6102136104543660046118d4565b6112cd565b61021361046736600461190d565b60056020526000908152604090205460ff1681565b61048f61048a36600461190d565b6112ef565b60405161021f9190611c2c565b61024e6104aa3660046118d4565b611313565b60006001600160e01b03198216637965db0b60e01b14806104e057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610542575060408051601f3d908101601f1916820190925261053f91810190611c79565b60015b1561056c57836001600160a01b0316816001600160a01b03160361056a5760019150506104e0565b505b6001600160a01b03808316600090815260026020526040902054848216911614806105e257506001600160a01b0380831660009081526003602052604090205484821691161480156105e257506001600160a01b0382166000908152600460205260409020546105df9062015180611cac565b42105b9392505050565b60006105f4816113b8565b6001600160a01b0382163b61065f5760405162461bcd60e51b815260206004820152602660248201527f546f6b656e476174657761793a206f70657261746f72206973206e6f7420636f6044820152651b9d1c9858dd60d21b60648201526084015b60405180910390fd5b6001600160a01b038216600081815260056020526040808220805460ff19166001179055517f58432444efbd399e25edc2cfb61441630006b8ef14456fb8961cbd71a25ae0bf9190a25050565b6000805160206120588339815191526106c4816113b8565b6040516339e6401560e11b81526001600160a01b0383811660048301528416906373cc802a906024015b600060405180830381600087803b15801561070857600080fd5b505af115801561071c573d6000803e3d6000fd5b50505050505050565b6000610730816113b8565b6001600160a01b038216600081815260056020526040808220805460ff19169055517fc46324f019c24385863a92a42f2e3290ef25abcfc5fbda98d3f4a59ec88e7a9a9190a25050565b6000610785816113b8565b61079d600080516020612058833981519152836113c5565b5050565b600082815260016020819052604090912001546107bd816113b8565b6107c783836113c5565b505050565b876107d733826104e6565b806107f157503360009081526005602052604090205460ff165b8061081957506001600160a01b03811660009081526006602052604090206108199033611430565b6108355760405162461bcd60e51b815260040161065690611cbf565b604051630fbfeffd60e11b81526001600160a01b038a1690631f7fdffa9061086d908b908b908b908b908b908b908b90600401611db0565b600060405180830381600087803b15801561088757600080fd5b505af115801561089b573d6000803e3d6000fd5b50505050505050505050505050565b6001600160a01b038116331461091a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610656565b61079d8282611452565b8161092f33826104e6565b8061094d575061094d60008051602061205883398151915233610da8565b6109695760405162461bcd60e51b815260040161065690611e0b565b6001600160a01b0383811660008181526002602090815260409182902054915191841682529285169233917f80c3c3a17d0c44a8a62829d85f18c56abfa7374fab39ef07f3ad8646254c9dbb910160405180910390a4506001600160a01b03918216600090815260026020818152604080842080546003845282862080549189166001600160a01b0319928316179055600484529190942042905591905281541691909216179055565b85610a1e33826104e6565b80610a3857503360009081526005602052604090205460ff165b80610a6057506001600160a01b0381166000908152600660205260409020610a609033611430565b610a7c5760405162461bcd60e51b815260040161065690611cbf565b60405163731133e960e01b81526001600160a01b0388169063731133e990610ab09089908990899089908990600401611e85565b600060405180830381600087803b158015610aca57600080fd5b505af1158015610ade573d6000803e3d6000fd5b5050505050505050505050565b80610af633826104e6565b80610b145750610b1460008051602061205883398151915233610da8565b610b305760405162461bcd60e51b815260040161065690611e0b565b816001600160a01b0316633f4ba83a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610b6b57600080fd5b505af1158015610b7f573d6000803e3d6000fd5b505050505050565b6000610b92816113b8565b306001600160a01b03831603610c1b5760405162461bcd60e51b815260206004820152604260248201527f546f6b656e476174657761793a206e657720676174657761792073686f756c6460448201527f20626520646966666572656e74207468616e207468652063757272656e74206f6064820152616e6560f01b608482015260a401610656565b6001600160a01b03838116600081815260026020908152604080832080546001600160a01b0319908116909155600390925291829020805490911690555163483235a560e11b81529184166004830152906390646b4a906024016106ee565b80610c8533826104e6565b80610ca35750610ca360008051602061205883398151915233610da8565b610cbf5760405162461bcd60e51b815260040161065690611e0b565b816001600160a01b0316638456cb596040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610b6b57600080fd5b81610d0533826104e6565b80610d235750610d2360008051602061205883398151915233610da8565b610d3f5760405162461bcd60e51b815260040161065690611e0b565b6001600160a01b0383166000908152600660205260409020610d6190836114b9565b506040516001600160a01b0383811682528416907fe4a9d76045628f9aac382acca48ced14781d1e98915453a55e277233a6ff7d7c906020015b60405180910390a2505050565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b83610dde33826104e6565b80610df857503360009081526005602052604090205460ff165b80610e2057506001600160a01b0381166000908152600660205260409020610e209033611430565b610e3c5760405162461bcd60e51b815260040161065690611cbf565b6040516375ceb34160e01b81526001600160a01b038616906375ceb34190610e6c90879087908790600401611ebe565b600060405180830381600087803b158015610e8657600080fd5b505af1158015610e9a573d6000803e3d6000fd5b505050505050505050565b6000610eb0816113b8565b336001600160a01b03831603610f3f5760405162461bcd60e51b815260206004820152604860248201527f546f6b656e476174657761793a206e657720676174657761792061646d696e2060448201527f73686f756c6420626520646966666572656e74207468616e207468652063757260648201526772656e74206f6e6560c01b608482015260a401610656565b6040516001600160a01b0383169033907fca6f984ca02ffb677ca3bc033180d2900e749884e8851484983db749422f24ca90600090a3610f806000836113c5565b61079d600033611452565b6001600160a01b03808216600090815260026020526040812054909116806104e057826001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611007575060408051601f3d908101601f1916820190925261100491810190611c79565b60015b156104e0579392505050565b600061101e816113b8565b61079d60008051602061205883398151915283611452565b8261104133826104e6565b8061105b57503360009081526005602052604090205460ff165b8061108357506001600160a01b03811660009081526006602052604090206110839033611430565b61109f5760405162461bcd60e51b815260040161065690611cbf565b6040516340c10f1960e01b81526001600160a01b038481166004830152602482018490528516906340c10f19906044015b600060405180830381600087803b1580156110ea57600080fd5b505af11580156110fe573d6000803e3d6000fd5b5050505050505050565b8261111333826104e6565b80611131575061113160008051602061205883398151915233610da8565b61114d5760405162461bcd60e51b815260040161065690611e0b565b6040516302fe530560e01b81526001600160a01b038516906302fe5305906110d09086908690600401611eec565b600054610100900460ff161580801561119b5750600054600160ff909116105b806111b55750303b1580156111b5575060005460ff166001145b6112185760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610656565b6000805460ff19166001179055801561123b576000805461ff0019166101001790555b6112466000836113c5565b61125e600080516020612058833981519152836113c5565b801561079d576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050565b600082815260016020819052604090912001546112c3816113b8565b6107c78383611452565b6001600160a01b03821660009081526006602052604081206105e29083611430565b6001600160a01b03811660009081526006602052604090206060906104e0906114ce565b8161131e33826104e6565b8061133c575061133c60008051602061205883398151915233610da8565b6113585760405162461bcd60e51b815260040161065690611e0b565b6001600160a01b038316600090815260066020526040902061137a90836114db565b506040516001600160a01b0383811682528416907f6f839fba2116fdb1b5fd547165fb18d0065e3ac6ec8402eaf15cf1c1a61ec79290602001610d9b565b6113c281336114f0565b50565b6113cf8282610da8565b61079d5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6001600160a01b038116600090815260018301602052604081205415156105e2565b61145c8282610da8565b1561079d5760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60006105e2836001600160a01b038416611549565b606060006105e28361163c565b60006105e2836001600160a01b038416611698565b6114fa8282610da8565b61079d57611507816116e7565b6115128360206116f9565b604051602001611523929190611f2c565b60408051601f198184030181529082905262461bcd60e51b825261065691600401611fa1565b6000818152600183016020526040812054801561163257600061156d600183611fd4565b855490915060009061158190600190611fd4565b90508181146115e65760008660000182815481106115a1576115a1611fe7565b90600052602060002001549050808760000184815481106115c4576115c4611fe7565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806115f7576115f7611ffd565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506104e0565b60009150506104e0565b60608160000180548060200260200160405190810160405280929190818152602001828054801561168c57602002820191906000526020600020905b815481526020019060010190808311611678575b50505050509050919050565b60008181526001830160205260408120546116df575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104e0565b5060006104e0565b60606104e06001600160a01b03831660145b60606000611708836002612013565b611713906002611cac565b67ffffffffffffffff81111561172b5761172b61202a565b6040519080825280601f01601f191660200182016040528015611755576020820181803683370190505b509050600360fc1b8160008151811061177057611770611fe7565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061179f5761179f611fe7565b60200101906001600160f81b031916908160001a90535060006117c3846002612013565b6117ce906001611cac565b90505b6001811115611846576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061180257611802611fe7565b1a60f81b82828151811061181857611818611fe7565b60200101906001600160f81b031916908160001a90535060049490941c9361183f81612040565b90506117d1565b5083156105e25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610656565b6000602082840312156118a757600080fd5b81356001600160e01b0319811681146105e257600080fd5b6001600160a01b03811681146113c257600080fd5b600080604083850312156118e757600080fd5b82356118f2816118bf565b91506020830135611902816118bf565b809150509250929050565b60006020828403121561191f57600080fd5b81356105e2816118bf565b60006020828403121561193c57600080fd5b5035919050565b6000806040838503121561195657600080fd5b823591506020830135611902816118bf565b60008083601f84011261197a57600080fd5b50813567ffffffffffffffff81111561199257600080fd5b6020830191508360208260051b85010111156119ad57600080fd5b9250929050565b60008083601f8401126119c657600080fd5b50813567ffffffffffffffff8111156119de57600080fd5b6020830191508360208285010111156119ad57600080fd5b60008060008060008060008060a0898b031215611a1257600080fd5b8835611a1d816118bf565b97506020890135611a2d816118bf565b9650604089013567ffffffffffffffff80821115611a4a57600080fd5b611a568c838d01611968565b909850965060608b0135915080821115611a6f57600080fd5b611a7b8c838d01611968565b909650945060808b0135915080821115611a9457600080fd5b50611aa18b828c016119b4565b999c989b5096995094979396929594505050565b60008060008060008060a08789031215611ace57600080fd5b8635611ad9816118bf565b95506020870135611ae9816118bf565b94506040870135935060608701359250608087013567ffffffffffffffff811115611b1357600080fd5b611b1f89828a016119b4565b979a9699509497509295939492505050565b60008060008060608587031215611b4757600080fd5b8435611b52816118bf565b93506020850135611b62816118bf565b9250604085013567ffffffffffffffff811115611b7e57600080fd5b611b8a87828801611968565b95989497509550505050565b600080600060608486031215611bab57600080fd5b8335611bb6816118bf565b92506020840135611bc6816118bf565b929592945050506040919091013590565b600080600060408486031215611bec57600080fd5b8335611bf7816118bf565b9250602084013567ffffffffffffffff811115611c1357600080fd5b611c1f868287016119b4565b9497909650939450505050565b6020808252825182820181905260009190848201906040850190845b81811015611c6d5783516001600160a01b031683529284019291840191600101611c48565b50909695505050505050565b600060208284031215611c8b57600080fd5b81516105e2816118bf565b634e487b7160e01b600052601160045260246000fd5b808201808211156104e0576104e0611c96565b6020808252606a908201527f546f6b656e476174657761793a2063616c6c6572206973206e6f74206d616e6160408201527f676572206f662074686520746f6b656e20636f6e747261637420616e6420697360608201527f206e6f7420696e2077686974656c69737420616e64206973206e6f7420696e206080820152691b5a5b9d195c881cd95d60b21b60a082015260c00190565b81835260006001600160fb1b03831115611d6e57600080fd5b8260051b80836020870137939093016020019392505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6001600160a01b0388168152608060208201819052600090611dd5908301888a611d55565b8281036040840152611de8818789611d55565b90508281036060840152611dfd818587611d87565b9a9950505050505050505050565b60208082526054908201527f546f6b656e476174657761793a2063616c6c6572206973206e6f74206d616e6160408201527f676572206f662074686520746f6b656e20636f6e747261637420616e64206973606082015273103737ba1033b0ba32bbb0bc9036b0b730b3b2b960611b608082015260a00190565b60018060a01b0386168152846020820152836040820152608060608201526000611eb3608083018486611d87565b979650505050505050565b6001600160a01b0384168152604060208201819052600090611ee39083018486611d55565b95945050505050565b602081526000611f00602083018486611d87565b949350505050565b60005b83811015611f23578181015183820152602001611f0b565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611f64816017850160208801611f08565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611f95816028840160208801611f08565b01602801949350505050565b6020815260008251806020840152611fc0816040850160208701611f08565b601f01601f19169190910160400192915050565b818103818111156104e0576104e0611c96565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b80820281158282048414176104e0576104e0611c96565b634e487b7160e01b600052604160045260246000fd5b60008161204f5761204f611c96565b50600019019056fed0b4cb1076caad28e19b79fe5cdd885b423a24c490d94dfc025bae8c26911b63a264697066735822122052cc5ecd6edc939d0b4ec33a3d8c12966e2c39c9295cd40fcfca1678c9da7d1b64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80637b1d63181161011a578063c27025f5116100ad578063db65385d1161007c578063db65385d1461040d578063e03c863214610459578063ec1b14ab146103fa578063f46eccc41461047c578063fa188df21461049c57600080fd5b8063c27025f51461040d578063c4d66de814610420578063d547741f14610433578063da6b6a1c1461044657600080fd5b80639cb9f9d3116100e95780639cb9f9d3146103b4578063a217fddf146103df578063ac18de43146103e7578063c1590515146103fa57600080fd5b80637b1d63181461036857806391d148541461037b57806399f4ea4e1461038e5780639c6694a9146103a157600080fd5b806331ae22321161019257806357b001f91161016157806357b001f91461031a5780635853abbc1461032d57806366a980581461034257806376a67a511461035557600080fd5b806331ae2232146102ce57806336568abe146102e15780633ef84c32146102f4578063502cbce61461030757600080fd5b806319b244e5116101ce57806319b244e514610263578063248a9ca3146102765780632d06177a146102a85780632f2ff15d146102bb57600080fd5b806301ffc9a7146102005780631285391014610228578063170488471461023b5780631922cc4314610250575b600080fd5b61021361020e366004611895565b6104af565b60405190151581526020015b60405180910390f35b6102136102363660046118d4565b6104e6565b61024e61024936600461190d565b6105e9565b005b61024e61025e3660046118d4565b6106ac565b61024e61027136600461190d565b610725565b61029a61028436600461192a565b6000908152600160208190526040909120015490565b60405190815260200161021f565b61024e6102b636600461190d565b61077a565b61024e6102c9366004611943565b6107a1565b61024e6102dc3660046119f6565b6107cc565b61024e6102ef366004611943565b6108aa565b61024e6103023660046118d4565b610924565b61024e610315366004611ab5565b610a13565b61024e61032836600461190d565b610aeb565b61029a60008051602061205883398151915281565b61024e6103503660046118d4565b610b87565b61024e61036336600461190d565b610c7a565b61024e6103763660046118d4565b610cfa565b610213610389366004611943565b610da8565b61024e61039c366004611b31565b610dd3565b61024e6103af36600461190d565b610ea5565b6103c76103c236600461190d565b610f8b565b6040516001600160a01b03909116815260200161021f565b61029a600081565b61024e6103f536600461190d565b611013565b61024e610408366004611b96565b611036565b61024e61041b366004611bd7565b611108565b61024e61042e36600461190d565b61117b565b61024e610441366004611943565b6112a7565b6102136104543660046118d4565b6112cd565b61021361046736600461190d565b60056020526000908152604090205460ff1681565b61048f61048a36600461190d565b6112ef565b60405161021f9190611c2c565b61024e6104aa3660046118d4565b611313565b60006001600160e01b03198216637965db0b60e01b14806104e057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610542575060408051601f3d908101601f1916820190925261053f91810190611c79565b60015b1561056c57836001600160a01b0316816001600160a01b03160361056a5760019150506104e0565b505b6001600160a01b03808316600090815260026020526040902054848216911614806105e257506001600160a01b0380831660009081526003602052604090205484821691161480156105e257506001600160a01b0382166000908152600460205260409020546105df9062015180611cac565b42105b9392505050565b60006105f4816113b8565b6001600160a01b0382163b61065f5760405162461bcd60e51b815260206004820152602660248201527f546f6b656e476174657761793a206f70657261746f72206973206e6f7420636f6044820152651b9d1c9858dd60d21b60648201526084015b60405180910390fd5b6001600160a01b038216600081815260056020526040808220805460ff19166001179055517f58432444efbd399e25edc2cfb61441630006b8ef14456fb8961cbd71a25ae0bf9190a25050565b6000805160206120588339815191526106c4816113b8565b6040516339e6401560e11b81526001600160a01b0383811660048301528416906373cc802a906024015b600060405180830381600087803b15801561070857600080fd5b505af115801561071c573d6000803e3d6000fd5b50505050505050565b6000610730816113b8565b6001600160a01b038216600081815260056020526040808220805460ff19169055517fc46324f019c24385863a92a42f2e3290ef25abcfc5fbda98d3f4a59ec88e7a9a9190a25050565b6000610785816113b8565b61079d600080516020612058833981519152836113c5565b5050565b600082815260016020819052604090912001546107bd816113b8565b6107c783836113c5565b505050565b876107d733826104e6565b806107f157503360009081526005602052604090205460ff165b8061081957506001600160a01b03811660009081526006602052604090206108199033611430565b6108355760405162461bcd60e51b815260040161065690611cbf565b604051630fbfeffd60e11b81526001600160a01b038a1690631f7fdffa9061086d908b908b908b908b908b908b908b90600401611db0565b600060405180830381600087803b15801561088757600080fd5b505af115801561089b573d6000803e3d6000fd5b50505050505050505050505050565b6001600160a01b038116331461091a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610656565b61079d8282611452565b8161092f33826104e6565b8061094d575061094d60008051602061205883398151915233610da8565b6109695760405162461bcd60e51b815260040161065690611e0b565b6001600160a01b0383811660008181526002602090815260409182902054915191841682529285169233917f80c3c3a17d0c44a8a62829d85f18c56abfa7374fab39ef07f3ad8646254c9dbb910160405180910390a4506001600160a01b03918216600090815260026020818152604080842080546003845282862080549189166001600160a01b0319928316179055600484529190942042905591905281541691909216179055565b85610a1e33826104e6565b80610a3857503360009081526005602052604090205460ff165b80610a6057506001600160a01b0381166000908152600660205260409020610a609033611430565b610a7c5760405162461bcd60e51b815260040161065690611cbf565b60405163731133e960e01b81526001600160a01b0388169063731133e990610ab09089908990899089908990600401611e85565b600060405180830381600087803b158015610aca57600080fd5b505af1158015610ade573d6000803e3d6000fd5b5050505050505050505050565b80610af633826104e6565b80610b145750610b1460008051602061205883398151915233610da8565b610b305760405162461bcd60e51b815260040161065690611e0b565b816001600160a01b0316633f4ba83a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610b6b57600080fd5b505af1158015610b7f573d6000803e3d6000fd5b505050505050565b6000610b92816113b8565b306001600160a01b03831603610c1b5760405162461bcd60e51b815260206004820152604260248201527f546f6b656e476174657761793a206e657720676174657761792073686f756c6460448201527f20626520646966666572656e74207468616e207468652063757272656e74206f6064820152616e6560f01b608482015260a401610656565b6001600160a01b03838116600081815260026020908152604080832080546001600160a01b0319908116909155600390925291829020805490911690555163483235a560e11b81529184166004830152906390646b4a906024016106ee565b80610c8533826104e6565b80610ca35750610ca360008051602061205883398151915233610da8565b610cbf5760405162461bcd60e51b815260040161065690611e0b565b816001600160a01b0316638456cb596040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610b6b57600080fd5b81610d0533826104e6565b80610d235750610d2360008051602061205883398151915233610da8565b610d3f5760405162461bcd60e51b815260040161065690611e0b565b6001600160a01b0383166000908152600660205260409020610d6190836114b9565b506040516001600160a01b0383811682528416907fe4a9d76045628f9aac382acca48ced14781d1e98915453a55e277233a6ff7d7c906020015b60405180910390a2505050565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b83610dde33826104e6565b80610df857503360009081526005602052604090205460ff165b80610e2057506001600160a01b0381166000908152600660205260409020610e209033611430565b610e3c5760405162461bcd60e51b815260040161065690611cbf565b6040516375ceb34160e01b81526001600160a01b038616906375ceb34190610e6c90879087908790600401611ebe565b600060405180830381600087803b158015610e8657600080fd5b505af1158015610e9a573d6000803e3d6000fd5b505050505050505050565b6000610eb0816113b8565b336001600160a01b03831603610f3f5760405162461bcd60e51b815260206004820152604860248201527f546f6b656e476174657761793a206e657720676174657761792061646d696e2060448201527f73686f756c6420626520646966666572656e74207468616e207468652063757260648201526772656e74206f6e6560c01b608482015260a401610656565b6040516001600160a01b0383169033907fca6f984ca02ffb677ca3bc033180d2900e749884e8851484983db749422f24ca90600090a3610f806000836113c5565b61079d600033611452565b6001600160a01b03808216600090815260026020526040812054909116806104e057826001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611007575060408051601f3d908101601f1916820190925261100491810190611c79565b60015b156104e0579392505050565b600061101e816113b8565b61079d60008051602061205883398151915283611452565b8261104133826104e6565b8061105b57503360009081526005602052604090205460ff165b8061108357506001600160a01b03811660009081526006602052604090206110839033611430565b61109f5760405162461bcd60e51b815260040161065690611cbf565b6040516340c10f1960e01b81526001600160a01b038481166004830152602482018490528516906340c10f19906044015b600060405180830381600087803b1580156110ea57600080fd5b505af11580156110fe573d6000803e3d6000fd5b5050505050505050565b8261111333826104e6565b80611131575061113160008051602061205883398151915233610da8565b61114d5760405162461bcd60e51b815260040161065690611e0b565b6040516302fe530560e01b81526001600160a01b038516906302fe5305906110d09086908690600401611eec565b600054610100900460ff161580801561119b5750600054600160ff909116105b806111b55750303b1580156111b5575060005460ff166001145b6112185760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610656565b6000805460ff19166001179055801561123b576000805461ff0019166101001790555b6112466000836113c5565b61125e600080516020612058833981519152836113c5565b801561079d576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050565b600082815260016020819052604090912001546112c3816113b8565b6107c78383611452565b6001600160a01b03821660009081526006602052604081206105e29083611430565b6001600160a01b03811660009081526006602052604090206060906104e0906114ce565b8161131e33826104e6565b8061133c575061133c60008051602061205883398151915233610da8565b6113585760405162461bcd60e51b815260040161065690611e0b565b6001600160a01b038316600090815260066020526040902061137a90836114db565b506040516001600160a01b0383811682528416907f6f839fba2116fdb1b5fd547165fb18d0065e3ac6ec8402eaf15cf1c1a61ec79290602001610d9b565b6113c281336114f0565b50565b6113cf8282610da8565b61079d5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6001600160a01b038116600090815260018301602052604081205415156105e2565b61145c8282610da8565b1561079d5760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60006105e2836001600160a01b038416611549565b606060006105e28361163c565b60006105e2836001600160a01b038416611698565b6114fa8282610da8565b61079d57611507816116e7565b6115128360206116f9565b604051602001611523929190611f2c565b60408051601f198184030181529082905262461bcd60e51b825261065691600401611fa1565b6000818152600183016020526040812054801561163257600061156d600183611fd4565b855490915060009061158190600190611fd4565b90508181146115e65760008660000182815481106115a1576115a1611fe7565b90600052602060002001549050808760000184815481106115c4576115c4611fe7565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806115f7576115f7611ffd565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506104e0565b60009150506104e0565b60608160000180548060200260200160405190810160405280929190818152602001828054801561168c57602002820191906000526020600020905b815481526020019060010190808311611678575b50505050509050919050565b60008181526001830160205260408120546116df575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104e0565b5060006104e0565b60606104e06001600160a01b03831660145b60606000611708836002612013565b611713906002611cac565b67ffffffffffffffff81111561172b5761172b61202a565b6040519080825280601f01601f191660200182016040528015611755576020820181803683370190505b509050600360fc1b8160008151811061177057611770611fe7565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061179f5761179f611fe7565b60200101906001600160f81b031916908160001a90535060006117c3846002612013565b6117ce906001611cac565b90505b6001811115611846576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061180257611802611fe7565b1a60f81b82828151811061181857611818611fe7565b60200101906001600160f81b031916908160001a90535060049490941c9361183f81612040565b90506117d1565b5083156105e25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610656565b6000602082840312156118a757600080fd5b81356001600160e01b0319811681146105e257600080fd5b6001600160a01b03811681146113c257600080fd5b600080604083850312156118e757600080fd5b82356118f2816118bf565b91506020830135611902816118bf565b809150509250929050565b60006020828403121561191f57600080fd5b81356105e2816118bf565b60006020828403121561193c57600080fd5b5035919050565b6000806040838503121561195657600080fd5b823591506020830135611902816118bf565b60008083601f84011261197a57600080fd5b50813567ffffffffffffffff81111561199257600080fd5b6020830191508360208260051b85010111156119ad57600080fd5b9250929050565b60008083601f8401126119c657600080fd5b50813567ffffffffffffffff8111156119de57600080fd5b6020830191508360208285010111156119ad57600080fd5b60008060008060008060008060a0898b031215611a1257600080fd5b8835611a1d816118bf565b97506020890135611a2d816118bf565b9650604089013567ffffffffffffffff80821115611a4a57600080fd5b611a568c838d01611968565b909850965060608b0135915080821115611a6f57600080fd5b611a7b8c838d01611968565b909650945060808b0135915080821115611a9457600080fd5b50611aa18b828c016119b4565b999c989b5096995094979396929594505050565b60008060008060008060a08789031215611ace57600080fd5b8635611ad9816118bf565b95506020870135611ae9816118bf565b94506040870135935060608701359250608087013567ffffffffffffffff811115611b1357600080fd5b611b1f89828a016119b4565b979a9699509497509295939492505050565b60008060008060608587031215611b4757600080fd5b8435611b52816118bf565b93506020850135611b62816118bf565b9250604085013567ffffffffffffffff811115611b7e57600080fd5b611b8a87828801611968565b95989497509550505050565b600080600060608486031215611bab57600080fd5b8335611bb6816118bf565b92506020840135611bc6816118bf565b929592945050506040919091013590565b600080600060408486031215611bec57600080fd5b8335611bf7816118bf565b9250602084013567ffffffffffffffff811115611c1357600080fd5b611c1f868287016119b4565b9497909650939450505050565b6020808252825182820181905260009190848201906040850190845b81811015611c6d5783516001600160a01b031683529284019291840191600101611c48565b50909695505050505050565b600060208284031215611c8b57600080fd5b81516105e2816118bf565b634e487b7160e01b600052601160045260246000fd5b808201808211156104e0576104e0611c96565b6020808252606a908201527f546f6b656e476174657761793a2063616c6c6572206973206e6f74206d616e6160408201527f676572206f662074686520746f6b656e20636f6e747261637420616e6420697360608201527f206e6f7420696e2077686974656c69737420616e64206973206e6f7420696e206080820152691b5a5b9d195c881cd95d60b21b60a082015260c00190565b81835260006001600160fb1b03831115611d6e57600080fd5b8260051b80836020870137939093016020019392505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6001600160a01b0388168152608060208201819052600090611dd5908301888a611d55565b8281036040840152611de8818789611d55565b90508281036060840152611dfd818587611d87565b9a9950505050505050505050565b60208082526054908201527f546f6b656e476174657761793a2063616c6c6572206973206e6f74206d616e6160408201527f676572206f662074686520746f6b656e20636f6e747261637420616e64206973606082015273103737ba1033b0ba32bbb0bc9036b0b730b3b2b960611b608082015260a00190565b60018060a01b0386168152846020820152836040820152608060608201526000611eb3608083018486611d87565b979650505050505050565b6001600160a01b0384168152604060208201819052600090611ee39083018486611d55565b95945050505050565b602081526000611f00602083018486611d87565b949350505050565b60005b83811015611f23578181015183820152602001611f0b565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611f64816017850160208801611f08565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611f95816028840160208801611f08565b01602801949350505050565b6020815260008251806020840152611fc0816040850160208701611f08565b601f01601f19169190910160400192915050565b818103818111156104e0576104e0611c96565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b80820281158282048414176104e0576104e0611c96565b634e487b7160e01b600052604160045260246000fd5b60008161204f5761204f611c96565b50600019019056fed0b4cb1076caad28e19b79fe5cdd885b423a24c490d94dfc025bae8c26911b63a264697066735822122052cc5ecd6edc939d0b4ec33a3d8c12966e2c39c9295cd40fcfca1678c9da7d1b64736f6c63430008130033

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  ]

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.