ETH Price: $3,935.72 (-1.42%)

Token

Wrapped Ether (WETH)

Overview

Max Total Supply

9,449.668882404031436511 WETH

Holders

325,096

Market

Price

$3,951.76 @ 1.004076 ETH (-1.20%)

Onchain Market Cap

$37,342,823.50

Circulating Supply Market Cap

$10,806,594,775.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
22.195756026647296428 WETH

Value
$87,712.30 ( ~22.2862 ETH) [0.2349%]
0x43ff8a10b6678462265b00286796e88f03c8839a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Market

Volume (24H):$958,251,947.00
Market Capitalization:$10,806,594,775.00
Circulating Supply:2,735,362.00 WETH
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
TransparentUpgradeableProxy

Compiler Version
v0.8.19+commit.7dd6d404

ZkSolc Version
v1.3.7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 8 : TransparentUpgradeableProxy.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/transparent/TransparentUpgradeableProxy.sol)

pragma solidity ^0.8.0;

import "../ERC1967/ERC1967Proxy.sol";

/**
 * @dev This contract implements a proxy that is upgradeable by an admin.
 *
 * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector
 * clashing], which can potentially be used in an attack, this contract uses the
 * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two
 * things that go hand in hand:
 *
 * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if
 * that call matches one of the admin functions exposed by the proxy itself.
 * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the
 * implementation. If the admin tries to call a function on the implementation it will fail with an error that says
 * "admin cannot fallback to proxy target".
 *
 * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing
 * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due
 * to sudden errors when trying to call a function from the proxy implementation.
 *
 * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,
 * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.
 */
contract TransparentUpgradeableProxy is ERC1967Proxy {
    /**
     * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and
     * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.
     */
    constructor(
        address _logic,
        address admin_,
        bytes memory _data
    ) payable ERC1967Proxy(_logic, _data) {
        assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1));
        _changeAdmin(admin_);
    }

    /**
     * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.
     */
    modifier ifAdmin() {
        if (msg.sender == _getAdmin()) {
            _;
        } else {
            _fallback();
        }
    }

    /**
     * @dev Returns the current admin.
     *
     * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}.
     *
     * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
     * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
     * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
     */
    function admin() external ifAdmin returns (address admin_) {
        admin_ = _getAdmin();
    }

    /**
     * @dev Returns the current implementation.
     *
     * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}.
     *
     * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
     * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
     * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
     */
    function implementation() external ifAdmin returns (address implementation_) {
        implementation_ = _implementation();
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {AdminChanged} event.
     *
     * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}.
     */
    function changeAdmin(address newAdmin) external virtual ifAdmin {
        _changeAdmin(newAdmin);
    }

    /**
     * @dev Upgrade the implementation of the proxy.
     *
     * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}.
     */
    function upgradeTo(address newImplementation) external ifAdmin {
        _upgradeToAndCall(newImplementation, bytes(""), false);
    }

    /**
     * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified
     * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the
     * proxied contract.
     *
     * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}.
     */
    function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {
        _upgradeToAndCall(newImplementation, data, true);
    }

    /**
     * @dev Returns the current admin.
     */
    function _admin() internal view virtual returns (address) {
        return _getAdmin();
    }

    /**
     * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}.
     */
    function _beforeFallback() internal virtual override {
        require(msg.sender != _getAdmin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target");
        super._beforeFallback();
    }
}

