false
false

Contract Address Details

0xDFc37B2e739598077d08f6FB3d6baAE24913954D

Contract Name
PlatformRegistry
Creator
0xded443–e738b9 at 0xe204ee–5b5b1e
Balance
0
Tokens
Fetching tokens...
Transactions
0 Transactions
Transfers
0 Transfers
Gas Used
Fetching gas used...
Last Balance Update
4092
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
PlatformRegistry




Optimization enabled
true
Compiler version
v0.8.19+commit.7dd6d404




Optimization runs
200
EVM Version
default




Verified at
2024-05-02T01:45:02.216281Z

Constructor Arguments

0x000000000000000000000000307e7a9713dbf6f19a2d2a2b670544f4791c4ec2

Arg [0] (address) : 0x307e7a9713dbf6f19a2d2a2b670544f4791c4ec2

              

contracts/sbinft/market/v1/platform/PlatformRegistry.sol

Sol2uml
new
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

import "@sbinft/contracts/upgradeable/access/AdminUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol";
import {EIP712Upgradeable} from "@openzeppelin/contracts-upgradeable/utils/cryptography/draft-EIP712Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";

import "contracts/sbinft/market/v1/interface/IPlatformRegistry.sol";

/**
 * @dev SBINFT Platform Registry
 */
contract PlatformRegistry is
  Initializable,
  IPlatformRegistry,
  EIP712Upgradeable,
  ERC2771ContextUpgradeable,
  AdminUpgradeable,
  ERC165Upgradeable,
  UUPSUpgradeable
{
  using AddressUpgradeable for address;
  using ECDSAUpgradeable for bytes32;

  // Fired when PlatformFeeReceiver is changed
  event PlatformFeeReceiverUpdated(address indexed _pfFeeReceiver);
  // Address of PlatformFeeReceiver
  address payable private _pfFeeReceiver;

  // Fired when PartnerFeeReceiverUpdated is changed
  event PartnerFeeReceiverUpdated(
    address indexed collection,
    address indexed partner
  );
  // Map of partner collection and its respective fee receivers
  mapping(address => address payable) private _partnerFeeReceiverInfo;

  event ERC20AddedToWhitelist(address addedToken);
  event ERC20RemovedFromWhitelist(address removedToken);
  // Map of ERC20 Token address => approve state
  mapping(address => bool) private _whitelistERC20;

  event PlatformSignerAdded(address addedAddress);
  event PlatformSignerRemoved(address removedAddress);
  // Map of Approved platform signer
  mapping(address => bool) private _platformSigner;

  // Fired when PartnerPfFeeReceiverUpdated is changed
  event PlatformFeeLowerRateUpdated(uint16 pfFeelowerlimit);
  // uint16 of pfFeeLowerLimit
  uint16 private _pfFeeLowerLimit;

  // Fired when ExternalPlatformFeeReceiverUpdated is changed
  event ExternalPlatformFeeReceiverUpdated(
    address indexed platformSigner,
    address indexed partnerPf
  );
  // Map of partner platformSigner and its respective fee receivers
  mapping(address => address payable) private _externalPfFeeReceiverInfo;

  bytes32 private constant UPDATE_PARTNER_FEE_RECEIVER_TYPEHASH =
    keccak256(
      "PartnerFeeReceiverInfo(address collection,address partnerFeeReceiver)"
    );

  /// @custom:oz-upgrades-unsafe-allow constructor
  constructor(
    address trustedForwarder
  ) ERC2771ContextUpgradeable(trustedForwarder) {
    _disableInitializers();
  }

  /**
   * @dev Used instead of constructor(must be called once)
   *
   * @param _pfFeeReceiver_ address of PlatformFeeReceiver
   * @param _platformSignerList address[] list of Platform Signer
   * @param _whitelistERC20List address[] list of whitlisted ERC20 token
   *
   * Emits a {PlatformFeeReceiverUpdated} event
   */
  function __PlatformRegistry_init(
    address payable _pfFeeReceiver_,
    address[] calldata _platformSignerList,
    address[] calldata _whitelistERC20List
  ) external initializer {
    __ERC165_init();
    AdminUpgradeable.__Admin_init();
    __EIP712_init("SBINFT Platform Registry", "1.0");
    __UUPSUpgradeable_init();

    updatePlatformFeeReceiver(_pfFeeReceiver_);

    addPlatformSigner(_platformSignerList);
    addToERC20Whitelist(_whitelistERC20List);
  }

  /**
   * @dev See {UUPSUpgradeable._authorizeUpgrade()}
   *
   * Requirements:
   * - onlyAdmin can call
   */
  function _authorizeUpgrade(
    address _newImplementation
  ) internal virtual override onlyAdmin {}

  /**
   * @dev See {IERC165Upgradeable-supportsInterface}.
   *
   * @param _interfaceId bytes4
   */
  function supportsInterface(
    bytes4 _interfaceId
  )
    public
    view
    virtual
    override(ERC165Upgradeable, IERC165Upgradeable)
    returns (bool)
  {
    return
      _interfaceId == type(IPlatformRegistry).interfaceId ||
      super.supportsInterface(_interfaceId);
  }

  /**
   * See {ERC2771ContextUpgradeable._msgSender()}
   */
  function _msgSender()
    internal
    view
    virtual
    override(ContextUpgradeable, ERC2771ContextUpgradeable)
    returns (address sender)
  {
    return ERC2771ContextUpgradeable._msgSender();
  }

  /**
   * See {ERC2771ContextUpgradeable._msgData()}
   */
  function _msgData()
    internal
    view
    virtual
    override(ContextUpgradeable, ERC2771ContextUpgradeable)
    returns (bytes calldata)
  {
    return ERC2771ContextUpgradeable._msgData();
  }

  /**
   * @dev Update to new PlatformFeeReceiver
   *
   * @param _newPlatformFeeReceiver new PlatformFeeReceiver
   *
   * Requirements:
   * - _newPlatformFeeReceiver must be a non zero address
   *
   * Emits a {PlatformFeeReceiverUpdated} event
   */
  function updatePlatformFeeReceiver(
    address payable _newPlatformFeeReceiver
  ) public virtual override onlyAdmin {
    // EM: new PlatformFeeReceiver can't be zero address
    require(_newPlatformFeeReceiver != address(0), "P:UPFR:PZA");

    _pfFeeReceiver = _newPlatformFeeReceiver;

    emit PlatformFeeReceiverUpdated(_newPlatformFeeReceiver);
  }

  /**
   * @dev Update to new PartnerFeeReceiver for partner's collection
   *
   * @param collection partner's collection
   * @param partnerFeeReceiver new partner's FeeReceiver
   * @param sign bytes calldata
   *
   * Requirements:
   * - collection must be a contract address
   * - partnerFeeReceiver must be a non zero address
   *
   * Emits a {PartnerFeeReceiverUpdated} event
   */
  function updatePartnerFeeReceiver(
    address collection,
    address payable partnerFeeReceiver,
    bytes calldata sign
  ) external virtual override {
    // EM: partner's collection must be a contract address
    require(collection.isContract(), "P:UPFR:PCCA");
    // EM: new PartnerFeeReceiver can't be zero address
    require(partnerFeeReceiver != address(0), "P:UPFR:NPZA");

    // caller is an Admin or its called with Platform signature
    if (isAdmin(_msgSender()) == false) {
      // Prepares ERC712 message hash of updatePartnerFeeReceiver signature
      bytes32 msgHash = keccak256(
        abi.encode(
          UPDATE_PARTNER_FEE_RECEIVER_TYPEHASH,
          collection,
          partnerFeeReceiver
        )
      );

      address recoverdAddress = _domainSeparatorV4()
        .toTypedDataHash(msgHash)
        .recover(sign);
      // EM: invalid platform signer
      require(isPlatformSigner(recoverdAddress), "P:UPFR:IPS");
    }

    _partnerFeeReceiverInfo[collection] = partnerFeeReceiver;

    emit PartnerFeeReceiverUpdated(collection, partnerFeeReceiver);
  }

  /**
   * @dev Checks if partner fee receiver
   *
   * @param _collection address of token
   * @param _partnerFeeReceiver address of partner FeeReceiver
   *
   * Requirements:
   * - _collection must be a non zero address
   * - _partnerFeeReceiver must be a non zero address
   */
  function isPartnerFeeReceiver(
    address _collection,
    address _partnerFeeReceiver
  ) public view virtual override returns (bool) {
    // EM: _collection must be a non zero address
    require(_collection != address(0), "P:IPFR:CNZA");
    // EM: _partnerFeeReceiver must be a non zero address
    require(_partnerFeeReceiver != address(0), "P:IPFR:PNZA");

    return _partnerFeeReceiverInfo[_collection] == _partnerFeeReceiver;
  }

  /**
   * @dev Checks state of a Whitelisted token
   *
   * @param _token address of token
   */
  function isWhitelistedERC20(
    address _token
  ) public view virtual override returns (bool) {
    return _whitelistERC20[_token];
  }

  /**
   * @dev Adds list of token to Whitelisted, if zero address then will be ignored
   *
   * @param _addTokenList array of address of token to add
   *
   * Requirements:
   * - onlyAdmin can call
   *
   * Emits a {AddedToWhitelist} event
   */
  function addToERC20Whitelist(
    address[] calldata _addTokenList
  ) public virtual override onlyAdmin {
    for (uint256 idx = 0; idx < _addTokenList.length; idx++) {
      address newToken = _addTokenList[idx];

      if (newToken != address(0) && newToken.isContract()) {
        _whitelistERC20[newToken] = true;
        emit ERC20AddedToWhitelist(newToken);
      }
    }
  }

  /**
   * @dev Removes list of token from Whitelisted
   *
   * @param _removeTokenList array of address of token to remove
   *
   * Requirements:
   * - onlyAdmin can call
   *
   * Emits a {RemovedFromWhitelist} event
   */
  function removeFromERC20Whitelist(
    address[] calldata _removeTokenList
  ) external virtual override onlyAdmin {
    for (uint256 idx = 0; idx < _removeTokenList.length; idx++) {
      address tokenToRemove = _removeTokenList[idx];
      if (tokenToRemove != address(0)) {
        delete _whitelistERC20[tokenToRemove];
        emit ERC20RemovedFromWhitelist(tokenToRemove);
      }
    }
  }

  /**
   * @dev Checks state of a Whitelisted token
   *
   * @param _signer address of token
   */
  function isPlatformSigner(
    address _signer
  ) public view virtual override returns (bool) {
    return _platformSigner[_signer];
  }

  /**
   * @dev Adds list of token to Whitelisted, if zero address then will be ignored
   *
   * @param _platformSignerList array of platfomr signer address  to add
   *
   * Requirements:
   * - onlyAdmin can call
   *
   * Emits a {PlatformSignerAdded} event
   */
  function addPlatformSigner(
    address[] calldata _platformSignerList
  ) public virtual override onlyAdmin {
    for (uint256 idx = 0; idx < _platformSignerList.length; idx++) {
      address newSigner = _platformSignerList[idx];
      if (newSigner != address(0)) {
        _platformSigner[newSigner] = true;
        emit PlatformSignerAdded(newSigner);
      }
    }
  }

  /**
   * @dev Removes list of platform signers address
   *
   * @param _platformSignerList array of platfomr signer address to remove
   *
   * Requirements:
   * - onlyAdmin can call
   *
   * Emits a {PlatformSignerRemoved} event
   */
  function removePlatformSigner(
    address[] calldata _platformSignerList
  ) external virtual override onlyAdmin {
    for (uint256 idx = 0; idx < _platformSignerList.length; idx++) {
      address signerToRemove = _platformSignerList[idx];
      if (signerToRemove != address(0)) {
        delete _platformSigner[signerToRemove];
        emit PlatformSignerRemoved(signerToRemove);
      }
    }
  }

  /**
   * @dev Returns PartnerFeeReceiver
   *
   * @param _token address of partner token
   */
  function getPartnerFeeReceiver(
    address _token
  ) external view virtual override returns (address payable) {
    return _partnerFeeReceiverInfo[_token];
  }

  /**
   * @dev Returns PlatformFeeReceiver
   *
   */
  function getPlatformFeeReceiver()
    external
    view
    virtual
    override
    returns (address payable)
  {
    return _pfFeeReceiver;
  }

  /**
   * @dev Returns PlatformFeeReceiver
   *
   */
  function getPlatformFeeRateLowerLimit()
    public
    view
    virtual
    override
    returns (uint16)
  {
    return _pfFeeLowerLimit;
  }

  /**
   * @dev Update to new PlatformFeeLowerLimit
   *
   * Emits a {PlatformFeeLowerRateUpdated} event
   */
  function updatePlatformFeeLowerLimit(
    uint16 _platformFeeLowerLimit
  ) external virtual override onlyAdmin {
    _pfFeeLowerLimit = _platformFeeLowerLimit;
    emit PlatformFeeLowerRateUpdated(_pfFeeLowerLimit);
  }

  /**
   * @dev Update to new PartnerPfFeeReceiver for partner's platformSigner
   *
   * @param _externalPlatformToken address of external Platform Token
   * @param _partnerPfFeeReceiver address new partner's platformer FeeReceiver
   *
   * Requirements:
   * - _platformSigner must be a non zero address
   * - _partnerPfFeeReceiver must be a non zero address
   *
   * Emits a {ExternalPfFeeReceiverUpdated} event
   */
  function updateExternalPlatformFeeReceiver(
    address _externalPlatformToken,
    address payable _partnerPfFeeReceiver
  ) external virtual override onlyAdmin {
    // EM: new platfromSigner can't be zero address
    require(_externalPlatformToken != address(0), "A:UPFR:NPZA");
    // EM: new PartnerFeeReceiver can't be zero address
    require(_partnerPfFeeReceiver != address(0), "A:UPFR:NPZA");

    _externalPfFeeReceiverInfo[_externalPlatformToken] = _partnerPfFeeReceiver;

    emit ExternalPlatformFeeReceiverUpdated(
      _externalPlatformToken,
      _partnerPfFeeReceiver
    );
  }

  /**
   * @dev Returns ExternalPlatformFeeReceiver
   *
   * @param _token address of external platform token
   */
  function getExternalPlatformFeeReceiver(
    address _token
  ) external view virtual override returns (address payable) {
    return _externalPfFeeReceiverInfo[_token];
  }
}
        

@openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

@openzeppelin/contracts-upgradeable/interfaces/draft-IERC1822Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)

pragma solidity ^0.8.0;

/**
 * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
 * proxy whose upgrades are fully controlled by the current implementation.
 */
interface IERC1822ProxiableUpgradeable {
    /**
     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
     * address.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy.
     */
    function proxiableUUID() external view returns (bytes32);
}
          

@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (metatx/ERC2771Context.sol)

pragma solidity ^0.8.9;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";

/**
 * @dev Context variant with ERC2771 support.
 */
abstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable {
    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable
    address private immutable _trustedForwarder;

    /// @custom:oz-upgrades-unsafe-allow constructor
    constructor(address trustedForwarder) {
        _trustedForwarder = trustedForwarder;
    }

    function isTrustedForwarder(address forwarder) public view virtual returns (bool) {
        return forwarder == _trustedForwarder;
    }

    function _msgSender() internal view virtual override returns (address sender) {
        if (isTrustedForwarder(msg.sender)) {
            // The assembly code is more direct than the Solidity version using `abi.decode`.
            /// @solidity memory-safe-assembly
            assembly {
                sender := shr(96, calldataload(sub(calldatasize(), 20)))
            }
        } else {
            return super._msgSender();
        }
    }

    function _msgData() internal view virtual override returns (bytes calldata) {
        if (isTrustedForwarder(msg.sender)) {
            return msg.data[:msg.data.length - 20];
        } else {
            return super._msgData();
        }
    }

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

@openzeppelin/contracts-upgradeable/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol)

pragma solidity ^0.8.2;

import "../beacon/IBeaconUpgradeable.sol";
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/StorageSlotUpgradeable.sol";
import "../utils/Initializable.sol";

