ETH Price: $2,176.39 (+3.52%)

Contract

0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2
 

More Info

Private Name Tags

TokenTracker

Plasma (PPAY) ($0.0001)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Transfer119205112021-02-24 14:54:441845 days ago1614178484IN
Plasma: PPAY Token
2 ETH0.00558113265.2
Transfer114240692020-12-10 8:17:421921 days ago1607588262IN
Plasma: PPAY Token
1 ETH0.0042200
Transfer114236242020-12-10 6:30:371921 days ago1607581837IN
Plasma: PPAY Token
5 ETH0.0008440
Transfer114236202020-12-10 6:28:181921 days ago1607581698IN
Plasma: PPAY Token
5 ETH0.00102949.00000025
Transfer114236182020-12-10 6:27:531921 days ago1607581673IN
Plasma: PPAY Token
5 ETH0.0009259844
Transfer114236162020-12-10 6:27:281921 days ago1607581648IN
Plasma: PPAY Token
5 ETH0.0009470245
Transfer114236152020-12-10 6:27:121921 days ago1607581632IN
Plasma: PPAY Token
5 ETH0.0009049343
Transfer114236152020-12-10 6:27:121921 days ago1607581632IN
Plasma: PPAY Token
5 ETH0.00098747.00000025
Transfer114236122020-12-10 6:26:461921 days ago1607581606IN
Plasma: PPAY Token
5 ETH0.0008440
VIEW ADVANCED FILTER
Amount:Between 1-1k
Reset Filter

Advanced mode:
Parent Transaction Hash Method Block
From
To

There are no matching entries

Update your filters to view other transactions

View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Ppay

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

import "./SafeMath.sol";

