ETH Price: $3,459.16 (-1.80%)
Gas: 2 Gwei

Token

PleasrDAO (PEEPS)
 

Overview

Max Total Supply

1,000,000 PEEPS

Holders

153

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,101.01 PEEPS

Value
$0.00
0x3924b7681c6110fcd3628164388c3307f79d1059
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:
Peeps

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-05
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.7.6;
pragma experimental ABIEncoderV2;

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

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

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

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

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 1_000_000e18; // 1 million Peeps

    /// @notice Address which may mint new tokens
    address public minter;

    /// @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 => uint) public nonces;

    /// @notice An event thats emitted when the minter address is changed
    event MinterChanged(address minter, address newMinter);

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

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

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

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

    /**
     * @notice Construct a new Peeps token
     * @param account The initial account to grant all the tokens
     */
    constructor(address account) {
        balances[account] = uint96(totalSupply);
        emit Transfer(address(0), account, totalSupply);
        minter = account;
        emit MinterChanged(address(0), account);
    }

    /**
     * @notice Change the minter address
     * @param minter_ The address of the new minter
     */
    function setMinter(address minter_) external {
        require(msg.sender == minter, "Peeps::setMinter: only the minter can change the minter address");
        emit MinterChanged(minter, minter_);
        minter = minter_;
    }

    /**
     * @notice Mint new tokens
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to be minted
     */
    function mint(address dst, uint rawAmount) external {
        require(msg.sender == minter, "Peeps::mint: only the minter can mint");
        require(dst != address(0), "Peeps::mint: cannot transfer to the zero address");

        // mint the amount
        uint96 amount = safe96(rawAmount, "Peeps::mint: amount exceeds 96 bits");
        totalSupply = safe96(SafeMath.add(totalSupply, amount), "Peeps::mint: totalSupply exceeds 96 bits");

        // transfer the amount to the recipient
        balances[dst] = add96(balances[dst], amount, "Peeps::mint: transfer amount overflows");
        emit Transfer(address(0), dst, amount);

        // move delegates
        _moveDelegates(address(0), delegates[dst], 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 == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Peeps::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, uint rawAmount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        uint96 amount;
        if (rawAmount == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Peeps::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), "Peeps::permit: invalid signature");
        require(signatory == owner, "Peeps::permit: unauthorized");
        require(block.timestamp <= deadline, "Peeps::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 (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, "Peeps::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, "Peeps::approve: amount exceeds 96 bits");

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

            emit Approval(src, spender, newAllowance);
        }

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

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

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "Peeps::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Peeps::delegateBySig: invalid nonce");
        require(block.timestamp <= expiry, "Peeps::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, "Peeps::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), "Peeps::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "Peeps::_transferTokens: cannot transfer to the zero address");
        require(dst != address(this), "Peeps::_transferTokens: cannot transfer to token address");

        balances[src] = sub96(balances[src], amount, "Peeps::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "Peeps::_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, "Peeps::_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, "Peeps::_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, "Peeps::_writeCheckpoint: block number exceeds 32 bits");

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

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"newMinter","type":"address"}],"name":"MinterChanged","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":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"minter_","type":"address"}],"name":"setMinter","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"}]

