ETH Price: $2,969.55 (+2.37%)
Gas: 1 Gwei

Token

Vested AKRO (vAKRO)
 

Overview

Max Total Supply

30,255,825.428873534657523103 vAKRO

Holders

822

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
andresserna.eth
Balance
22,332.768694517037558042 vAKRO

Value
$0.00
0x7a0B20646c9bE97c9a7a0898166e15F685FdD4fA
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UtilProxy

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 99999 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2021-03-02
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;



// Part: OpenZeppelin/[email protected]/Address

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// Part: OpenZeppelin/[email protected]/Proxy

/**
 * @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 internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal {
        // solhint-disable-next-line no-inline-assembly
        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 overriden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal virtual view returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     * 
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _fallback() internal {
        _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 {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive () external payable {
        _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 overriden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {
    }
}

// Part: OpenZeppelin/[email protected]/UpgradeableProxy

/**
 * @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.
 * 
 * Upgradeability is only provided internally through {_upgradeTo}. For an externally upgradeable proxy see
 * {TransparentUpgradeableProxy}.
 */
contract UpgradeableProxy is Proxy {
    /**
     * @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) public payable {
        assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
        _setImplementation(_logic);
        if(_data.length > 0) {
            // solhint-disable-next-line avoid-low-level-calls
            (bool success,) = _logic.delegatecall(_data);
            require(success);
        }
    }

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

    /**
     * @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 private constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Returns the current implementation address.
     */
    function _implementation() internal override view returns (address impl) {
        bytes32 slot = _IMPLEMENTATION_SLOT;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            impl := sload(slot)
        }
    }

    /**
     * @dev Upgrades the proxy to a new implementation.
     * 
     * Emits an {Upgraded} event.
     */
    function _upgradeTo(address newImplementation) internal {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(Address.isContract(newImplementation), "UpgradeableProxy: new implementation is not a contract");

        bytes32 slot = _IMPLEMENTATION_SLOT;

        // solhint-disable-next-line no-inline-assembly
        assembly {
            sstore(slot, newImplementation)
        }
    }
}

// Part: OpenZeppelin/[email protected]/TransparentUpgradeableProxy

/**
 * @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 UpgradeableProxy {
    /**
     * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and
     * optionally initialized with `_data` as explained in {UpgradeableProxy-constructor}.
     */
    constructor(address _logic, address admin_, bytes memory _data) public payable UpgradeableProxy(_logic, _data) {
        assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1));
        _setAdmin(admin_);
    }

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

    /**
     * @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 private constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.
     */
    modifier ifAdmin() {
        if (msg.sender == _admin()) {
            _;
        } 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_ = _admin();
    }

    /**
     * @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 ifAdmin {
        require(newAdmin != address(0), "TransparentUpgradeableProxy: new admin is the zero address");
        emit AdminChanged(_admin(), newAdmin);
        _setAdmin(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 {
        _upgradeTo(newImplementation);
    }

    /**
     * @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 {
        _upgradeTo(newImplementation);
        // solhint-disable-next-line avoid-low-level-calls
        (bool success,) = newImplementation.delegatecall(data);
        require(success);
    }

    /**
     * @dev Returns the current admin.
     */
    function _admin() internal view returns (address adm) {
        bytes32 slot = _ADMIN_SLOT;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            adm := sload(slot)
        }
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        bytes32 slot = _ADMIN_SLOT;

        // solhint-disable-next-line no-inline-assembly
        assembly {
            sstore(slot, newAdmin)
        }
    }

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

// File: UtilProxy.sol

contract UtilProxy is TransparentUpgradeableProxy {
  constructor(address _logic, address admin_, bytes memory _data)
      public 
      TransparentUpgradeableProxy(_logic, admin_, _data)
  {}
}

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":"nonpayable","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":"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"}]