/**
 * @dev This abstract contract provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
 *
 * _Available since v4.1._
 *
 * @custom:oz-upgrades-unsafe-allow delegatecall
 */
abstract contract ERC1967UpgradeUpgradeable is Initializable {
    function __ERC1967Upgrade_init() internal onlyInitializing {
    }

    function __ERC1967Upgrade_init_unchained() internal onlyInitializing {
    }
    // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
    bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Returns the current implementation address.
     */
    function _getImplementation() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract");
        StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Perform implementation upgrade
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeTo(address newImplementation) internal {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);
    }

    /**
     * @dev Perform implementation upgrade with additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCall(
        address newImplementation,
        bytes memory data,
        bool forceCall
    ) internal {
        _upgradeTo(newImplementation);
        if (data.length > 0 || forceCall) {
            _functionDelegateCall(newImplementation, data);
        }
    }

    /**
     * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCallUUPS(
        address newImplementation,
        bytes memory data,
        bool forceCall
    ) internal {
        // Upgrades from old implementations will perform a rollback test. This test requires the new
        // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
        // this special case will break upgrade paths from old UUPS implementation to new ones.
        if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {
            _setImplementation(newImplementation);
        } else {
            try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {
                require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
            } catch {
                revert("ERC1967Upgrade: new implementation is not UUPS");
            }
            _upgradeToAndCall(newImplementation, data, forceCall);
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Returns the current admin.
     */
    function _getAdmin() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        require(newAdmin != address(0), "ERC1967: new admin is the zero address");
        StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {AdminChanged} event.
     */
    function _changeAdmin(address newAdmin) internal {
        emit AdminChanged(_getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
     */
    bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Emitted when the beacon is upgraded.
     */
    event BeaconUpgraded(address indexed beacon);

    /**
     * @dev Returns the current beacon.
     */
    function _getBeacon() internal view returns (address) {
        return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the EIP1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract");
        require(
            AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),
            "ERC1967: beacon implementation is not a contract"
        );
        StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;
    }

    /**
     * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
     * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
     *
     * Emits a {BeaconUpgraded} event.
     */
    function _upgradeBeaconToAndCall(
        address newBeacon,
        bytes memory data,
        bool forceCall
    ) internal {
        _setBeacon(newBeacon);
        emit BeaconUpgraded(newBeacon);
        if (data.length > 0 || forceCall) {
            _functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);
        }
    }

    /**
     * @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) private returns (bytes memory) {
        require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed");
    }

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

@openzeppelin/contracts-upgradeable/proxy/beacon/IBeaconUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.0;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeaconUpgradeable {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {BeaconProxy} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}
          

@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol

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

pragma solidity ^0.8.2;

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

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

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

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

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

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

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

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

@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/UUPSUpgradeable.sol)

pragma solidity ^0.8.0;

import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../ERC1967/ERC1967UpgradeUpgradeable.sol";
import "./Initializable.sol";

/**
 * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
 * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
 *
 * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
 * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
 * `UUPSUpgradeable` with a custom implementation of upgrades.
 *
 * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
 *
 * _Available since v4.1._
 */
abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {
    function __UUPSUpgradeable_init() internal onlyInitializing {
    }

    function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
    }
    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
    address private immutable __self = address(this);

    /**
     * @dev Check that the execution is being performed through a delegatecall call and that the execution context is
     * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
     * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
     * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
     * fail.
     */
    modifier onlyProxy() {
        require(address(this) != __self, "Function must be called through delegatecall");
        require(_getImplementation() == __self, "Function must be called through active proxy");
        _;
    }

    /**
     * @dev Check that the execution is not being performed through a delegate call. This allows a function to be
     * callable on the implementing contract but not through proxies.
     */
    modifier notDelegated() {
        require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall");
        _;
    }

    /**
     * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
     * implementation. It is used to validate that the this implementation remains valid after an upgrade.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
     */
    function proxiableUUID() external view virtual override notDelegated returns (bytes32) {
        return _IMPLEMENTATION_SLOT;
    }

    /**
     * @dev Upgrade the implementation of the proxy to `newImplementation`.
     *
     * Calls {_authorizeUpgrade}.
     *
     * Emits an {Upgraded} event.
     */
    function upgradeTo(address newImplementation) external virtual onlyProxy {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallUUPS(newImplementation, new bytes(0), false);
    }

    /**
     * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
     * encoded in `data`.
     *
     * Calls {_authorizeUpgrade}.
     *
     * Emits an {Upgraded} event.
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual onlyProxy {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallUUPS(newImplementation, data, true);
    }

    /**
     * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
     * {upgradeTo} and {upgradeToAndCall}.
     *
     * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
     *
     * ```solidity
     * function _authorizeUpgrade(address) internal override onlyOwner {}
     * ```
     */
    function _authorizeUpgrade(address newImplementation) internal virtual;

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

@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol

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

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

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

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

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

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

@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlotUpgradeable {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}
          

@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

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

@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../StringsUpgradeable.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 ECDSAUpgradeable {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    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");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' 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 (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // 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) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @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", StringsUpgradeable.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) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
          

@openzeppelin/contracts-upgradeable/utils/cryptography/draft-EIP712Upgradeable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSAUpgradeable.sol";
import "../../proxy/utils/Initializable.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 *
 * @custom:storage-size 52
 */
abstract contract EIP712Upgradeable is Initializable {
    /* solhint-disable var-name-mixedcase */
    bytes32 private _HASHED_NAME;
    bytes32 private _HASHED_VERSION;
    bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    function __EIP712_init(string memory name, string memory version) internal onlyInitializing {
        __EIP712_init_unchained(name, version);
    }

    function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash());
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(), structHash);
    }

    /**
     * @dev The hash of the name parameter for the EIP712 domain.
     *
     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
     * are a concern.
     */
    function _EIP712NameHash() internal virtual view returns (bytes32) {
        return _HASHED_NAME;
    }

    /**
     * @dev The hash of the version parameter for the EIP712 domain.
     *
     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
     * are a concern.
     */
    function _EIP712VersionHash() internal virtual view returns (bytes32) {
        return _HASHED_VERSION;
    }

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

@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol

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

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

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

@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol

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

pragma solidity ^0.8.0;

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

@sbinft/contracts/upgradeable/access/AdminUpgradeable.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";

/**
 * @notice deprecated use AdminUpgradeableV2
 * @title AdminUpgradeable Contract to manage access
 *
 * @author SBINFT Co., Ltd.
 */
abstract contract AdminUpgradeable is ContextUpgradeable {
  event AdminAdded(address);
  event AdminRemoved(address);

  /**
   * @dev 管理者のマッピング。管理者でないならばfalseを返す。
   */
  mapping(address => bool) private _admin;

  function __Admin_init() internal onlyInitializing {
    __Context_init();
    // 初期化時にデプロイ者を管理者に追加する。
    _addAdmin(_msgSender());
  }

  /**
   * @dev 管理者を複数追加
   */
  function addAdmin(address[] calldata newAdmin) public virtual onlyAdmin {
    for (uint256 idx = 0; idx < newAdmin.length; idx++) {
      _addAdmin(newAdmin[idx]);
    }
  }

  /**
   * @dev 管理者を一人追加
   */
  function addAdmin(address newAdmin) public virtual onlyAdmin {
    _addAdmin(newAdmin);
  }

  /**
   * @dev 管理者を一人追加
   * 無制限 Internal function
   */
  function _addAdmin(address newAdmin) internal virtual {
    require(
      newAdmin != address(0),
      "Admin:addAdmin newAdmin is the zero address"
    );

    _admin[newAdmin] = true;
    emit AdminAdded(newAdmin);
  }

  /**
   * @dev 管理者を一人削除
   */
  function removeAdmin(address admin) public virtual onlyAdmin {
    require(
      _admin[admin],
      "Admin:removeAdmin trying to remove non existing Admin"
    );

    _removeAdmin(admin);
  }

  /**
   * @dev 管理者を一人削除
   * 無制限 Internal function
   */
  function _removeAdmin(address admin) internal virtual {
    delete _admin[admin];
    emit AdminRemoved(admin);
  }

  /**
   * @dev
   * Adminかどうかのチェック
   */
  function isAdmin(address checkAdmin) public view virtual returns (bool) {
    return _admin[checkAdmin];
  }

  /**
   * @dev Throws if called by any account other than Admin.
   */
  modifier onlyAdmin() {
    require(_admin[_msgSender()], "Admin:onlyAdmin caller is not an Admin");
    _;
  }
}
          