608060405269d3c21bcecceda10000006000553480156200001f57600080fd5b50604051620022cb380380620022cb833981016040819052620000429162000117565b600080546001600160a01b0383168083526003602052604080842080546001600160601b0319166001600160601b0390941693909317909255825491519092917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620000b0919062000161565b60405180910390a3600180546001600160a01b0319166001600160a01b0383161790556040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6906200010890600090849062000147565b60405180910390a1506200016a565b60006020828403121562000129578081fd5b81516001600160a01b038116811462000140578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b90815260200190565b612151806200017a6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063c3cda5201161007c578063c3cda520146102cc578063d505accf146102df578063dd62ed3e146102f2578063e7a324dc14610305578063f1127ed81461030d578063fca3b5aa1461032e57610158565b806370a0823114610258578063782d6fe11461026b5780637ecebe001461028b57806395d89b411461029e578063a9059cbb146102a6578063b4b5ea57146102b957610158565b806330adf81f1161011557806330adf81f146101e0578063313ce567146101e857806340c10f19146101fd578063587cde1e146102125780635c19a95c146102255780636fcfff451461023857610158565b806306fdde031461015d578063075461721461017b578063095ea7b31461019057806318160ddd146101b057806320606b70146101c557806323b872dd146101cd575b600080fd5b610165610341565b6040516101729190611a53565b60405180910390f35b610183610366565b6040516101729190611977565b6101a361019e36600461189e565b610375565b60405161017291906119a5565b6101b8610434565b60405161017291906119b0565b6101b861043a565b6101a36101db3660046117fa565b61045e565b6101b86105a5565b6101f06105c9565b6040516101729190611ed0565b61021061020b36600461189e565b6105ce565b005b6101836102203660046117ae565b610771565b6102106102333660046117ae565b61078c565b61024b6102463660046117ae565b610799565b6040516101729190611ea0565b6101b86102663660046117ae565b6107b1565b61027e61027936600461189e565b6107d9565b6040516101729190611ede565b6101b86102993660046117ae565b6109e2565b6101656109f4565b6101a36102b436600461189e565b610a15565b61027e6102c73660046117ae565b610a51565b6102106102da3660046118c7565b610ac2565b6102106102ed366004611835565b610cc9565b6101b86103003660046117c8565b610fcc565b6101b8611000565b61032061031b36600461191e565b611024565b604051610172929190611eb1565b61021061033c3660046117ae565b611059565b60405180604001604052806009815260200168506c6561737244414f60b81b81525081565b6001546001600160a01b031681565b60008060001983141561038b57506000196103b0565b6103ad83604051806060016040528060268152602001611f0d602691396110ec565b90505b3360008181526002602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610420908590611ede565b60405180910390a360019150505b92915050565b60005481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b03831660009081526002602090815260408083203380855290835281842054825160608101909352602680845291936001600160601b039091169285926104b69288929190611f0d908301396110ec565b9050866001600160a01b0316836001600160a01b0316141580156104e357506001600160601b0382811614155b1561058d57600061050d83836040518060600160405280603e8152602001611f33603e913961111b565b6001600160a01b038981166000818152600260209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610583908590611ede565b60405180910390a3505b61059887878361115a565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b6001546001600160a01b031633146106015760405162461bcd60e51b81526004016105f890611cb0565b60405180910390fd5b6001600160a01b0382166106275760405162461bcd60e51b81526004016105f890611aa6565b600061064b82604051806060016040528060238152602001611f99602391396110ec565b9050610683610665600054836001600160601b0316611329565b604051806060016040528060288152602001611f71602891396110ec565b6001600160601b0390811660009081556001600160a01b0385168152600360209081526040918290205482516060810190935260268084526106d594919091169285929091906120f69083013961134e565b6001600160a01b03841660008181526003602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061073f908590611ede565b60405180910390a36001600160a01b0380841660009081526004602052604081205461076c92168361138a565b505050565b6004602052600090815260409020546001600160a01b031681565b610796338261151c565b50565b60066020526000908152604090205463ffffffff1681565b6001600160a01b0381166000908152600360205260409020546001600160601b03165b919050565b60004382106107fa5760405162461bcd60e51b81526004016105f890611dce565b6001600160a01b03831660009081526006602052604090205463ffffffff168061082857600091505061042e565b6001600160a01b038416600090815260056020908152604080832063ffffffff6000198601811685529252909120541683106108a4576001600160a01b03841660009081526005602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b0316905061042e565b6001600160a01b038416600090815260056020908152604080832083805290915290205463ffffffff168310156108df57600091505061042e565b600060001982015b8163ffffffff168163ffffffff16111561099d576000600263ffffffff848403166001600160a01b038916600090815260056020908152604080832094909304860363ffffffff818116845294825291839020835180850190945254938416808452600160201b9094046001600160601b0316908301529250908714156109785760200151945061042e9350505050565b805163ffffffff1687111561098f57819350610996565b6001820392505b50506108e7565b506001600160a01b038516600090815260056020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60076020526000908152604090205481565b60405180604001604052806005815260200164504545505360d81b81525081565b600080610a3a83604051806060016040528060278152602001612016602791396110ec565b9050610a4733858361115a565b5060019392505050565b6001600160a01b03811660009081526006602052604081205463ffffffff1680610a7c576000610abb565b6001600160a01b0383166000908152600560209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b604080518082019091526009815268506c6561737244414f60b81b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fe4976508840100a0bef831bd4bbd6a0f1173498524839480ad10168d83abab16610b2f6115a6565b30604051602001610b439493929190611a11565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610b9494939291906119ed565b60405160208183030381529060405280519060200120905060008282604051602001610bc192919061195c565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610bfe9493929190611a35565b6020604051602081039080840390855afa158015610c20573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610c535760405162461bcd60e51b81526004016105f890611e59565b6001600160a01b03811660009081526007602052604090208054600181019091558914610c925760405162461bcd60e51b81526004016105f890611e16565b87421115610cb25760405162461bcd60e51b81526004016105f890611cf5565b610cbc818b61151c565b505050505b505050505050565b6000600019861415610cde5750600019610d03565b610d0086604051806060016040528060258152602001611fbc602591396110ec565b90505b604080518082019091526009815268506c6561737244414f60b81b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fe4976508840100a0bef831bd4bbd6a0f1173498524839480ad10168d83abab16610d706115a6565b30604051602001610d849493929190611a11565b60408051601f1981840301815282825280516020918201206001600160a01b038d166000908152600783529283208054600181019091559094509192610df6927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928e928e928e9290918e91016119b9565b60405160208183030381529060405280519060200120905060008282604051602001610e2392919061195c565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610e609493929190611a35565b6020604051602081039080840390855afa158015610e82573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610eb55760405162461bcd60e51b81526004016105f890611d99565b8b6001600160a01b0316816001600160a01b031614610ee65760405162461bcd60e51b81526004016105f890611b2d565b88421115610f065760405162461bcd60e51b81526004016105f890611c1e565b84600260008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92587604051610fb69190611ede565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526002602090815260408083209390941682529190915220546001600160601b031690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600560209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146110835760405162461bcd60e51b81526004016105f890611bc1565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6916110c2916001600160a01b0390911690849061198b565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106111135760405162461bcd60e51b81526004016105f89190611a53565b509192915050565b6000836001600160601b0316836001600160601b0316111582906111525760405162461bcd60e51b81526004016105f89190611a53565b505050900390565b6001600160a01b0383166111805760405162461bcd60e51b81526004016105f890611d3c565b6001600160a01b0382166111a65760405162461bcd60e51b81526004016105f890611b64565b6001600160a01b0382163014156111cf5760405162461bcd60e51b81526004016105f890611c53565b6001600160a01b03831660009081526003602090815260409182902054825160608101909352603780845261121a936001600160601b03909216928592919061206e9083013961111b565b6001600160a01b03848116600090815260036020908152604080832080546001600160601b0319166001600160601b03968716179055928616825290829020548251606081019093526031808452611282949190911692859290919061203d9083013961134e565b6001600160a01b038381166000818152600360205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112ef908590611ede565b60405180910390a36001600160a01b0380841660009081526004602052604080822054858416835291205461076c9291821691168361138a565b600082820183811015610abb5760405162461bcd60e51b81526004016105f890611af6565b6000838301826001600160601b0380871690831610156113815760405162461bcd60e51b81526004016105f89190611a53565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156113b557506000816001600160601b0316115b1561076c576001600160a01b0383161561146d576001600160a01b03831660009081526006602052604081205463ffffffff1690816113f5576000611434565b6001600160a01b0385166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061145b82856040518060600160405280602981526020016120a56029913961111b565b9050611469868484846115aa565b5050505b6001600160a01b0382161561076c576001600160a01b03821660009081526006602052604081205463ffffffff1690816114a85760006114e7565b6001600160a01b0384166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061150e82856040518060600160405280602881526020016120ce6028913961134e565b9050610cc1858484846115aa565b6001600160a01b03808316600081815260046020818152604080842080546003845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46115a082848361138a565b50505050565b4690565b60006115ce43604051806060016040528060358152602001611fe16035913961175f565b905060008463ffffffff1611801561161757506001600160a01b038516600090815260056020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611676576001600160a01b0385166000908152600560209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611715565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600583528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600690935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611750929190611ef2565b60405180910390a25050505050565b600081600160201b84106111135760405162461bcd60e51b81526004016105f89190611a53565b80356001600160a01b03811681146107d457600080fd5b803560ff811681146107d457600080fd5b6000602082840312156117bf578081fd5b610abb82611786565b600080604083850312156117da578081fd5b6117e383611786565b91506117f160208401611786565b90509250929050565b60008060006060848603121561180e578081fd5b61181784611786565b925061182560208501611786565b9150604084013590509250925092565b600080600080600080600060e0888a03121561184f578283fd5b61185888611786565b965061186660208901611786565b955060408801359450606088013593506118826080890161179d565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156118b0578182fd5b6118b983611786565b946020939093013593505050565b60008060008060008060c087890312156118df578182fd5b6118e887611786565b955060208701359450604087013593506119046060880161179d565b92506080870135915060a087013590509295509295509295565b60008060408385031215611930578182fd5b61193983611786565b9150602083013563ffffffff81168114611951578182fd5b809150509250929050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611a7f57858101830151858201604001528201611a63565b81811115611a905783604083870101525b50601f01601f1916929092016040019392505050565b60208082526030908201527f50656570733a3a6d696e743a2063616e6e6f74207472616e7366657220746f2060408201526f746865207a65726f206164647265737360801b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f50656570733a3a7065726d69743a20756e617574686f72697a65640000000000604082015260600190565b6020808252603b908201527f50656570733a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207460408201527f72616e7366657220746f20746865207a65726f20616464726573730000000000606082015260800190565b6020808252603f908201527f50656570733a3a7365744d696e7465723a206f6e6c7920746865206d696e746560408201527f722063616e206368616e676520746865206d696e746572206164647265737300606082015260800190565b6020808252818101527f50656570733a3a7065726d69743a207369676e61747572652065787069726564604082015260600190565b60208082526038908201527f50656570733a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207460408201527f72616e7366657220746f20746f6b656e20616464726573730000000000000000606082015260800190565b60208082526025908201527f50656570733a3a6d696e743a206f6e6c7920746865206d696e7465722063616e604082015264081b5a5b9d60da1b606082015260800190565b60208082526027908201527f50656570733a3a64656c656761746542795369673a207369676e617475726520604082015266195e1c1a5c995960ca1b606082015260800190565b6020808252603d908201527f50656570733a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207460408201527f72616e736665722066726f6d20746865207a65726f2061646472657373000000606082015260800190565b6020808252818101527f50656570733a3a7065726d69743a20696e76616c6964207369676e6174757265604082015260600190565b60208082526028908201527f50656570733a3a6765745072696f72566f7465733a206e6f74207965742064656040820152671d195c9b5a5b995960c21b606082015260800190565b60208082526023908201527f50656570733a3a64656c656761746542795369673a20696e76616c6964206e6f6040820152626e636560e81b606082015260800190565b60208082526027908201527f50656570733a3a64656c656761746542795369673a20696e76616c6964207369604082015266676e617475726560c81b606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b039283168152911660208201526040019056fe50656570733a3a617070726f76653a20616d6f756e742065786365656473203936206269747350656570733a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636550656570733a3a6d696e743a20746f74616c537570706c792065786365656473203936206269747350656570733a3a6d696e743a20616d6f756e742065786365656473203936206269747350656570733a3a7065726d69743a20616d6f756e742065786365656473203936206269747350656570733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747350656570733a3a7472616e736665723a20616d6f756e742065786365656473203936206269747350656570733a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777350656570733a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636550656570733a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777350656570733a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777350656570733a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f7773a26469706673582212204c252599b87c76f37bff2bf547e421cb33e2f4220dc81d12092f0d00907b9d6164736f6c63430007060033000000000000000000000000f5c27c6fe782cbb5c85989ea3e75754748153459

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063c3cda5201161007c578063c3cda520146102cc578063d505accf146102df578063dd62ed3e146102f2578063e7a324dc14610305578063f1127ed81461030d578063fca3b5aa1461032e57610158565b806370a0823114610258578063782d6fe11461026b5780637ecebe001461028b57806395d89b411461029e578063a9059cbb146102a6578063b4b5ea57146102b957610158565b806330adf81f1161011557806330adf81f146101e0578063313ce567146101e857806340c10f19146101fd578063587cde1e146102125780635c19a95c146102255780636fcfff451461023857610158565b806306fdde031461015d578063075461721461017b578063095ea7b31461019057806318160ddd146101b057806320606b70146101c557806323b872dd146101cd575b600080fd5b610165610341565b6040516101729190611a53565b60405180910390f35b610183610366565b6040516101729190611977565b6101a361019e36600461189e565b610375565b60405161017291906119a5565b6101b8610434565b60405161017291906119b0565b6101b861043a565b6101a36101db3660046117fa565b61045e565b6101b86105a5565b6101f06105c9565b6040516101729190611ed0565b61021061020b36600461189e565b6105ce565b005b6101836102203660046117ae565b610771565b6102106102333660046117ae565b61078c565b61024b6102463660046117ae565b610799565b6040516101729190611ea0565b6101b86102663660046117ae565b6107b1565b61027e61027936600461189e565b6107d9565b6040516101729190611ede565b6101b86102993660046117ae565b6109e2565b6101656109f4565b6101a36102b436600461189e565b610a15565b61027e6102c73660046117ae565b610a51565b6102106102da3660046118c7565b610ac2565b6102106102ed366004611835565b610cc9565b6101b86103003660046117c8565b610fcc565b6101b8611000565b61032061031b36600461191e565b611024565b604051610172929190611eb1565b61021061033c3660046117ae565b611059565b60405180604001604052806009815260200168506c6561737244414f60b81b81525081565b6001546001600160a01b031681565b60008060001983141561038b57506000196103b0565b6103ad83604051806060016040528060268152602001611f0d602691396110ec565b90505b3360008181526002602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610420908590611ede565b60405180910390a360019150505b92915050565b60005481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b03831660009081526002602090815260408083203380855290835281842054825160608101909352602680845291936001600160601b039091169285926104b69288929190611f0d908301396110ec565b9050866001600160a01b0316836001600160a01b0316141580156104e357506001600160601b0382811614155b1561058d57600061050d83836040518060600160405280603e8152602001611f33603e913961111b565b6001600160a01b038981166000818152600260209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610583908590611ede565b60405180910390a3505b61059887878361115a565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b6001546001600160a01b031633146106015760405162461bcd60e51b81526004016105f890611cb0565b60405180910390fd5b6001600160a01b0382166106275760405162461bcd60e51b81526004016105f890611aa6565b600061064b82604051806060016040528060238152602001611f99602391396110ec565b9050610683610665600054836001600160601b0316611329565b604051806060016040528060288152602001611f71602891396110ec565b6001600160601b0390811660009081556001600160a01b0385168152600360209081526040918290205482516060810190935260268084526106d594919091169285929091906120f69083013961134e565b6001600160a01b03841660008181526003602052604080822080546001600160601b0319166001600160601b03959095169490941790935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061073f908590611ede565b60405180910390a36001600160a01b0380841660009081526004602052604081205461076c92168361138a565b505050565b6004602052600090815260409020546001600160a01b031681565b610796338261151c565b50565b60066020526000908152604090205463ffffffff1681565b6001600160a01b0381166000908152600360205260409020546001600160601b03165b919050565b60004382106107fa5760405162461bcd60e51b81526004016105f890611dce565b6001600160a01b03831660009081526006602052604090205463ffffffff168061082857600091505061042e565b6001600160a01b038416600090815260056020908152604080832063ffffffff6000198601811685529252909120541683106108a4576001600160a01b03841660009081526005602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b0316905061042e565b6001600160a01b038416600090815260056020908152604080832083805290915290205463ffffffff168310156108df57600091505061042e565b600060001982015b8163ffffffff168163ffffffff16111561099d576000600263ffffffff848403166001600160a01b038916600090815260056020908152604080832094909304860363ffffffff818116845294825291839020835180850190945254938416808452600160201b9094046001600160601b0316908301529250908714156109785760200151945061042e9350505050565b805163ffffffff1687111561098f57819350610996565b6001820392505b50506108e7565b506001600160a01b038516600090815260056020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60076020526000908152604090205481565b60405180604001604052806005815260200164504545505360d81b81525081565b600080610a3a83604051806060016040528060278152602001612016602791396110ec565b9050610a4733858361115a565b5060019392505050565b6001600160a01b03811660009081526006602052604081205463ffffffff1680610a7c576000610abb565b6001600160a01b0383166000908152600560209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b604080518082019091526009815268506c6561737244414f60b81b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fe4976508840100a0bef831bd4bbd6a0f1173498524839480ad10168d83abab16610b2f6115a6565b30604051602001610b439493929190611a11565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610b9494939291906119ed565b60405160208183030381529060405280519060200120905060008282604051602001610bc192919061195c565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610bfe9493929190611a35565b6020604051602081039080840390855afa158015610c20573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610c535760405162461bcd60e51b81526004016105f890611e59565b6001600160a01b03811660009081526007602052604090208054600181019091558914610c925760405162461bcd60e51b81526004016105f890611e16565b87421115610cb25760405162461bcd60e51b81526004016105f890611cf5565b610cbc818b61151c565b505050505b505050505050565b6000600019861415610cde5750600019610d03565b610d0086604051806060016040528060258152602001611fbc602591396110ec565b90505b604080518082019091526009815268506c6561737244414f60b81b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fe4976508840100a0bef831bd4bbd6a0f1173498524839480ad10168d83abab16610d706115a6565b30604051602001610d849493929190611a11565b60408051601f1981840301815282825280516020918201206001600160a01b038d166000908152600783529283208054600181019091559094509192610df6927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928e928e928e9290918e91016119b9565b60405160208183030381529060405280519060200120905060008282604051602001610e2392919061195c565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051610e609493929190611a35565b6020604051602081039080840390855afa158015610e82573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610eb55760405162461bcd60e51b81526004016105f890611d99565b8b6001600160a01b0316816001600160a01b031614610ee65760405162461bcd60e51b81526004016105f890611b2d565b88421115610f065760405162461bcd60e51b81526004016105f890611c1e565b84600260008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160601b0302191690836001600160601b031602179055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92587604051610fb69190611ede565b60405180910390a3505050505050505050505050565b6001600160a01b0391821660009081526002602090815260408083209390941682529190915220546001600160601b031690565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600560209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6001546001600160a01b031633146110835760405162461bcd60e51b81526004016105f890611bc1565b6001546040517f3b0007eb941cf645526cbb3a4fdaecda9d28ce4843167d9263b536a1f1edc0f6916110c2916001600160a01b0390911690849061198b565b60405180910390a1600180546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106111135760405162461bcd60e51b81526004016105f89190611a53565b509192915050565b6000836001600160601b0316836001600160601b0316111582906111525760405162461bcd60e51b81526004016105f89190611a53565b505050900390565b6001600160a01b0383166111805760405162461bcd60e51b81526004016105f890611d3c565b6001600160a01b0382166111a65760405162461bcd60e51b81526004016105f890611b64565b6001600160a01b0382163014156111cf5760405162461bcd60e51b81526004016105f890611c53565b6001600160a01b03831660009081526003602090815260409182902054825160608101909352603780845261121a936001600160601b03909216928592919061206e9083013961111b565b6001600160a01b03848116600090815260036020908152604080832080546001600160601b0319166001600160601b03968716179055928616825290829020548251606081019093526031808452611282949190911692859290919061203d9083013961134e565b6001600160a01b038381166000818152600360205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112ef908590611ede565b60405180910390a36001600160a01b0380841660009081526004602052604080822054858416835291205461076c9291821691168361138a565b600082820183811015610abb5760405162461bcd60e51b81526004016105f890611af6565b6000838301826001600160601b0380871690831610156113815760405162461bcd60e51b81526004016105f89190611a53565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156113b557506000816001600160601b0316115b1561076c576001600160a01b0383161561146d576001600160a01b03831660009081526006602052604081205463ffffffff1690816113f5576000611434565b6001600160a01b0385166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061145b82856040518060600160405280602981526020016120a56029913961111b565b9050611469868484846115aa565b5050505b6001600160a01b0382161561076c576001600160a01b03821660009081526006602052604081205463ffffffff1690816114a85760006114e7565b6001600160a01b0384166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061150e82856040518060600160405280602881526020016120ce6028913961134e565b9050610cc1858484846115aa565b6001600160a01b03808316600081815260046020818152604080842080546003845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46115a082848361138a565b50505050565b4690565b60006115ce43604051806060016040528060358152602001611fe16035913961175f565b905060008463ffffffff1611801561161757506001600160a01b038516600090815260056020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611676576001600160a01b0385166000908152600560209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611715565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600583528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600690935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611750929190611ef2565b60405180910390a25050505050565b600081600160201b84106111135760405162461bcd60e51b81526004016105f89190611a53565b80356001600160a01b03811681146107d457600080fd5b803560ff811681146107d457600080fd5b6000602082840312156117bf578081fd5b610abb82611786565b600080604083850312156117da578081fd5b6117e383611786565b91506117f160208401611786565b90509250929050565b60008060006060848603121561180e578081fd5b61181784611786565b925061182560208501611786565b9150604084013590509250925092565b600080600080600080600060e0888a03121561184f578283fd5b61185888611786565b965061186660208901611786565b955060408801359450606088013593506118826080890161179d565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156118b0578182fd5b6118b983611786565b946020939093013593505050565b60008060008060008060c087890312156118df578182fd5b6118e887611786565b955060208701359450604087013593506119046060880161179d565b92506080870135915060a087013590509295509295509295565b60008060408385031215611930578182fd5b61193983611786565b9150602083013563ffffffff81168114611951578182fd5b809150509250929050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611a7f57858101830151858201604001528201611a63565b81811115611a905783604083870101525b50601f01601f1916929092016040019392505050565b60208082526030908201527f50656570733a3a6d696e743a2063616e6e6f74207472616e7366657220746f2060408201526f746865207a65726f206164647265737360801b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f50656570733a3a7065726d69743a20756e617574686f72697a65640000000000604082015260600190565b6020808252603b908201527f50656570733a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207460408201527f72616e7366657220746f20746865207a65726f20616464726573730000000000606082015260800190565b6020808252603f908201527f50656570733a3a7365744d696e7465723a206f6e6c7920746865206d696e746560408201527f722063616e206368616e676520746865206d696e746572206164647265737300606082015260800190565b6020808252818101527f50656570733a3a7065726d69743a207369676e61747572652065787069726564604082015260600190565b60208082526038908201527f50656570733a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207460408201527f72616e7366657220746f20746f6b656e20616464726573730000000000000000606082015260800190565b60208082526025908201527f50656570733a3a6d696e743a206f6e6c7920746865206d696e7465722063616e604082015264081b5a5b9d60da1b606082015260800190565b60208082526027908201527f50656570733a3a64656c656761746542795369673a207369676e617475726520604082015266195e1c1a5c995960ca1b606082015260800190565b6020808252603d908201527f50656570733a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207460408201527f72616e736665722066726f6d20746865207a65726f2061646472657373000000606082015260800190565b6020808252818101527f50656570733a3a7065726d69743a20696e76616c6964207369676e6174757265604082015260600190565b60208082526028908201527f50656570733a3a6765745072696f72566f7465733a206e6f74207965742064656040820152671d195c9b5a5b995960c21b606082015260800190565b60208082526023908201527f50656570733a3a64656c656761746542795369673a20696e76616c6964206e6f6040820152626e636560e81b606082015260800190565b60208082526027908201527f50656570733a3a64656c656761746542795369673a20696e76616c6964207369604082015266676e617475726560c81b606082015260800190565b63ffffffff91909116815260200190565b63ffffffff9290921682526001600160601b0316602082015260400190565b60ff91909116815260200190565b6001600160601b0391909116815260200190565b6001600160601b039283168152911660208201526040019056fe50656570733a3a617070726f76653a20616d6f756e742065786365656473203936206269747350656570733a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636550656570733a3a6d696e743a20746f74616c537570706c792065786365656473203936206269747350656570733a3a6d696e743a20616d6f756e742065786365656473203936206269747350656570733a3a7065726d69743a20616d6f756e742065786365656473203936206269747350656570733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747350656570733a3a7472616e736665723a20616d6f756e742065786365656473203936206269747350656570733a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777350656570733a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636550656570733a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777350656570733a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777350656570733a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f7773a26469706673582212204c252599b87c76f37bff2bf547e421cb33e2f4220dc81d12092f0d00907b9d6164736f6c63430007060033

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