60806040523480156200001157600080fd5b5060405162000b2238038062000b22833981016040819052620000349162000167565b82828282816200004482620000db565b805115620000bb576000826001600160a01b03168260405162000068919062000236565b600060405180830381855af49150503d8060008114620000a5576040519150601f19603f3d011682016040523d82523d6000602084013e620000aa565b606091505b5050905080620000b957600080fd5b505b50620000c49050565b620000cf826200013d565b505050505050620002fd565b620000f1816200016160201b620003ba1760201c565b620001195760405162461bcd60e51b8152600401620001109062000254565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b3b151590565b6000806000606084860312156200017c578283fd5b83516200018981620002e4565b60208501519093506200019c81620002e4565b60408501519092506001600160401b0380821115620001b9578283fd5b818601915086601f830112620001cd578283fd5b815181811115620001dc578384fd5b604051601f8201601f191681016020018381118282101715620001fd578586fd5b60405281815283820160200189101562000215578485fd5b62000228826020830160208701620002b1565b809450505050509250925092565b600082516200024a818460208701620002b1565b9190910192915050565b60208082526036908201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e746160408201527f74696f6e206973206e6f74206120636f6e747261637400000000000000000000606082015260800190565b60005b83811015620002ce578181015183820152602001620002b4565b83811115620002de576000848401525b50505050565b6001600160a01b0381168114620002fa57600080fd5b50565b610815806200030d6000396000f3fe60806040526004361061005e5760003560e01c80635c60da1b116100435780635c60da1b146100a85780638f283970146100d3578063f851a440146100f35761006d565b80633659cfe6146100755780634f1ef286146100955761006d565b3661006d5761006b610108565b005b61006b610108565b34801561008157600080fd5b5061006b610090366004610577565b610122565b61006b6100a33660046105b2565b610176565b3480156100b457600080fd5b506100bd610244565b6040516100ca919061065a565b60405180910390f35b3480156100df57600080fd5b5061006b6100ee366004610577565b61029b565b3480156100ff57600080fd5b506100bd610375565b6101106103c0565b61012061011b610435565b61045a565b565b61012a61047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561016b57610166816104a3565b610173565b610173610108565b50565b61017e61047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610237576101ba836104a3565b60008373ffffffffffffffffffffffffffffffffffffffff1683836040516101e392919061064a565b600060405180830381855af49150503d806000811461021e576040519150601f19603f3d011682016040523d82523d6000602084013e610223565b606091505b505090508061023157600080fd5b5061023f565b61023f610108565b505050565b600061024e61047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561029057610289610435565b9050610298565b610298610108565b90565b6102a361047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561016b5773ffffffffffffffffffffffffffffffffffffffff811661032c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610323906106a2565b60405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61035561047e565b8260405161036492919061067b565b60405180910390a1610166816104f0565b600061037f61047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102905761028961047e565b3b151590565b6103c861047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561042d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103239061075c565b610120610120565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b3660008037600080366000845af43d6000803e808015610479573d6000f35b3d6000fd5b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6104ac81610514565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b61051d816103ba565b610553576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610323906106ff565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b600060208284031215610588578081fd5b813573ffffffffffffffffffffffffffffffffffffffff811681146105ab578182fd5b9392505050565b6000806000604084860312156105c6578182fd5b833573ffffffffffffffffffffffffffffffffffffffff811681146105e9578283fd5b9250602084013567ffffffffffffffff80821115610605578384fd5b818601915086601f830112610618578384fd5b813581811115610626578485fd5b876020828501011115610637578485fd5b6020830194508093505050509250925092565b6000828483379101908152919050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b6020808252603a908201527f5472616e73706172656e745570677261646561626c6550726f78793a206e657760408201527f2061646d696e20697320746865207a65726f2061646472657373000000000000606082015260800190565b60208082526036908201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e746160408201527f74696f6e206973206e6f74206120636f6e747261637400000000000000000000606082015260800190565b60208082526042908201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60408201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760608201527f6574000000000000000000000000000000000000000000000000000000000000608082015260a0019056fea264697066735822122014841521cb5a8700cf00c2bc3fc8b5d0eeea06b1fe09aa0cdc093f709eb3c3eb64736f6c634300060c0033000000000000000000000000f802310f9073f620f4ca54696d0a3a9d23f2ddf60000000000000000000000008f608bcb8971cd7d3073c417a28dbd156d77240200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044cd6dc6870000000000000000000000008ab7404063ec4dbcfd4598215992dc3f8ec853d70000000000000000000000000000000000000000000000000000000003c2670000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061005e5760003560e01c80635c60da1b116100435780635c60da1b146100a85780638f283970146100d3578063f851a440146100f35761006d565b80633659cfe6146100755780634f1ef286146100955761006d565b3661006d5761006b610108565b005b61006b610108565b34801561008157600080fd5b5061006b610090366004610577565b610122565b61006b6100a33660046105b2565b610176565b3480156100b457600080fd5b506100bd610244565b6040516100ca919061065a565b60405180910390f35b3480156100df57600080fd5b5061006b6100ee366004610577565b61029b565b3480156100ff57600080fd5b506100bd610375565b6101106103c0565b61012061011b610435565b61045a565b565b61012a61047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561016b57610166816104a3565b610173565b610173610108565b50565b61017e61047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610237576101ba836104a3565b60008373ffffffffffffffffffffffffffffffffffffffff1683836040516101e392919061064a565b600060405180830381855af49150503d806000811461021e576040519150601f19603f3d011682016040523d82523d6000602084013e610223565b606091505b505090508061023157600080fd5b5061023f565b61023f610108565b505050565b600061024e61047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561029057610289610435565b9050610298565b610298610108565b90565b6102a361047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561016b5773ffffffffffffffffffffffffffffffffffffffff811661032c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610323906106a2565b60405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61035561047e565b8260405161036492919061067b565b60405180910390a1610166816104f0565b600061037f61047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102905761028961047e565b3b151590565b6103c861047e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561042d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103239061075c565b610120610120565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b3660008037600080366000845af43d6000803e808015610479573d6000f35b3d6000fd5b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6104ac81610514565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b61051d816103ba565b610553576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610323906106ff565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b600060208284031215610588578081fd5b813573ffffffffffffffffffffffffffffffffffffffff811681146105ab578182fd5b9392505050565b6000806000604084860312156105c6578182fd5b833573ffffffffffffffffffffffffffffffffffffffff811681146105e9578283fd5b9250602084013567ffffffffffffffff80821115610605578384fd5b818601915086601f830112610618578384fd5b813581811115610626578485fd5b876020828501011115610637578485fd5b6020830194508093505050509250925092565b6000828483379101908152919050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b6020808252603a908201527f5472616e73706172656e745570677261646561626c6550726f78793a206e657760408201527f2061646d696e20697320746865207a65726f2061646472657373000000000000606082015260800190565b60208082526036908201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e746160408201527f74696f6e206973206e6f74206120636f6e747261637400000000000000000000606082015260800190565b60208082526042908201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60408201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760608201527f6574000000000000000000000000000000000000000000000000000000000000608082015260a0019056fea264697066735822122014841521cb5a8700cf00c2bc3fc8b5d0eeea06b1fe09aa0cdc093f709eb3c3eb64736f6c634300060c0033

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

