ETH Price: $3,121.65 (+1.45%)
Gas: 6 Gwei

Token

xToken (XTK)
 

Overview

Max Total Supply

1,000,000,000 XTK

Holders

3,412 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (+0.97%)

Onchain Market Cap

$405,440.00

Circulating Supply Market Cap

$164,010.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000090770982777117 XTK

Value
$0.00 ( ~0 Eth) [0.0000%]
0x94a468fcb53a043bf5cd95ef21892e02c71134be
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

xToken Terminal is a permissionless investment bank.

Market

Volume (24H):$1.71
Market Capitalization:$164,010.00
Circulating Supply:404,524,037.00 XTK
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
XTKProxy

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

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

// File: @openzeppelin/contracts/proxy/Proxy.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 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 {
    }
}

// File: @openzeppelin/contracts/utils/Address.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @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);
            }
        }
    }
}

// File: @openzeppelin/contracts/proxy/UpgradeableProxy.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;



/**
 * @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)
        }
    }
}

// File: @openzeppelin/contracts/proxy/TransparentUpgradeableProxy.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;


/**
 * @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: contracts/XTKProxy.sol

pragma solidity 0.6.2;
pragma experimental ABIEncoderV2;


contract XTKProxy is TransparentUpgradeableProxy {
    constructor(address _logic, address _proxyAdmin)
        public
        TransparentUpgradeableProxy(
            _logic,
            _proxyAdmin,
            ""
        )
    {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"_proxyAdmin","type":"address"}],"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"}]

608060405234801561001057600080fd5b506040516109c63803806109c683398101604081905261002f916101a2565b8181604051806020016040528060008152508281600160405161005190610214565b604051908190039020036000805160206109a68339815191521461007157fe5b610083826001600160e01b0361014016565b8051156100f4576000826001600160a01b0316826040516100a491906101db565b600060405180830381855af49150503d80600081146100df576040519150601f19603f3d011682016040523d82523d6000602084013e6100e4565b606091505b50509050806100f257600080fd5b505b505060016040516101049061023d565b604051908190039020036000805160206109868339815191521461012457fe5b610136826001600160e01b0361018a16565b50505050506102db565b6101538161019c60201b6104501760201c565b6101785760405162461bcd60e51b815260040161016f90610266565b60405180910390fd5b6000805160206109a683398151915255565b60008051602061098683398151915255565b3b151590565b600080604083850312156101b4578182fd5b82516101bf816102c3565b60208401519092506101d0816102c3565b809150509250929050565b60008251815b818110156101fb57602081860181015185830152016101e1565b818111156102095782828501525b509190910192915050565b7f656970313936372e70726f78792e696d706c656d656e746174696f6e000000008152601c0190565b7f656970313936372e70726f78792e61646d696e00000000000000000000000000815260130190565b60208082526036908201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e746160408201527f74696f6e206973206e6f74206120636f6e747261637400000000000000000000606082015260800190565b6001600160a01b03811681146102d857600080fd5b50565b61069c806102ea6000396000f3fe60806040526004361061004e5760003560e01c80633659cfe6146100655780634f1ef286146100855780635c60da1b146100985780638f283970146100c3578063f851a440146100e35761005d565b3661005d5761005b6100f8565b005b61005b6100f8565b34801561007157600080fd5b5061005b610080366004610456565b610112565b61005b610093366004610484565b61014c565b3480156100a457600080fd5b506100ad6101f3565b6040516100ba919061051d565b60405180910390f35b3480156100cf57600080fd5b5061005b6100de366004610456565b610230565b3480156100ef57600080fd5b506100ad6102c9565b6101006102f4565b61011061010b610335565b61035a565b565b61011a61037e565b6001600160a01b0316336001600160a01b031614156101415761013c816103a3565b610149565b6101496100f8565b50565b61015461037e565b6001600160a01b0316336001600160a01b031614156101e657610176836103a3565b6000836001600160a01b0316838360405161019292919061050d565b600060405180830381855af49150503d80600081146101cd576040519150601f19603f3d011682016040523d82523d6000602084013e6101d2565b606091505b50509050806101e057600080fd5b506101ee565b6101ee6100f8565b505050565b60006101fd61037e565b6001600160a01b0316336001600160a01b031614156102255761021e610335565b905061022d565b61022d6100f8565b90565b61023861037e565b6001600160a01b0316336001600160a01b03161415610141576001600160a01b0381166102805760405162461bcd60e51b81526004016102779061054b565b60405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6102a961037e565b826040516102b8929190610531565b60405180910390a161013c816103e3565b60006102d361037e565b6001600160a01b0316336001600160a01b031614156102255761021e61037e565b6102fc61037e565b6001600160a01b0316336001600160a01b0316141561032d5760405162461bcd60e51b8152600401610277906105fe565b610110610110565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b3660008037600080366000845af43d6000803e808015610379573d6000f35b3d6000fd5b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6103ac81610407565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b61041081610450565b61042c5760405162461bcd60e51b8152600401610277906105a8565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b3b151590565b600060208284031215610467578081fd5b81356001600160a01b038116811461047d578182fd5b9392505050565b600080600060408486031215610498578182fd5b83356001600160a01b03811681146104ae578283fd5b9250602084013567ffffffffffffffff808211156104ca578384fd5b81860187601f8201126104db578485fd5b80359250818311156104eb578485fd5b8760208483010111156104fc578485fd5b949760209095019650909450505050565b6000828483379101908152919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6020808252603a908201527f5472616e73706172656e745570677261646561626c6550726f78793a206e657760408201527f2061646d696e20697320746865207a65726f2061646472657373000000000000606082015260800190565b60208082526036908201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e74616040820152751d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd60521b606082015260800190565b60208082526042908201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60408201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606082015261195d60f21b608082015260a0019056fea2646970667358221220f6b45f4d9e48332915e339393e959fc6ee030fe5434393b9b14eb5b23a00152864736f6c63430006020033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc0000000000000000000000008b68733d7e4f1586ed8268aa1a020efdf2dfe14b000000000000000000000000105ed4e2980cc60a13ddf854c75133434d6b4074

Deployed Bytecode

0x60806040526004361061004e5760003560e01c80633659cfe6146100655780634f1ef286146100855780635c60da1b146100985780638f283970146100c3578063f851a440146100e35761005d565b3661005d5761005b6100f8565b005b61005b6100f8565b34801561007157600080fd5b5061005b610080366004610456565b610112565b61005b610093366004610484565b61014c565b3480156100a457600080fd5b506100ad6101f3565b6040516100ba919061051d565b60405180910390f35b3480156100cf57600080fd5b5061005b6100de366004610456565b610230565b3480156100ef57600080fd5b506100ad6102c9565b6101006102f4565b61011061010b610335565b61035a565b565b61011a61037e565b6001600160a01b0316336001600160a01b031614156101415761013c816103a3565b610149565b6101496100f8565b50565b61015461037e565b6001600160a01b0316336001600160a01b031614156101e657610176836103a3565b6000836001600160a01b0316838360405161019292919061050d565b600060405180830381855af49150503d80600081146101cd576040519150601f19603f3d011682016040523d82523d6000602084013e6101d2565b606091505b50509050806101e057600080fd5b506101ee565b6101ee6100f8565b505050565b60006101fd61037e565b6001600160a01b0316336001600160a01b031614156102255761021e610335565b905061022d565b61022d6100f8565b90565b61023861037e565b6001600160a01b0316336001600160a01b03161415610141576001600160a01b0381166102805760405162461bcd60e51b81526004016102779061054b565b60405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6102a961037e565b826040516102b8929190610531565b60405180910390a161013c816103e3565b60006102d361037e565b6001600160a01b0316336001600160a01b031614156102255761021e61037e565b6102fc61037e565b6001600160a01b0316336001600160a01b0316141561032d5760405162461bcd60e51b8152600401610277906105fe565b610110610110565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b3660008037600080366000845af43d6000803e808015610379573d6000f35b3d6000fd5b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6103ac81610407565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b61041081610450565b61042c5760405162461bcd60e51b8152600401610277906105a8565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b3b151590565b600060208284031215610467578081fd5b81356001600160a01b038116811461047d578182fd5b9392505050565b600080600060408486031215610498578182fd5b83356001600160a01b03811681146104ae578283fd5b9250602084013567ffffffffffffffff808211156104ca578384fd5b81860187601f8201126104db578485fd5b80359250818311156104eb578485fd5b8760208483010111156104fc578485fd5b949760209095019650909450505050565b6000828483379101908152919050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6020808252603a908201527f5472616e73706172656e745570677261646561626c6550726f78793a206e657760408201527f2061646d696e20697320746865207a65726f2061646472657373000000000000606082015260800190565b60208082526036908201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e74616040820152751d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd60521b606082015260800190565b60208082526042908201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60408201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606082015261195d60f21b608082015260a0019056fea2646970667358221220f6b45f4d9e48332915e339393e959fc6ee030fe5434393b9b14eb5b23a00152864736f6c63430006020033

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

0000000000000000000000008b68733d7e4f1586ed8268aa1a020efdf2dfe14b000000000000000000000000105ed4e2980cc60a13ddf854c75133434d6b4074

-----Decoded View---------------
Arg [0] : _logic (address): 0x8b68733D7e4F1586Ed8268aa1a020efDF2dFE14b
Arg [1] : _proxyAdmin (address): 0x105Ed4E2980CC60A13DdF854c75133434D6b4074

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008b68733d7e4f1586ed8268aa1a020efdf2dfe14b
Arg [1] : 000000000000000000000000105ed4e2980cc60a13ddf854c75133434d6b4074


Deployed Bytecode Sourcemap

19864:243:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2934:11;:9;:11::i;:::-;19864:243;;2710:11;:9;:11::i;18043:111::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18043:111:0;;;;;;;;:::i;18539:299::-;;;;;;;;;:::i;17285:131::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17285:131:0;;;:::i;:::-;;;;;;;;;;;;;;;;17630:246;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17630:246:0;;;;;;;;:::i;16719:95::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16719:95:0;;;:::i;2362:105::-;2403:17;:15;:17::i;:::-;2431:28;2441:17;:15;:17::i;:::-;2431:9;:28::i;:::-;2362:105::o;18043:111::-;16177:8;:6;:8::i;:::-;-1:-1:-1;;;;;16163:22:0;:10;-1:-1:-1;;;;;16163:22:0;;16159:100;;;18117:29:::1;18128:17;18117:10;:29::i;:::-;16159:100:::0;;;16236:11;:9;:11::i;:::-;18043:111;:::o;18539:299::-;16177:8;:6;:8::i;:::-;-1:-1:-1;;;;;16163:22:0;:10;-1:-1:-1;;;;;16163:22:0;;16159:100;;;18649:29:::1;18660:17;18649:10;:29::i;:::-;18750:12;18767:17;-1:-1:-1::0;;;;;18767:30:0::1;18798:4;;18767:36;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;18749:54:0;;;18822:7;18814:16;;;::::0;::::1;;16202:1;16159:100:::0;;;16236:11;:9;:11::i;:::-;18539:299;;;:::o;17285:131::-;17337:23;16177:8;:6;:8::i;:::-;-1:-1:-1;;;;;16163:22:0;:10;-1:-1:-1;;;;;16163:22:0;;16159:100;;;17391:17:::1;:15;:17::i;:::-;17373:35;;16159:100:::0;;;16236:11;:9;:11::i;:::-;17285:131;:::o;17630:246::-;16177:8;:6;:8::i;:::-;-1:-1:-1;;;;;16163:22:0;:10;-1:-1:-1;;;;;16163:22:0;;16159:100;;;-1:-1:-1;;;;;17705:22:0;::::1;17697:93;;;;-1:-1:-1::0;;;17697:93:0::1;;;;;;;;;;;;;;;;;17806:32;17819:8;:6;:8::i;:::-;17829;17806:32;;;;;;;;;;;;;;;;17849:19;17859:8;17849:9;:19::i;16719:95::-:0;16762:14;16177:8;:6;:8::i;:::-;-1:-1:-1;;;;;16163:22:0;:10;-1:-1:-1;;;;;16163:22:0;;16159:100;;;16798:8:::1;:6;:8::i;19552:207::-:0;19638:8;:6;:8::i;:::-;-1:-1:-1;;;;;19624:22:0;:10;-1:-1:-1;;;;;19624:22:0;;;19616:101;;;;-1:-1:-1;;;19616:101:0;;;;;;;;;19728:23;:21;:23::i;12385:248::-;12235:66;12604:11;;12581:45::o;963:907::-;1355:14;1352:1;1349;1336:34;1573:1;1570;1554:14;1551:1;1535:14;1528:5;1515:60;1652:16;1649:1;1646;1631:38;1692:6;1761:38;;;;1833:16;1830:1;1823:27;1761:38;1780:16;1777:1;1770:27;18904:219;15916:66;19094:11;;19072:44::o;12759:155::-;12826:37;12845:17;12826:18;:37::i;:::-;12879:27;;-1:-1:-1;;;;;12879:27:0;;;;;;;;12759:155;:::o;19210:216::-;15916:66;19386:22;19371:48::o;13010:369::-;13092:37;13111:17;13092:18;:37::i;:::-;13084:104;;;;-1:-1:-1;;;13084:104:0;;;;;;;;;12235:66;13330:31;13315:57::o;4106:422::-;4473:20;4512:8;;;4106:422::o;500:241:-1:-;;604:2;592:9;583:7;579:23;575:32;572:2;;;-1:-1;;610:12;572:2;72:20;;-1:-1;;;;;5526:54;;5805:35;;5795:2;;-1:-1;;5844:12;5795:2;662:63;566:175;-1:-1;;;566:175;748:490;;;;888:2;876:9;867:7;863:23;859:32;856:2;;;-1:-1;;894:12;856:2;72:20;;-1:-1;;;;;5526:54;;5805:35;;5795:2;;-1:-1;;5844:12;5795: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;298:30;;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;850:388;;1074:2;402:17;;;;-1:-1;1148:74;;-1:-1;;;;850:388;2959:282;;5674:6;5669:3;5664;5651:30;5712:16;;5705:27;;;5712:16;3094:147;-1:-1;3094:147;3248:213;-1:-1;;;;;5526:54;;;;1316:37;;3366:2;3351:18;;3337:124;3468:324;-1:-1;;;;;5526:54;;;1316:37;;5526:54;;3778:2;3763:18;;1316:37;3614:2;3599:18;;3585:207;3799:407;3990:2;4004:47;;;1931:2;3975:18;;;5298:19;1967:34;5338:14;;;1947:55;2036:28;2022:12;;;2015:50;2084:12;;;3961:245;4213:407;4404:2;4418:47;;;2335:2;4389:18;;;5298:19;2371:34;5338:14;;;2351:55;-1:-1;;;2426:12;;;2419:46;2484:12;;;4375:245;4627:407;4818:2;4832:47;;;2735:2;4803:18;;;5298:19;2771:34;5338:14;;;2751:55;2840:34;2826:12;;;2819:56;-1:-1;;;2895:12;;;2888:26;2933:12;;;4789:245

Swarm Source

ipfs://f6b45f4d9e48332915e339393e959fc6ee030fe5434393b9b14eb5b23a001528
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.