ETH Price: $2,629.81 (-0.87%)

Contract

0x43EAbB2706deC026C844161D5Bdb1773161D3D7c
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Wrap167276512023-02-28 15:48:59579 days ago1677599339IN
0x43EAbB27...3161D3D7c
0 ETH0.0053312329.47633211
0x60806040167061012023-02-25 15:10:59582 days ago1677337859IN
 Create: UFT_Governance_Token
0 ETH0.0361737420

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UFT_Governance_Token

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-25
*/

/**
UniLend Finance Governance Contracts
*/

pragma solidity ^0.5.16;


// SPDX-License-Identifier: MIT
interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract UFT_Governance_Token {
    address public uft;

    /// @notice EIP-20 token name for this token
    string public constant name = "UniLend Finance Governance Token";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "UFTG";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply;

    /// @notice Allowance amounts on behalf of others
    mapping (address => mapping (address => uint96)) internal allowances;

    /// @notice Official record of token balances for each account
    mapping (address => uint96) internal balances;

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint96 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /**
     * @notice Construct a new UFTG token
     */
    constructor(address uft_) public {
        uft = uft_;
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint rawAmount) external returns (bool) {
        uint96 amount;
        if (rawAmount == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "UFTG::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint rawAmount) external returns (bool) {
        uint96 amount = safe96(rawAmount, "UFTG::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint96 spenderAllowance = allowances[src][spender];
        uint96 amount = safe96(rawAmount, "UFTG::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "UFTG::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "UFTG::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "UFTG::delegateBySig: invalid nonce");
        require(now <= expiry, "UFTG::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint96) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint96) {
        require(blockNumber < block.number, "UFTG::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint96 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(address src, address dst, uint96 amount) internal {
        require(src != address(0), "UFTG::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "UFTG::_transferTokens: cannot transfer to the zero address");

        balances[src] = sub96(balances[src], amount, "UFTG::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "UFTG::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

    function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint96 srcRepNew = sub96(srcRepOld, amount, "UFTG::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint96 dstRepNew = add96(dstRepOld, amount, "UFTG::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal {
      uint32 blockNumber = safe32(block.number, "UFTG::_writeCheckpoint: block number exceeds 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint n, string memory errorMessage) internal pure returns (uint96) {
        require(n < 2**96, errorMessage);
        return uint96(n);
    }

    function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        uint96 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

    function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        require(b <= a, errorMessage);
        return a - b;
    }

    function add256(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);

        return c;
    }

    function sub256(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }

    // extended code for UFT <-> UFTG 

    function unwrap(uint amount) external {
        address account = msg.sender;

        balances[account] = sub96(balances[account], uint96(amount), "UFTG::unwrap: unwrap amount exceeds spender balance");
        totalSupply = sub256(totalSupply, amount, "UFTG::unwrap: totalSupply underflows");
        emit Transfer(account, address(0), amount);

        IERC20(uft).transfer(account, amount);

        _moveDelegates(delegates[account], address(0), uint96(amount));
    }

    function wrap(address delegatee, uint amount) external {
        require(delegatee != address(0), "UFTG::_wrap: cannot delegate to zero address");

        address uft_ = uft;
        address account = msg.sender;

        uint reserveBalance = IERC20(uft_).balanceOf(address(this));
        IERC20(uft_).transferFrom(account, address(this), amount);
        amount = sub256( IERC20(uft_).balanceOf(address(this)), reserveBalance, "UFTG::wrap: amount underflows");

        balances[account] = add96(balances[account], uint96(amount), "UFTG::wrap: wrap amount overflows");
        totalSupply = add256(totalSupply, amount, "UFTG::wrap: totalSupply overflows");
        emit Transfer(address(0), account, amount);

        _delegate(account, delegatee);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"uft_","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"uft","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unwrap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"wrap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50604051611fb6380380611fb68339818101604052602081101561003357600080fd5b5051600080546001600160a01b039092166001600160a01b0319909216919091179055611f51806100656000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637ecebe00116100b8578063c3cda5201161007c578063c3cda5201461043d578063dd62ed3e14610484578063de0e9a3e146104b2578063e7a324dc146104cf578063f1127ed8146104d7578063f5bfb47b1461053157610142565b80637ecebe001461039157806395d89b41146103b7578063a9059cbb146103bf578063b4b5ea57146103eb578063bf376c7a1461041157610142565b8063313ce5671161010a578063313ce5671461025c578063587cde1e1461027a5780635c19a95c146102bc5780636fcfff45146102e457806370a0823114610323578063782d6fe11461034957610142565b806306fdde0314610147578063095ea7b3146101c457806318160ddd1461020457806320606b701461021e57806323b872dd14610226575b600080fd5b61014f610539565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b038135169060200135610572565b604080519115158252519081900360200190f35b61020c610630565b60408051918252519081900360200190f35b61020c610636565b6101f06004803603606081101561023c57600080fd5b506001600160a01b03813581169160208101359091169060400135610651565b610264610796565b6040805160ff9092168252519081900360200190f35b6102a06004803603602081101561029057600080fd5b50356001600160a01b031661079b565b604080516001600160a01b039092168252519081900360200190f35b6102e2600480360360208110156102d257600080fd5b50356001600160a01b03166107b6565b005b61030a600480360360208110156102fa57600080fd5b50356001600160a01b03166107c3565b6040805163ffffffff9092168252519081900360200190f35b61020c6004803603602081101561033957600080fd5b50356001600160a01b03166107db565b6103756004803603604081101561035f57600080fd5b506001600160a01b0381351690602001356107ff565b604080516001600160601b039092168252519081900360200190f35b61020c600480360360208110156103a757600080fd5b50356001600160a01b0316610a2c565b61014f610a3e565b6101f0600480360360408110156103d557600080fd5b506001600160a01b038135169060200135610a5e565b6103756004803603602081101561040157600080fd5b50356001600160a01b0316610a9a565b6102e26004803603604081101561042757600080fd5b506001600160a01b038135169060200135610b0b565b6102e2600480360360c081101561045357600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610e28565b61020c6004803603604081101561049a57600080fd5b506001600160a01b03813581169160200135166110e4565b6102e2600480360360208110156104c857600080fd5b5035611118565b61020c6112bb565b610509600480360360408110156104ed57600080fd5b5080356001600160a01b0316906020013563ffffffff166112d6565b6040805163ffffffff90931683526001600160601b0390911660208301528051918290030190f35b6102a061130b565b6040518060400160405280602081526020017f556e694c656e642046696e616e636520476f7665726e616e636520546f6b656e81525081565b60008060001983141561058857506000196105ad565b6105aa83604051806060016040528060258152602001611cd66025913961131a565b90505b3360008181526002602090815260408083206001600160a01b0389168085529083529281902080546001600160601b0319166001600160601b038716908117909155815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150505b92915050565b60015481565b604051806043611db982396043019050604051809103902081565b6001600160a01b03831660009081526002602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b039091169285926106a99288929190611cd69083013961131a565b9050866001600160a01b0316836001600160a01b0316141580156106d657506001600160601b0382811614155b1561077e57600061070083836040518060600160405280603d8152602001611e5d603d91396113b4565b6001600160a01b038981166000818152600260209081526040808320948a168084529482529182902080546001600160601b0319166001600160601b03871690811790915582519081529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b610789878783611421565b5060019695505050505050565b601281565b6004602052600090815260409020546001600160a01b031681565b6107c03382611606565b50565b60066020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600360205260409020546001600160601b031690565b600043821061083f5760405162461bcd60e51b8152600401808060200182810382526027815260200180611c336027913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205463ffffffff168061086d57600091505061062a565b6001600160a01b038416600090815260056020908152604080832063ffffffff6000198601811685529252909120541683106108e9576001600160a01b03841660009081526005602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b0316905061062a565b6001600160a01b038416600090815260056020908152604080832083805290915290205463ffffffff1683101561092457600091505061062a565b600060001982015b8163ffffffff168163ffffffff1611156109e757600282820363ffffffff16048103610956611b47565b506001600160a01b038716600090815260056020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b031691810191909152908714156109c25760200151945061062a9350505050565b805163ffffffff168711156109d9578193506109e0565b6001820392505b505061092c565b506001600160a01b038516600090815260056020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60076020526000908152604090205481565b604051806040016040528060048152602001635546544760e01b81525081565b600080610a8383604051806060016040528060268152602001611c806026913961131a565b9050610a90338583611421565b5060019392505050565b6001600160a01b03811660009081526006602052604081205463ffffffff1680610ac5576000610b04565b6001600160a01b0383166000908152600560209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b6001600160a01b038216610b505760405162461bcd60e51b815260040180806020018281038252602c815260200180611d8d602c913960400191505060405180910390fd5b60008054604080516370a0823160e01b815230600482015290516001600160a01b03909216923392909184916370a0823191602480820192602092909190829003018186803b158015610ba257600080fd5b505afa158015610bb6573d6000803e3d6000fd5b505050506040513d6020811015610bcc57600080fd5b5051604080516323b872dd60e01b81526001600160a01b038581166004830152306024830152604482018890529151929350908516916323b872dd916064808201926020929091908290030181600087803b158015610c2a57600080fd5b505af1158015610c3e573d6000803e3d6000fd5b505050506040513d6020811015610c5457600080fd5b5050604080516370a0823160e01b81523060048201529051610d08916001600160a01b038616916370a0823191602480820192602092909190829003018186803b158015610ca157600080fd5b505afa158015610cb5573d6000803e3d6000fd5b505050506040513d6020811015610ccb57600080fd5b505160408051808201909152601d81527f554654473a3a777261703a20616d6f756e7420756e646572666c6f777300000060208201528390611690565b9350610d6560036000846001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a90046001600160601b031685604051806060016040528060218152602001611ed4602191396116e2565b60036000846001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b03160217905550610dd360015485604051806060016040528060218152602001611bec6021913961174c565b6001556040805185815290516001600160a01b038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3610e218286611606565b5050505050565b60006040518080611db9604391396040805191829003604301822082820190915260208083527f556e694c656e642046696e616e636520476f7665726e616e636520546f6b656e92019190915290507f659173b07cf57ce0b42b6b821db9972dd5416cf0f31ef25883580153a9adc6eb610ea06117a1565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405160208183030381529060405280519060200120905060006040518080611e9a603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa158015610fde573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166110305760405162461bcd60e51b8152600401808060200182810382526026815260200180611c5a6026913960400191505060405180910390fd5b6001600160a01b0381166000908152600760205260409020805460018101909155891461108e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611d2f6022913960400191505060405180910390fd5b874211156110cd5760405162461bcd60e51b8152600401808060200182810382526026815260200180611c0d6026913960400191505060405180910390fd5b6110d7818b611606565b505050505b505050505050565b6001600160a01b0391821660009081526002602090815260408083209390941682529190915220546001600160601b031690565b3360008181526003602090815260409182902054825160608101909352603380845261115a936001600160601b039092169286929190611b5f908301396113b4565b60036000836001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055506111c860015483604051806060016040528060248152602001611bc860249139611690565b6001556040805183815290516000916001600160a01b038416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3600080546040805163a9059cbb60e01b81526001600160a01b038581166004830152602482018790529151919092169263a9059cbb92604480820193602093909283900390910190829087803b15801561126557600080fd5b505af1158015611279573d6000803e3d6000fd5b505050506040513d602081101561128f57600080fd5b50506001600160a01b038082166000908152600460205260408120546112b7921690846117a5565b5050565b60405180603a611e9a8239603a019050604051809103902081565b600560209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6000546001600160a01b031681565b600081600160601b84106113ac5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611371578181015183820152602001611359565b50505050905090810190601f16801561139e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b6000836001600160601b0316836001600160601b0316111582906114195760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611371578181015183820152602001611359565b505050900390565b6001600160a01b0383166114665760405162461bcd60e51b815260040180806020018281038252603c815260200180611d51603c913960400191505060405180910390fd5b6001600160a01b0382166114ab5760405162461bcd60e51b815260040180806020018281038252603a815260200180611dfc603a913960400191505060405180910390fd5b6001600160a01b0383166000908152600360209081526040918290205482516060810190935260368084526114f6936001600160601b039092169285929190611b92908301396113b4565b6001600160a01b03848116600090815260036020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352603080845261155e9491909116928592909190611ca6908301396116e2565b6001600160a01b0383811660008181526003602090815260409182902080546001600160601b0319166001600160601b039687161790558151948616855290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36001600160a01b03808416600090815260046020526040808220548584168352912054611601929182169116836117a5565b505050565b6001600160a01b03808316600081815260046020818152604080842080546003845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461168a8284836117a5565b50505050565b600081848411156114195760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611371578181015183820152602001611359565b6000838301826001600160601b0380871690831610156117435760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611371578181015183820152602001611359565b50949350505050565b600083830182858210156117435760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611371578181015183820152602001611359565b4690565b816001600160a01b0316836001600160a01b0316141580156117d057506000816001600160601b0316115b15611601576001600160a01b03831615611888576001600160a01b03831660009081526006602052604081205463ffffffff16908161181057600061184f565b6001600160a01b0385166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006118768285604051806060016040528060288152602001611ef5602891396113b4565b905061188486848484611933565b5050505b6001600160a01b03821615611601576001600160a01b03821660009081526006602052604081205463ffffffff1690816118c3576000611902565b6001600160a01b0384166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006119298285604051806060016040528060278152602001611e36602791396116e2565b90506110dc858484845b600061195743604051806060016040528060348152602001611cfb60349139611af2565b905060008463ffffffff161180156119a057506001600160a01b038516600090815260056020908152604080832063ffffffff6000198901811685529252909120548282169116145b156119ff576001600160a01b0385166000908152600560209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611a9e565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600583528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600690935292909220805460018801909316929091169190911790555b604080516001600160601b0380861682528416602082015281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081600160201b84106113ac5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611371578181015183820152602001611359565b60408051808201909152600080825260208201529056fe554654473a3a756e777261703a20756e7772617020616d6f756e742065786365656473207370656e6465722062616c616e6365554654473a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365554654473a3a756e777261703a20746f74616c537570706c7920756e646572666c6f7773554654473a3a777261703a20746f74616c537570706c79206f766572666c6f7773554654473a3a64656c656761746542795369673a207369676e61747572652065787069726564554654473a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564554654473a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265554654473a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473554654473a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773554654473a3a617070726f76653a20616d6f756e7420657863656564732039362062697473554654473a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473554654473a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365554654473a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f2061646472657373554654473a3a5f777261703a2063616e6e6f742064656c656761746520746f207a65726f2061646472657373454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429554654473a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f2061646472657373554654473a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773554654473a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929554654473a3a777261703a207772617020616d6f756e74206f766572666c6f7773554654473a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773a265627a7a723158207fcf52abd1a6afc4fcad3b8a1f21f3c44f9c6677281455b9c2bf486142660d9a64736f6c634300051000320000000000000000000000000202be363b8a4820f3f4de7faf5224ff05943ab1

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80637ecebe00116100b8578063c3cda5201161007c578063c3cda5201461043d578063dd62ed3e14610484578063de0e9a3e146104b2578063e7a324dc146104cf578063f1127ed8146104d7578063f5bfb47b1461053157610142565b80637ecebe001461039157806395d89b41146103b7578063a9059cbb146103bf578063b4b5ea57146103eb578063bf376c7a1461041157610142565b8063313ce5671161010a578063313ce5671461025c578063587cde1e1461027a5780635c19a95c146102bc5780636fcfff45146102e457806370a0823114610323578063782d6fe11461034957610142565b806306fdde0314610147578063095ea7b3146101c457806318160ddd1461020457806320606b701461021e57806323b872dd14610226575b600080fd5b61014f610539565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b038135169060200135610572565b604080519115158252519081900360200190f35b61020c610630565b60408051918252519081900360200190f35b61020c610636565b6101f06004803603606081101561023c57600080fd5b506001600160a01b03813581169160208101359091169060400135610651565b610264610796565b6040805160ff9092168252519081900360200190f35b6102a06004803603602081101561029057600080fd5b50356001600160a01b031661079b565b604080516001600160a01b039092168252519081900360200190f35b6102e2600480360360208110156102d257600080fd5b50356001600160a01b03166107b6565b005b61030a600480360360208110156102fa57600080fd5b50356001600160a01b03166107c3565b6040805163ffffffff9092168252519081900360200190f35b61020c6004803603602081101561033957600080fd5b50356001600160a01b03166107db565b6103756004803603604081101561035f57600080fd5b506001600160a01b0381351690602001356107ff565b604080516001600160601b039092168252519081900360200190f35b61020c600480360360208110156103a757600080fd5b50356001600160a01b0316610a2c565b61014f610a3e565b6101f0600480360360408110156103d557600080fd5b506001600160a01b038135169060200135610a5e565b6103756004803603602081101561040157600080fd5b50356001600160a01b0316610a9a565b6102e26004803603604081101561042757600080fd5b506001600160a01b038135169060200135610b0b565b6102e2600480360360c081101561045357600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610e28565b61020c6004803603604081101561049a57600080fd5b506001600160a01b03813581169160200135166110e4565b6102e2600480360360208110156104c857600080fd5b5035611118565b61020c6112bb565b610509600480360360408110156104ed57600080fd5b5080356001600160a01b0316906020013563ffffffff166112d6565b6040805163ffffffff90931683526001600160601b0390911660208301528051918290030190f35b6102a061130b565b6040518060400160405280602081526020017f556e694c656e642046696e616e636520476f7665726e616e636520546f6b656e81525081565b60008060001983141561058857506000196105ad565b6105aa83604051806060016040528060258152602001611cd66025913961131a565b90505b3360008181526002602090815260408083206001600160a01b0389168085529083529281902080546001600160601b0319166001600160601b038716908117909155815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150505b92915050565b60015481565b604051806043611db982396043019050604051809103902081565b6001600160a01b03831660009081526002602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b039091169285926106a99288929190611cd69083013961131a565b9050866001600160a01b0316836001600160a01b0316141580156106d657506001600160601b0382811614155b1561077e57600061070083836040518060600160405280603d8152602001611e5d603d91396113b4565b6001600160a01b038981166000818152600260209081526040808320948a168084529482529182902080546001600160601b0319166001600160601b03871690811790915582519081529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b610789878783611421565b5060019695505050505050565b601281565b6004602052600090815260409020546001600160a01b031681565b6107c03382611606565b50565b60066020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600360205260409020546001600160601b031690565b600043821061083f5760405162461bcd60e51b8152600401808060200182810382526027815260200180611c336027913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205463ffffffff168061086d57600091505061062a565b6001600160a01b038416600090815260056020908152604080832063ffffffff6000198601811685529252909120541683106108e9576001600160a01b03841660009081526005602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b0316905061062a565b6001600160a01b038416600090815260056020908152604080832083805290915290205463ffffffff1683101561092457600091505061062a565b600060001982015b8163ffffffff168163ffffffff1611156109e757600282820363ffffffff16048103610956611b47565b506001600160a01b038716600090815260056020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b031691810191909152908714156109c25760200151945061062a9350505050565b805163ffffffff168711156109d9578193506109e0565b6001820392505b505061092c565b506001600160a01b038516600090815260056020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60076020526000908152604090205481565b604051806040016040528060048152602001635546544760e01b81525081565b600080610a8383604051806060016040528060268152602001611c806026913961131a565b9050610a90338583611421565b5060019392505050565b6001600160a01b03811660009081526006602052604081205463ffffffff1680610ac5576000610b04565b6001600160a01b0383166000908152600560209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b6001600160a01b038216610b505760405162461bcd60e51b815260040180806020018281038252602c815260200180611d8d602c913960400191505060405180910390fd5b60008054604080516370a0823160e01b815230600482015290516001600160a01b03909216923392909184916370a0823191602480820192602092909190829003018186803b158015610ba257600080fd5b505afa158015610bb6573d6000803e3d6000fd5b505050506040513d6020811015610bcc57600080fd5b5051604080516323b872dd60e01b81526001600160a01b038581166004830152306024830152604482018890529151929350908516916323b872dd916064808201926020929091908290030181600087803b158015610c2a57600080fd5b505af1158015610c3e573d6000803e3d6000fd5b505050506040513d6020811015610c5457600080fd5b5050604080516370a0823160e01b81523060048201529051610d08916001600160a01b038616916370a0823191602480820192602092909190829003018186803b158015610ca157600080fd5b505afa158015610cb5573d6000803e3d6000fd5b505050506040513d6020811015610ccb57600080fd5b505160408051808201909152601d81527f554654473a3a777261703a20616d6f756e7420756e646572666c6f777300000060208201528390611690565b9350610d6560036000846001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a90046001600160601b031685604051806060016040528060218152602001611ed4602191396116e2565b60036000846001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b03160217905550610dd360015485604051806060016040528060218152602001611bec6021913961174c565b6001556040805185815290516001600160a01b038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3610e218286611606565b5050505050565b60006040518080611db9604391396040805191829003604301822082820190915260208083527f556e694c656e642046696e616e636520476f7665726e616e636520546f6b656e92019190915290507f659173b07cf57ce0b42b6b821db9972dd5416cf0f31ef25883580153a9adc6eb610ea06117a1565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405160208183030381529060405280519060200120905060006040518080611e9a603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa158015610fde573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166110305760405162461bcd60e51b8152600401808060200182810382526026815260200180611c5a6026913960400191505060405180910390fd5b6001600160a01b0381166000908152600760205260409020805460018101909155891461108e5760405162461bcd60e51b8152600401808060200182810382526022815260200180611d2f6022913960400191505060405180910390fd5b874211156110cd5760405162461bcd60e51b8152600401808060200182810382526026815260200180611c0d6026913960400191505060405180910390fd5b6110d7818b611606565b505050505b505050505050565b6001600160a01b0391821660009081526002602090815260408083209390941682529190915220546001600160601b031690565b3360008181526003602090815260409182902054825160608101909352603380845261115a936001600160601b039092169286929190611b5f908301396113b4565b60036000836001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055506111c860015483604051806060016040528060248152602001611bc860249139611690565b6001556040805183815290516000916001600160a01b038416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3600080546040805163a9059cbb60e01b81526001600160a01b038581166004830152602482018790529151919092169263a9059cbb92604480820193602093909283900390910190829087803b15801561126557600080fd5b505af1158015611279573d6000803e3d6000fd5b505050506040513d602081101561128f57600080fd5b50506001600160a01b038082166000908152600460205260408120546112b7921690846117a5565b5050565b60405180603a611e9a8239603a019050604051809103902081565b600560209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6000546001600160a01b031681565b600081600160601b84106113ac5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611371578181015183820152602001611359565b50505050905090810190601f16801561139e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b6000836001600160601b0316836001600160601b0316111582906114195760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611371578181015183820152602001611359565b505050900390565b6001600160a01b0383166114665760405162461bcd60e51b815260040180806020018281038252603c815260200180611d51603c913960400191505060405180910390fd5b6001600160a01b0382166114ab5760405162461bcd60e51b815260040180806020018281038252603a815260200180611dfc603a913960400191505060405180910390fd5b6001600160a01b0383166000908152600360209081526040918290205482516060810190935260368084526114f6936001600160601b039092169285929190611b92908301396113b4565b6001600160a01b03848116600090815260036020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352603080845261155e9491909116928592909190611ca6908301396116e2565b6001600160a01b0383811660008181526003602090815260409182902080546001600160601b0319166001600160601b039687161790558151948616855290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36001600160a01b03808416600090815260046020526040808220548584168352912054611601929182169116836117a5565b505050565b6001600160a01b03808316600081815260046020818152604080842080546003845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461168a8284836117a5565b50505050565b600081848411156114195760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611371578181015183820152602001611359565b6000838301826001600160601b0380871690831610156117435760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611371578181015183820152602001611359565b50949350505050565b600083830182858210156117435760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611371578181015183820152602001611359565b4690565b816001600160a01b0316836001600160a01b0316141580156117d057506000816001600160601b0316115b15611601576001600160a01b03831615611888576001600160a01b03831660009081526006602052604081205463ffffffff16908161181057600061184f565b6001600160a01b0385166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006118768285604051806060016040528060288152602001611ef5602891396113b4565b905061188486848484611933565b5050505b6001600160a01b03821615611601576001600160a01b03821660009081526006602052604081205463ffffffff1690816118c3576000611902565b6001600160a01b0384166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006119298285604051806060016040528060278152602001611e36602791396116e2565b90506110dc858484845b600061195743604051806060016040528060348152602001611cfb60349139611af2565b905060008463ffffffff161180156119a057506001600160a01b038516600090815260056020908152604080832063ffffffff6000198901811685529252909120548282169116145b156119ff576001600160a01b0385166000908152600560209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611a9e565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600583528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600690935292909220805460018801909316929091169190911790555b604080516001600160601b0380861682528416602082015281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081600160201b84106113ac5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611371578181015183820152602001611359565b60408051808201909152600080825260208201529056fe554654473a3a756e777261703a20756e7772617020616d6f756e742065786365656473207370656e6465722062616c616e6365554654473a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365554654473a3a756e777261703a20746f74616c537570706c7920756e646572666c6f7773554654473a3a777261703a20746f74616c537570706c79206f766572666c6f7773554654473a3a64656c656761746542795369673a207369676e61747572652065787069726564554654473a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564554654473a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265554654473a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473554654473a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773554654473a3a617070726f76653a20616d6f756e7420657863656564732039362062697473554654473a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473554654473a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365554654473a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f2061646472657373554654473a3a5f777261703a2063616e6e6f742064656c656761746520746f207a65726f2061646472657373454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429554654473a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f2061646472657373554654473a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773554654473a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636544656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929554654473a3a777261703a207772617020616d6f756e74206f766572666c6f7773554654473a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773a265627a7a723158207fcf52abd1a6afc4fcad3b8a1f21f3c44f9c6677281455b9c2bf486142660d9a64736f6c63430005100032

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

0000000000000000000000000202be363b8a4820f3f4de7faf5224ff05943ab1

-----Decoded View---------------
Arg [0] : uft_ (address): 0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000202be363b8a4820f3f4de7faf5224ff05943ab1


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.