000000000000000000000000f802310f9073f620f4ca54696d0a3a9d23f2ddf60000000000000000000000008f608bcb8971cd7d3073c417a28dbd156d77240200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000044cd6dc6870000000000000000000000008ab7404063ec4dbcfd4598215992dc3f8ec853d70000000000000000000000000000000000000000000000000000000003c2670000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _logic (address): 0xf802310f9073f620f4ca54696d0A3a9D23f2DdF6
Arg [1] : admin_ (address): 0x8f608BCB8971cD7D3073C417A28DbD156d772402
Arg [2] : _data (bytes): 0xcd6dc6870000000000000000000000008ab7404063ec4dbcfd4598215992dc3f8ec853d70000000000000000000000000000000000000000000000000000000003c26700

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000f802310f9073f620f4ca54696d0a3a9d23f2ddf6
Arg [1] : 0000000000000000000000008f608bcb8971cd7d3073c417a28dbd156d772402
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [4] : cd6dc6870000000000000000000000008ab7404063ec4dbcfd4598215992dc3f
Arg [5] : 8ec853d700000000000000000000000000000000000000000000000000000000
Arg [6] : 03c2670000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19659:200:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9975:11;:9;:11::i;:::-;19659:200;;9751:11;:9;:11::i;17909:111::-;;;;;;;;;;-1:-1:-1;17909:111:0;;;;;:::i;:::-;;:::i;18406:299::-;;;;;;:::i;:::-;;:::i;17148:131::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17495:246;;;;;;;;;;-1:-1:-1;17495:246:0;;;;;:::i;:::-;;:::i;16580:95::-;;;;;;;;;;;;;:::i;9403:105::-;9444:17;:15;:17::i;:::-;9472:28;9482:17;:15;:17::i;:::-;9472:9;:28::i;:::-;9403:105::o;17909:111::-;16036:8;:6;:8::i;:::-;16022:22;;:10;:22;;;16018:100;;;17983:29:::1;17994:17;17983:10;:29::i;:::-;16018:100:::0;;;16095:11;:9;:11::i;:::-;17909:111;:::o;18406:299::-;16036:8;:6;:8::i;:::-;16022:22;;:10;:22;;;16018:100;;;18516:29:::1;18527:17;18516:10;:29::i;:::-;18617:12;18634:17;:30;;18665:4;;18634:36;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18616:54;;;18689:7;18681:16;;;::::0;::::1;;16061:1;16018:100:::0;;;16095:11;:9;:11::i;:::-;18406:299;;;:::o;17148:131::-;17200:23;16036:8;:6;:8::i;:::-;16022:22;;:10;:22;;;16018:100;;;17254:17:::1;:15;:17::i;:::-;17236:35;;16018:100:::0;;;16095:11;:9;:11::i;:::-;17148:131;:::o;17495:246::-;16036:8;:6;:8::i;:::-;16022:22;;:10;:22;;;16018:100;;;17570:22:::1;::::0;::::1;17562:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;17671:32;17684:8;:6;:8::i;:::-;17694;17671:32;;;;;;;:::i;:::-;;;;;;;;17714:19;17724:8;17714:9;:19::i;16580:95::-:0;16623:14;16036:8;:6;:8::i;:::-;16022:22;;:10;:22;;;16018:100;;;16659:8:::1;:6;:8::i;844:422::-:0;1211:20;1250:8;;;844:422::o;19419:207::-;19505:8;:6;:8::i;:::-;19491:22;;:10;:22;;;;19483:101;;;;;;;;;;;;:::i;:::-;19595:23;:21;:23::i;12303:248::-;12153:66;12522:11;;12499:45::o;8003:907::-;8395:14;8392:1;8389;8376:34;8613:1;8610;8594:14;8591:1;8575:14;8568:5;8555:60;8692:16;8689:1;8686;8671:38;8732:6;8801:38;;;;8873:16;8870:1;8863:27;8801:38;8820:16;8817:1;8810:27;18771:219;15775:66;18961:11;;18939:44::o;12678:155::-;12745:37;12764:17;12745:18;:37::i;:::-;12798:27;;;;;;;;;;;12678:155;:::o;19077:216::-;15775:66;19253:22;19238:48::o;12929:369::-;13011:37;13030:17;13011:18;:37::i;:::-;13003:104;;;;;;;;;;;;:::i;:::-;12153:66;13249:31;13234:57::o;500:241:-1:-;;604:2;592:9;583:7;579:23;575:32;572:2;;;-1:-1;;610:12;572:2;85:6;72:20;5591:42;5887:5;5580:54;5862:5;5859:35;5849:2;;-1:-1;;5898:12;5849:2;662:63;566:175;-1:-1;;;566:175::o;748:490::-;;;;888:2;876:9;867:7;863:23;859:32;856:2;;;-1:-1;;894:12;856:2;85:6;72:20;5591:42;5887:5;5580:54;5862:5;5859:35;5849:2;;-1:-1;;5898:12;5849:2;946:63;-1:-1;1074:2;1059:18;;1046:32;1098:18;1087:30;;;1084:2;;;-1:-1;;1120:12;1084:2;1205:6;1194:9;1190:22;;;270:3;263:4;255:6;251:17;247:27;237:2;;-1:-1;;278:12;237:2;321:6;308:20;1098:18;340:6;337:30;334:2;;;-1:-1;;370:12;334:2;465:3;1074:2;445:17;406:6;431:32;;428:41;425:2;;;-1:-1;;472:12;425:2;1074;406:6;402:17;1140:82;;;;;;;;850:388;;;;;:::o;2959:291::-;;5728:6;5723:3;5718;5705:30;5766:16;;5759:27;;;5766:16;3103:147;-1:-1;3103:147::o;3257:222::-;5591:42;5580:54;;;;1316:37;;3384:2;3369:18;;3355:124::o;3486:333::-;5591:42;5580:54;;;1316:37;;5580:54;;3805:2;3790:18;;1316:37;3641:2;3626:18;;3612:207::o;3826:416::-;4026:2;4040:47;;;1931:2;4011:18;;;5352:19;1967:34;5392:14;;;1947:55;2036:28;2022:12;;;2015:50;2084:12;;;3997:245::o;4249:416::-;4449:2;4463:47;;;2335:2;4434:18;;;5352:19;2371:34;5392:14;;;2351:55;2440:24;2426:12;;;2419:46;2484:12;;;4420:245::o;4672:416::-;4872:2;4886:47;;;2735:2;4857:18;;;5352:19;2771:34;5392:14;;;2751:55;2840:34;2826:12;;;2819:56;2909:4;2895:12;;;2888:26;2933:12;;;4843:245::o

Swarm Source

ipfs://14841521cb5a8700cf00c2bc3fc8b5d0eeea06b1fe09aa0cdc093f709eb3c3eb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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