contracts/sbinft/market/v1/interface/IPlatformRegistry.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

import "@openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol";

/**
 * @title SBINFT Platform Registry
 */
interface IPlatformRegistry is IERC165Upgradeable {
  /**
   * @dev Update to new PlatformFeeRateLowerLimit
   *
   * @param _new new PlatformFeeRateLowerLimit
   */
  function updatePlatformFeeLowerLimit(uint16 _new) external;

  /**
   * @dev Update to new PlatformFeeReceiver
   *
   * @param _new new PlatformFeeReceiver
   */
  function updatePlatformFeeReceiver(address payable _new) external;

  /**
   * @dev Update to new PartnerFeeReceiver for partner's collection
   *
   * @param collection partner's collection
   * @param partnerFeeReceiver new partner's FeeReceiver
   * @param sign bytes calldata signature of platform signer
   */
  function updatePartnerFeeReceiver(
    address collection,
    address payable partnerFeeReceiver,
    bytes calldata sign
  ) external;

  /**
   * @dev Checks if partner fee receiver
   *
   * @param _collection address of token
   * @param _partnerFeeReceiver address of partner FeeReceiver
   *
   * Requirements:
   * - _collection must be a non zero address
   * - _partnerFeeReceiver must be a non zero address
   */
  function isPartnerFeeReceiver(
    address _collection,
    address _partnerFeeReceiver
  ) external view returns (bool);

  /**
   * @dev Checks state of a Whitelisted token
   *
   * @param _token address of token
   */
  function isWhitelistedERC20(address _token) external view returns (bool);

  /**
   * @dev Adds list of token to Whitelisted, if zero address then will be ignored
   *
   * @param _addTokenList array of address of token to add
   */
  function addToERC20Whitelist(address[] calldata _addTokenList) external;

  /**
   * @dev Removes list of token from Whitelisted
   *
   * @param _tokenList array of address of token to remove
   */
  function removeFromERC20Whitelist(address[] calldata _tokenList) external;

  /**
   * @dev Checks state of a Whitelisted token
   *
   * @param _signer address of token
   */
  function isPlatformSigner(address _signer) external view returns (bool);

  /**
   * @dev Adds list of token to Whitelisted, if zero address then will be ignored
   *
   * @param _platformSignerList array of platfomr signer address  to add
   */
  function addPlatformSigner(address[] calldata _platformSignerList) external;

  /**
   * @dev Removes list of platform signers address
   *
   * @param _list array of platfomr signer address to remove
   */
  function removePlatformSigner(address[] calldata _list) external;

  /**
   * @dev Returns PlatformFeeReceiver
   */
  function getPlatformFeeReceiver() external returns (address payable);

  /**
   * @dev Returns PartnerFeeReceiver
   *
   * @param _token address of partner token
   */
  function getPartnerFeeReceiver(
    address _token
  ) external returns (address payable);

  /**
   * @dev Returns PlatformFeeReceiver
   *
   */
  function getPlatformFeeRateLowerLimit() external returns (uint16);

  /**
   * @dev Update to new PartnerPfFeeReceiver for partner's platformSigner
   *
   * @param _externalPlatformToken address of external Platform Token
   * @param _partnerPfFeeReceiver address new partner's platformer FeeReceiver
   *
   * Requirements:
   * - _platformSigner must be a non zero address
   * - _partnerPfFeeReceiver must be a non zero address
   *
   * Emits a {ExternalPfFeeReceiverUpdated} event
   */
  function updateExternalPlatformFeeReceiver(
    address _externalPlatformToken,
    address payable _partnerPfFeeReceiver
  ) external;

  /**
   * @dev Returns ExternalPlatformFeeReceiver
   *
   * @param _token address of external platform token
   */
  function getExternalPlatformFeeReceiver(
    address _token
  ) external returns (address payable);
}
          

Compiler Settings

