ETH Price: $3,420.10 (+1.13%)
Gas: 4 Gwei

Token

Wasabi Swap (WASABI)
 

Overview

Max Total Supply

10,420,875.59414428518831593 WASABI

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.449026002461239287 WASABI

Value
$0.00
0x38c8db67047146f9b0e6e185aa57eaeb67c6f1ad
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:
WasabiToken

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-06
*/

// Dependency file: contracts/interface/IERC20.sol

//SPDX-License-Identifier: MIT
// pragma solidity >=0.5.0;

interface IERC20 {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
}


// Dependency file: contracts/interface/ERC2917-Interface.sol

// pragma solidity >=0.6.6;
// import 'contracts/interface/IERC20.sol';

interface IERC2917 is IERC20 {

    /// @dev This emit when interests amount per block is changed by the owner of the contract.
    /// It emits with the old interests amount and the new interests amount.
    event InterestsPerBlockChanged (uint oldValue, uint newValue);

    /// @dev This emit when a users' productivity has changed
    /// It emits with the user's address and the the value after the change.
    event ProductivityIncreased (address indexed user, uint value);

    /// @dev This emit when a users' productivity has changed
    /// It emits with the user's address and the the value after the change.
    event ProductivityDecreased (address indexed user, uint value);

    
    /// @dev Return the current contract's interests rate per block.
    /// @return The amount of interests currently producing per each block.
    function interestsPerBlock() external view returns (uint);

    /// @notice Change the current contract's interests rate.
    /// @dev Note the best practice will be restrict the gross product provider's contract address to call this.
    /// @return The true/fase to notice that the value has successfully changed or not, when it succeed, it will emite the InterestsPerBlockChanged event.
    function changeInterestsPerBlock(uint value) external returns (bool);

    /// @notice It will get the productivity of given user.
    /// @dev it will return 0 if user has no productivity proved in the contract.
    /// @return user's productivity and overall productivity.
    function getProductivity(address user) external view returns (uint, uint);

    /// @notice increase a user's productivity.
    /// @dev Note the best practice will be restrict the callee to prove of productivity's contract address.
    /// @return true to confirm that the productivity added success.
    function increaseProductivity(address user, uint value) external returns (uint);

    /// @notice decrease a user's productivity.
    /// @dev Note the best practice will be restrict the callee to prove of productivity's contract address.
    /// @return true to confirm that the productivity removed success.
    function decreaseProductivity(address user, uint value) external returns (uint);

    /// @notice take() will return the interests that callee will get at current block height.
    /// @dev it will always calculated by block.number, so it will change when block height changes.
    /// @return amount of the interests that user are able to mint() at current block height.
    function take() external view returns (uint);

    /// @notice similar to take(), but with the block height joined to calculate return.
    /// @dev for instance, it returns (_amount, _block), which means at block height _block, the callee has accumulated _amount of interests.
    /// @return amount of interests and the block height.
    function takeWithBlock() external view returns (uint, uint);

    /// @notice mint the avaiable interests to callee.
    /// @dev once it mint, the amount of interests will transfer to callee's address.
    /// @return the amount of interests minted.
    function mint(address to) external returns (uint);
}


// Dependency file: contracts/libraries/Upgradable.sol

// pragma solidity >=0.5.16;

contract UpgradableProduct {
    address public impl;

    event ImplChanged(address indexed _oldImpl, address indexed _newImpl);

    constructor() public {
        impl = msg.sender;
    }

    modifier requireImpl() {
        require(msg.sender == impl, 'FORBIDDEN');
        _;
    }

    function upgradeImpl(address _newImpl) public requireImpl {
        require(_newImpl != address(0), 'INVALID_ADDRESS');
        require(_newImpl != impl, 'NO_CHANGE');
        address lastImpl = impl;
        impl = _newImpl;
        emit ImplChanged(lastImpl, _newImpl);
    }
}

contract UpgradableGovernance {
    address public governor;

    event GovernorChanged(address indexed _oldGovernor, address indexed _newGovernor);

    constructor() public {
        governor = msg.sender;
    }

    modifier requireGovernor() {
        require(msg.sender == governor, 'FORBIDDEN');
        _;
    }

    function upgradeGovernance(address _newGovernor) public requireGovernor {
        require(_newGovernor != address(0), 'INVALID_ADDRESS');
        require(_newGovernor != governor, 'NO_CHANGE');
        address lastGovernor = governor;
        governor = _newGovernor;
        emit GovernorChanged(lastGovernor, _newGovernor);
    }
}


// Dependency file: contracts/libraries/SafeMath.sol


// pragma solidity ^0.6.0;

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    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 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) {
        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;
    }
}

// Root file: contracts/WasabiToken.sol

pragma solidity >=0.6.6;

// import 'contracts/interface/ERC2917-Interface.sol';
// import 'contracts/libraries/Upgradable.sol';
// import 'contracts/libraries/SafeMath.sol';