File 2 of 8 : draft-IERC1822.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 IERC1822Proxiable {
    /**
     * @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);
}

File 3 of 8 : ERC1967Proxy.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Proxy.sol)

pragma solidity ^0.8.0;

import "../Proxy.sol";
import "./ERC1967Upgrade.sol";

/**
 * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
 * implementation address that can be changed. This address is stored in storage in the location specified by
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
 * implementation behind the proxy.
 */
contract ERC1967Proxy is Proxy, ERC1967Upgrade {
    /**
     * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
     *
     * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
     * function call, and allows initializating the storage of the proxy like a Solidity constructor.
     */
    constructor(address _logic, bytes memory _data) payable {
        assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
        _upgradeToAndCall(_logic, _data, false);
    }

    /**
     * @dev Returns the current implementation address.
     */
    function _implementation() internal view virtual override returns (address impl) {
        return ERC1967Upgrade._getImplementation();
    }
}

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

pragma solidity ^0.8.2;

import "../beacon/IBeacon.sol";
import "../../interfaces/draft-IERC1822.sol";
import "../../utils/Address.sol";
import "../../utils/StorageSlot.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 ERC1967Upgrade {
    // 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 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
        StorageSlot.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) {
            Address.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 (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) {
            _setImplementation(newImplementation);
        } else {
            try IERC1822Proxiable(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 StorageSlot.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");
        StorageSlot.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 StorageSlot.getAddressSlot(_BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the EIP1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract");
        require(
            Address.isContract(IBeacon(newBeacon).implementation()),
            "ERC1967: beacon implementation is not a contract"
        );
        StorageSlot.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) {
            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
        }
    }
}

File 5 of 8 : Proxy.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)

pragma solidity ^0.8.0;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive() external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overridden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {}
}