{"outputSelection":{"*":{"*":["*"],"":["*"]}},"optimizer":{"runs":200,"enabled":true},"libraries":{}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"trustedForwarder","internalType":"address"}]},{"type":"event","name":"AdminAdded","inputs":[{"type":"address","name":"","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"AdminChanged","inputs":[{"type":"address","name":"previousAdmin","internalType":"address","indexed":false},{"type":"address","name":"newAdmin","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"AdminRemoved","inputs":[{"type":"address","name":"","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"BeaconUpgraded","inputs":[{"type":"address","name":"beacon","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"ERC20AddedToWhitelist","inputs":[{"type":"address","name":"addedToken","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"ERC20RemovedFromWhitelist","inputs":[{"type":"address","name":"removedToken","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"ExternalPlatformFeeReceiverUpdated","inputs":[{"type":"address","name":"platformSigner","internalType":"address","indexed":true},{"type":"address","name":"partnerPf","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Initialized","inputs":[{"type":"uint8","name":"version","internalType":"uint8","indexed":false}],"anonymous":false},{"type":"event","name":"PartnerFeeReceiverUpdated","inputs":[{"type":"address","name":"collection","internalType":"address","indexed":true},{"type":"address","name":"partner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"PlatformFeeLowerRateUpdated","inputs":[{"type":"uint16","name":"pfFeelowerlimit","internalType":"uint16","indexed":false}],"anonymous":false},{"type":"event","name":"PlatformFeeReceiverUpdated","inputs":[{"type":"address","name":"_pfFeeReceiver","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"PlatformSignerAdded","inputs":[{"type":"address","name":"addedAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"PlatformSignerRemoved","inputs":[{"type":"address","name":"removedAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Upgraded","inputs":[{"type":"address","name":"implementation","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"__PlatformRegistry_init","inputs":[{"type":"address","name":"_pfFeeReceiver_","internalType":"address payable"},{"type":"address[]","name":"_platformSignerList","internalType":"address[]"},{"type":"address[]","name":"_whitelistERC20List","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addAdmin","inputs":[{"type":"address[]","name":"newAdmin","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addAdmin","inputs":[{"type":"address","name":"newAdmin","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addPlatformSigner","inputs":[{"type":"address[]","name":"_platformSignerList","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addToERC20Whitelist","inputs":[{"type":"address[]","name":"_addTokenList","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address payable"}],"name":"getExternalPlatformFeeReceiver","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address payable"}],"name":"getPartnerFeeReceiver","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint16","name":"","internalType":"uint16"}],"name":"getPlatformFeeRateLowerLimit","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address payable"}],"name":"getPlatformFeeReceiver","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isAdmin","inputs":[{"type":"address","name":"checkAdmin","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isPartnerFeeReceiver","inputs":[{"type":"address","name":"_collection","internalType":"address"},{"type":"address","name":"_partnerFeeReceiver","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isPlatformSigner","inputs":[{"type":"address","name":"_signer","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isTrustedForwarder","inputs":[{"type":"address","name":"forwarder","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isWhitelistedERC20","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"proxiableUUID","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeAdmin","inputs":[{"type":"address","name":"admin","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeFromERC20Whitelist","inputs":[{"type":"address[]","name":"_removeTokenList","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removePlatformSigner","inputs":[{"type":"address[]","name":"_platformSignerList","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"_interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateExternalPlatformFeeReceiver","inputs":[{"type":"address","name":"_externalPlatformToken","internalType":"address"},{"type":"address","name":"_partnerPfFeeReceiver","internalType":"address payable"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updatePartnerFeeReceiver","inputs":[{"type":"address","name":"collection","internalType":"address"},{"type":"address","name":"partnerFeeReceiver","internalType":"address payable"},{"type":"bytes","name":"sign","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updatePlatformFeeLowerLimit","inputs":[{"type":"uint16","name":"_platformFeeLowerLimit","internalType":"uint16"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updatePlatformFeeReceiver","inputs":[{"type":"address","name":"_newPlatformFeeReceiver","internalType":"address payable"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"upgradeTo","inputs":[{"type":"address","name":"newImplementation","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"upgradeToAndCall","inputs":[{"type":"address","name":"newImplementation","internalType":"address"},{"type":"bytes","name":"data","internalType":"bytes"}]}]
              

Contract Creation Code

0x60c06040523060a0523480156200001557600080fd5b50604051620025ac380380620025ac833981016040819052620000389162000118565b6001600160a01b0381166080526200004f62000056565b506200014a565b600054610100900460ff1615620000c35760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff908116101562000116576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b6000602082840312156200012b57600080fd5b81516001600160a01b03811681146200014357600080fd5b9392505050565b60805160a0516124196200019360003960008181610682015281816106c2015281816108ea0152818161092a01526109bd015260008181610394015261187e01526124196000f3fe6080604052600436106101665760003560e01c8063572b6c05116100d15780639d72db521161008a578063a5366ecb11610064578063a5366ecb146104dd578063cd4a0f34146104fd578063da5f2d921461051d578063f815d6cf1461053d57600080fd5b80639d72db521461047d5780639df095641461049d5780639fac71ad146104bd57600080fd5b8063572b6c05146103775780636859c996146103c457806370480275146103fe578063707d18481461041e5780637d4bc8b71461043d5780638ef59b7c1461045d57600080fd5b806344057f631161012357806344057f631461028d5780634d4ed32c146102ad5780634f1ef286146102e75780635247385c146102fa57806352d1902d14610334578063552f41e01461035757600080fd5b806301ffc9a71461016b5780631785f53c146101a057806324d7806c146101c25780632888241b146101fb5780633659cfe61461024d5780633d0950a81461026d575b600080fd5b34801561017757600080fd5b5061018b610186366004611e65565b610561565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb366004611ea4565b610598565b005b3480156101ce57600080fd5b5061018b6101dd366004611ea4565b6001600160a01b031660009081526099602052604090205460ff1690565b34801561020757600080fd5b50610235610216366004611ea4565b6001600160a01b03908116600090815261013560205260409020541690565b6040516001600160a01b039091168152602001610197565b34801561025957600080fd5b506101c0610268366004611ea4565b610678565b34801561027957600080fd5b506101c0610288366004611f06565b610754565b34801561029957600080fd5b506101c06102a8366004611f06565b6107ea565b3480156102b957600080fd5b5061018b6102c8366004611ea4565b6001600160a01b03166000908152610133602052604090205460ff1690565b6101c06102f5366004611f5e565b6108e0565b34801561030657600080fd5b5061018b610315366004611ea4565b6001600160a01b03166000908152610132602052604090205460ff1690565b34801561034057600080fd5b506103496109b0565b604051908152602001610197565b34801561036357600080fd5b506101c0610372366004611ea4565b610a63565b34801561038357600080fd5b5061018b610392366004611ea4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b3480156103d057600080fd5b506102356103df366004611ea4565b6001600160a01b03908116600090815261013160205260409020541690565b34801561040a57600080fd5b506101c0610419366004611ea4565b610b36565b34801561042a57600080fd5b50610130546001600160a01b0316610235565b34801561044957600080fd5b506101c0610458366004611f06565b610b84565b34801561046957600080fd5b506101c0610478366004612022565b610c91565b34801561048957600080fd5b506101c0610498366004612046565b610d22565b3480156104a957600080fd5b506101c06104b83660046120d8565b610f67565b3480156104c957600080fd5b5061018b6104d836600461215b565b611104565b3480156104e957600080fd5b506101c06104f8366004611f06565b6111b2565b34801561050957600080fd5b506101c0610518366004611f06565b6112a5565b34801561052957600080fd5b506101c061053836600461215b565b611398565b34801561054957600080fd5b506101345460405161ffff9091168152602001610197565b60006001600160e01b0319821663042eca1d60e51b148061059257506301ffc9a760e01b6001600160e01b03198316145b92915050565b609960006105a46114bd565b6001600160a01b0316815260208101919091526040016000205460ff166105e65760405162461bcd60e51b81526004016105dd90612194565b60405180910390fd5b6001600160a01b03811660009081526099602052604090205460ff1661066c5760405162461bcd60e51b815260206004820152603560248201527f41646d696e3a72656d6f766541646d696e20747279696e6720746f2072656d6f6044820152743b32903737b71032bc34b9ba34b7339020b236b4b760591b60648201526084016105dd565b610675816114cc565b50565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001630036106c05760405162461bcd60e51b81526004016105dd906121da565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661070960008051602061239d833981519152546001600160a01b031690565b6001600160a01b03161461072f5760405162461bcd60e51b81526004016105dd90612226565b6107388161151d565b6040805160008082526020820190925261067591839190611562565b609960006107606114bd565b6001600160a01b0316815260208101919091526040016000205460ff166107995760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e5576107d38383838181106107b9576107b9612272565b90506020020160208101906107ce9190611ea4565b6116cd565b806107dd81612288565b91505061079c565b505050565b609960006107f66114bd565b6001600160a01b0316815260208101919091526040016000205460ff1661082f5760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061084e5761084e612272565b90506020020160208101906108639190611ea4565b90506001600160a01b038116156108cd576001600160a01b03811660008181526101336020908152604091829020805460ff1916600117905590519182527f64493f6b58fecf0b5963bd190327c4b5551e5774b83eb602f868be392da8a782910160405180910390a15b50806108d881612288565b915050610832565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001630036109285760405162461bcd60e51b81526004016105dd906121da565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661097160008051602061239d833981519152546001600160a01b031690565b6001600160a01b0316146109975760405162461bcd60e51b81526004016105dd90612226565b6109a08261151d565b6109ac82826001611562565b5050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610a505760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c000000000000000060648201526084016105dd565b5060008051602061239d83398151915290565b60996000610a6f6114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610aa85760405162461bcd60e51b81526004016105dd90612194565b6001600160a01b038116610aeb5760405162461bcd60e51b815260206004820152600a602482015269503a555046523a505a4160b01b60448201526064016105dd565b61013080546001600160a01b0319166001600160a01b0383169081179091556040517f5424f6f81faafe9238c4d58ac76299338deab37460d10288e02776c68c8d5b6390600090a250565b60996000610b426114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610b7b5760405162461bcd60e51b81526004016105dd90612194565b610675816116cd565b60996000610b906114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610bc95760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e5576000838383818110610be857610be8612272565b9050602002016020810190610bfd9190611ea4565b90506001600160a01b03811615801590610c2057506001600160a01b0381163b15155b15610c7e576001600160a01b03811660008181526101326020908152604091829020805460ff1916600117905590519182527f45f42530e679dbd12f34bd60947483f7fc4d07a0cb66ededb2261c4206d4563a910160405180910390a15b5080610c8981612288565b915050610bcc565b60996000610c9d6114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610cd65760405162461bcd60e51b81526004016105dd90612194565b610134805461ffff191661ffff83169081179091556040519081527f9b5540d1b8eea14606b74b2167809eda8828fb3cb906886fa9b42f34d78f43db906020015b60405180910390a150565b6001600160a01b0384163b610d675760405162461bcd60e51b815260206004820152600b60248201526a503a555046523a5043434160a81b60448201526064016105dd565b6001600160a01b038316610dab5760405162461bcd60e51b815260206004820152600b60248201526a503a555046523a4e505a4160a81b60448201526064016105dd565b610db66101dd6114bd565b1515600003610f0d57604080517f393608ae61d9f6d4e890b36cfab0c4641cb9cffc350d2e38e827935c783fbc1460208201526001600160a01b038087169282019290925290841660608201526000906080016040516020818303038152906040528051906020012090506000610eac84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610ea69250869150610e6b905061178b565b6040805161190160f01b6020808301919091526022820193909352604280820194909452815180820390940184526062019052815191012090565b906117c2565b9050610ed1816001600160a01b03166000908152610133602052604090205460ff1690565b610f0a5760405162461bcd60e51b815260206004820152600a602482015269503a555046523a49505360b01b60448201526064016105dd565b50505b6001600160a01b038481166000818152610131602052604080822080546001600160a01b0319169488169485179055517f589ee4ae06bae381d455f1c3ce0c6724aee594ddbcab920f9a5a504de9943d989190a350505050565b600054610100900460ff1615808015610f875750600054600160ff909116105b80610fa15750303b158015610fa1575060005460ff166001145b6110045760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016105dd565b6000805460ff191660011790558015611027576000805461ff0019166101001790555b61102f6117e6565b61103761180f565b6110916040518060400160405280601881526020017f5342494e465420506c6174666f726d2052656769737472790000000000000000815250604051806040016040528060038152602001620312e360ec1b815250611849565b6110996117e6565b6110a286610a63565b6110ac85856107ea565b6110b68383610b84565b80156110fc576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050565b60006001600160a01b03831661114a5760405162461bcd60e51b815260206004820152600b60248201526a503a495046523a434e5a4160a81b60448201526064016105dd565b6001600160a01b03821661118e5760405162461bcd60e51b815260206004820152600b60248201526a503a495046523a504e5a4160a81b60448201526064016105dd565b506001600160a01b0391821660009081526101316020526040902054821691161490565b609960006111be6114bd565b6001600160a01b0316815260208101919091526040016000205460ff166111f75760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061121657611216612272565b905060200201602081019061122b9190611ea4565b90506001600160a01b03811615611292576001600160a01b03811660008181526101326020908152604091829020805460ff1916905590519182527f72a26be94b6f8ff29d401781a1851d009dae9befe1bfe300fabf2e03146ea763910160405180910390a15b508061129d81612288565b9150506111fa565b609960006112b16114bd565b6001600160a01b0316815260208101919091526040016000205460ff166112ea5760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061130957611309612272565b905060200201602081019061131e9190611ea4565b90506001600160a01b03811615611385576001600160a01b03811660008181526101336020908152604091829020805460ff1916905590519182527f81bf64040664fa99957e018a931d568ee336fb32f976e4c36b27b331906e5167910160405180910390a15b508061139081612288565b9150506112ed565b609960006113a46114bd565b6001600160a01b0316815260208101919091526040016000205460ff166113dd5760405162461bcd60e51b81526004016105dd90612194565b6001600160a01b0382166114215760405162461bcd60e51b815260206004820152600b60248201526a413a555046523a4e505a4160a81b60448201526064016105dd565b6001600160a01b0381166114655760405162461bcd60e51b815260206004820152600b60248201526a413a555046523a4e505a4160a81b60448201526064016105dd565b6001600160a01b038281166000818152610135602052604080822080546001600160a01b0319169486169485179055517ffae5b4c04d3cf2324d5fb190022c792c8c5577d9e743cb88a04bca4aaca08a219190a35050565b60006114c761187a565b905090565b6001600160a01b038116600081815260996020908152604091829020805460ff1916905590519182527fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9101610d17565b609960006115296114bd565b6001600160a01b0316815260208101919091526040016000205460ff166106755760405162461bcd60e51b81526004016105dd90612194565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615611595576107e5836118be565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156115ef575060408051601f3d908101601f191682019092526115ec918101906122af565b60015b6116525760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b60648201526084016105dd565b60008051602061239d83398151915281146116c15760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b60648201526084016105dd565b506107e583838361195a565b6001600160a01b0381166117375760405162461bcd60e51b815260206004820152602b60248201527f41646d696e3a61646441646d696e206e657741646d696e20697320746865207a60448201526a65726f206164647265737360a81b60648201526084016105dd565b6001600160a01b038116600081815260996020908152604091829020805460ff1916600117905590519182527f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399101610d17565b60006114c77f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6117ba60015490565b600254611985565b60008060006117d185856119cf565b915091506117de81611a14565b509392505050565b600054610100900460ff1661180d5760405162461bcd60e51b81526004016105dd906122c8565b565b600054610100900460ff166118365760405162461bcd60e51b81526004016105dd906122c8565b61183e6117e6565b61180d6107ce6114bd565b600054610100900460ff166118705760405162461bcd60e51b81526004016105dd906122c8565b6109ac8282611bca565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036118b9575060131936013560601c90565b503390565b6001600160a01b0381163b61192b5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084016105dd565b60008051602061239d83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b61196383611c0b565b6000825111806119705750805b156107e55761197f8383611c4b565b50505050565b6040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090505b9392505050565b6000808251604103611a055760208301516040840151606085015160001a6119f987828585611d3f565b94509450505050611a0d565b506000905060025b9250929050565b6000816004811115611a2857611a28612313565b03611a305750565b6001816004811115611a4457611a44612313565b03611a915760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105dd565b6002816004811115611aa557611aa5612313565b03611af25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105dd565b6003816004811115611b0657611b06612313565b03611b5e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105dd565b6004816004811115611b7257611b72612313565b036106755760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016105dd565b600054610100900460ff16611bf15760405162461bcd60e51b81526004016105dd906122c8565b815160209283012081519190920120600191909155600255565b611c14816118be565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b611cb35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b60648201526084016105dd565b600080846001600160a01b031684604051611cce919061234d565b600060405180830381855af49150503d8060008114611d09576040519150601f19603f3d011682016040523d82523d6000602084013e611d0e565b606091505b5091509150611d3682826040518060600160405280602781526020016123bd60279139611e2c565b95945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611d765750600090506003611e23565b8460ff16601b14158015611d8e57508460ff16601c14155b15611d9f5750600090506004611e23565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611df3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e1c57600060019250925050611e23565b9150600090505b94509492505050565b60608315611e3b5750816119c8565b825115611e4b5782518084602001fd5b8160405162461bcd60e51b81526004016105dd9190612369565b600060208284031215611e7757600080fd5b81356001600160e01b0319811681146119c857600080fd5b6001600160a01b038116811461067557600080fd5b600060208284031215611eb657600080fd5b81356119c881611e8f565b60008083601f840112611ed357600080fd5b50813567ffffffffffffffff811115611eeb57600080fd5b6020830191508360208260051b8501011115611a0d57600080fd5b60008060208385031215611f1957600080fd5b823567ffffffffffffffff811115611f3057600080fd5b611f3c85828601611ec1565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611f7157600080fd5b8235611f7c81611e8f565b9150602083013567ffffffffffffffff80821115611f9957600080fd5b818501915085601f830112611fad57600080fd5b813581811115611fbf57611fbf611f48565b604051601f8201601f19908116603f01168101908382118183101715611fe757611fe7611f48565b8160405282815288602084870101111561200057600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60006020828403121561203457600080fd5b813561ffff811681146119c857600080fd5b6000806000806060858703121561205c57600080fd5b843561206781611e8f565b9350602085013561207781611e8f565b9250604085013567ffffffffffffffff8082111561209457600080fd5b818701915087601f8301126120a857600080fd5b8135818111156120b757600080fd5b8860208285010111156120c957600080fd5b95989497505060200194505050565b6000806000806000606086880312156120f057600080fd5b85356120fb81611e8f565b9450602086013567ffffffffffffffff8082111561211857600080fd5b61212489838a01611ec1565b9096509450604088013591508082111561213d57600080fd5b5061214a88828901611ec1565b969995985093965092949392505050565b6000806040838503121561216e57600080fd5b823561217981611e8f565b9150602083013561218981611e8f565b809150509250929050565b60208082526026908201527f41646d696e3a6f6e6c7941646d696e2063616c6c6572206973206e6f7420616e6040820152651020b236b4b760d11b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016122a857634e487b7160e01b600052601160045260246000fd5b5060010190565b6000602082840312156122c157600080fd5b5051919050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b600052602160045260246000fd5b60005b8381101561234457818101518382015260200161232c565b50506000910152565b6000825161235f818460208701612329565b9190910192915050565b6020815260008251806020840152612388816040850160208701612329565b601f01601f1916919091016040019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220048d7e1f592337712bcf56f94913d43f6b8e185b67ed5f3f854781a2a686ecad64736f6c63430008130033000000000000000000000000307e7a9713dbf6f19a2d2a2b670544f4791c4ec2

Deployed ByteCode

0x6080604052600436106101665760003560e01c8063572b6c05116100d15780639d72db521161008a578063a5366ecb11610064578063a5366ecb146104dd578063cd4a0f34146104fd578063da5f2d921461051d578063f815d6cf1461053d57600080fd5b80639d72db521461047d5780639df095641461049d5780639fac71ad146104bd57600080fd5b8063572b6c05146103775780636859c996146103c457806370480275146103fe578063707d18481461041e5780637d4bc8b71461043d5780638ef59b7c1461045d57600080fd5b806344057f631161012357806344057f631461028d5780634d4ed32c146102ad5780634f1ef286146102e75780635247385c146102fa57806352d1902d14610334578063552f41e01461035757600080fd5b806301ffc9a71461016b5780631785f53c146101a057806324d7806c146101c25780632888241b146101fb5780633659cfe61461024d5780633d0950a81461026d575b600080fd5b34801561017757600080fd5b5061018b610186366004611e65565b610561565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb366004611ea4565b610598565b005b3480156101ce57600080fd5b5061018b6101dd366004611ea4565b6001600160a01b031660009081526099602052604090205460ff1690565b34801561020757600080fd5b50610235610216366004611ea4565b6001600160a01b03908116600090815261013560205260409020541690565b6040516001600160a01b039091168152602001610197565b34801561025957600080fd5b506101c0610268366004611ea4565b610678565b34801561027957600080fd5b506101c0610288366004611f06565b610754565b34801561029957600080fd5b506101c06102a8366004611f06565b6107ea565b3480156102b957600080fd5b5061018b6102c8366004611ea4565b6001600160a01b03166000908152610133602052604090205460ff1690565b6101c06102f5366004611f5e565b6108e0565b34801561030657600080fd5b5061018b610315366004611ea4565b6001600160a01b03166000908152610132602052604090205460ff1690565b34801561034057600080fd5b506103496109b0565b604051908152602001610197565b34801561036357600080fd5b506101c0610372366004611ea4565b610a63565b34801561038357600080fd5b5061018b610392366004611ea4565b7f000000000000000000000000307e7a9713dbf6f19a2d2a2b670544f4791c4ec26001600160a01b0390811691161490565b3480156103d057600080fd5b506102356103df366004611ea4565b6001600160a01b03908116600090815261013160205260409020541690565b34801561040a57600080fd5b506101c0610419366004611ea4565b610b36565b34801561042a57600080fd5b50610130546001600160a01b0316610235565b34801561044957600080fd5b506101c0610458366004611f06565b610b84565b34801561046957600080fd5b506101c0610478366004612022565b610c91565b34801561048957600080fd5b506101c0610498366004612046565b610d22565b3480156104a957600080fd5b506101c06104b83660046120d8565b610f67565b3480156104c957600080fd5b5061018b6104d836600461215b565b611104565b3480156104e957600080fd5b506101c06104f8366004611f06565b6111b2565b34801561050957600080fd5b506101c0610518366004611f06565b6112a5565b34801561052957600080fd5b506101c061053836600461215b565b611398565b34801561054957600080fd5b506101345460405161ffff9091168152602001610197565b60006001600160e01b0319821663042eca1d60e51b148061059257506301ffc9a760e01b6001600160e01b03198316145b92915050565b609960006105a46114bd565b6001600160a01b0316815260208101919091526040016000205460ff166105e65760405162461bcd60e51b81526004016105dd90612194565b60405180910390fd5b6001600160a01b03811660009081526099602052604090205460ff1661066c5760405162461bcd60e51b815260206004820152603560248201527f41646d696e3a72656d6f766541646d696e20747279696e6720746f2072656d6f6044820152743b32903737b71032bc34b9ba34b7339020b236b4b760591b60648201526084016105dd565b610675816114cc565b50565b6001600160a01b037f000000000000000000000000dfc37b2e739598077d08f6fb3d6baae24913954d1630036106c05760405162461bcd60e51b81526004016105dd906121da565b7f000000000000000000000000dfc37b2e739598077d08f6fb3d6baae24913954d6001600160a01b031661070960008051602061239d833981519152546001600160a01b031690565b6001600160a01b03161461072f5760405162461bcd60e51b81526004016105dd90612226565b6107388161151d565b6040805160008082526020820190925261067591839190611562565b609960006107606114bd565b6001600160a01b0316815260208101919091526040016000205460ff166107995760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e5576107d38383838181106107b9576107b9612272565b90506020020160208101906107ce9190611ea4565b6116cd565b806107dd81612288565b91505061079c565b505050565b609960006107f66114bd565b6001600160a01b0316815260208101919091526040016000205460ff1661082f5760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061084e5761084e612272565b90506020020160208101906108639190611ea4565b90506001600160a01b038116156108cd576001600160a01b03811660008181526101336020908152604091829020805460ff1916600117905590519182527f64493f6b58fecf0b5963bd190327c4b5551e5774b83eb602f868be392da8a782910160405180910390a15b50806108d881612288565b915050610832565b6001600160a01b037f000000000000000000000000dfc37b2e739598077d08f6fb3d6baae24913954d1630036109285760405162461bcd60e51b81526004016105dd906121da565b7f000000000000000000000000dfc37b2e739598077d08f6fb3d6baae24913954d6001600160a01b031661097160008051602061239d833981519152546001600160a01b031690565b6001600160a01b0316146109975760405162461bcd60e51b81526004016105dd90612226565b6109a08261151d565b6109ac82826001611562565b5050565b6000306001600160a01b037f000000000000000000000000dfc37b2e739598077d08f6fb3d6baae24913954d1614610a505760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c000000000000000060648201526084016105dd565b5060008051602061239d83398151915290565b60996000610a6f6114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610aa85760405162461bcd60e51b81526004016105dd90612194565b6001600160a01b038116610aeb5760405162461bcd60e51b815260206004820152600a602482015269503a555046523a505a4160b01b60448201526064016105dd565b61013080546001600160a01b0319166001600160a01b0383169081179091556040517f5424f6f81faafe9238c4d58ac76299338deab37460d10288e02776c68c8d5b6390600090a250565b60996000610b426114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610b7b5760405162461bcd60e51b81526004016105dd90612194565b610675816116cd565b60996000610b906114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610bc95760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e5576000838383818110610be857610be8612272565b9050602002016020810190610bfd9190611ea4565b90506001600160a01b03811615801590610c2057506001600160a01b0381163b15155b15610c7e576001600160a01b03811660008181526101326020908152604091829020805460ff1916600117905590519182527f45f42530e679dbd12f34bd60947483f7fc4d07a0cb66ededb2261c4206d4563a910160405180910390a15b5080610c8981612288565b915050610bcc565b60996000610c9d6114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610cd65760405162461bcd60e51b81526004016105dd90612194565b610134805461ffff191661ffff83169081179091556040519081527f9b5540d1b8eea14606b74b2167809eda8828fb3cb906886fa9b42f34d78f43db906020015b60405180910390a150565b6001600160a01b0384163b610d675760405162461bcd60e51b815260206004820152600b60248201526a503a555046523a5043434160a81b60448201526064016105dd565b6001600160a01b038316610dab5760405162461bcd60e51b815260206004820152600b60248201526a503a555046523a4e505a4160a81b60448201526064016105dd565b610db66101dd6114bd565b1515600003610f0d57604080517f393608ae61d9f6d4e890b36cfab0c4641cb9cffc350d2e38e827935c783fbc1460208201526001600160a01b038087169282019290925290841660608201526000906080016040516020818303038152906040528051906020012090506000610eac84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610ea69250869150610e6b905061178b565b6040805161190160f01b6020808301919091526022820193909352604280820194909452815180820390940184526062019052815191012090565b906117c2565b9050610ed1816001600160a01b03166000908152610133602052604090205460ff1690565b610f0a5760405162461bcd60e51b815260206004820152600a602482015269503a555046523a49505360b01b60448201526064016105dd565b50505b6001600160a01b038481166000818152610131602052604080822080546001600160a01b0319169488169485179055517f589ee4ae06bae381d455f1c3ce0c6724aee594ddbcab920f9a5a504de9943d989190a350505050565b600054610100900460ff1615808015610f875750600054600160ff909116105b80610fa15750303b158015610fa1575060005460ff166001145b6110045760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016105dd565b6000805460ff191660011790558015611027576000805461ff0019166101001790555b61102f6117e6565b61103761180f565b6110916040518060400160405280601881526020017f5342494e465420506c6174666f726d2052656769737472790000000000000000815250604051806040016040528060038152602001620312e360ec1b815250611849565b6110996117e6565b6110a286610a63565b6110ac85856107ea565b6110b68383610b84565b80156110fc576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050565b60006001600160a01b03831661114a5760405162461bcd60e51b815260206004820152600b60248201526a503a495046523a434e5a4160a81b60448201526064016105dd565b6001600160a01b03821661118e5760405162461bcd60e51b815260206004820152600b60248201526a503a495046523a504e5a4160a81b60448201526064016105dd565b506001600160a01b0391821660009081526101316020526040902054821691161490565b609960006111be6114bd565b6001600160a01b0316815260208101919091526040016000205460ff166111f75760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061121657611216612272565b905060200201602081019061122b9190611ea4565b90506001600160a01b03811615611292576001600160a01b03811660008181526101326020908152604091829020805460ff1916905590519182527f72a26be94b6f8ff29d401781a1851d009dae9befe1bfe300fabf2e03146ea763910160405180910390a15b508061129d81612288565b9150506111fa565b609960006112b16114bd565b6001600160a01b0316815260208101919091526040016000205460ff166112ea5760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061130957611309612272565b905060200201602081019061131e9190611ea4565b90506001600160a01b03811615611385576001600160a01b03811660008181526101336020908152604091829020805460ff1916905590519182527f81bf64040664fa99957e018a931d568ee336fb32f976e4c36b27b331906e5167910160405180910390a15b508061139081612288565b9150506112ed565b609960006113a46114bd565b6001600160a01b0316815260208101919091526040016000205460ff166113dd5760405162461bcd60e51b81526004016105dd90612194565b6001600160a01b0382166114215760405162461bcd60e51b815260206004820152600b60248201526a413a555046523a4e505a4160a81b60448201526064016105dd565b6001600160a01b0381166114655760405162461bcd60e51b815260206004820152600b60248201526a413a555046523a4e505a4160a81b60448201526064016105dd565b6001600160a01b038281166000818152610135602052604080822080546001600160a01b0319169486169485179055517ffae5b4c04d3cf2324d5fb190022c792c8c5577d9e743cb88a04bca4aaca08a219190a35050565b60006114c761187a565b905090565b6001600160a01b038116600081815260996020908152604091829020805460ff1916905590519182527fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9101610d17565b609960006115296114bd565b6001600160a01b0316815260208101919091526040016000205460ff166106755760405162461bcd60e51b81526004016105dd90612194565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615611595576107e5836118be565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156115ef575060408051601f3d908101601f191682019092526115ec918101906122af565b60015b6116525760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b60648201526084016105dd565b60008051602061239d83398151915281146116c15760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b60648201526084016105dd565b506107e583838361195a565b6001600160a01b0381166117375760405162461bcd60e51b815260206004820152602b60248201527f41646d696e3a61646441646d696e206e657741646d696e20697320746865207a60448201526a65726f206164647265737360a81b60648201526084016105dd565b6001600160a01b038116600081815260996020908152604091829020805460ff1916600117905590519182527f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399101610d17565b60006114c77f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6117ba60015490565b600254611985565b60008060006117d185856119cf565b915091506117de81611a14565b509392505050565b600054610100900460ff1661180d5760405162461bcd60e51b81526004016105dd906122c8565b565b600054610100900460ff166118365760405162461bcd60e51b81526004016105dd906122c8565b61183e6117e6565b61180d6107ce6114bd565b600054610100900460ff166118705760405162461bcd60e51b81526004016105dd906122c8565b6109ac8282611bca565b60007f000000000000000000000000307e7a9713dbf6f19a2d2a2b670544f4791c4ec26001600160a01b031633036118b9575060131936013560601c90565b503390565b6001600160a01b0381163b61192b5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084016105dd565b60008051602061239d83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b61196383611c0b565b6000825111806119705750805b156107e55761197f8383611c4b565b50505050565b6040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090505b9392505050565b6000808251604103611a055760208301516040840151606085015160001a6119f987828585611d3f565b94509450505050611a0d565b506000905060025b9250929050565b6000816004811115611a2857611a28612313565b03611a305750565b6001816004811115611a4457611a44612313565b03611a915760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105dd565b6002816004811115611aa557611aa5612313565b03611af25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105dd565b6003816004811115611b0657611b06612313565b03611b5e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105dd565b6004816004811115611b7257611b72612313565b036106755760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016105dd565b600054610100900460ff16611bf15760405162461bcd60e51b81526004016105dd906122c8565b815160209283012081519190920120600191909155600255565b611c14816118be565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b611cb35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b60648201526084016105dd565b600080846001600160a01b031684604051611cce919061234d565b600060405180830381855af49150503d8060008114611d09576040519150601f19603f3d011682016040523d82523d6000602084013e611d0e565b606091505b5091509150611d3682826040518060600160405280602781526020016123bd60279139611e2c565b95945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611d765750600090506003611e23565b8460ff16601b14158015611d8e57508460ff16601c14155b15611d9f5750600090506004611e23565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611df3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e1c57600060019250925050611e23565b9150600090505b94509492505050565b60608315611e3b5750816119c8565b825115611e4b5782518084602001fd5b8160405162461bcd60e51b81526004016105dd9190612369565b600060208284031215611e7757600080fd5b81356001600160e01b0319811681146119c857600080fd5b6001600160a01b038116811461067557600080fd5b600060208284031215611eb657600080fd5b81356119c881611e8f565b60008083601f840112611ed357600080fd5b50813567ffffffffffffffff811115611eeb57600080fd5b6020830191508360208260051b8501011115611a0d57600080fd5b60008060208385031215611f1957600080fd5b823567ffffffffffffffff811115611f3057600080fd5b611f3c85828601611ec1565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611f7157600080fd5b8235611f7c81611e8f565b9150602083013567ffffffffffffffff80821115611f9957600080fd5b818501915085601f830112611fad57600080fd5b813581811115611fbf57611fbf611f48565b604051601f8201601f19908116603f01168101908382118183101715611fe757611fe7611f48565b8160405282815288602084870101111561200057600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60006020828403121561203457600080fd5b813561ffff811681146119c857600080fd5b6000806000806060858703121561205c57600080fd5b843561206781611e8f565b9350602085013561207781611e8f565b9250604085013567ffffffffffffffff8082111561209457600080fd5b818701915087601f8301126120a857600080fd5b8135818111156120b757600080fd5b8860208285010111156120c957600080fd5b95989497505060200194505050565b6000806000806000606086880312156120f057600080fd5b85356120fb81611e8f565b9450602086013567ffffffffffffffff8082111561211857600080fd5b61212489838a01611ec1565b9096509450604088013591508082111561213d57600080fd5b5061214a88828901611ec1565b969995985093965092949392505050565b6000806040838503121561216e57600080fd5b823561217981611e8f565b9150602083013561218981611e8f565b809150509250929050565b60208082526026908201527f41646d696e3a6f6e6c7941646d696e2063616c6c6572206973206e6f7420616e6040820152651020b236b4b760d11b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016122a857634e487b7160e01b600052601160045260246000fd5b5060010190565b6000602082840312156122c157600080fd5b5051919050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b600052602160045260246000fd5b60005b8381101561234457818101518382015260200161232c565b50506000910152565b6000825161235f818460208701612329565b9190910192915050565b6020815260008251806020840152612388816040850160208701612329565b601f01601f1916919091016040019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220048d7e1f592337712bcf56f94913d43f6b8e185b67ed5f3f854781a2a686ecad64736f6c63430008130033