contract Ppay {
    /// @notice EIP-20 token name for this token
    string public constant name = "Plasma";

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

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

    /// @notice Total number of tokens in circulation
    uint256 public constant totalSupply = 1_000_000_000e18; // 1 billion PPAY

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

    /// @dev 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 The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint256) 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, uint256 previousBalance, uint256 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 Ppay token
     * @param account The initial account to grant all the tokens
     */
    constructor(address account) public {
        balances[account] = uint96(totalSupply);
        emit Transfer(address(0), account, totalSupply);
    }

    /**
     * @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 (uint256) {
        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, uint256 rawAmount) external returns (bool) {
        uint96 amount;
        if (rawAmount == uint256(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Ppay::approve: amount exceeds 96 bits");
        }

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

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

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline 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 permit(address owner, address spender, uint256 rawAmount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external {
        uint96 amount;
        if (rawAmount == uint256(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Ppay::permit: amount exceeds 96 bits");
        }

        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "Ppay::permit: invalid signature");
        require(signatory == owner, "Ppay::permit: unauthorized");
        require(now <= deadline, "Ppay::permit: signature expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    /**
     * @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 (uint256) {
        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, uint256 rawAmount) external returns (bool) {
        uint96 amount = safe96(rawAmount, "Ppay::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, uint256 rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint96 spenderAllowance = allowances[src][spender];
        uint96 amount = safe96(rawAmount, "Ppay::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "Ppay::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) external {
        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, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external {
        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), "Ppay::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Ppay::delegateBySig: invalid nonce");
        require(now <= expiry, "Ppay::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) external view returns (uint96) {
        require(blockNumber < block.number, "Ppay::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), "Ppay::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "Ppay::_transferTokens: cannot transfer to the zero address");

        balances[src] = sub96(balances[src], amount, "Ppay::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "Ppay::_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, "Ppay::_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, "Ppay::_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, "Ppay::_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(uint256 n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint256 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 getChainId() internal pure returns (uint256) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction underflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot underflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, errorMessage);

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers.
     * Reverts with custom message on division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 999999
  },
  "evmVersion": "istanbul",
  "libraries": {
    "": {}
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"account","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":[],"name":"PERMIT_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":"","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":"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":[{"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":[],"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b50604051620025d0380380620025d08339810160408190526200003491620000aa565b6001600160a01b03811660008181526001602052604080822080546001600160601b0319166b033b2e3c9fd0803ce800000090811790915590517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916200009b91620000da565b60405180910390a350620000e3565b600060208284031215620000bc578081fd5b81516001600160a01b0381168114620000d3578182fd5b9392505050565b90815260200190565b6124dd80620000f36000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c806370a08231116100d8578063b4b5ea571161008c578063dd62ed3e11610066578063dd62ed3e146102f6578063e7a324dc14610309578063f1127ed81461031157610177565b8063b4b5ea57146102bd578063c3cda520146102d0578063d505accf146102e357610177565b80637ecebe00116100bd5780637ecebe001461028f57806395d89b41146102a2578063a9059cbb146102aa57610177565b806370a082311461025c578063782d6fe11461026f57610177565b806330adf81f1161012f578063587cde1e11610114578063587cde1e146102075780635c19a95c146102275780636fcfff451461023c57610177565b806330adf81f146101ea578063313ce567146101f257610177565b806318160ddd1161016057806318160ddd146101ba57806320606b70146101cf57806323b872dd146101d757610177565b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610332565b6040516101919190611f31565b60405180910390f35b6101ad6101a8366004611d43565b61036b565b6040516101919190611e5c565b6101c261048e565b6040516101919190611e67565b6101c261049e565b6101ad6101e5366004611c97565b6104c2565b6101c2610660565b6101fa610684565b60405161019191906122aa565b61021a610215366004611c48565b610689565b6040516101919190611e3b565b61023a610235366004611c48565b6106b1565b005b61024f61024a366004611c48565b6106be565b6040516101919190612275565b6101c261026a366004611c48565b6106d6565b61028261027d366004611d43565b61070c565b60405161019191906122b8565b6101c261029d366004611c48565b6109f7565b610184610a09565b6101ad6102b8366004611d43565b610a42565b6102826102cb366004611c48565b610a7e565b61023a6102de366004611d6d565b610b2d565b61023a6102f1366004611cd7565b610dce565b6101c2610304366004611c63565b611236565b6101c261127a565b61032461031f366004611dc6565b61129e565b604051610191929190612286565b6040518060400160405280600681526020017f506c61736d61000000000000000000000000000000000000000000000000000081525081565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8314156103bd57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6103e2565b6103df836040518060600160405280602581526020016123f9602591396112d9565b90505b3360008181526020818152604080832073ffffffffffffffffffffffffffffffffffffffff891680855292529182902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061047a9085906122b8565b60405180910390a360019150505b92915050565b6b033b2e3c9fd0803ce800000081565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081815260408083203380855290835281842054825160608101909352602580845291936bffffffffffffffffffffffff90911692859261052a92889291906123f9908301396112d9565b90508673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561057657506bffffffffffffffffffffffff82811614155b156106485760006105a083836040518060600160405280603d8152602001612313603d913961132b565b73ffffffffffffffffffffffffffffffffffffffff898116600081815260208181526040808320948a16808452949091529081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff86161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061063e9085906122b8565b60405180910390a3505b61065387878361138e565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60026020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6106bb33826115fa565b50565b60046020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff166000908152600160205260409020546bffffffffffffffffffffffff1690565b6000438210610750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790612218565b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205463ffffffff168061078b576000915050610488565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8601811685529252909120541683106108635773ffffffffffffffffffffffffffffffffffffffff841660009081526003602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052205464010000000090046bffffffffffffffffffffffff169050610488565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832083805290915290205463ffffffff168310156108ab576000915050610488565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff16111561099f57600282820363ffffffff160481036108fb611bfc565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260036020908152604080832063ffffffff8581168552908352928190208151808301909252549283168082526401000000009093046bffffffffffffffffffffffff16918101919091529087141561097a576020015194506104889350505050565b805163ffffffff1687111561099157819350610998565b6001820392505b50506108d1565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260036020908152604080832063ffffffff909416835292905220546bffffffffffffffffffffffff6401000000009091041691505092915050565b60056020526000908152604090205481565b6040518060400160405280600481526020017f505041590000000000000000000000000000000000000000000000000000000081525081565b600080610a678360405180606001604052806026815260200161239f602691396112d9565b9050610a7433858361138e565b5060019392505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081205463ffffffff1680610ab6576000610b26565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b9392505050565b60408051808201909152600681527f506c61736d61000000000000000000000000000000000000000000000000000060209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f6cd2712748e36aa8827f0857938560273640a96a7c40212307362ce444bfa854610bae6116ae565b30604051602001610bc29493929190611ee2565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610c139493929190611eb1565b60405160208183030381529060405280519060200120905060008282604051602001610c40929190611e05565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610c7d9493929190611f13565b6020604051602081039080840390855afa158015610c9f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610747906120f0565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090208054600181019091558914610d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790611fd9565b87421115610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610747906121bb565b610dc1818b6115fa565b505050505b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff861415610e1f57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610e44565b610e4186604051806060016040528060248152602001612454602491396112d9565b90505b60408051808201909152600681527f506c61736d61000000000000000000000000000000000000000000000000000060209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f6cd2712748e36aa8827f0857938560273640a96a7c40212307362ce444bfa854610ec56116ae565b30604051602001610ed99493929190611ee2565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152828252805160209182012073ffffffffffffffffffffffffffffffffffffffff8d166000908152600583529283208054600181019091559094509192610f76927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928e928e928e9290918e9101611e70565b60405160208183030381529060405280519060200120905060008282604051602001610fa3929190611e05565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610fe09493929190611f13565b6020604051602081039080840390855afa158015611002573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661107a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479061214d565b8b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790611fa2565b88421115611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790612184565b846000808e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258760405161122091906122b8565b60405180910390a3505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff9182166000908152602081815260408083209390941682529190915220546bffffffffffffffffffffffff1690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600360209081526000928352604080842090915290825290205463ffffffff81169064010000000090046bffffffffffffffffffffffff1682565b6000816c010000000000000000000000008410611323576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479190611f31565b509192915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff1611158290611386576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479190611f31565b505050900390565b73ffffffffffffffffffffffffffffffffffffffff83166113db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790612036565b73ffffffffffffffffffffffffffffffffffffffff8216611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790612093565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020908152604091829020548251606081019093526036808452611485936bffffffffffffffffffffffff909216928592919061241e9083013961132b565b73ffffffffffffffffffffffffffffffffffffffff848116600090815260016020908152604080832080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff9687161790559286168252908290205482516060810190935260308084526115179491909116928592909190612478908301396116b2565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152600160205260409081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff95909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115ae9085906122b8565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff8084166000908152600260205260408082205485841683529120546115f59291821691168361170d565b505050565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260026020818152604080842080546001845282862054949093528787167fffffffffffffffffffffffff000000000000000000000000000000000000000084168117909155905191909516946bffffffffffffffffffffffff9092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46116a882848361170d565b50505050565b4690565b6000838301826bffffffffffffffffffffffff8087169083161015611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479190611f31565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561175757506000816bffffffffffffffffffffffff16115b156115f55773ffffffffffffffffffffffffffffffffffffffff83161561185a5773ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081205463ffffffff1690816117b1576000611821565b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b9050600061184882856040518060600160405280602881526020016123776028913961132b565b905061185686848484611950565b5050505b73ffffffffffffffffffffffffffffffffffffffff8216156115f55773ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081205463ffffffff1690816118af57600061191f565b73ffffffffffffffffffffffffffffffffffffffff841660009081526003602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b905060006119468285604051806060016040528060278152602001612350602791396116b2565b9050610dc6858484845b6000611974436040518060600160405280603481526020016123c560349139611bba565b905060008463ffffffff161180156119e8575073ffffffffffffffffffffffffffffffffffffffff8516600090815260036020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8901811685529252909120548282169116145b15611a875773ffffffffffffffffffffffffffffffffffffffff851660009081526003602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880163ffffffff168452909152902080547fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff166401000000006bffffffffffffffffffffffff851602179055611b63565b60408051808201825263ffffffff80841682526bffffffffffffffffffffffff808616602080850191825273ffffffffffffffffffffffffffffffffffffffff8b166000818152600383528781208c871682528352878120965187549451909516640100000000027fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff9587167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000958616179590951694909417909555938252600490935292909220805460018801909316929091169190911790555b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611bab9291906122d1565b60405180910390a25050505050565b6000816401000000008410611323576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479190611f31565b604080518082019091526000808252602082015290565b803573ffffffffffffffffffffffffffffffffffffffff8116811461048857600080fd5b803560ff8116811461048857600080fd5b600060208284031215611c59578081fd5b610b268383611c13565b60008060408385031215611c75578081fd5b611c7f8484611c13565b9150611c8e8460208501611c13565b90509250929050565b600080600060608486031215611cab578081fd5b8335611cb6816122f0565b92506020840135611cc6816122f0565b929592945050506040919091013590565b600080600080600080600060e0888a031215611cf1578283fd5b611cfb8989611c13565b9650611d0a8960208a01611c13565b95506040880135945060608801359350611d278960808a01611c37565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215611d55578182fd5b611d5f8484611c13565b946020939093013593505050565b60008060008060008060c08789031215611d85578182fd5b611d8f8888611c13565b95506020870135945060408701359350611dac8860608901611c37565b92506080870135915060a087013590509295509295509295565b60008060408385031215611dd8578182fd5b611de28484611c13565b9150602083013563ffffffff81168114611dfa578182fd5b809150509250929050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b901515815260200190565b90815260200190565b95865273ffffffffffffffffffffffffffffffffffffffff94851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845273ffffffffffffffffffffffffffffffffffffffff9290921660208401526040830152606082015260800190565b9384526020840192909252604083015273ffffffffffffffffffffffffffffffffffffffff16606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611f5d57858101830151858201604001528201611f41565b81811115611f6e5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6020808252601a908201527f507061793a3a7065726d69743a20756e617574686f72697a6564000000000000604082015260600190565b60208082526022908201527f507061793a3a64656c656761746542795369673a20696e76616c6964206e6f6e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603c908201527f507061793a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e736665722066726f6d20746865207a65726f206164647265737300000000606082015260800190565b6020808252603a908201527f507061793a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e7366657220746f20746865207a65726f2061646472657373000000000000606082015260800190565b60208082526026908201527f507061793a3a64656c656761746542795369673a20696e76616c69642073696760408201527f6e61747572650000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f507061793a3a7065726d69743a20696e76616c6964207369676e617475726500604082015260600190565b6020808252601f908201527f507061793a3a7065726d69743a207369676e6174757265206578706972656400604082015260600190565b60208082526026908201527f507061793a3a64656c656761746542795369673a207369676e6174757265206560408201527f7870697265640000000000000000000000000000000000000000000000000000606082015260800190565b60208082526027908201527f507061793a3a6765745072696f72566f7465733a206e6f74207965742064657460408201527f65726d696e656400000000000000000000000000000000000000000000000000606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526bffffffffffffffffffffffff16602082015260400190565b60ff91909116815260200190565b6bffffffffffffffffffffffff91909116815260200190565b6bffffffffffffffffffffffff92831681529116602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff811681146106bb57600080fdfe507061793a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365507061793a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773507061793a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773507061793a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473507061793a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473507061793a3a617070726f76653a20616d6f756e7420657863656564732039362062697473507061793a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365507061793a3a7065726d69743a20616d6f756e7420657863656564732039362062697473507061793a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773a2646970667358221220328d0c25dcb3398914ebe95c57bdb18c7ff6f0f462eba65a3cccf433a1e2c19d64736f6c634300060c0033000000000000000000000000cfbcd9c6a87c54b4145f7b4d0c4a96fc5634a041

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101775760003560e01c806370a08231116100d8578063b4b5ea571161008c578063dd62ed3e11610066578063dd62ed3e146102f6578063e7a324dc14610309578063f1127ed81461031157610177565b8063b4b5ea57146102bd578063c3cda520146102d0578063d505accf146102e357610177565b80637ecebe00116100bd5780637ecebe001461028f57806395d89b41146102a2578063a9059cbb146102aa57610177565b806370a082311461025c578063782d6fe11461026f57610177565b806330adf81f1161012f578063587cde1e11610114578063587cde1e146102075780635c19a95c146102275780636fcfff451461023c57610177565b806330adf81f146101ea578063313ce567146101f257610177565b806318160ddd1161016057806318160ddd146101ba57806320606b70146101cf57806323b872dd146101d757610177565b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610332565b6040516101919190611f31565b60405180910390f35b6101ad6101a8366004611d43565b61036b565b6040516101919190611e5c565b6101c261048e565b6040516101919190611e67565b6101c261049e565b6101ad6101e5366004611c97565b6104c2565b6101c2610660565b6101fa610684565b60405161019191906122aa565b61021a610215366004611c48565b610689565b6040516101919190611e3b565b61023a610235366004611c48565b6106b1565b005b61024f61024a366004611c48565b6106be565b6040516101919190612275565b6101c261026a366004611c48565b6106d6565b61028261027d366004611d43565b61070c565b60405161019191906122b8565b6101c261029d366004611c48565b6109f7565b610184610a09565b6101ad6102b8366004611d43565b610a42565b6102826102cb366004611c48565b610a7e565b61023a6102de366004611d6d565b610b2d565b61023a6102f1366004611cd7565b610dce565b6101c2610304366004611c63565b611236565b6101c261127a565b61032461031f366004611dc6565b61129e565b604051610191929190612286565b6040518060400160405280600681526020017f506c61736d61000000000000000000000000000000000000000000000000000081525081565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8314156103bd57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6103e2565b6103df836040518060600160405280602581526020016123f9602591396112d9565b90505b3360008181526020818152604080832073ffffffffffffffffffffffffffffffffffffffff891680855292529182902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061047a9085906122b8565b60405180910390a360019150505b92915050565b6b033b2e3c9fd0803ce800000081565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081815260408083203380855290835281842054825160608101909352602580845291936bffffffffffffffffffffffff90911692859261052a92889291906123f9908301396112d9565b90508673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561057657506bffffffffffffffffffffffff82811614155b156106485760006105a083836040518060600160405280603d8152602001612313603d913961132b565b73ffffffffffffffffffffffffffffffffffffffff898116600081815260208181526040808320948a16808452949091529081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff86161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061063e9085906122b8565b60405180910390a3505b61065387878361138e565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b60026020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6106bb33826115fa565b50565b60046020526000908152604090205463ffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff166000908152600160205260409020546bffffffffffffffffffffffff1690565b6000438210610750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790612218565b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205463ffffffff168061078b576000915050610488565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8601811685529252909120541683106108635773ffffffffffffffffffffffffffffffffffffffff841660009081526003602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9490940163ffffffff168352929052205464010000000090046bffffffffffffffffffffffff169050610488565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832083805290915290205463ffffffff168310156108ab576000915050610488565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b8163ffffffff168163ffffffff16111561099f57600282820363ffffffff160481036108fb611bfc565b5073ffffffffffffffffffffffffffffffffffffffff8716600090815260036020908152604080832063ffffffff8581168552908352928190208151808301909252549283168082526401000000009093046bffffffffffffffffffffffff16918101919091529087141561097a576020015194506104889350505050565b805163ffffffff1687111561099157819350610998565b6001820392505b50506108d1565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260036020908152604080832063ffffffff909416835292905220546bffffffffffffffffffffffff6401000000009091041691505092915050565b60056020526000908152604090205481565b6040518060400160405280600481526020017f505041590000000000000000000000000000000000000000000000000000000081525081565b600080610a678360405180606001604052806026815260200161239f602691396112d9565b9050610a7433858361138e565b5060019392505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081205463ffffffff1680610ab6576000610b26565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff850163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b9392505050565b60408051808201909152600681527f506c61736d61000000000000000000000000000000000000000000000000000060209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f6cd2712748e36aa8827f0857938560273640a96a7c40212307362ce444bfa854610bae6116ae565b30604051602001610bc29493929190611ee2565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610c139493929190611eb1565b60405160208183030381529060405280519060200120905060008282604051602001610c40929190611e05565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610c7d9493929190611f13565b6020604051602081039080840390855afa158015610c9f573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610747906120f0565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090208054600181019091558914610d7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790611fd9565b87421115610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610747906121bb565b610dc1818b6115fa565b505050505b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff861415610e1f57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610e44565b610e4186604051806060016040528060248152602001612454602491396112d9565b90505b60408051808201909152600681527f506c61736d61000000000000000000000000000000000000000000000000000060209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667f6cd2712748e36aa8827f0857938560273640a96a7c40212307362ce444bfa854610ec56116ae565b30604051602001610ed99493929190611ee2565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152828252805160209182012073ffffffffffffffffffffffffffffffffffffffff8d166000908152600583529283208054600181019091559094509192610f76927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928e928e928e9290918e9101611e70565b60405160208183030381529060405280519060200120905060008282604051602001610fa3929190611e05565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610fe09493929190611f13565b6020604051602081039080840390855afa158015611002573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661107a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479061214d565b8b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790611fa2565b88421115611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790612184565b846000808e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258760405161122091906122b8565b60405180910390a3505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff9182166000908152602081815260408083209390941682529190915220546bffffffffffffffffffffffff1690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600360209081526000928352604080842090915290825290205463ffffffff81169064010000000090046bffffffffffffffffffffffff1682565b6000816c010000000000000000000000008410611323576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479190611f31565b509192915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff1611158290611386576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479190611f31565b505050900390565b73ffffffffffffffffffffffffffffffffffffffff83166113db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790612036565b73ffffffffffffffffffffffffffffffffffffffff8216611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790612093565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020908152604091829020548251606081019093526036808452611485936bffffffffffffffffffffffff909216928592919061241e9083013961132b565b73ffffffffffffffffffffffffffffffffffffffff848116600090815260016020908152604080832080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff9687161790559286168252908290205482516060810190935260308084526115179491909116928592909190612478908301396116b2565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152600160205260409081902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff95909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115ae9085906122b8565b60405180910390a373ffffffffffffffffffffffffffffffffffffffff8084166000908152600260205260408082205485841683529120546115f59291821691168361170d565b505050565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260026020818152604080842080546001845282862054949093528787167fffffffffffffffffffffffff000000000000000000000000000000000000000084168117909155905191909516946bffffffffffffffffffffffff9092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46116a882848361170d565b50505050565b4690565b6000838301826bffffffffffffffffffffffff8087169083161015611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479190611f31565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561175757506000816bffffffffffffffffffffffff16115b156115f55773ffffffffffffffffffffffffffffffffffffffff83161561185a5773ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081205463ffffffff1690816117b1576000611821565b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b9050600061184882856040518060600160405280602881526020016123776028913961132b565b905061185686848484611950565b5050505b73ffffffffffffffffffffffffffffffffffffffff8216156115f55773ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081205463ffffffff1690816118af57600061191f565b73ffffffffffffffffffffffffffffffffffffffff841660009081526003602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff860163ffffffff16845290915290205464010000000090046bffffffffffffffffffffffff165b905060006119468285604051806060016040528060278152602001612350602791396116b2565b9050610dc6858484845b6000611974436040518060600160405280603481526020016123c560349139611bba565b905060008463ffffffff161180156119e8575073ffffffffffffffffffffffffffffffffffffffff8516600090815260036020908152604080832063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8901811685529252909120548282169116145b15611a875773ffffffffffffffffffffffffffffffffffffffff851660009081526003602090815260408083207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff880163ffffffff168452909152902080547fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff166401000000006bffffffffffffffffffffffff851602179055611b63565b60408051808201825263ffffffff80841682526bffffffffffffffffffffffff808616602080850191825273ffffffffffffffffffffffffffffffffffffffff8b166000818152600383528781208c871682528352878120965187549451909516640100000000027fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff9587167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000958616179590951694909417909555938252600490935292909220805460018801909316929091169190911790555b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611bab9291906122d1565b60405180910390a25050505050565b6000816401000000008410611323576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107479190611f31565b604080518082019091526000808252602082015290565b803573ffffffffffffffffffffffffffffffffffffffff8116811461048857600080fd5b803560ff8116811461048857600080fd5b600060208284031215611c59578081fd5b610b268383611c13565b60008060408385031215611c75578081fd5b611c7f8484611c13565b9150611c8e8460208501611c13565b90509250929050565b600080600060608486031215611cab578081fd5b8335611cb6816122f0565b92506020840135611cc6816122f0565b929592945050506040919091013590565b600080600080600080600060e0888a031215611cf1578283fd5b611cfb8989611c13565b9650611d0a8960208a01611c13565b95506040880135945060608801359350611d278960808a01611c37565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215611d55578182fd5b611d5f8484611c13565b946020939093013593505050565b60008060008060008060c08789031215611d85578182fd5b611d8f8888611c13565b95506020870135945060408701359350611dac8860608901611c37565b92506080870135915060a087013590509295509295509295565b60008060408385031215611dd8578182fd5b611de28484611c13565b9150602083013563ffffffff81168114611dfa578182fd5b809150509250929050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b901515815260200190565b90815260200190565b95865273ffffffffffffffffffffffffffffffffffffffff94851660208701529290931660408501526060840152608083019190915260a082015260c00190565b93845273ffffffffffffffffffffffffffffffffffffffff9290921660208401526040830152606082015260800190565b9384526020840192909252604083015273ffffffffffffffffffffffffffffffffffffffff16606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611f5d57858101830151858201604001528201611f41565b81811115611f6e5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6020808252601a908201527f507061793a3a7065726d69743a20756e617574686f72697a6564000000000000604082015260600190565b60208082526022908201527f507061793a3a64656c656761746542795369673a20696e76616c6964206e6f6e60408201527f6365000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603c908201527f507061793a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e736665722066726f6d20746865207a65726f206164647265737300000000606082015260800190565b6020808252603a908201527f507061793a3a5f7472616e73666572546f6b656e733a2063616e6e6f7420747260408201527f616e7366657220746f20746865207a65726f2061646472657373000000000000606082015260800190565b60208082526026908201527f507061793a3a64656c656761746542795369673a20696e76616c69642073696760408201527f6e61747572650000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f507061793a3a7065726d69743a20696e76616c6964207369676e617475726500604082015260600190565b6020808252601f908201527f507061793a3a7065726d69743a207369676e6174757265206578706972656400604082015260600190565b60208082526026908201527f507061793a3a64656c656761746542795369673a207369676e6174757265206560408201527f7870697265640000000000000000000000000000000000000000000000000000606082015260800190565b60208082526027908201527f507061793a3a6765745072696f72566f7465733a206e6f74207965742064657460408201527f65726d696e656400000000000000000000000000000000000000000000000000606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526bffffffffffffffffffffffff16602082015260400190565b60ff91909116815260200190565b6bffffffffffffffffffffffff91909116815260200190565b6bffffffffffffffffffffffff92831681529116602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff811681146106bb57600080fdfe507061793a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365507061793a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773507061793a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773507061793a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473507061793a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473507061793a3a617070726f76653a20616d6f756e7420657863656564732039362062697473507061793a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365507061793a3a7065726d69743a20616d6f756e7420657863656564732039362062697473507061793a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773a2646970667358221220328d0c25dcb3398914ebe95c57bdb18c7ff6f0f462eba65a3cccf433a1e2c19d64736f6c634300060c0033

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

000000000000000000000000cfbcd9c6a87c54b4145f7b4d0c4a96fc5634a041

-----Decoded View---------------
Arg [0] : account (address): 0xCfBCd9c6A87c54B4145F7b4d0c4a96FC5634a041

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000cfbcd9c6a87c54b4145f7b4d0c4a96fc5634a041


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

OVERVIEW

Plasma Finance: Your one-stop DeFi solution! Seamlessly manage your portfolio, access liquidity pools, lend, borrow, and swap across chains. With native fiat support and over 100 yield-farming strategies, we lower barriers to DeFi adoption. Join us and optimize your investments today!

0x054D64b73d3D8A21Af3D764eFd76bCaA774f3Bb2
Loading...
Loading
Loading...
Loading
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.