/*
    The Objective of ERC2917 Demo is to implement a decentralized staking mechanism, which calculates users' share
    by accumulating productiviy * time. And calculates users revenue from anytime t0 to t1 by the formula below:

        user_accumulated_productivity(time1) - user_accumulated_productivity(time0)
       _____________________________________________________________________________  * (gross_product(t1) - gross_product(t0))
       total_accumulated_productivity(time1) - total_accumulated_productivity(time0)

*/
contract WasabiToken is IERC2917, UpgradableProduct, UpgradableGovernance {
    using SafeMath for uint;

    uint public mintCumulation;
    uint public maxMintCumulation;

    uint private unlocked = 1;
    uint public wasabiPerBlock;

    modifier lock() {
        require(unlocked == 1, 'Locked');
        unlocked = 0;
        _;
        unlocked = 1;
    }

    uint public nounce;

    function incNounce() public {
        nounce ++;
    }

    struct UserInfo {
        uint amount;     // How many LP tokens the user has provided.
        uint rewardDebt; // Reward debt. 
    }

    mapping(address => UserInfo) public users;

    // implementation of ERC20 interfaces.
    string override public name;
    string override public symbol;
    uint8 override public decimals = 18;
    uint override public totalSupply;

    mapping(address => uint) override public balanceOf;
    mapping(address => mapping(address => uint)) override public allowance;

    function _transfer(address from, address to, uint value) private {
        require(balanceOf[from] >= value, 'ERC20Token: INSUFFICIENT_BALANCE');
        balanceOf[from] = balanceOf[from].sub(value);
        balanceOf[to] = balanceOf[to].add(value);
        if (to == address(0)) { // burn
            totalSupply = totalSupply.sub(value);
        }
        emit Transfer(from, to, value);
    }

    function approve(address spender, uint value) external override returns (bool) {
        allowance[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    function transfer(address to, uint value) external override returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    function transferFrom(address from, address to, uint value) external override returns (bool) {
        require(allowance[from][msg.sender] >= value, 'ERC20Token: INSUFFICIENT_ALLOWANCE');
        allowance[from][msg.sender] = allowance[from][msg.sender].sub(value);
        _transfer(from, to, value);
        return true;
    }

    // end of implementation of ERC20

    // creation of the interests token.
    constructor(uint _interestsRate, uint _maxMintCumulation) UpgradableProduct() UpgradableGovernance() public {
        name        = "Wasabi Swap";
        symbol      = "WASABI";
        decimals    = 18;

        wasabiPerBlock = _interestsRate;

        maxMintCumulation = _maxMintCumulation;
    }

    // External function call
    // This function adjust how many token will be produced by each block, eg:
    // changeAmountPerBlock(100)
    // will set the produce rate to 100/block.
    function changeInterestsPerBlock(uint value) external override requireGovernor returns (bool) {
        uint old = wasabiPerBlock;
        require(value != old, 'AMOUNT_PER_BLOCK_NO_CHANGE');

        wasabiPerBlock = value;

        emit InterestsPerBlockChanged(old, value);
        return true;
    }

    uint lastRewardBlock;
    uint totalProductivity;
    uint accAmountPerShare;

        // Update reward variables of the given pool to be up-to-date.
    function update() internal 
    {
        if (block.number <= lastRewardBlock) {
            return;
        }

        if (totalProductivity == 0) {
            lastRewardBlock = block.number;
            return;
        }
        uint256 multiplier = block.number.sub(lastRewardBlock);
        uint256 reward = multiplier.mul(wasabiPerBlock);
        balanceOf[address(this)] = balanceOf[address(this)].add(reward);
        totalSupply = totalSupply.add(reward);

        accAmountPerShare = accAmountPerShare.add(reward.mul(1e12).div(totalProductivity));
        lastRewardBlock = block.number;
    }

    // External function call
    // This function increase user's productivity and updates the global productivity.
    // the users' actual share percentage will calculated by:
    // Formula:     user_productivity / global_productivity
    function increaseProductivity(address user, uint value) external override requireImpl returns (uint) {
        if(mintCumulation >= maxMintCumulation)
            return 0;

        require(value > 0, 'PRODUCTIVITY_VALUE_MUST_BE_GREATER_THAN_ZERO');

        UserInfo storage userInfo = users[user];
        update();
        if (userInfo.amount > 0) {
            uint pending = userInfo.amount.mul(accAmountPerShare).div(1e12).sub(userInfo.rewardDebt);
            _transfer(address(this), user, pending);
            mintCumulation = mintCumulation.add(pending);
        }

        totalProductivity = totalProductivity.add(value);

        userInfo.amount = userInfo.amount.add(value);
        userInfo.rewardDebt = userInfo.amount.mul(accAmountPerShare).div(1e12);
        emit ProductivityIncreased(user, value);
        return userInfo.amount;
    }

    // External function call 
    // This function will decreases user's productivity by value, and updates the global productivity
    // it will record which block this is happenning and accumulates the area of (productivity * time)
    function decreaseProductivity(address user, uint value) external override requireImpl returns (uint) {
        if(mintCumulation >= maxMintCumulation)
            return 0;

        require(value > 0, 'INSUFFICIENT_PRODUCTIVITY');
        
        UserInfo storage userInfo = users[user];
        require(userInfo.amount >= value, "WASABI: FORBIDDEN");
        update();
        uint pending = userInfo.amount.mul(accAmountPerShare).div(1e12).sub(userInfo.rewardDebt);
        _transfer(address(this), user, pending);
        mintCumulation = mintCumulation.add(pending);
        userInfo.amount = userInfo.amount.sub(value);
        userInfo.rewardDebt = userInfo.amount.mul(accAmountPerShare).div(1e12);
        totalProductivity = totalProductivity.sub(value);

        emit ProductivityDecreased(user, value);
        return pending;
    }

    function take() external override view returns (uint) {
        if(mintCumulation >= maxMintCumulation)
            return 0;

        UserInfo storage userInfo = users[msg.sender];
        uint _accAmountPerShare = accAmountPerShare;
        // uint256 lpSupply = totalProductivity;
        if (block.number > lastRewardBlock && totalProductivity != 0) {
            uint multiplier = block.number.sub(lastRewardBlock);
            uint reward = multiplier.mul(wasabiPerBlock);
            _accAmountPerShare = _accAmountPerShare.add(reward.mul(1e12).div(totalProductivity));
        }
        return userInfo.amount.mul(_accAmountPerShare).div(1e12).sub(userInfo.rewardDebt);
    }

    function takeWithAddress(address user) external view returns (uint) {
        if(mintCumulation >= maxMintCumulation)
            return 0;

        UserInfo storage userInfo = users[user];
        uint _accAmountPerShare = accAmountPerShare;
        // uint256 lpSupply = totalProductivity;
        if (block.number > lastRewardBlock && totalProductivity != 0) {
            uint multiplier = block.number.sub(lastRewardBlock);
            uint reward = multiplier.mul(wasabiPerBlock);
            _accAmountPerShare = _accAmountPerShare.add(reward.mul(1e12).div(totalProductivity));
        }
        return userInfo.amount.mul(_accAmountPerShare).div(1e12).sub(userInfo.rewardDebt);
    }

    // Returns how much a user could earn plus the giving block number.
    function takeWithBlock() external override view returns (uint, uint) {
        if(mintCumulation >= maxMintCumulation)
            return (0, block.number);

        UserInfo storage userInfo = users[msg.sender];
        uint _accAmountPerShare = accAmountPerShare;
        // uint256 lpSupply = totalProductivity;
        if (block.number > lastRewardBlock && totalProductivity != 0) {
            uint multiplier = block.number.sub(lastRewardBlock);
            uint reward = multiplier.mul(wasabiPerBlock);
            _accAmountPerShare = _accAmountPerShare.add(reward.mul(1e12).div(totalProductivity));
        }
        return (userInfo.amount.mul(_accAmountPerShare).div(1e12).sub(userInfo.rewardDebt), block.number);
    }


    // External function call
    // When user calls this function, it will calculate how many token will mint to user from his productivity * time
    // Also it calculates global token supply from last time the user mint to this time.
    function mint(address to) external override lock returns (uint) {
        require(to != address(0), '');
        return 0;
    }

    // Returns how many productivity a user has and global has.
    function getProductivity(address user) external override view returns (uint, uint) {
        return (users[user].amount, totalProductivity);
    }

    // Returns the current gorss product rate.
    function interestsPerBlock() external override view returns (uint) {
        return accAmountPerShare;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_interestsRate","type":"uint256"},{"internalType":"uint256","name":"_maxMintCumulation","type":"uint256"}],"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":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_oldGovernor","type":"address"},{"indexed":true,"internalType":"address","name":"_newGovernor","type":"address"}],"name":"GovernorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_oldImpl","type":"address"},{"indexed":true,"internalType":"address","name":"_newImpl","type":"address"}],"name":"ImplChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"InterestsPerBlockChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"ProductivityDecreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"ProductivityIncreased","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"changeInterestsPerBlock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"decreaseProductivity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getProductivity","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"impl","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incNounce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"increaseProductivity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"interestsPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintCumulation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintCumulation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nounce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"take","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"takeWithAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"takeWithBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newGovernor","type":"address"}],"name":"upgradeGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newImpl","type":"address"}],"name":"upgradeImpl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wasabiPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526001600455600a805460ff191660121790553480156200002357600080fd5b506040516200191d3803806200191d833981810160405260408110156200004957600080fd5b50805160209182015160008054336001600160a01b0319918216811790925560018054909116909117905560408051808201909152600b8082526a057617361626920537761760ac1b9190940190815291929091620000ac9160089190620000f9565b506040805180820190915260068082526557415341424960d01b6020909201918252620000dc91600991620000f9565b50600a805460ff191660121790556005919091556003556200019e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013c57805160ff19168380011785556200016c565b828001600101855582156200016c579182015b828111156200016c5782518255916020019190600101906200014f565b506200017a9291506200017e565b5090565b6200019b91905b808211156200017a576000815560010162000185565b90565b61176f80620001ae6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063616d2463116100f95780638abf607711610097578063a9059cbb11610071578063a9059cbb146104f2578063bfc8b2081461051e578063cf67536514610526578063dd62ed3e1461052e576101c4565b80638abf6077146104bc57806395d89b41146104c4578063a87430ba146104cc576101c4565b80636a627842116100d35780636a627842146104605780636c531712146104865780636df265751461048e57806370a0823114610496576101c4565b8063616d246314610415578063622b067f1461041d5780636622c8381461043a576101c4565b80631fedded511610166578063313ce56711610140578063313ce5671461039757806336f04e45146103b55780634afa66d6146103e15780635808b75b1461040d576101c4565b80631fedded51461031557806323b872dd1461033b57806328e964e914610371576101c4565b80630e0b6eb5116101a25780630e0b6eb5146102aa578063159090bd146102cb57806318160ddd146102e55780631a2f1363146102ed576101c4565b806306fdde03146101c9578063095ea7b3146102465780630c340a2414610286575b600080fd5b6101d161055c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356105ea565b604080519115158252519081900360200190f35b61028e610651565b604080516001600160a01b039092168252519081900360200190f35b6102b2610660565b6040805192835260208301919091528051918290030190f35b6102d3610753565b60408051918252519081900360200190f35b6102d3610819565b6103136004803603602081101561030357600080fd5b50356001600160a01b031661081f565b005b6103136004803603602081101561032b57600080fd5b50356001600160a01b0316610956565b6102726004803603606081101561035157600080fd5b506001600160a01b03813581169160208101359091169060400135610a8f565b6102b26004803603602081101561038757600080fd5b50356001600160a01b0316610b5e565b61039f610b7d565b6040805160ff9092168252519081900360200190f35b6102d3600480360360408110156103cb57600080fd5b506001600160a01b038135169060200135610b86565b6102d3600480360360408110156103f757600080fd5b506001600160a01b038135169060200135610d31565b610313610f33565b6102d3610f3e565b6102726004803603602081101561043357600080fd5b5035610f44565b6102d36004803603602081101561045057600080fd5b50356001600160a01b0316611035565b6102d36004803603602081101561047657600080fd5b50356001600160a01b0316611104565b6102d361118c565b6102d3611192565b6102d3600480360360208110156104ac57600080fd5b50356001600160a01b0316611198565b61028e6111aa565b6101d16111b9565b6102b2600480360360208110156104e257600080fd5b50356001600160a01b0316611214565b6102726004803603604081101561050857600080fd5b506001600160a01b03813516906020013561122d565b6102d3611243565b6102d3611249565b6102d36004803603604081101561054457600080fd5b506001600160a01b038135811691602001351661124f565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105e25780601f106105b7576101008083540402835291602001916105e2565b820191906000526020600020905b8154815290600101906020018083116105c557829003601f168201915b505050505081565b336000818152600d602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6001546001600160a01b031681565b600080600354600254106106795750600090504361074f565b336000908152600760205260409020601054600e544311801561069d5750600f5415155b156107135760006106b9600e544361126c90919063ffffffff16565b905060006106d2600554836112b590919063ffffffff16565b905061070e610701600f546106f564e8d4a51000856112b590919063ffffffff16565b9063ffffffff61130e16565b849063ffffffff61135016565b925050505b610747826001015461073b64e8d4a510006106f58587600001546112b590919063ffffffff16565b9063ffffffff61126c16565b439350935050505b9091565b60006003546002541061076857506000610816565b336000908152600760205260409020601054600e544311801561078c5750600f5415155b156107e95760006107a8600e544361126c90919063ffffffff16565b905060006107c1600554836112b590919063ffffffff16565b90506107e4610701600f546106f564e8d4a51000856112b590919063ffffffff16565b925050505b610811826001015461073b64e8d4a510006106f58587600001546112b590919063ffffffff16565b925050505b90565b600b5481565b6000546001600160a01b0316331461086a576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b6001600160a01b0381166108b7576040805162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b604482015290519081900360640190fd5b6000546001600160a01b0382811691161415610906576040805162461bcd60e51b81526020600482015260096024820152684e4f5f4348414e474560b81b604482015290519081900360640190fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917faad46b89531ed10d02d926f4d6bfe234a6126e3fffc02d3b07167575f9c143379190a35050565b6001546001600160a01b031633146109a1576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b6001600160a01b0381166109ee576040805162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b604482015290519081900360640190fd5b6001546001600160a01b0382811691161415610a3d576040805162461bcd60e51b81526020600482015260096024820152684e4f5f4348414e474560b81b604482015290519081900360640190fd5b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fde4b3f61490b74c0ed6237523974fe299126bbbf8a8a7482fd220104c59b0c8490600090a35050565b6001600160a01b0383166000908152600d60209081526040808320338452909152812054821115610af15760405162461bcd60e51b81526004018080602001828103825260228152602001806116cb6022913960400191505060405180910390fd5b6001600160a01b0384166000908152600d60209081526040808320338452909152902054610b25908363ffffffff61126c16565b6001600160a01b0385166000908152600d60209081526040808320338452909152902055610b548484846113aa565b5060019392505050565b6001600160a01b0316600090815260076020526040902054600f549091565b600a5460ff1681565b600080546001600160a01b03163314610bd2576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b60035460025410610be55750600061064b565b60008211610c245760405162461bcd60e51b815260040180806020018281038252602c81526020018061170e602c913960400191505060405180910390fd5b6001600160a01b0383166000908152600760205260409020610c446114fc565b805415610c9c576000610c77826001015461073b64e8d4a510006106f560105487600001546112b590919063ffffffff16565b9050610c843086836113aa565b600254610c97908263ffffffff61135016565b600255505b600f54610caf908463ffffffff61135016565b600f558054610cc4908463ffffffff61135016565b808255601054610ce59164e8d4a51000916106f5919063ffffffff6112b516565b60018201556040805184815290516001600160a01b038616917f6c0a24b06ee7f1d9c3c6680c7328531c32bc59cd665436fc686f973cb8c01be7919081900360200190a2549392505050565b600080546001600160a01b03163314610d7d576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b60035460025410610d905750600061064b565b60008211610de5576040805162461bcd60e51b815260206004820152601960248201527f494e53554646494349454e545f50524f44554354495649545900000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526007602052604090208054831115610e47576040805162461bcd60e51b81526020600482015260116024820152702ba0a9a0a1249d102327a92124a22222a760791b604482015290519081900360640190fd5b610e4f6114fc565b6000610e7b826001015461073b64e8d4a510006106f560105487600001546112b590919063ffffffff16565b9050610e883086836113aa565b600254610e9b908263ffffffff61135016565b6002558154610eb0908563ffffffff61126c16565b808355601054610ed19164e8d4a51000916106f5919063ffffffff6112b516565b6001830155600f54610ee9908563ffffffff61126c16565b600f556040805185815290516001600160a01b038716917fddb757202feefdd10c1666f1bb8f9744309ab811b6ef3ec0404a20c36e426697919081900360200190a2949350505050565b600680546001019055565b60065481565b6001546000906001600160a01b03163314610f92576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b60055482811415610fea576040805162461bcd60e51b815260206004820152601a60248201527f414d4f554e545f5045525f424c4f434b5f4e4f5f4348414e4745000000000000604482015290519081900360640190fd5b6005839055604080518281526020810185905281517f2b0f92871c475b115872736d792627db822895557aec734cef4d60531965ed83929181900390910190a160019150505b919050565b60006003546002541061104a57506000611030565b6001600160a01b0382166000908152600760205260409020601054600e54431180156110775750600f5415155b156110d4576000611093600e544361126c90919063ffffffff16565b905060006110ac600554836112b590919063ffffffff16565b90506110cf610701600f546106f564e8d4a51000856112b590919063ffffffff16565b925050505b6110fc826001015461073b64e8d4a510006106f58587600001546112b590919063ffffffff16565b949350505050565b6000600454600114611146576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b60006004556001600160a01b038216611180576040805162461bcd60e51b8152602060048201526000602482015290519081900360640190fd5b50506001600455600090565b60035481565b60055481565b600c6020526000908152604090205481565b6000546001600160a01b031681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105e25780601f106105b7576101008083540402835291602001916105e2565b6007602052600090815260409020805460019091015482565b600061123a3384846113aa565b50600192915050565b60105490565b60025481565b600d60209081526000928352604080842090915290825290205481565b60006112ae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115ce565b9392505050565b6000826112c45750600061064b565b828202828482816112d157fe5b04146112ae5760405162461bcd60e51b81526004018080602001828103825260218152602001806116ed6021913960400191505060405180910390fd5b60006112ae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611665565b6000828201838110156112ae576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600c6020526040902054811115611417576040805162461bcd60e51b815260206004820181905260248201527f4552433230546f6b656e3a20494e53554646494349454e545f42414c414e4345604482015290519081900360640190fd5b6001600160a01b0383166000908152600c6020526040902054611440908263ffffffff61126c16565b6001600160a01b038085166000908152600c60205260408082209390935590841681522054611475908263ffffffff61135016565b6001600160a01b0383166000818152600c60205260409020919091556114ac57600b546114a8908263ffffffff61126c16565b600b555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600e54431161150a576115cc565b600f5461151a5743600e556115cc565b6000611531600e544361126c90919063ffffffff16565b9050600061154a600554836112b590919063ffffffff16565b306000908152600c602052604090205490915061156d908263ffffffff61135016565b306000908152600c6020526040902055600b54611590908263ffffffff61135016565b600b55600f546115c2906115b3906106f58464e8d4a5100063ffffffff6112b516565b6010549063ffffffff61135016565b601055505043600e555b565b6000818484111561165d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561162257818101518382015260200161160a565b50505050905090810190601f16801561164f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836116b45760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561162257818101518382015260200161160a565b5060008385816116c057fe5b049594505050505056fe4552433230546f6b656e3a20494e53554646494349454e545f414c4c4f57414e4345536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7750524f4455435449564954595f56414c55455f4d5553545f42455f475245415445525f5448414e5f5a45524fa26469706673582212203e43f2e48ca5fa82843b3376c83a78429f3132ac31b9c309d78b172e6b55fbeb64736f6c6343000608003300000000000000000000000000000000000000000000003635c9adc5dea0000000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063616d2463116100f95780638abf607711610097578063a9059cbb11610071578063a9059cbb146104f2578063bfc8b2081461051e578063cf67536514610526578063dd62ed3e1461052e576101c4565b80638abf6077146104bc57806395d89b41146104c4578063a87430ba146104cc576101c4565b80636a627842116100d35780636a627842146104605780636c531712146104865780636df265751461048e57806370a0823114610496576101c4565b8063616d246314610415578063622b067f1461041d5780636622c8381461043a576101c4565b80631fedded511610166578063313ce56711610140578063313ce5671461039757806336f04e45146103b55780634afa66d6146103e15780635808b75b1461040d576101c4565b80631fedded51461031557806323b872dd1461033b57806328e964e914610371576101c4565b80630e0b6eb5116101a25780630e0b6eb5146102aa578063159090bd146102cb57806318160ddd146102e55780631a2f1363146102ed576101c4565b806306fdde03146101c9578063095ea7b3146102465780630c340a2414610286575b600080fd5b6101d161055c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561020b5781810151838201526020016101f3565b50505050905090810190601f1680156102385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102726004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356105ea565b604080519115158252519081900360200190f35b61028e610651565b604080516001600160a01b039092168252519081900360200190f35b6102b2610660565b6040805192835260208301919091528051918290030190f35b6102d3610753565b60408051918252519081900360200190f35b6102d3610819565b6103136004803603602081101561030357600080fd5b50356001600160a01b031661081f565b005b6103136004803603602081101561032b57600080fd5b50356001600160a01b0316610956565b6102726004803603606081101561035157600080fd5b506001600160a01b03813581169160208101359091169060400135610a8f565b6102b26004803603602081101561038757600080fd5b50356001600160a01b0316610b5e565b61039f610b7d565b6040805160ff9092168252519081900360200190f35b6102d3600480360360408110156103cb57600080fd5b506001600160a01b038135169060200135610b86565b6102d3600480360360408110156103f757600080fd5b506001600160a01b038135169060200135610d31565b610313610f33565b6102d3610f3e565b6102726004803603602081101561043357600080fd5b5035610f44565b6102d36004803603602081101561045057600080fd5b50356001600160a01b0316611035565b6102d36004803603602081101561047657600080fd5b50356001600160a01b0316611104565b6102d361118c565b6102d3611192565b6102d3600480360360208110156104ac57600080fd5b50356001600160a01b0316611198565b61028e6111aa565b6101d16111b9565b6102b2600480360360208110156104e257600080fd5b50356001600160a01b0316611214565b6102726004803603604081101561050857600080fd5b506001600160a01b03813516906020013561122d565b6102d3611243565b6102d3611249565b6102d36004803603604081101561054457600080fd5b506001600160a01b038135811691602001351661124f565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105e25780601f106105b7576101008083540402835291602001916105e2565b820191906000526020600020905b8154815290600101906020018083116105c557829003601f168201915b505050505081565b336000818152600d602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b6001546001600160a01b031681565b600080600354600254106106795750600090504361074f565b336000908152600760205260409020601054600e544311801561069d5750600f5415155b156107135760006106b9600e544361126c90919063ffffffff16565b905060006106d2600554836112b590919063ffffffff16565b905061070e610701600f546106f564e8d4a51000856112b590919063ffffffff16565b9063ffffffff61130e16565b849063ffffffff61135016565b925050505b610747826001015461073b64e8d4a510006106f58587600001546112b590919063ffffffff16565b9063ffffffff61126c16565b439350935050505b9091565b60006003546002541061076857506000610816565b336000908152600760205260409020601054600e544311801561078c5750600f5415155b156107e95760006107a8600e544361126c90919063ffffffff16565b905060006107c1600554836112b590919063ffffffff16565b90506107e4610701600f546106f564e8d4a51000856112b590919063ffffffff16565b925050505b610811826001015461073b64e8d4a510006106f58587600001546112b590919063ffffffff16565b925050505b90565b600b5481565b6000546001600160a01b0316331461086a576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b6001600160a01b0381166108b7576040805162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b604482015290519081900360640190fd5b6000546001600160a01b0382811691161415610906576040805162461bcd60e51b81526020600482015260096024820152684e4f5f4348414e474560b81b604482015290519081900360640190fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917faad46b89531ed10d02d926f4d6bfe234a6126e3fffc02d3b07167575f9c143379190a35050565b6001546001600160a01b031633146109a1576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b6001600160a01b0381166109ee576040805162461bcd60e51b815260206004820152600f60248201526e494e56414c49445f4144445245535360881b604482015290519081900360640190fd5b6001546001600160a01b0382811691161415610a3d576040805162461bcd60e51b81526020600482015260096024820152684e4f5f4348414e474560b81b604482015290519081900360640190fd5b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fde4b3f61490b74c0ed6237523974fe299126bbbf8a8a7482fd220104c59b0c8490600090a35050565b6001600160a01b0383166000908152600d60209081526040808320338452909152812054821115610af15760405162461bcd60e51b81526004018080602001828103825260228152602001806116cb6022913960400191505060405180910390fd5b6001600160a01b0384166000908152600d60209081526040808320338452909152902054610b25908363ffffffff61126c16565b6001600160a01b0385166000908152600d60209081526040808320338452909152902055610b548484846113aa565b5060019392505050565b6001600160a01b0316600090815260076020526040902054600f549091565b600a5460ff1681565b600080546001600160a01b03163314610bd2576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b60035460025410610be55750600061064b565b60008211610c245760405162461bcd60e51b815260040180806020018281038252602c81526020018061170e602c913960400191505060405180910390fd5b6001600160a01b0383166000908152600760205260409020610c446114fc565b805415610c9c576000610c77826001015461073b64e8d4a510006106f560105487600001546112b590919063ffffffff16565b9050610c843086836113aa565b600254610c97908263ffffffff61135016565b600255505b600f54610caf908463ffffffff61135016565b600f558054610cc4908463ffffffff61135016565b808255601054610ce59164e8d4a51000916106f5919063ffffffff6112b516565b60018201556040805184815290516001600160a01b038616917f6c0a24b06ee7f1d9c3c6680c7328531c32bc59cd665436fc686f973cb8c01be7919081900360200190a2549392505050565b600080546001600160a01b03163314610d7d576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b60035460025410610d905750600061064b565b60008211610de5576040805162461bcd60e51b815260206004820152601960248201527f494e53554646494349454e545f50524f44554354495649545900000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526007602052604090208054831115610e47576040805162461bcd60e51b81526020600482015260116024820152702ba0a9a0a1249d102327a92124a22222a760791b604482015290519081900360640190fd5b610e4f6114fc565b6000610e7b826001015461073b64e8d4a510006106f560105487600001546112b590919063ffffffff16565b9050610e883086836113aa565b600254610e9b908263ffffffff61135016565b6002558154610eb0908563ffffffff61126c16565b808355601054610ed19164e8d4a51000916106f5919063ffffffff6112b516565b6001830155600f54610ee9908563ffffffff61126c16565b600f556040805185815290516001600160a01b038716917fddb757202feefdd10c1666f1bb8f9744309ab811b6ef3ec0404a20c36e426697919081900360200190a2949350505050565b600680546001019055565b60065481565b6001546000906001600160a01b03163314610f92576040805162461bcd60e51b81526020600482015260096024820152682327a92124a22222a760b91b604482015290519081900360640190fd5b60055482811415610fea576040805162461bcd60e51b815260206004820152601a60248201527f414d4f554e545f5045525f424c4f434b5f4e4f5f4348414e4745000000000000604482015290519081900360640190fd5b6005839055604080518281526020810185905281517f2b0f92871c475b115872736d792627db822895557aec734cef4d60531965ed83929181900390910190a160019150505b919050565b60006003546002541061104a57506000611030565b6001600160a01b0382166000908152600760205260409020601054600e54431180156110775750600f5415155b156110d4576000611093600e544361126c90919063ffffffff16565b905060006110ac600554836112b590919063ffffffff16565b90506110cf610701600f546106f564e8d4a51000856112b590919063ffffffff16565b925050505b6110fc826001015461073b64e8d4a510006106f58587600001546112b590919063ffffffff16565b949350505050565b6000600454600114611146576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b60006004556001600160a01b038216611180576040805162461bcd60e51b8152602060048201526000602482015290519081900360640190fd5b50506001600455600090565b60035481565b60055481565b600c6020526000908152604090205481565b6000546001600160a01b031681565b6009805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105e25780601f106105b7576101008083540402835291602001916105e2565b6007602052600090815260409020805460019091015482565b600061123a3384846113aa565b50600192915050565b60105490565b60025481565b600d60209081526000928352604080842090915290825290205481565b60006112ae83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115ce565b9392505050565b6000826112c45750600061064b565b828202828482816112d157fe5b04146112ae5760405162461bcd60e51b81526004018080602001828103825260218152602001806116ed6021913960400191505060405180910390fd5b60006112ae83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611665565b6000828201838110156112ae576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600c6020526040902054811115611417576040805162461bcd60e51b815260206004820181905260248201527f4552433230546f6b656e3a20494e53554646494349454e545f42414c414e4345604482015290519081900360640190fd5b6001600160a01b0383166000908152600c6020526040902054611440908263ffffffff61126c16565b6001600160a01b038085166000908152600c60205260408082209390935590841681522054611475908263ffffffff61135016565b6001600160a01b0383166000818152600c60205260409020919091556114ac57600b546114a8908263ffffffff61126c16565b600b555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600e54431161150a576115cc565b600f5461151a5743600e556115cc565b6000611531600e544361126c90919063ffffffff16565b9050600061154a600554836112b590919063ffffffff16565b306000908152600c602052604090205490915061156d908263ffffffff61135016565b306000908152600c6020526040902055600b54611590908263ffffffff61135016565b600b55600f546115c2906115b3906106f58464e8d4a5100063ffffffff6112b516565b6010549063ffffffff61135016565b601055505043600e555b565b6000818484111561165d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561162257818101518382015260200161160a565b50505050905090810190601f16801561164f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836116b45760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561162257818101518382015260200161160a565b5060008385816116c057fe5b049594505050505056fe4552433230546f6b656e3a20494e53554646494349454e545f414c4c4f57414e4345536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7750524f4455435449564954595f56414c55455f4d5553545f42455f475245415445525f5448414e5f5a45524fa26469706673582212203e43f2e48ca5fa82843b3376c83a78429f3132ac31b9c309d78b172e6b55fbeb64736f6c63430006080033

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