File 6 of 8 : IBeacon.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 IBeacon {
    /**
     * @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);
}

File 7 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 8 : StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 StorageSlot {
    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) {
        assembly {
            r.slot := slot
        }
    }

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

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

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

Settings
{
  "optimizer": {
    "enabled": true
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"admin_","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"admin_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

3cda33510000000000000000000000000000000000000000000000000000000000000000010001ef6b6204bcfc2fc6c4486fca5b9f667fdce4754c4a11a8dc7b119a4a14000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001600000000000000000000000002ff821c3ca6569140fafce9411049c395f41526a0000000000000000000000004e4943346848c4867f81dfb37c4ca9c5715a7828000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c44cd88b7600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d57726170706564204574686572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004574554480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0004000000000002000300000000000200000000030100190000006003300270000001c50430019700030000004103550002000000010355000001c50030019d000100000000001f0000008001000039000000400010043f000000000300003100000001012001900000003a0000c13d000000040130008c000000460000413d0000000204000367000000000104043b000000e001100270000001ce0210009c000000e20000a13d000001cf0210009c000001920000613d000001d00210009c000001b40000613d000001d10110009c000001420000c13d0000000001000416000000000110004c000002140000c13d0000000003000031000000040130008a000001c802000041000000000410004c00000000040000190000000004024019000001c801100197000000000510004c000000000200a019000001c80110009c00000000010400190000000001026019000000000110004c000002140000c13d000001cc01000041000000000101041a000001c9021001970000000001000411000000000221004b000002460000c13d000000400200043d0000000000120435000001c501000041000001c50320009c00000000010240190000004001100210000001d4011001c7000007110001042e0000009f02300039000000200100008a000000000212016f000001c604200041000001c70440009c0000007f0000213d000001dd0100004100000000001004350000004101000039000000040010043f000001de010000410000071200010430000000000130004c000001420000c13d000001cc01000041000000000101041a000001c9011001970000000002000411000000000112004b000001480000613d000001cd01000041000000000201041a0000000001000414000001c902200197000000040320008c000001760000613d000001c5030000410000000004000031000001c50540009c0000000004038019000001c50510009c0000000001038019000000c0011002100000006003400210000000000113019f0710070b0000040f0003000000010355000000000301001900000060043002700000001f0340018f000101c50040019d000001c50440019700000005044002720000006e0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000000670000413d000000000530004c0000007c0000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000002400000c13d000002900000013d000000400020043f0000001f0230018f000000020400036700000005053002720000008d0000613d00000000060000190000000507600210000000000874034f000000000808043b000000800770003900000000008704350000000106600039000000000756004b000000850000413d000000000620004c0000009c0000613d0000000505500210000000000454034f00000003022002100000008005500039000000000605043300000000062601cf000000000626022f000000000404043b0000010002200089000000000424022f00000000022401cf000000000262019f0000000000250435000001c8020000410000005f0430008c00000000040000190000000004022019000001c805300197000000000650004c0000000002008019000001c80550009c000000000204c019000000000220004c000002140000613d000000800900043d000001c90290009c000002140000213d000000a00a00043d000001c902a0009c000002140000213d000000c00400043d000001ca0240009c000002140000213d00000080053000390000009f02400039000001c803000041000000000652004b00000000060000190000000006038019000001c807500197000001c802200197000000000872004b0000000003008019000000000272013f000001c80220009c00000000020600190000000002036019000000000220004c000002140000c13d00000080024000390000000003020433000001ca0230009c000000400000213d0000003f02300039000000000112016f000000400700043d0000000001170019000000000271004b00000000020000190000000102004039000001ca0610009c000000400000213d0000000102200190000000400000c13d000000400010043f0000000002370436000000a0014000390000000004130019000000000454004b000002140000213d000100000009001d00020000000a001d000300000007001d071003d20000040f000000010100002900000002020000290000000303000029071003df0000040f000000200100003900000100001004430000012000000443000001cb01000041000007110001042e000001d20210009c000001fe0000613d000001d30110009c000001420000c13d000000040130008a000001c802000041000000400510008c00000000050000190000000005024019000001c801100197000000000610004c000000000200a019000001c80110009c00000000010500190000000001026019000000000110004c000002140000c13d0000000401400370000000000101043b000001c90210009c000002140000213d0000002402400370000000000502043b000001ca0250009c000002140000213d0000002302500039000001c806000041000000000732004b00000000070000190000000007068019000001c808300197000001c802200197000000000982004b0000000006008019000000000282013f000001c80220009c00000000020700190000000002066019000000000220004c000002140000c13d0000000402500039000000000224034f000000000202043b000001ca0620009c000002140000213d00000024055000390000000006520019000000000636004b000002140000213d000001cc06000041000000000606041a000001c9066001970000000007000411000000000667004b000003880000c13d000000bf03200039000000200400008a000000000343016f000001ca0430009c000000400000213d000000400030043f0000001f0320018f000000800020043f000000020450036700000005052002720000012d0000613d00000000060000190000000507600210000000000874034f000000000808043b000000a00770003900000000008704350000000106600039000000000756004b000001250000413d000000000630004c0000013c0000613d0000000505500210000000000454034f0000000303300210000000a005500039000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000a002200039000000000002043500000080020000390710060a0000040f0000000001000019000007110001042e000001cc01000041000000000101041a000001c9011001970000000002000411000000000112004b000001560000c13d000001da01000041000000800010043f0000002001000039000000840010043f0000004201000039000000a40010043f000001df01000041000000c40010043f000001e001000041000000e40010043f000001e101000041000001040010043f000001e201000041000007120001043000000002010003670000001f0430018f000001cd02000041000000000202041a000001c9022001970000000503300272000001650000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000635004b0000015e0000413d000000000540004c000001730000613d00000003044002100000000503300210000000000503043300000000054501cf000000000545022f000000000131034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001000414000000040320008c000002160000c13d000000030100036700000001020000310000001f0320018f0000000502200272000001830000613d00000000040000190000000505400210000000000651034f000000000606043b00000000006504350000000104400039000000000524004b0000017c0000413d000000000430004c000002400000613d00000003033002100000000502200210000000000402043300000000043401cf000000000434022f000000000121034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000002400000013d0000000001000416000000000110004c000002140000c13d0000000003000031000000040130008a000001c802000041000000000410004c00000000040000190000000004024019000001c801100197000000000510004c000000000200a019000001c80110009c00000000010400190000000001026019000000000110004c000002140000c13d000001cd01000041000000000101041a000001c902100197000001cc01000041000000000101041a000001c9011001970000000004000411000000000114004b000002960000c13d000000400100043d0000000000210435000001c502000041000001c50310009c00000000010280190000004001100210000001d4011001c7000007110001042e0000000001000416000000000110004c000002140000c13d0000000003000031000000040130008a000001c802000041000000200410008c00000000040000190000000004024019000001c801100197000000000510004c000000000200a019000001c80110009c00000000010400190000000001026019000000000110004c000002140000c13d00000002010003670000000402100370000000000502043b000001c90250009c000002140000213d000001cc02000041000000000602041a000001c9046001970000000002000411000000000442004b000002ed0000c13d000200000006001d000000400100043d000000200310003900000000005304350000000000210435000001c5020000410000000003000414000001c50430009c0000000003028019000001c50410009c00000000010280190000004001100210000000c002300210000000000112019f000001d5011001c70000800d020000390000000103000039000001d604000041000300000005001d071007010000040f00000003030000290000000101200190000002140000613d000000000130004c000003810000c13d000000400100043d0000006402100039000001d80300004100000000003204350000004402100039000001d9030000410000000000320435000000240210003900000026030000390000000000320435000001da020000410000000000210435000000040210003900000020030000390000000000320435000001c502000041000001c50310009c00000000010280190000004001100210000001db011001c700000712000104300000000001000416000000000110004c000002140000c13d0000000004000031000000040140008a000001c802000041000000200310008c00000000030000190000000003024019000001c801100197000000000510004c000000000200a019000001c80110009c00000000010300190000000001026019000000000110004c000002140000c13d00000002030003670000000401300370000000000101043b000001c90210009c000002de0000a13d00000000010000190000071200010430000001c5030000410000000004000031000001c50540009c0000000004038019000001c50510009c0000000001038019000000c0011002100000006003400210000000000113019f0710070b0000040f0003000000010355000000000301001900000060043002700000001f0340018f000101c50040019d000001c5044001970000000504400272000002300000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000002290000413d000000000530004c0000023e0000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000002900000613d000001c5010000410000000102000031000001c50320009c00000000010240190000006001100210000007110001042e00000002010003670000001f0430018f000001cd02000041000000000202041a000001c9022001970000000503300272000002550000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000635004b0000024e0000413d000000000540004c000002630000613d00000003044002100000000503300210000000000503043300000000054501cf000000000545022f000000000131034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001000414000000040320008c000001760000613d000001c5030000410000000004000031000001c50540009c0000000004038019000001c50510009c0000000001038019000000c0011002100000006003400210000000000113019f0710070b0000040f0003000000010355000000000301001900000060043002700000001f0340018f000101c50040019d000001c5044001970000000504400272000002800000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000002790000413d000000000530004c0000028e0000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000002400000c13d000001c5010000410000000102000031000001c50320009c00000000010240190000006001100210000007120001043000000002010003670000001f0430018f0000000503300272000002a20000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000635004b0000029b0000413d000000000540004c000002b00000613d00000003044002100000000503300210000000000503043300000000054501cf000000000545022f000000000131034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001000414000000040320008c000001760000613d000001c5030000410000000004000031000001c50540009c0000000004038019000001c50510009c0000000001038019000000c0011002100000006003400210000000000113019f0710070b0000040f0003000000010355000000000301001900000060043002700000001f0340018f000101c50040019d000001c5044001970000000504400272000002cd0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000002c60000413d000000000530004c000002db0000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000002400000c13d000002900000013d000001cc02000041000000000202041a000001c9022001970000000005000411000000000225004b000003370000c13d000000400200043d000001dc0320009c000000400000213d0000002003200039000000400030043f00000000000204350710050e0000040f0000000001000019000007110001042e0000001f0430018f000001cd02000041000000000202041a000001c9022001970000000503300272000002fb0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000635004b000002f40000413d000000000540004c000003090000613d00000003044002100000000503300210000000000503043300000000054501cf000000000545022f000000000131034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001000414000000040320008c000001760000613d000001c5030000410000000004000031000001c50540009c0000000004038019000001c50510009c0000000001038019000000c0011002100000006003400210000000000113019f0710070b0000040f0003000000010355000000000301001900000060043002700000001f0340018f000101c50040019d000001c5044001970000000504400272000003260000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b0000031f0000413d000000000530004c000003340000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000002400000c13d000002900000013d0000001f0140018f000001cd02000041000000000202041a000001c9022001970000000504400272000003450000613d00000000050000190000000506500210000000000763034f000000000707043b00000000007604350000000105500039000000000645004b0000033e0000413d000000000510004c000003530000613d00000003011002100000000504400210000000000504043300000000051501cf000000000515022f000000000343034f000000000303043b0000010001100089000000000313022f00000000011301cf000000000151019f00000000001404350000000001000414000000040320008c000001760000613d000001c5030000410000000004000031000001c50540009c0000000004038019000001c50510009c0000000001038019000000c0011002100000006003400210000000000113019f0710070b0000040f0003000000010355000000000301001900000060043002700000001f0340018f000101c50040019d000001c5044001970000000504400272000003700000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000003690000413d000000000530004c0000037e0000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000002400000c13d000002900000013d0000000201000029000001d701100197000000000131019f000001cc02000041000000000012041b0000000001000019000007110001042e0000001f0130018f000001cd02000041000000000202041a000001c9022001970000000503300272000003960000613d00000000050000190000000506500210000000000764034f000000000707043b00000000007604350000000105500039000000000635004b0000038f0000413d000000000510004c000003a40000613d00000003011002100000000503300210000000000503043300000000051501cf000000000515022f000000000434034f000000000404043b0000010001100089000000000414022f00000000011401cf000000000151019f00000000001304350000000001000414000000040320008c000001760000613d000001c5030000410000000004000031000001c50540009c0000000004038019000001c50510009c0000000001038019000000c0011002100000006003400210000000000113019f0710070b0000040f0003000000010355000000000301001900000060043002700000001f0340018f000101c50040019d000001c5044001970000000504400272000003c10000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000003ba0000413d000000000530004c000003cf0000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000002400000c13d000002900000013d000000000430004c000003dc0000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000534004b000003d50000413d00000000012300190000000000010435000000000001042d0006000000000002000500000003001d000400000002001d000001e3020000410000000000200439000600000001001d0000000400100443000001c5010000410000000002000414000001c50320009c0000000001024019000000c001100210000001e4011001c70000800202000039071007060000040f00000001022001900000049d0000613d000000000101043b000000000110004c000004a50000613d0000000601000029000001c905100197000001cd01000041000000000201041a000001d702200197000000000252019f000000000021041b000001c5010000410000000002000414000001c50320009c0000000001024019000000c001100210000001e5011001c70000800d020000390000000203000039000001e604000041071007010000040f00000001012001900000049d0000613d00000005010000290000000021010434000000000110004c000004790000613d000300000002001d000000400300043d000001e70130009c0000049f0000813d0000006001300039000000400010043f0000004001300039000001e80200004100000000002104350000002701000039000200000003001d0000000002130436000001e901000041000100000002001d0000000000120435000001e301000041000000000010043900000006010000290000000400100443000001c5010000410000000002000414000001c50320009c0000000001024019000000c001100210000001e4011001c70000800202000039071007060000040f00000001022001900000049d0000613d000000000101043b000000000110004c000004cf0000613d00000000010004140000000602000029000000040320008c000004310000c13d00000001020000390000000103000031000004470000013d000001c5060000410000000304000029000001c50340009c00000000030600190000000003044019000000400330021000000005040000290000000004040433000001c50540009c00000000040680190000006004400210000000000334019f000001c50410009c0000000001068019000000c001100210000000000113019f0710070b0000040f000000010220018f00030000000103550000006001100270000101c50010019d000001c5031001970000006001000039000000000430004c000004770000613d000001ca0130009c0000049f0000213d0000003f01300039000000200400008a000000000441016f000000400100043d0000000004410019000000000514004b00000000050000190000000105004039000001ca0640009c0000049f0000213d00000001055001900000049f0000c13d000000400040043f0000000003310436000000030400036700000001060000310000001f0560018f0000000506600272000004680000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000004600000413d000000000750004c000004770000613d0000000506600210000000000464034f00000000036300190000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000220004c000004e40000613d000001cc01000041000000000301041a0000000401000029000001c904100197000000400100043d0000002002100039000600000004001d0000000000420435000500000003001d000001c9023001970000000000210435000001c5020000410000000003000414000001c50430009c0000000003028019000001c50410009c00000000010280190000004001100210000000c002300210000000000112019f000001d5011001c70000800d020000390000000103000039000001d604000041071007010000040f00000001012001900000049d0000613d0000000602000029000000000120004c000004ba0000613d0000000501000029000001d701100197000000000121019f000001cc02000041000000000012041b000000000001042d00000000010000190000071200010430000001dd0100004100000000001004350000004101000039000000040010043f000001de010000410000071200010430000000400100043d0000006402100039000001ec0300004100000000003204350000004402100039000001ed03000041000000000032043500000024021000390000002d030000390000000000320435000001da020000410000000000210435000000040210003900000020030000390000000000320435000001c502000041000001c50310009c00000000010280190000004001100210000001db011001c70000071200010430000000400100043d0000006402100039000001d80300004100000000003204350000004402100039000001d9030000410000000000320435000000240210003900000026030000390000000000320435000001da020000410000000000210435000000040210003900000020030000390000000000320435000001c502000041000001c50310009c00000000010280190000004001100210000001db011001c70000071200010430000000400100043d0000006402100039000001ea0300004100000000003204350000004402100039000001eb030000410000000000320435000000240210003900000026030000390000000000320435000001da020000410000000000210435000000040210003900000020030000390000000000320435000001c502000041000001c50310009c00000000010280190000004001100210000001db011001c700000712000104300000000021010434000000000310004c000005050000c13d000000400400043d000600000004001d000001da01000041000000000014043500000004014000390000002002000039000000000021043500000002010000290000000003010433000500000003001d0000002401400039000000000031043500000044024000390000000101000029071003d20000040f00000005010000290000001f01100039000000200200008a000000000121016f0000004401100039000001c502000041000001c50310009c00000000010280190000000604000029000001c50340009c000000000204401900000040022002100000006001100210000000000121019f0000071200010430000001c503000041000001c50420009c0000000002038019000001c50410009c000000000103801900000060011002100000004002200210000000000121019f00000712000104300004000000000002000300000002001d000001e3020000410000000000200439000400000001001d0000000400100443000001c5010000410000000002000414000001c50320009c0000000001024019000000c001100210000001e4011001c70000800202000039071007060000040f0000000102200190000005a80000613d000000000101043b000000000110004c000005b00000613d0000000401000029000001c905100197000001cd01000041000000000201041a000001d702200197000000000252019f000000000021041b000001c5010000410000000002000414000001c50320009c0000000001024019000000c001100210000001e5011001c70000800d020000390000000203000039000001e604000041071007010000040f0000000101200190000005a80000613d00000003010000290000000021010434000000000110004c000005a70000613d000200000002001d000000400300043d000001e70130009c000005aa0000813d0000006001300039000000400010043f0000004001300039000001e80200004100000000002104350000002001300039000001e90200004100000000002104350000002701000039000100000003001d0000000000130435000001e301000041000000000010043900000004010000290000000400100443000001c5010000410000000002000414000001c50320009c0000000001024019000000c001100210000001e4011001c70000800202000039071007060000040f0000000102200190000005a80000613d000000000101043b000000000110004c000005c50000613d00000000010004140000000402000029000000040320008c0000055f0000c13d00000001020000390000000103000031000005750000013d000001c5060000410000000204000029000001c50340009c00000000030600190000000003044019000000400330021000000003040000290000000004040433000001c50540009c00000000040680190000006004400210000000000334019f000001c50410009c0000000001068019000000c001100210000000000113019f0710070b0000040f000000010220018f00030000000103550000006001100270000101c50010019d000001c5031001970000006001000039000000000430004c000005a50000613d000001ca0130009c000005aa0000213d0000003f01300039000000200400008a000000000441016f000000400100043d0000000004410019000000000514004b00000000050000190000000105004039000001ca0640009c000005aa0000213d0000000105500190000005aa0000c13d000000400040043f0000000003310436000000030400036700000001060000310000001f0560018f0000000506600272000005960000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b0000058e0000413d000000000750004c000005a50000613d0000000506600210000000000464034f00000000036300190000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000220004c000005da0000613d000000000001042d00000000010000190000071200010430000001dd0100004100000000001004350000004101000039000000040010043f000001de010000410000071200010430000000400100043d0000006402100039000001ec0300004100000000003204350000004402100039000001ed03000041000000000032043500000024021000390000002d030000390000000000320435000001da020000410000000000210435000000040210003900000020030000390000000000320435000001c502000041000001c50310009c00000000010280190000004001100210000001db011001c70000071200010430000000400100043d0000006402100039000001ea0300004100000000003204350000004402100039000001eb030000410000000000320435000000240210003900000026030000390000000000320435000001da020000410000000000210435000000040210003900000020030000390000000000320435000001c502000041000001c50310009c00000000010280190000004001100210000001db011001c700000712000104300000000021010434000000000310004c000006010000c13d000000400100043d000001da02000041000000000021043500000004021000390000002003000039000000000032043500000001070000290000000002070433000000240310003900000000002304350000004403100039000000000420004c000005f20000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b000005eb0000413d0000001f04200039000000200500008a000000000454016f000000000232001900000000000204350000004402400039000001c503000041000001c50420009c0000000002038019000001c50410009c000000000103801900000040011002100000006002200210000000000112019f0000071200010430000001c503000041000001c50420009c0000000002038019000001c50410009c000000000103801900000060011002100000004002200210000000000121019f00000712000104300003000000000002000200000002001d000001e3020000410000000000200439000300000001001d0000000400100443000001c5010000410000000002000414000001c50320009c0000000001024019000000c001100210000001e4011001c70000800202000039071007060000040f00000001022001900000069f0000613d000000000101043b000000000110004c000006a70000613d0000000301000029000001c905100197000001cd01000041000000000201041a000001d702200197000000000252019f000000000021041b000001c5010000410000000002000414000001c50320009c0000000001024019000000c001100210000001e5011001c70000800d020000390000000203000039000001e604000041071007010000040f00000001012001900000069f0000613d000000400300043d000001e70130009c000006a10000813d0000006001300039000000400010043f0000004001300039000001e80200004100000000002104350000002001300039000001e90200004100000000002104350000002701000039000100000003001d0000000000130435000001e301000041000000000010043900000003010000290000000400100443000001c5010000410000000002000414000001c50320009c0000000001024019000000c001100210000001e4011001c70000800202000039071007060000040f00000001022001900000069f0000613d000000000101043b000000000110004c000006bc0000613d00000000010004140000000302000029000000040320008c000006560000c13d000000010200003900000001030000310000066c0000013d00000002070000290000002005700039000001c503000041000001c50450009c0000000004030019000000000405401900000040064002100000000004070433000001c50540009c00000000040380190000006004400210000000000564019f000001c50410009c0000000001038019000000c001100210000000000115019f0710070b0000040f000000010220018f00030000000103550000006001100270000101c50010019d000001c5031001970000006001000039000000000430004c0000069c0000613d000001ca0130009c000006a10000213d0000003f01300039000000200400008a000000000441016f000000400100043d0000000004410019000000000514004b00000000050000190000000105004039000001ca0640009c000006a10000213d0000000105500190000006a10000c13d000000400040043f0000000003310436000000030400036700000001060000310000001f0560018f00000005066002720000068d0000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000006850000413d000000000750004c0000069c0000613d0000000506600210000000000464034f00000000036300190000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000220004c000006d10000613d000000000001042d00000000010000190000071200010430000001dd0100004100000000001004350000004101000039000000040010043f000001de010000410000071200010430000000400100043d0000006402100039000001ec0300004100000000003204350000004402100039000001ed03000041000000000032043500000024021000390000002d030000390000000000320435000001da020000410000000000210435000000040210003900000020030000390000000000320435000001c502000041000001c50310009c00000000010280190000004001100210000001db011001c70000071200010430000000400100043d0000006402100039000001ea0300004100000000003204350000004402100039000001eb030000410000000000320435000000240210003900000026030000390000000000320435000001da020000410000000000210435000000040210003900000020030000390000000000320435000001c502000041000001c50310009c00000000010280190000004001100210000001db011001c700000712000104300000000021010434000000000310004c000006f80000c13d000000400100043d000001da02000041000000000021043500000004021000390000002003000039000000000032043500000001070000290000000002070433000000240310003900000000002304350000004403100039000000000420004c000006e90000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b000006e20000413d0000001f04200039000000200500008a000000000454016f000000000232001900000000000204350000004402400039000001c503000041000001c50420009c0000000002038019000001c50410009c000000000103801900000040011002100000006002200210000000000112019f0000071200010430000001c503000041000001c50420009c0000000002038019000001c50410009c000000000103801900000060011002100000004002200210000000000121019f000007120001043000000704002104210000000102000039000000000001042d0000000002000019000000000001042d00000709002104230000000102000039000000000001042d0000000002000019000000000001042d0000070e002104250000000102000039000000000001042d0000000002000019000000000001042d0000071000000432000007110001042e0000071200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000007f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff0000000200000000000000000000000000000040000001000000000000000000b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc000000000000000000000000000000000000000000000000000000005c60da1a000000000000000000000000000000000000000000000000000000005c60da1b000000000000000000000000000000000000000000000000000000008f28397000000000000000000000000000000000000000000000000000000000f851a440000000000000000000000000000000000000000000000000000000003659cfe6000000000000000000000000000000000000000000000000000000004f1ef286000000000000000000000000000000000000002000000000000000000000000002000000000000000000000000000000000000400000000000000000000000007e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798fffffffffffffffffffffffff00000000000000000000000000000000000000006464726573730000000000000000000000000000000000000000000000000000455243313936373a206e65772061646d696e20697320746865207a65726f206108c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf4e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000005472616e73706172656e745570677261646561626c6550726f78793a2061646d696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267657400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a40000008000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b8302000002000000000000000000000000000000240000000000000000000000000200000000000000000000000000000000000000000000000000000000000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffffa0206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c6e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206eb107e12b8fa810c586d2be0b8ec8670845cdfce1a1f3d03196380ca28852f5ec

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

0x0000000000000000000000002ff821c3ca6569140fafce9411049c395f41526a0000000000000000000000004e4943346848c4867f81dfb37c4ca9c5715a7828000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c44cd88b7600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d57726170706564204574686572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004574554480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _logic (address): 0x2Ff821c3cA6569140FAFcE9411049c395f41526a
Arg [1] : admin_ (address): 0x4e4943346848c4867F81dFb37c4cA9C5715A7828
Arg [2] : _data (bytes): 0x4cd88b7600000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d577261707065642045746865720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045745544800000000000000000000000000000000000000000000000000000000

-----Encoded View---------------


[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.