000000000000000000000000f5c27c6fe782cbb5c85989ea3e75754748153459

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

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


Deployed Bytecode Sourcemap

6666:16294:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6738:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7158:21;;;:::i;:::-;;;;;;;:::i;12054:420::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7041:38::-;;;:::i;:::-;;;;;;;:::i;8038:122::-;;;:::i;15158:674::-;;;;;;:::i;:::-;;:::i;8461:137::-;;;:::i;6942:35::-;;;:::i;:::-;;;;;;;:::i;10396:740::-;;;;;;:::i;:::-;;:::i;:::-;;7488:45;;;;;;:::i;:::-;;:::i;15980:102::-;;;;;;:::i;:::-;;:::i;7916:49::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;14237:108::-;;;;;;:::i;:::-;;:::i;18174:1219::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8679:39::-;;;;;;:::i;:::-;;:::i;6840:::-;;;:::i;14609:239::-;;;;;;:::i;:::-;;:::i;17521:222::-;;;;;;:::i;:::-;;:::i;16516:804::-;;;;;;:::i;:::-;;:::i;12964:1070::-;;;;;;:::i;:::-;;:::i;11440:136::-;;;;;;:::i;:::-;;:::i;8254:117::-;;;:::i;7777:70::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;9988:233::-;;;;;;:::i;:::-;;:::i;6738:41::-;;;;;;;;;;;;;;-1:-1:-1;;;6738:41:0;;;;:::o;7158:21::-;;;-1:-1:-1;;;;;7158:21:0;;:::o;12054:420::-;12122:4;12139:13;-1:-1:-1;;12167:9:0;:21;12163:174;;;-1:-1:-1;;;12163:174:0;;;12266:59;12273:9;12266:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;12257:68;;12163:174;12360:10;12349:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;12349:31:0;;;;;;;;;;;:40;;-1:-1:-1;;;;;;12349:40:0;-1:-1:-1;;;;;12349:40:0;;;;;12407:37;;12349:31;;12360:10;12407:37;;;;12349:40;;12407:37;:::i;:::-;;;;;;;;12462:4;12455:11;;;12054:420;;;;;:::o;7041:38::-;;;;:::o;8038:122::-;8080:80;8038:122;:::o;15158:674::-;-1:-1:-1;;;;;15322:15:0;;15240:4;15322:15;;;:10;:15;;;;;;;;15275:10;15322:24;;;;;;;;;;15373:59;;;;;;;;;;;;15275:10;;-1:-1:-1;;;;;15322:24:0;;;;15240:4;;15373:59;;15380:9;;15373:59;;;;;;;:6;:59::i;:::-;15357:75;;15460:3;-1:-1:-1;;;;;15449:14:0;:7;-1:-1:-1;;;;;15449:14:0;;;:48;;;;-1:-1:-1;;;;;;15467:30:0;;;;;15449:48;15445:312;;;15514:19;15536:97;15542:16;15560:6;15536:97;;;;;;;;;;;;;;;;;:5;:97::i;:::-;-1:-1:-1;;;;;15648:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;;:39;;-1:-1:-1;;;;;;15648:39:0;-1:-1:-1;;;;;15648:39:0;;;;;15709:36;15648:39;;-1:-1:-1;15648:24:0;;15709:36;;;;15648:39;;15709:36;:::i;:::-;;;;;;;;15445:312;;15769:33;15785:3;15790;15795:6;15769:15;:33::i;:::-;-1:-1:-1;15820:4:0;;15158:674;-1:-1:-1;;;;;;15158:674:0:o;8461:137::-;8503:95;8461:137;:::o;6942:35::-;6975:2;6942:35;:::o;10396:740::-;10481:6;;-1:-1:-1;;;;;10481:6:0;10467:10;:20;10459:70;;;;-1:-1:-1;;;10459:70:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;10548:17:0;;10540:78;;;;-1:-1:-1;;;10540:78:0;;;;;;;:::i;:::-;10659:13;10675:56;10682:9;10675:56;;;;;;;;;;;;;;;;;:6;:56::i;:::-;10659:72;;10756:85;10763:33;10776:11;;10789:6;-1:-1:-1;;;;;10763:33:0;:12;:33::i;:::-;10756:85;;;;;;;;;;;;;;;;;:6;:85::i;:::-;-1:-1:-1;;;;;10742:99:0;;;:11;:99;;;-1:-1:-1;;;;;10925:13:0;;;;:8;:13;;;;;;;;;;10919:70;;;;;;;;;;;;;;10925:13;;;;;10940:6;;10919:70;;;;;;;;:5;:70::i;:::-;-1:-1:-1;;;;;10903:13:0;;;;;;:8;:13;;;;;;:86;;-1:-1:-1;;;;;;10903:86:0;-1:-1:-1;;;;;10903:86:0;;;;;;;;;;;11005:33;;10903:13;;;11005:33;;;;11031:6;;11005:33;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11105:14:0;;;11101:1;11105:14;;;:9;:14;;;;;;11078:50;;11105:14;11121:6;11078:14;:50::i;:::-;10396:740;;;:::o;7488:45::-;;;;;;;;;;;;-1:-1:-1;;;;;7488:45:0;;:::o;15980:102::-;16042:32;16052:10;16064:9;16042;:32::i;:::-;15980:102;:::o;7916:49::-;;;;;;;;;;;;;;;:::o;14237:108::-;-1:-1:-1;;;;;14320:17:0;;14296:4;14320:17;;;:8;:17;;;;;;-1:-1:-1;;;;;14320:17:0;14237:108;;;;:::o;18174:1219::-;18253:6;18294:12;18280:11;:26;18272:79;;;;-1:-1:-1;;;18272:79:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18386:23:0;;18364:19;18386:23;;;:14;:23;;;;;;;;18424:17;18420:58;;18465:1;18458:8;;;;;18420:58;-1:-1:-1;;;;;18538:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;18559:16:0;;18538:38;;;;;;;;;:48;;:63;-1:-1:-1;18534:147:0;;-1:-1:-1;;;;;18625:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;18646:16:0;;;;18625:38;;;;;;;;:44;-1:-1:-1;;;18625:44:0;;-1:-1:-1;;;;;18625:44:0;;-1:-1:-1;18618:51:0;;18534:147;-1:-1:-1;;;;;18742:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;18738:88:0;;;18813:1;18806:8;;;;;18738:88;18838:12;-1:-1:-1;;18880:16:0;;18907:428;18922:5;18914:13;;:5;:13;;;18907:428;;;18944:13;18986:1;18968:19;18969:13;;;18968:19;-1:-1:-1;;;;;19052:20:0;;19029;19052;;;:11;:20;;;;;;;;18968:19;;;;18960:27;;19052:28;;;;;;;;;;;;;19029:51;;;;;;;;;;;;;;;-1:-1:-1;;;19029:51:0;;;-1:-1:-1;;;;;19029:51:0;;;;;18960:27;-1:-1:-1;19029:51:0;19099:27;;19095:229;;;19154:8;;;;-1:-1:-1;19147:15:0;;-1:-1:-1;;;;19147:15:0;19095:229;19188:12;;:26;;;-1:-1:-1;19184:140:0;;;19243:6;19235:14;;19184:140;;;19307:1;19298:6;:10;19290:18;;19184:140;18907:428;;;;;-1:-1:-1;;;;;;19352:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;19352:33:0;;;;;-1:-1:-1;;18174:1219:0;;;;:::o;8679:39::-;;;;;;;;;;;;;:::o;6840:::-;;;;;;;;;;;;;;-1:-1:-1;;;6840:39:0;;;;:::o;14609:239::-;14674:4;14691:13;14707:60;14714:9;14707:60;;;;;;;;;;;;;;;;;:6;:60::i;:::-;14691:76;;14778:40;14794:10;14806:3;14811:6;14778:15;:40::i;:::-;-1:-1:-1;14836:4:0;;14609:239;-1:-1:-1;;;14609:239:0:o;17521:222::-;-1:-1:-1;;;;;17627:23:0;;17586:6;17627:23;;;:14;:23;;;;;;;;17668:16;:67;;17734:1;17668:67;;;-1:-1:-1;;;;;17687:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;17708:16:0;;17687:38;;;;;;;;;:44;-1:-1:-1;;;17687:44:0;;-1:-1:-1;;;;;17687:44:0;17668:67;17661:74;17521:222;-1:-1:-1;;;17521:222:0:o;16516:804::-;16712:4;;;;;;;;;;;;-1:-1:-1;;;16712:4:0;;;;;16632:23;8080:80;16696:22;16720:12;:10;:12::i;:::-;16742:4;16668:80;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16658:91;;;;;;16632:117;;16760:18;8300:71;16823:9;16834:5;16841:6;16791:57;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16781:68;;;;;;16760:89;;16860:14;16916:15;16933:10;16887:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16877:68;;;;;;16860:85;;16956:17;16976:26;16986:6;16994:1;16997;17000;16976:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16976:26:0;;-1:-1:-1;;16976:26:0;;;-1:-1:-1;;;;;;;17021:23:0;;17013:75;;;;-1:-1:-1;;;17013:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17116:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;17107:28;;17099:76;;;;-1:-1:-1;;;17099:76:0;;;;;;;:::i;:::-;17213:6;17194:15;:25;;17186:77;;;;-1:-1:-1;;;17186:77:0;;;;;;;:::i;:::-;17281:31;17291:9;17302;17281;:31::i;:::-;17274:38;;;;16516:804;;;;;;;:::o;12964:1070::-;13094:13;-1:-1:-1;;13122:9:0;:21;13118:173;;;-1:-1:-1;;;13118:173:0;;;13221:58;13228:9;13221:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;13212:67;;13118:173;13383:4;;;;;;;;;;;;-1:-1:-1;;;13383:4:0;;;;;13303:23;8080:80;13367:22;13391:12;:10;:12::i;:::-;13413:4;13339:80;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;13339:80:0;;;;;;;;;13329:91;;13339:80;13329:91;;;;-1:-1:-1;;;;;13517:13:0;;13431:18;13517:13;;;:6;:13;;;;;:15;;;;;;;;13329:91;;-1:-1:-1;13431:18:0;;13462:81;;8503:95;;13490:5;;13497:7;;13506:9;;13517:15;;13534:8;;13462:81;;:::i;:::-;;;;;;;;;;;;;13452:92;;;;;;13431:113;;13555:14;13611:15;13628:10;13582:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;13572:68;;;;;;13555:85;;13651:17;13671:26;13681:6;13689:1;13692;13695;13671:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;13671:26:0;;-1:-1:-1;;13671:26:0;;;-1:-1:-1;;;;;;;13716:23:0;;13708:68;;;;-1:-1:-1;;;13708:68:0;;;;;;;:::i;:::-;13808:5;-1:-1:-1;;;;;13795:18:0;:9;-1:-1:-1;;;;;13795:18:0;;13787:58;;;;-1:-1:-1;;;13787:58:0;;;;;;;:::i;:::-;13883:8;13864:15;:27;;13856:72;;;;-1:-1:-1;;;13856:72:0;;;;;;;:::i;:::-;13970:6;13941:10;:17;13952:5;-1:-1:-1;;;;;13941:17:0;-1:-1:-1;;;;;13941:17:0;;;;;;;;;;;;:26;13959:7;-1:-1:-1;;;;;13941:26:0;-1:-1:-1;;;;;13941:26:0;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;;;;13941:35:0;;;;;-1:-1:-1;;;;;13941:35:0;;;;;;14010:7;-1:-1:-1;;;;;13994:32:0;14003:5;-1:-1:-1;;;;;13994:32:0;;14019:6;13994:32;;;;;;:::i;:::-;;;;;;;;12964:1070;;;;;;;;;;;;:::o;11440:136::-;-1:-1:-1;;;;;11540:19:0;;;11516:4;11540:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;-1:-1:-1;;;;;11540:28:0;;11440:136::o;8254:117::-;8300:71;8254:117;:::o;7777:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7777:70:0;;-1:-1:-1;;;;;7777:70:0;;:::o;9988:233::-;10066:6;;-1:-1:-1;;;;;10066:6:0;10052:10;:20;10044:96;;;;-1:-1:-1;;;10044:96:0;;;;;;;:::i;:::-;10170:6;;10156:30;;;;;;-1:-1:-1;;;;;10170:6:0;;;;10178:7;;10156:30;:::i;:::-;;;;;;;;10197:6;:16;;-1:-1:-1;;;;;;10197:16:0;-1:-1:-1;;;;;10197:16:0;;;;;;;;;;9988:233::o;22266:161::-;22341:6;22379:12;-1:-1:-1;;;22368:9:0;;22360:32;;;;-1:-1:-1;;;22360:32:0;;;;;;;;:::i;:::-;-1:-1:-1;22417:1:0;;22266:161;-1:-1:-1;;22266:161:0:o;22631:165::-;22717:6;22749:1;-1:-1:-1;;;;;22744:6:0;:1;-1:-1:-1;;;;;22744:6:0;;;22752:12;22736:29;;;;;-1:-1:-1;;;22736:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;22783:5:0;;;22631:165::o;19784:718::-;-1:-1:-1;;;;;19878:17:0;;19870:91;;;;-1:-1:-1;;;19870:91:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19980:17:0;;19972:89;;;;-1:-1:-1;;;19972:89:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20080:20:0;;20095:4;20080:20;;20072:89;;;;-1:-1:-1;;;20072:89:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20196:13:0;;;;;;:8;:13;;;;;;;;;;20190:87;;;;;;;;;;;;;;-1:-1:-1;;;;;20196:13:0;;;;20211:6;;20190:87;;;;;;;:5;:87::i;:::-;-1:-1:-1;;;;;20174:13:0;;;;;;;:8;:13;;;;;;;;:103;;-1:-1:-1;;;;;;20174:103:0;-1:-1:-1;;;;;20174:103:0;;;;;;20310:13;;;;;;;;;;20304:81;;;;;;;;;;;;;;20310:13;;;;;20325:6;;20304:81;;;;;;;;:5;:81::i;:::-;-1:-1:-1;;;;;20288:13:0;;;;;;;:8;:13;;;;;;;:97;;-1:-1:-1;;;;;;20288:97:0;-1:-1:-1;;;;;20288:97:0;;;;;;;;;;;20401:26;;;;;;;;;;20420:6;;20401:26;:::i;:::-;;;;;;;;-1:-1:-1;;;;;20455:14:0;;;;;;;:9;:14;;;;;;;20471;;;;;;;;20440:54;;20455:14;;;;20471;20487:6;20440:14;:54::i;1052:181::-;1110:7;1142:5;;;1166:6;;;;1158:46;;;;-1:-1:-1;;;1158:46:0;;;;;;;:::i;22435:188::-;22521:6;22551:5;;;22583:12;-1:-1:-1;;;;;22575:6:0;;;;;;;;22567:29;;;;-1:-1:-1;;;22567:29:0;;;;;;;;:::i;:::-;-1:-1:-1;22614:1:0;22435:188;-1:-1:-1;;;;22435:188:0:o;20510:941::-;20615:6;-1:-1:-1;;;;;20605:16:0;:6;-1:-1:-1;;;;;20605:16:0;;;:30;;;;;20634:1;20625:6;-1:-1:-1;;;;;20625:10:0;;20605:30;20601:843;;;-1:-1:-1;;;;;20656:20:0;;;20652:383;;-1:-1:-1;;;;;20716:22:0;;20697:16;20716:22;;;:14;:22;;;;;;;;;20776:13;:60;;20835:1;20776:60;;;-1:-1:-1;;;;;20792:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;20812:13:0;;20792:34;;;;;;;;;:40;-1:-1:-1;;;20792:40:0;;-1:-1:-1;;;;;20792:40:0;20776:60;20757:79;;20855:16;20874:69;20880:9;20891:6;20874:69;;;;;;;;;;;;;;;;;:5;:69::i;:::-;20855:88;;20962:57;20979:6;20987:9;20998;21009;20962:16;:57::i;:::-;20652:383;;;;-1:-1:-1;;;;;21055:20:0;;;21051:382;;-1:-1:-1;;;;;21115:22:0;;21096:16;21115:22;;;:14;:22;;;;;;;;;21175:13;:60;;21234:1;21175:60;;;-1:-1:-1;;;;;21191:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;21211:13:0;;21191:34;;;;;;;;;:40;-1:-1:-1;;;21191:40:0;;-1:-1:-1;;;;;21191:40:0;21175:60;21156:79;;21254:16;21273:68;21279:9;21290:6;21273:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;21254:87;;21360:57;21377:6;21385:9;21396;21407;21360:16;:57::i;19401:375::-;-1:-1:-1;;;;;19504:20:0;;;19478:23;19504:20;;;:9;:20;;;;;;;;;;19561:8;:19;;;;;;19591:20;;;;:32;;;-1:-1:-1;;;;;;19591:32:0;;;;;;;19641:54;;19504:20;;;;;-1:-1:-1;;;;;19561:19:0;;;;19591:32;;19504:20;;;19641:54;;19478:23;19641:54;19708:60;19723:15;19740:9;19751:16;19708:14;:60::i;:::-;19401:375;;;;:::o;22804:153::-;22914:9;22804:153;:::o;21459:630::-;21577:18;21598:77;21605:12;21598:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;21577:98;;21705:1;21690:12;:16;;;:85;;;;-1:-1:-1;;;;;;21710:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;21733:16:0;;21710:40;;;;;;;;;:50;:65;;;:50;;:65;21690:85;21686:329;;;-1:-1:-1;;;;;21790:22:0;;;;;;:11;:22;;;;;;;;-1:-1:-1;;21813:16:0;;21790:40;;;;;;;;;:57;;-1:-1:-1;;21790:57:0;-1:-1:-1;;;;;;;;21790:57:0;;;;;;21686:329;;;21915:33;;;;;;;;;;;;;;-1:-1:-1;;;;;21915:33:0;;;;;;;;;;-1:-1:-1;;;;;21876:22:0;;-1:-1:-1;21876:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;21876:72:0;-1:-1:-1;;21876:72:0;;;-1:-1:-1;;21876:72:0;;;;;;;;;;;;;;;21961:25;;;:14;:25;;;;;;;:44;;21876:72;21989:16;;21961:44;;;;;;;;;;;;;21686:329;22051:9;-1:-1:-1;;;;;22030:51:0;;22062:8;22072;22030:51;;;;;;;:::i;:::-;;;;;;;;21459:630;;;;;:::o;22097:161::-;22172:6;22210:12;-1:-1:-1;;;22199:9:0;;22191:32;;;;-1:-1:-1;;;22191:32:0;;;;;;;;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:158;262:20;;322:4;311:16;;301:27;;291:2;;342:1;339;332:12;357:198;;469:2;457:9;448:7;444:23;440:32;437:2;;;490:6;482;475:22;437:2;518:31;539:9;518:31;:::i;560:274::-;;;689:2;677:9;668:7;664:23;660:32;657:2;;;710:6;702;695:22;657:2;738:31;759:9;738:31;:::i;:::-;728:41;;788:40;824:2;813:9;809:18;788:40;:::i;:::-;778:50;;647:187;;;;;:::o;839:342::-;;;;985:2;973:9;964:7;960:23;956:32;953:2;;;1006:6;998;991:22;953:2;1034:31;1055:9;1034:31;:::i;:::-;1024:41;;1084:40;1120:2;1109:9;1105:18;1084:40;:::i;:::-;1074:50;;1171:2;1160:9;1156:18;1143:32;1133:42;;943:238;;;;;:::o;1186:622::-;;;;;;;;1398:3;1386:9;1377:7;1373:23;1369:33;1366:2;;;1420:6;1412;1405:22;1366:2;1448:31;1469:9;1448:31;:::i;:::-;1438:41;;1498:40;1534:2;1523:9;1519:18;1498:40;:::i;:::-;1488:50;;1585:2;1574:9;1570:18;1557:32;1547:42;;1636:2;1625:9;1621:18;1608:32;1598:42;;1659:39;1693:3;1682:9;1678:19;1659:39;:::i;:::-;1649:49;;1745:3;1734:9;1730:19;1717:33;1707:43;;1797:3;1786:9;1782:19;1769:33;1759:43;;1356:452;;;;;;;;;;:::o;1813:266::-;;;1942:2;1930:9;1921:7;1917:23;1913:32;1910:2;;;1963:6;1955;1948:22;1910:2;1991:31;2012:9;1991:31;:::i;:::-;1981:41;2069:2;2054:18;;;;2041:32;;-1:-1:-1;;;1900:179:1:o;2084:545::-;;;;;;;2279:3;2267:9;2258:7;2254:23;2250:33;2247:2;;;2301:6;2293;2286:22;2247:2;2329:31;2350:9;2329:31;:::i;:::-;2319:41;;2407:2;2396:9;2392:18;2379:32;2369:42;;2458:2;2447:9;2443:18;2430:32;2420:42;;2481:38;2515:2;2504:9;2500:18;2481:38;:::i;:::-;2471:48;;2566:3;2555:9;2551:19;2538:33;2528:43;;2618:3;2607:9;2603:19;2590:33;2580:43;;2237:392;;;;;;;;:::o;2634:372::-;;;2762:2;2750:9;2741:7;2737:23;2733:32;2730:2;;;2783:6;2775;2768:22;2730:2;2811:31;2832:9;2811:31;:::i;:::-;2801:41;;2892:2;2881:9;2877:18;2864:32;2936:10;2929:5;2925:22;2918:5;2915:33;2905:2;;2967:6;2959;2952:22;2905:2;2995:5;2985:15;;;2720:286;;;;;:::o;3011:392::-;-1:-1:-1;;;3269:27:1;;3321:1;3312:11;;3305:27;;;;3357:2;3348:12;;3341:28;3394:2;3385:12;;3259:144::o;3408:203::-;-1:-1:-1;;;;;3572:32:1;;;;3554:51;;3542:2;3527:18;;3509:102::o;3616:304::-;-1:-1:-1;;;;;3846:15:1;;;3828:34;;3898:15;;3893:2;3878:18;;3871:43;3778:2;3763:18;;3745:175::o;3925:187::-;4090:14;;4083:22;4065:41;;4053:2;4038:18;;4020:92::o;4117:177::-;4263:25;;;4251:2;4236:18;;4218:76::o;4299:591::-;4586:25;;;-1:-1:-1;;;;;4685:15:1;;;4680:2;4665:18;;4658:43;4737:15;;;;4732:2;4717:18;;4710:43;4784:2;4769:18;;4762:34;4827:3;4812:19;;4805:35;;;;4638:3;4856:19;;4849:35;4573:3;4558:19;;4540:350::o;4895:417::-;5126:25;;;-1:-1:-1;;;;;5187:32:1;;;;5182:2;5167:18;;5160:60;5251:2;5236:18;;5229:34;5294:2;5279:18;;5272:34;5113:3;5098:19;;5080:232::o;5317:417::-;5548:25;;;5604:2;5589:18;;5582:34;;;;5647:2;5632:18;;5625:34;-1:-1:-1;;;;;5695:32:1;5690:2;5675:18;;5668:60;5535:3;5520:19;;5502:232::o;5739:398::-;5966:25;;;6039:4;6027:17;;;;6022:2;6007:18;;6000:45;6076:2;6061:18;;6054:34;6119:2;6104:18;;6097:34;5953:3;5938:19;;5920:217::o;6142:603::-;;6283:2;6312;6301:9;6294:21;6344:6;6338:13;6387:6;6382:2;6371:9;6367:18;6360:34;6412:4;6425:140;6439:6;6436:1;6433:13;6425:140;;;6534:14;;;6530:23;;6524:30;6500:17;;;6519:2;6496:26;6489:66;6454:10;;6425:140;;;6583:6;6580:1;6577:13;6574:2;;;6653:4;6648:2;6639:6;6628:9;6624:22;6620:31;6613:45;6574:2;-1:-1:-1;6729:2:1;6708:15;-1:-1:-1;;6704:29:1;6689:45;;;;6736:2;6685:54;;6263:482;-1:-1:-1;;;6263:482:1:o;6750:412::-;6952:2;6934:21;;;6991:2;6971:18;;;6964:30;7030:34;7025:2;7010:18;;7003:62;-1:-1:-1;;;7096:2:1;7081:18;;7074:46;7152:3;7137:19;;6924:238::o;7167:351::-;7369:2;7351:21;;;7408:2;7388:18;;;7381:30;7447:29;7442:2;7427:18;;7420:57;7509:2;7494:18;;7341:177::o;7523:351::-;7725:2;7707:21;;;7764:2;7744:18;;;7737:30;7803:29;7798:2;7783:18;;7776:57;7865:2;7850:18;;7697:177::o;7879:423::-;8081:2;8063:21;;;8120:2;8100:18;;;8093:30;8159:34;8154:2;8139:18;;8132:62;8230:29;8225:2;8210:18;;8203:57;8292:3;8277:19;;8053:249::o;8307:427::-;8509:2;8491:21;;;8548:2;8528:18;;;8521:30;8587:34;8582:2;8567:18;;8560:62;8658:33;8653:2;8638:18;;8631:61;8724:3;8709:19;;8481:253::o;8739:356::-;8941:2;8923:21;;;8960:18;;;8953:30;9019:34;9014:2;8999:18;;8992:62;9086:2;9071:18;;8913:182::o;9100:420::-;9302:2;9284:21;;;9341:2;9321:18;;;9314:30;9380:34;9375:2;9360:18;;9353:62;9451:26;9446:2;9431:18;;9424:54;9510:3;9495:19;;9274:246::o;9525:401::-;9727:2;9709:21;;;9766:2;9746:18;;;9739:30;9805:34;9800:2;9785:18;;9778:62;-1:-1:-1;;;9871:2:1;9856:18;;9849:35;9916:3;9901:19;;9699:227::o;9931:403::-;10133:2;10115:21;;;10172:2;10152:18;;;10145:30;10211:34;10206:2;10191:18;;10184:62;-1:-1:-1;;;10277:2:1;10262:18;;10255:37;10324:3;10309:19;;10105:229::o;10339:425::-;10541:2;10523:21;;;10580:2;10560:18;;;10553:30;10619:34;10614:2;10599:18;;10592:62;10690:31;10685:2;10670:18;;10663:59;10754:3;10739:19;;10513:251::o;10769:356::-;10971:2;10953:21;;;10990:18;;;10983:30;11049:34;11044:2;11029:18;;11022:62;11116:2;11101:18;;10943:182::o;11130:404::-;11332:2;11314:21;;;11371:2;11351:18;;;11344:30;11410:34;11405:2;11390:18;;11383:62;-1:-1:-1;;;11476:2:1;11461:18;;11454:38;11524:3;11509:19;;11304:230::o;11539:399::-;11741:2;11723:21;;;11780:2;11760:18;;;11753:30;11819:34;11814:2;11799:18;;11792:62;-1:-1:-1;;;11885:2:1;11870:18;;11863:33;11928:3;11913:19;;11713:225::o;11943:403::-;12145:2;12127:21;;;12184:2;12164:18;;;12157:30;12223:34;12218:2;12203:18;;12196:62;-1:-1:-1;;;12289:2:1;12274:18;;12267:37;12336:3;12321:19;;12117:229::o;12533:192::-;12707:10;12695:23;;;;12677:42;;12665:2;12650:18;;12632:93::o;12730:294::-;12930:10;12918:23;;;;12900:42;;-1:-1:-1;;;;;12978:39:1;12973:2;12958:18;;12951:67;12888:2;12873:18;;12855:169::o;13029:184::-;13201:4;13189:17;;;;13171:36;;13159:2;13144:18;;13126:87::o;13218:209::-;-1:-1:-1;;;;;13381:39:1;;;;13363:58;;13351:2;13336:18;;13318:109::o;13645:309::-;-1:-1:-1;;;;;13880:15:1;;;13862:34;;13932:15;;13927:2;13912:18;;13905:43;13805:2;13790:18;;13772:182::o

Swarm Source

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