00000000000000000000000000000000000000000000003635c9adc5dea0000000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

-----Decoded View---------------
Arg [0] : _interestsRate (uint256): 1000000000000000000000
Arg [1] : _maxMintCumulation (uint256): 100000000000000000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000003635c9adc5dea00000
Arg [1] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000


Deployed Bytecode Sourcemap

11818:9066:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11818:9066:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;12533:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;12533:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13233:210;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13233:210:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5016:23;;;:::i;:::-;;;;-1:-1:-1;;;;;5016:23:0;;;;;;;;;;;;;;19370:743;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17881:696;;;:::i;:::-;;;;;;;;;;;;;;;;12645:32;;;:::i;4689:283::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;4689:283:0;-1:-1:-1;;;;;4689:283:0;;:::i;:::-;;5317:337;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;5317:337:0;-1:-1:-1;;;;;5317:337:0;;:::i;13607:333::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13607:333:0;;;;;;;;;;;;;;;;;:::i;20567:148::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20567:148:0;-1:-1:-1;;;;;20567:148:0;;:::i;12603:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15889:876;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15889:876:0;;;;;;;;:::i;17012:861::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17012:861:0;;;;;;;;:::i;12229:56::-;;;:::i;12202:18::-;;;:::i;14540:311::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14540:311:0;;:::i;18585:704::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18585:704:0;-1:-1:-1;;;;;18585:704:0;;:::i;20363:131::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20363:131:0;-1:-1:-1;;;;;20363:131:0;;:::i;11964:29::-;;;:::i;12034:26::-;;;:::i;12686:50::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12686:50:0;-1:-1:-1;;;;;12686:50:0;;:::i;4416:19::-;;;:::i;12567:29::-;;;:::i;12439:41::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12439:41:0;-1:-1:-1;;;;;12439:41:0;;:::i;13451:148::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;13451:148:0;;;;;;;;:::i;20771:110::-;;;:::i;11931:26::-;;;:::i;12743:70::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;12743:70:0;;;;;;;;;;:::i;12533:27::-;;;;;;;;;;;;;;;-1:-1:-1;;12533:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13233:210::-;13333:10;13306:4;13323:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;13323:30:0;;;;;;;;;;;:38;;;13377:36;;;;;;;13306:4;;13323:30;;13333:10;;13377:36;;;;;;;;-1:-1:-1;13431:4:0;13233:210;;;;;:::o;5016:23::-;;;-1:-1:-1;;;;;5016:23:0;;:::o;19370:743::-;19427:4;19433;19471:17;;19453:14;;:35;19450:77;;-1:-1:-1;19511:1:0;;-1:-1:-1;19514:12:0;19503:24;;19450:77;19574:10;19540:25;19568:17;;;:5;:17;;;;;19622;;19719:15;;19704:12;:30;:56;;;;-1:-1:-1;19738:17:0;;:22;;19704:56;19700:298;;;19777:15;19795:33;19812:15;;19795:12;:16;;:33;;;;:::i;:::-;19777:51;;19843:11;19857:30;19872:14;;19857:10;:14;;:30;;;;:::i;:::-;19843:44;;19923:63;19946:39;19967:17;;19946:16;19957:4;19946:6;:10;;:16;;;;:::i;:::-;:20;:39;:20;:39;:::i;:::-;19923:18;;:63;:22;:63;:::i;:::-;19902:84;;19700:298;;;20016:74;20070:8;:19;;;20016:49;20060:4;20016:39;20036:18;20016:8;:15;;;:19;;:39;;;;:::i;:49::-;:53;:74;:53;:74;:::i;:::-;20092:12;20008:97;;;;;;19370:743;;;:::o;17881:696::-;17929:4;17967:17;;17949:14;;:35;17946:61;;-1:-1:-1;18006:1:0;17999:8;;17946:61;18054:10;18020:25;18048:17;;;:5;:17;;;;;18102;;18199:15;;18184:12;:30;:56;;;;-1:-1:-1;18218:17:0;;:22;;18184:56;18180:298;;;18257:15;18275:33;18292:15;;18275:12;:16;;:33;;;;:::i;:::-;18257:51;;18323:11;18337:30;18352:14;;18337:10;:14;;:30;;;;:::i;:::-;18323:44;;18403:63;18426:39;18447:17;;18426:16;18437:4;18426:6;:10;;:16;;;;:::i;18403:63::-;18382:84;;18180:298;;;18495:74;18549:8;:19;;;18495:49;18539:4;18495:39;18515:18;18495:8;:15;;;:19;;:39;;;;:::i;:74::-;18488:81;;;;17881:696;;:::o;12645:32::-;;;;:::o;4689:283::-;4643:4;;-1:-1:-1;;;;;4643:4:0;4629:10;:18;4621:40;;;;;-1:-1:-1;;;4621:40:0;;;;;;;;;;;;-1:-1:-1;;;4621:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;4766:22:0;::::1;4758:50;;;::::0;;-1:-1:-1;;;4758:50:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;4758:50:0;;;;;;;;;;;;;::::1;;4839:4;::::0;-1:-1:-1;;;;;4827:16:0;;::::1;4839:4:::0;::::1;4827:16;;4819:38;;;::::0;;-1:-1:-1;;;4819:38:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;4819:38:0;;;;;;;;;;;;;::::1;;4868:16;4887:4:::0;;-1:-1:-1;;;;;4902:15:0;;::::1;-1:-1:-1::0;;;;;;4902:15:0;::::1;::::0;::::1;::::0;;4933:31:::1;::::0;4887:4;;;::::1;::::0;;;4933:31:::1;::::0;4868:16;4933:31:::1;4672:1;4689:283:::0;:::o;5317:337::-;5267:8;;-1:-1:-1;;;;;5267:8:0;5253:10;:22;5245:44;;;;;-1:-1:-1;;;5245:44:0;;;;;;;;;;;;-1:-1:-1;;;5245:44:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5408:26:0;::::1;5400:54;;;::::0;;-1:-1:-1;;;5400:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;5400:54:0;;;;;;;;;;;;;::::1;;5489:8;::::0;-1:-1:-1;;;;;5473:24:0;;::::1;5489:8:::0;::::1;5473:24;;5465:46;;;::::0;;-1:-1:-1;;;5465:46:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;5465:46:0;;;;;;;;;;;;;::::1;;5545:8;::::0;;-1:-1:-1;;;;;5564:23:0;;::::1;-1:-1:-1::0;;;;;;5564:23:0;::::1;::::0;::::1;::::0;;;5603:43:::1;::::0;5545:8;::::1;::::0;5564:23;5545:8;;5603:43:::1;::::0;5522:20:::1;::::0;5603:43:::1;5300:1;5317:337:::0;:::o;13607:333::-;-1:-1:-1;;;;;13719:15:0;;13694:4;13719:15;;;:9;:15;;;;;;;;13735:10;13719:27;;;;;;;;:36;-1:-1:-1;13719:36:0;13711:83;;;;-1:-1:-1;;;13711:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13835:15:0;;;;;;:9;:15;;;;;;;;13851:10;13835:27;;;;;;;;:38;;13867:5;13835:38;:31;:38;:::i;:::-;-1:-1:-1;;;;;13805:15:0;;;;;;:9;:15;;;;;;;;13821:10;13805:27;;;;;;;:68;13884:26;13815:4;13900:2;13904:5;13884:9;:26::i;:::-;-1:-1:-1;13928:4:0;13607:333;;;;;:::o;20567:148::-;-1:-1:-1;;;;;20669:11:0;20638:4;20669:11;;;:5;:11;;;;;:18;20689:17;;20669:18;;20567:148::o;12603:35::-;;;;;;:::o;15889:876::-;15984:4;4643;;-1:-1:-1;;;;;4643:4:0;4629:10;:18;4621:40;;;;;-1:-1:-1;;;4621:40:0;;;;;;;;;;;;-1:-1:-1;;;4621:40:0;;;;;;;;;;;;;;;16022:17:::1;;16004:14;;:35;16001:61;;-1:-1:-1::0;16061:1:0::1;16054:8;;16001:61;16091:1;16083:5;:9;16075:66;;;;-1:-1:-1::0;;;16075:66:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;16182:11:0;::::1;16154:25;16182:11:::0;;;:5:::1;:11;::::0;;;;16204:8:::1;:6;:8::i;:::-;16227:15:::0;;:19;16223:253:::1;;16263:12;16278:73;16331:8;:19;;;16278:48;16321:4;16278:38;16298:17;;16278:8;:15;;;:19;;:38;;;;:::i;:73::-;16263:88;;16366:39;16384:4;16391;16397:7;16366:9;:39::i;:::-;16437:14;::::0;:27:::1;::::0;16456:7;16437:27:::1;:18;:27;:::i;:::-;16420:14;:44:::0;-1:-1:-1;16223:253:0::1;16508:17;::::0;:28:::1;::::0;16530:5;16508:28:::1;:21;:28;:::i;:::-;16488:17;:48:::0;16567:15;;:26:::1;::::0;16587:5;16567:26:::1;:19;:26;:::i;:::-;16549:44:::0;;;16646:17:::1;::::0;16626:48:::1;::::0;16669:4:::1;::::0;16626:38:::1;::::0;16549:44;16626:38:::1;:19;:38;:::i;:48::-;16604:19;::::0;::::1;:70:::0;16690:34:::1;::::0;;;;;;;-1:-1:-1;;;;;16690:34:0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;16742:15:::0;;15889:876;-1:-1:-1;;;15889:876:0:o;17012:861::-;17107:4;4643;;-1:-1:-1;;;;;4643:4:0;4629:10;:18;4621:40;;;;;-1:-1:-1;;;4621:40:0;;;;;;;;;;;;-1:-1:-1;;;4621:40:0;;;;;;;;;;;;;;;17145:17:::1;;17127:14;;:35;17124:61;;-1:-1:-1::0;17184:1:0::1;17177:8;;17124:61;17214:1;17206:5;:9;17198:47;;;::::0;;-1:-1:-1;;;17198:47:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;17294:11:0;::::1;17266:25;17294:11:::0;;;:5:::1;:11;::::0;;;;17324:15;;:24;-1:-1:-1;17324:24:0::1;17316:54;;;::::0;;-1:-1:-1;;;17316:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;17316:54:0;;;;;;;;;;;;;::::1;;17381:8;:6;:8::i;:::-;17400:12;17415:73;17468:8;:19;;;17415:48;17458:4;17415:38;17435:17;;17415:8;:15;;;:19;;:38;;;;:::i;:73::-;17400:88;;17499:39;17517:4;17524;17530:7;17499:9;:39::i;:::-;17566:14;::::0;:27:::1;::::0;17585:7;17566:27:::1;:18;:27;:::i;:::-;17549:14;:44:::0;17622:15;;:26:::1;::::0;17642:5;17622:26:::1;:19;:26;:::i;:::-;17604:44:::0;;;17701:17:::1;::::0;17681:48:::1;::::0;17724:4:::1;::::0;17681:38:::1;::::0;17604:44;17681:38:::1;:19;:38;:::i;:48::-;17659:19;::::0;::::1;:70:::0;17760:17:::1;::::0;:28:::1;::::0;17782:5;17760:28:::1;:21;:28;:::i;:::-;17740:17;:48:::0;17806:34:::1;::::0;;;;;;;-1:-1:-1;;;;;17806:34:0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;17858:7:::0;17012:861;-1:-1:-1;;;;17012:861:0:o;12229:56::-;12268:6;:9;;;;;;12229:56::o;12202:18::-;;;;:::o;14540:311::-;5267:8;;14628:4;;-1:-1:-1;;;;;5267:8:0;5253:10;:22;5245:44;;;;;-1:-1:-1;;;5245:44:0;;;;;;;;;;;;-1:-1:-1;;;5245:44:0;;;;;;;;;;;;;;;14656:14:::1;::::0;14689:12;;::::1;;14681:51;;;::::0;;-1:-1:-1;;;14681:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;14745:14;:22:::0;;;14785:36:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;14839:4;14832:11;;;5300:1;14540:311:::0;;;:::o;18585:704::-;18647:4;18685:17;;18667:14;;:35;18664:61;;-1:-1:-1;18724:1:0;18717:8;;18664:61;-1:-1:-1;;;;;18766:11:0;;18738:25;18766:11;;;:5;:11;;;;;18814:17;;18911:15;;18896:12;:30;:56;;;;-1:-1:-1;18930:17:0;;:22;;18896:56;18892:298;;;18969:15;18987:33;19004:15;;18987:12;:16;;:33;;;;:::i;:::-;18969:51;;19035:11;19049:30;19064:14;;19049:10;:14;;:30;;;;:::i;:::-;19035:44;;19115:63;19138:39;19159:17;;19138:16;19149:4;19138:6;:10;;:16;;;;:::i;19115:63::-;19094:84;;18892:298;;;19207:74;19261:8;:19;;;19207:49;19251:4;19207:39;19227:18;19207:8;:15;;;:19;;:39;;;;:::i;:74::-;19200:81;18585:704;-1:-1:-1;;;;18585:704:0:o;20363:131::-;20421:4;12104:8;;12116:1;12104:13;12096:32;;;;;-1:-1:-1;;;12096:32:0;;;;;;;;;;;;-1:-1:-1;;;12096:32:0;;;;;;;;;;;;;;;12150:1;12139:8;:12;-1:-1:-1;;;;;20446:16:0;::::1;20438:29;;;::::0;;-1:-1:-1;;;20438:29:0;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;12185:1:0;12174:8;:12;20485:1:::1;::::0;20363:131::o;11964:29::-;;;;:::o;12034:26::-;;;;:::o;12686:50::-;;;;;;;;;;;;;:::o;4416:19::-;;;-1:-1:-1;;;;;4416:19:0;;:::o;12567:29::-;;;;;;;;;;;;;;;-1:-1:-1;;12567:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12439:41;;;;;;;;;;;;;;;;;;;:::o;13451:148::-;13520:4;13537:32;13547:10;13559:2;13563:5;13537:9;:32::i;:::-;-1:-1:-1;13587:4:0;13451:148;;;;:::o;20771:110::-;20856:17;;20771:110;:::o;11931:26::-;;;;:::o;12743:70::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;7055:136::-;7113:7;7140:43;7144:1;7147;7140:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7133:50;7055:136;-1:-1:-1;;;7055:136:0:o;7945:471::-;8003:7;8248:6;8244:47;;-1:-1:-1;8278:1:0;8271:8;;8244:47;8315:5;;;8319:1;8315;:5;:1;8339:5;;;;;:10;8331:56;;;;-1:-1:-1;;;8331:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8892:132;8950:7;8977:39;8981:1;8984;8977:39;;;;;;;;;;;;;;;;;:3;:39::i;6591:181::-;6649:7;6681:5;;;6705:6;;;;6697:46;;;;;-1:-1:-1;;;6697:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;12822:403;-1:-1:-1;;;;;12906:15:0;;;;;;:9;:15;;;;;;:24;-1:-1:-1;12906:24:0;12898:69;;;;;-1:-1:-1;;;12898:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12996:15:0;;;;;;:9;:15;;;;;;:26;;13016:5;12996:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;12978:15:0;;;;;;;:9;:15;;;;;;:44;;;;13049:13;;;;;;;:24;;13067:5;13049:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;13033:13:0;;;;;;:9;:13;;;;;:40;;;;13084:93;;13143:11;;:22;;13159:5;13143:22;:15;:22;:::i;:::-;13129:11;:36;13084:93;13207:2;-1:-1:-1;;;;;13192:25:0;13201:4;-1:-1:-1;;;;;13192:25:0;;13211:5;13192:25;;;;;;;;;;;;;;;;;;12822:403;;;:::o;15018:620::-;15082:15;;15066:12;:31;15062:70;;15114:7;;15062:70;15148:17;;15144:106;;15205:12;15187:15;:30;15232:7;;15144:106;15260:18;15281:33;15298:15;;15281:12;:16;;:33;;;;:::i;:::-;15260:54;;15325:14;15342:30;15357:14;;15342:10;:14;;:30;;;;:::i;:::-;15428:4;15410:24;;;;:9;:24;;;;;;15325:47;;-1:-1:-1;15410:36:0;;15325:47;15410:36;:28;:36;:::i;:::-;15401:4;15383:24;;;;:9;:24;;;;;:63;15471:11;;:23;;15487:6;15471:23;:15;:23;:::i;:::-;15457:11;:37;15570:17;;15527:62;;15549:39;;:16;:6;15560:4;15549:16;:10;:16;:::i;:39::-;15527:17;;;:62;:21;:62;:::i;:::-;15507:17;:82;-1:-1:-1;;15618:12:0;15600:15;:30;15018:620;:::o;7494:192::-;7580:7;7616:12;7608:6;;;;7600:29;;;;-1:-1:-1;;;7600:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7600:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7652:5:0;;;7494:192::o;9520:278::-;9606:7;9641:12;9634:5;9626:28;;;;-1:-1:-1;;;9626:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;9626:28:0;;9665:9;9681:1;9677;:5;;;;;;;9520:278;-1:-1:-1;;;;;9520:278:0:o

Swarm Source

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