ETH Price: $3,254.46 (-2.19%)
 

Overview

Max Total Supply

24 Nova

Holders

24

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
1 Nova

Value
$0.00
0xda6c8b3120a7a130ea58f52889a1180daf3250ae
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:
Nova

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2021-08-26
*/

pragma solidity 0.8.0;


interface INovaDao {
  function initNova() external;
}

contract Nova {
    string public constant name = "NovaDao Token For GOV";

    string public constant symbol = "Nova";

    uint8 public constant decimals = 0;

    uint public totalSupply; 

    address immutable public dao;

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

    // 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;

    bytes32 public immutable domainSeparator;

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

    constructor(address _dao) {
      dao = _dao;
      INovaDao(_dao).initNova();

      domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), block.chainid, address(this)));
    }

    function mint(address account, uint96 amount) public {
      require(msg.sender == dao, "no permission");
      _mint(account, amount);
    }

    function burn(address account, uint96 amount) public {
      require(msg.sender == dao, "no permission");
      _burn(account, amount);
    }

    /**
     * @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 == type(uint).max) {
            amount = type(uint96).max;
        } else {
            amount = safe96(rawAmount, "Nova::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, "Nova::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, "Nova::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != type(uint96).max) {
            uint96 newAllowance = spenderAllowance - amount;
            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 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), "Nova::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Nova::delegateBySig: invalid nonce");
        require(block.timestamp <= expiry, "Nova::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, "Nova::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), "Nova::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "Nova::_transferTokens: cannot transfer to the zero address");

        balances[src] = balances[src] - amount;
        balances[dst] = balances[dst] + amount;
        emit Transfer(src, dst, amount);

        if(delegates[dst] == address(0)) {
          delegates[dst] = dst;
        } 

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

    function _mint(address account, uint96 amount) internal {
      require(account != address(0), "ERC20: mint to the zero address");
      if (amount == 0) {
        return ;
      }

      totalSupply = totalSupply + amount;

      balances[account] = balances[account] + amount;
      emit Transfer(address(0), account, amount);

      if(delegates[account] == address(0)) {
        delegates[account] = account;
      } 
      _moveDelegates(address(0), delegates[account], amount);
      
    }


    function _burn(address account, uint96 amount) internal {
      require(account != address(0), "ERC20:  to the zero address");
      if (amount == 0) {
        return ;
      }

      require(totalSupply >= amount, "Sub Error");
      totalSupply = totalSupply - amount;

      balances[account] = balances[account] - amount;
      emit Transfer(account, address(0), amount);

      _moveDelegates(delegates[account], address(0), 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 = srcRepOld - amount;
                _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 = dstRepOld + amount;
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal {
      uint32 blockNumber = safe32(block.number, "Nova::_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);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_dao","type":"address"}],"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"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint96","name":"amount","type":"uint96"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dao","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"domainSeparator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint96","name":"amount","type":"uint96"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b5060405162001de538038062001de5833981016040819052620000349162000152565b806001600160a01b03166080816001600160a01b031660601b81525050806001600160a01b03166308d78e556040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156200008d57600080fd5b505af1158015620000a2573d6000803e3d6000fd5b5050604080518082018252601581527f4e6f766144616f20546f6b656e20466f7220474f56000000000000000000000060209182015290516200013093507f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86692507f603120f46975ccf74da2a33167beaacaf647d6fd640763d9967b22a1f8ce6d2c91469130910162000182565b60408051601f19818403018152919052805160209091012060a05250620001a6565b60006020828403121562000164578081fd5b81516001600160a01b03811681146200017b578182fd5b9392505050565b938452602084019290925260408301526001600160a01b0316606082015260800190565b60805160601c60a051611c01620001e460003960008181610a3a0152610c08015260008181610429015281816105d601526108c40152611c016000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b4b5ea571161007c578063b4b5ea57146102b9578063c3cda520146102cc578063dd62ed3e146102df578063e7a324dc146102f2578063f1127ed8146102fa578063f698da251461031b5761014d565b806370a0823114610245578063782d6fe1146102585780637ecebe00146102785780638df2c8e61461028b57806395d89b411461029e578063a9059cbb146102a65761014d565b806323b872dd1161011557806323b872dd146101c2578063313ce567146101d55780634162169f146101ea578063587cde1e146101ff5780635c19a95c146102125780636fcfff45146102255761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101905780631b025a40146101a557806320606b70146101ba575b600080fd5b61015a610323565b60405161016791906116e8565b60405180910390f35b61018361017e366004611568565b610354565b6040516101679190611692565b610198610418565b604051610167919061169d565b6101b86101b336600461162d565b61041e565b005b61019861047d565b6101836101d036600461152d565b6104a1565b6101dd6105cf565b60405161016791906119f2565b6101f26105d4565b604051610167919061167e565b6101f261020d3660046114e1565b6105f8565b6101b86102203660046114e1565b610613565b6102386102333660046114e1565b610620565b60405161016791906119c2565b6101986102533660046114e1565b610638565b61026b610266366004611568565b610660565b6040516101679190611a00565b6101986102863660046114e1565b6108a7565b6101b861029936600461162d565b6108b9565b61015a61090b565b6101836102b4366004611568565b61092b565b61026b6102c73660046114e1565b610967565b6101b86102da366004611591565b6109e5565b6101986102ed3660046114fb565b610b79565b610198610bad565b61030d6103083660046115ef565b610bd1565b6040516101679291906119d3565b610198610c06565b604051806040016040528060158152602001742737bb30a230b7902a37b5b2b7102337b91023a7ab60591b81525081565b60008060001983141561036f57506001600160601b03610394565b61039183604051806060016040528060258152602001611b8160259139610c2a565b90505b3360008181526001602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610404908590611a00565b60405180910390a360019150505b92915050565b60005481565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461046f5760405162461bcd60e51b81526004016104669061173b565b60405180910390fd5b6104798282610c59565b5050565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b03831660009081526001602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b039091169285926104f99288929190611b8190830139610c2a565b9050866001600160a01b0316836001600160a01b03161415801561052657506001600160601b0382811614155b156105b75760006105378284611afb565b6001600160a01b038981166000818152600160209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105ad908590611a00565b60405180910390a3505b6105c2878783610db8565b5060019695505050505050565b600081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6003602052600090815260409020546001600160a01b031681565b61061d3382610f6d565b50565b60056020526000908152604090205463ffffffff1681565b6001600160a01b0381166000908152600260205260409020546001600160601b03165b919050565b60004382106106815760405162461bcd60e51b8152600401610466906118c7565b6001600160a01b03831660009081526005602052604090205463ffffffff16806106af576000915050610412565b6001600160a01b038416600090815260046020526040812084916106d4600185611ad6565b63ffffffff90811682526020820192909252604001600020541611610747576001600160a01b038416600090815260046020526040812090610717600184611ad6565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b031691506104129050565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff16831015610782576000915050610412565b600080610790600184611ad6565b90505b8163ffffffff168163ffffffff16111561086257600060026107b58484611ad6565b6107bf9190611a90565b6107c99083611ad6565b6001600160a01b038816600090815260046020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b031691810191909152919250871415610836576020015194506104129350505050565b805163ffffffff1687111561084d5781935061085b565b610858600183611ad6565b92505b5050610793565b506001600160a01b038516600090815260046020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60066020526000908152604090205481565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109015760405162461bcd60e51b81526004016104669061173b565b6104798282610ff7565b604051806040016040528060048152602001634e6f766160e01b81525081565b60008061095083604051806060016040528060268152602001611ba660269139610c2a565b905061095d338583610db8565b5060019392505050565b6001600160a01b03811660009081526005602052604081205463ffffffff16806109925760006109de565b6001600160a01b0383166000908152600460205260408120906109b6600184611ad6565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b9392505050565b60007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf878787604051602001610a1e94939291906116a6565b60405160208183030381529060405280519060200120905060007f000000000000000000000000000000000000000000000000000000000000000082604051602001610a6b929190611663565b604051602081830303815290604052805190602001209050600060018287878760405160008152602001604052604051610aa894939291906116ca565b6020604051602081039080840390855afa158015610aca573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610afd5760405162461bcd60e51b815260040161046690611881565b6001600160a01b0381166000908152600660205260408120805491610b2183611b1b565b919050558814610b435760405162461bcd60e51b815260040161046690611762565b86421115610b635760405162461bcd60e51b815260040161046690611945565b610b6d818a610f6d565b5050505b505050505050565b6001600160a01b0391821660009081526001602090815260408083209390941682529190915220546001600160601b031690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600460209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b7f000000000000000000000000000000000000000000000000000000000000000081565b600081600160601b8410610c515760405162461bcd60e51b815260040161046691906116e8565b509192915050565b6001600160a01b038216610c7f5760405162461bcd60e51b81526004016104669061198b565b6001600160601b038116610c9257610479565b806001600160601b0316600054610ca99190611a2e565b60009081556001600160a01b038316815260026020526040902054610cd89082906001600160601b0316611a6e565b6001600160a01b03831660008181526002602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d42908590611a00565b60405180910390a36001600160a01b0382811660009081526003602052604090205416610d93576001600160a01b038216600081815260036020526040902080546001600160a01b03191690911790555b6001600160a01b03808316600090815260036020526040812054610479921683611132565b6001600160a01b038316610dde5760405162461bcd60e51b8152600401610466906117a4565b6001600160a01b038216610e045760405162461bcd60e51b815260040161046690611824565b6001600160a01b038316600090815260026020526040902054610e319082906001600160601b0316611afb565b6001600160a01b0384811660009081526002602052604080822080546001600160601b0319166001600160601b0395861617905591851681522054610e7891839116611a6e565b6001600160a01b038381166000818152600260205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ee5908590611a00565b60405180910390a36001600160a01b0382811660009081526003602052604090205416610f36576001600160a01b038216600081815260036020526040902080546001600160a01b03191690911790555b6001600160a01b03808416600090815260036020526040808220548584168352912054610f6892918216911683611132565b505050565b6001600160a01b03808316600081815260036020818152604080842080546002845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610ff1828483611132565b50505050565b6001600160a01b03821661101d5760405162461bcd60e51b81526004016104669061190e565b6001600160601b03811661103057610479565b806001600160601b0316600054101561105b5760405162461bcd60e51b815260040161046690611801565b806001600160601b03166000546110729190611abf565b60009081556001600160a01b0383168152600260205260409020546110a19082906001600160601b0316611afb565b6001600160a01b03831660008181526002602052604080822080546001600160601b0319166001600160601b03959095169490941790935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611108908590611a00565b60405180910390a36001600160a01b03808316600090815260036020526040812054610479921690835b816001600160a01b0316836001600160a01b03161415801561115d57506000816001600160601b0316115b15610f68576001600160a01b03831615611209576001600160a01b03831660009081526005602052604081205463ffffffff16908161119d5760006111e9565b6001600160a01b0385166000908152600460205260408120906111c1600185611ad6565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b905060006111f78483611afb565b9050611205868484846112a8565b5050505b6001600160a01b03821615610f68576001600160a01b03821660009081526005602052604081205463ffffffff169081611244576000611290565b6001600160a01b038416600090815260046020526040812090611268600185611ad6565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b9050600061129e8483611a6e565b9050610b71858484845b60006112cc43604051806060016040528060348152602001611b4d603491396114a3565b905060008463ffffffff1611801561132657506001600160a01b038516600090815260046020526040812063ffffffff83169161130a600188611ad6565b63ffffffff908116825260208201929092526040016000205416145b1561139a576001600160a01b03851660009081526004602052604081208391611350600188611ad6565b63ffffffff168152602081019190915260400160002080546001600160601b0392909216600160201b026fffffffffffffffffffffffff0000000019909216919091179055611459565b60408051808201825263ffffffff83811682526001600160601b0385811660208085019182526001600160a01b038b166000908152600482528681208b861682529091529490942092518354945163ffffffff199095169216919091176fffffffffffffffffffffffff000000001916600160201b9390911692909202919091179055611428846001611a46565b6001600160a01b0386166000908152600560205260409020805463ffffffff191663ffffffff929092169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611494929190611a14565b60405180910390a25050505050565b600081600160201b8410610c515760405162461bcd60e51b815260040161046691906116e8565b80356001600160a01b038116811461065b57600080fd5b6000602082840312156114f2578081fd5b6109de826114ca565b6000806040838503121561150d578081fd5b611516836114ca565b9150611524602084016114ca565b90509250929050565b600080600060608486031215611541578081fd5b61154a846114ca565b9250611558602085016114ca565b9150604084013590509250925092565b6000806040838503121561157a578182fd5b611583836114ca565b946020939093013593505050565b60008060008060008060c087890312156115a9578182fd5b6115b2876114ca565b95506020870135945060408701359350606087013560ff811681146115d5578283fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611601578182fd5b61160a836114ca565b9150602083013563ffffffff81168114611622578182fd5b809150509250929050565b6000806040838503121561163f578182fd5b611648836114ca565b915060208301356001600160601b0381168114611622578182fd5b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611714578581018301518582016040015282016116f8565b818111156117255783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600d908201526c3737903832b936b4b9b9b4b7b760991b604082015260600190565b60208082526022908201527f4e6f76613a3a64656c656761746542795369673a20696e76616c6964206e6f6e604082015261636560f01b606082015260800190565b6020808252603c908201527f4e6f76613a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e736665722066726f6d20746865207a65726f206164647265737300000000606082015260800190565b60208082526009908201526829bab11022b93937b960b91b604082015260600190565b6020808252603a908201527f4e6f76613a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e7366657220746f20746865207a65726f2061646472657373000000000000606082015260800190565b60208082526026908201527f4e6f76613a3a64656c656761746542795369673a20696e76616c6964207369676040820152656e617475726560d01b606082015260800190565b60208082526027908201527f4e6f76613a3a6765745072696f72566f7465733a206e6f742079657420646574604082015266195c9b5a5b995960ca1b606082015260800190565b6020808252601b908201527f45524332303a2020746f20746865207a65726f20616464726573730000000000604082015260600190565b60208082526026908201527f4e6f76613a3a64656c656761746542795369673a207369676e617475726520656040820152651e1c1a5c995960d21b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0392831681529116602082015260400190565b60008219821115611a4157611a41611b36565b500190565b600063ffffffff808316818516808303821115611a6557611a65611b36565b01949350505050565b60006001600160601b03808316818516808303821115611a6557611a65611b36565b600063ffffffff80841680611ab357634e487b7160e01b83526012600452602483fd5b92169190910492915050565b600082821015611ad157611ad1611b36565b500390565b600063ffffffff83811690831681811015611af357611af3611b36565b039392505050565b60006001600160601b0383811690831681811015611af357611af3611b36565b6000600019821415611b2f57611b2f611b36565b5060010190565b634e487b7160e01b600052601160045260246000fdfe4e6f76613a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734e6f76613a3a617070726f76653a20616d6f756e74206578636565647320393620626974734e6f76613a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473a264697066735822122024e7e238f77aebfb86a9e150b6b1aed27304defb7369eeccbdcbec607e40d9a364736f6c6343000800003300000000000000000000000006d44f7530294de55f9f6990df4175ca0769050d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063b4b5ea571161007c578063b4b5ea57146102b9578063c3cda520146102cc578063dd62ed3e146102df578063e7a324dc146102f2578063f1127ed8146102fa578063f698da251461031b5761014d565b806370a0823114610245578063782d6fe1146102585780637ecebe00146102785780638df2c8e61461028b57806395d89b411461029e578063a9059cbb146102a65761014d565b806323b872dd1161011557806323b872dd146101c2578063313ce567146101d55780634162169f146101ea578063587cde1e146101ff5780635c19a95c146102125780636fcfff45146102255761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101905780631b025a40146101a557806320606b70146101ba575b600080fd5b61015a610323565b60405161016791906116e8565b60405180910390f35b61018361017e366004611568565b610354565b6040516101679190611692565b610198610418565b604051610167919061169d565b6101b86101b336600461162d565b61041e565b005b61019861047d565b6101836101d036600461152d565b6104a1565b6101dd6105cf565b60405161016791906119f2565b6101f26105d4565b604051610167919061167e565b6101f261020d3660046114e1565b6105f8565b6101b86102203660046114e1565b610613565b6102386102333660046114e1565b610620565b60405161016791906119c2565b6101986102533660046114e1565b610638565b61026b610266366004611568565b610660565b6040516101679190611a00565b6101986102863660046114e1565b6108a7565b6101b861029936600461162d565b6108b9565b61015a61090b565b6101836102b4366004611568565b61092b565b61026b6102c73660046114e1565b610967565b6101b86102da366004611591565b6109e5565b6101986102ed3660046114fb565b610b79565b610198610bad565b61030d6103083660046115ef565b610bd1565b6040516101679291906119d3565b610198610c06565b604051806040016040528060158152602001742737bb30a230b7902a37b5b2b7102337b91023a7ab60591b81525081565b60008060001983141561036f57506001600160601b03610394565b61039183604051806060016040528060258152602001611b8160259139610c2a565b90505b3360008181526001602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610404908590611a00565b60405180910390a360019150505b92915050565b60005481565b336001600160a01b037f00000000000000000000000006d44f7530294de55f9f6990df4175ca0769050d161461046f5760405162461bcd60e51b81526004016104669061173b565b60405180910390fd5b6104798282610c59565b5050565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b03831660009081526001602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b039091169285926104f99288929190611b8190830139610c2a565b9050866001600160a01b0316836001600160a01b03161415801561052657506001600160601b0382811614155b156105b75760006105378284611afb565b6001600160a01b038981166000818152600160209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906105ad908590611a00565b60405180910390a3505b6105c2878783610db8565b5060019695505050505050565b600081565b7f00000000000000000000000006d44f7530294de55f9f6990df4175ca0769050d81565b6003602052600090815260409020546001600160a01b031681565b61061d3382610f6d565b50565b60056020526000908152604090205463ffffffff1681565b6001600160a01b0381166000908152600260205260409020546001600160601b03165b919050565b60004382106106815760405162461bcd60e51b8152600401610466906118c7565b6001600160a01b03831660009081526005602052604090205463ffffffff16806106af576000915050610412565b6001600160a01b038416600090815260046020526040812084916106d4600185611ad6565b63ffffffff90811682526020820192909252604001600020541611610747576001600160a01b038416600090815260046020526040812090610717600184611ad6565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b031691506104129050565b6001600160a01b038416600090815260046020908152604080832083805290915290205463ffffffff16831015610782576000915050610412565b600080610790600184611ad6565b90505b8163ffffffff168163ffffffff16111561086257600060026107b58484611ad6565b6107bf9190611a90565b6107c99083611ad6565b6001600160a01b038816600090815260046020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b031691810191909152919250871415610836576020015194506104129350505050565b805163ffffffff1687111561084d5781935061085b565b610858600183611ad6565b92505b5050610793565b506001600160a01b038516600090815260046020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60066020526000908152604090205481565b336001600160a01b037f00000000000000000000000006d44f7530294de55f9f6990df4175ca0769050d16146109015760405162461bcd60e51b81526004016104669061173b565b6104798282610ff7565b604051806040016040528060048152602001634e6f766160e01b81525081565b60008061095083604051806060016040528060268152602001611ba660269139610c2a565b905061095d338583610db8565b5060019392505050565b6001600160a01b03811660009081526005602052604081205463ffffffff16806109925760006109de565b6001600160a01b0383166000908152600460205260408120906109b6600184611ad6565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b9392505050565b60007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf878787604051602001610a1e94939291906116a6565b60405160208183030381529060405280519060200120905060007fbdbc9c0bb02c7b7b8b42e080c68aa9295c188194d78dc1cbc143e5ee97ffaef682604051602001610a6b929190611663565b604051602081830303815290604052805190602001209050600060018287878760405160008152602001604052604051610aa894939291906116ca565b6020604051602081039080840390855afa158015610aca573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610afd5760405162461bcd60e51b815260040161046690611881565b6001600160a01b0381166000908152600660205260408120805491610b2183611b1b565b919050558814610b435760405162461bcd60e51b815260040161046690611762565b86421115610b635760405162461bcd60e51b815260040161046690611945565b610b6d818a610f6d565b5050505b505050505050565b6001600160a01b0391821660009081526001602090815260408083209390941682529190915220546001600160601b031690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600460209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b7fbdbc9c0bb02c7b7b8b42e080c68aa9295c188194d78dc1cbc143e5ee97ffaef681565b600081600160601b8410610c515760405162461bcd60e51b815260040161046691906116e8565b509192915050565b6001600160a01b038216610c7f5760405162461bcd60e51b81526004016104669061198b565b6001600160601b038116610c9257610479565b806001600160601b0316600054610ca99190611a2e565b60009081556001600160a01b038316815260026020526040902054610cd89082906001600160601b0316611a6e565b6001600160a01b03831660008181526002602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d42908590611a00565b60405180910390a36001600160a01b0382811660009081526003602052604090205416610d93576001600160a01b038216600081815260036020526040902080546001600160a01b03191690911790555b6001600160a01b03808316600090815260036020526040812054610479921683611132565b6001600160a01b038316610dde5760405162461bcd60e51b8152600401610466906117a4565b6001600160a01b038216610e045760405162461bcd60e51b815260040161046690611824565b6001600160a01b038316600090815260026020526040902054610e319082906001600160601b0316611afb565b6001600160a01b0384811660009081526002602052604080822080546001600160601b0319166001600160601b0395861617905591851681522054610e7891839116611a6e565b6001600160a01b038381166000818152600260205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ee5908590611a00565b60405180910390a36001600160a01b0382811660009081526003602052604090205416610f36576001600160a01b038216600081815260036020526040902080546001600160a01b03191690911790555b6001600160a01b03808416600090815260036020526040808220548584168352912054610f6892918216911683611132565b505050565b6001600160a01b03808316600081815260036020818152604080842080546002845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610ff1828483611132565b50505050565b6001600160a01b03821661101d5760405162461bcd60e51b81526004016104669061190e565b6001600160601b03811661103057610479565b806001600160601b0316600054101561105b5760405162461bcd60e51b815260040161046690611801565b806001600160601b03166000546110729190611abf565b60009081556001600160a01b0383168152600260205260409020546110a19082906001600160601b0316611afb565b6001600160a01b03831660008181526002602052604080822080546001600160601b0319166001600160601b03959095169490941790935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611108908590611a00565b60405180910390a36001600160a01b03808316600090815260036020526040812054610479921690835b816001600160a01b0316836001600160a01b03161415801561115d57506000816001600160601b0316115b15610f68576001600160a01b03831615611209576001600160a01b03831660009081526005602052604081205463ffffffff16908161119d5760006111e9565b6001600160a01b0385166000908152600460205260408120906111c1600185611ad6565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b905060006111f78483611afb565b9050611205868484846112a8565b5050505b6001600160a01b03821615610f68576001600160a01b03821660009081526005602052604081205463ffffffff169081611244576000611290565b6001600160a01b038416600090815260046020526040812090611268600185611ad6565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b9050600061129e8483611a6e565b9050610b71858484845b60006112cc43604051806060016040528060348152602001611b4d603491396114a3565b905060008463ffffffff1611801561132657506001600160a01b038516600090815260046020526040812063ffffffff83169161130a600188611ad6565b63ffffffff908116825260208201929092526040016000205416145b1561139a576001600160a01b03851660009081526004602052604081208391611350600188611ad6565b63ffffffff168152602081019190915260400160002080546001600160601b0392909216600160201b026fffffffffffffffffffffffff0000000019909216919091179055611459565b60408051808201825263ffffffff83811682526001600160601b0385811660208085019182526001600160a01b038b166000908152600482528681208b861682529091529490942092518354945163ffffffff199095169216919091176fffffffffffffffffffffffff000000001916600160201b9390911692909202919091179055611428846001611a46565b6001600160a01b0386166000908152600560205260409020805463ffffffff191663ffffffff929092169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611494929190611a14565b60405180910390a25050505050565b600081600160201b8410610c515760405162461bcd60e51b815260040161046691906116e8565b80356001600160a01b038116811461065b57600080fd5b6000602082840312156114f2578081fd5b6109de826114ca565b6000806040838503121561150d578081fd5b611516836114ca565b9150611524602084016114ca565b90509250929050565b600080600060608486031215611541578081fd5b61154a846114ca565b9250611558602085016114ca565b9150604084013590509250925092565b6000806040838503121561157a578182fd5b611583836114ca565b946020939093013593505050565b60008060008060008060c087890312156115a9578182fd5b6115b2876114ca565b95506020870135945060408701359350606087013560ff811681146115d5578283fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611601578182fd5b61160a836114ca565b9150602083013563ffffffff81168114611622578182fd5b809150509250929050565b6000806040838503121561163f578182fd5b611648836114ca565b915060208301356001600160601b0381168114611622578182fd5b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611714578581018301518582016040015282016116f8565b818111156117255783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600d908201526c3737903832b936b4b9b9b4b7b760991b604082015260600190565b60208082526022908201527f4e6f76613a3a64656c656761746542795369673a20696e76616c6964206e6f6e604082015261636560f01b606082015260800190565b6020808252603c908201527f4e6f76613a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e736665722066726f6d20746865207a65726f206164647265737300000000606082015260800190565b60208082526009908201526829bab11022b93937b960b91b604082015260600190565b6020808252603a908201527f4e6f76613a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e7366657220746f20746865207a65726f2061646472657373000000000000606082015260800190565b60208082526026908201527f4e6f76613a3a64656c656761746542795369673a20696e76616c6964207369676040820152656e617475726560d01b606082015260800190565b60208082526027908201527f4e6f76613a3a6765745072696f72566f7465733a206e6f742079657420646574604082015266195c9b5a5b995960ca1b606082015260800190565b6020808252601b908201527f45524332303a2020746f20746865207a65726f20616464726573730000000000604082015260600190565b60208082526026908201527f4e6f76613a3a64656c656761746542795369673a207369676e617475726520656040820152651e1c1a5c995960d21b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b0392831681529116602082015260400190565b60008219821115611a4157611a41611b36565b500190565b600063ffffffff808316818516808303821115611a6557611a65611b36565b01949350505050565b60006001600160601b03808316818516808303821115611a6557611a65611b36565b600063ffffffff80841680611ab357634e487b7160e01b83526012600452602483fd5b92169190910492915050565b600082821015611ad157611ad1611b36565b500390565b600063ffffffff83811690831681811015611af357611af3611b36565b039392505050565b60006001600160601b0383811690831681811015611af357611af3611b36565b6000600019821415611b2f57611b2f611b36565b5060010190565b634e487b7160e01b600052601160045260246000fdfe4e6f76613a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734e6f76613a3a617070726f76653a20616d6f756e74206578636565647320393620626974734e6f76613a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473a264697066735822122024e7e238f77aebfb86a9e150b6b1aed27304defb7369eeccbdcbec607e40d9a364736f6c63430008000033

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

00000000000000000000000006d44f7530294de55f9f6990df4175ca0769050d

-----Decoded View---------------
Arg [0] : _dao (address): 0x06D44f7530294dE55F9f6990dF4175Ca0769050D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000006d44f7530294de55f9f6990df4175ca0769050d


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.