ETH Price: $2,450.65 (-2.93%)

Token

vDODO Membership Token (vDODO)
 

Overview

Max Total Supply

198,798.723793809684162893 vDODO

Holders

1,121

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 vDODO

Value
$0.00
0x5b3eeef24959e16dda429c85daa84f54b3986b49
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:
vDODOToken

Compiler Version
v0.6.9+commit.3e3065ac

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-13
*/

// File: contracts/intf/IERC20.sol

// This is a file copied from https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.9;
pragma experimental ABIEncoderV2;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    function decimals() external view returns (uint8);

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
}

// File: contracts/lib/SafeMath.sol

/**
 * @title SafeMath
 * @author DODO Breeder
 *
 * @notice Math operations with safety checks that revert on error
 */
library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "DIVIDING_ERROR");
        return a / b;
    }

    function divCeil(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 quotient = div(a, b);
        uint256 remainder = a - quotient * b;
        if (remainder > 0) {
            return quotient + 1;
        } else {
            return quotient;
        }
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SUB_ERROR");
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "ADD_ERROR");
        return c;
    }

    function sqrt(uint256 x) internal pure returns (uint256 y) {
        uint256 z = x / 2 + 1;
        y = x;
        while (z < y) {
            y = z;
            z = (x / z + z) / 2;
        }
    }
}

// File: contracts/lib/DecimalMath.sol

/**
 * @title DecimalMath
 * @author DODO Breeder
 *
 * @notice Functions for fixed point number with 18 decimals
 */
library DecimalMath {
    using SafeMath for uint256;

    uint256 internal constant ONE = 10**18;
    uint256 internal constant ONE2 = 10**36;

    function mulFloor(uint256 target, uint256 d) internal pure returns (uint256) {
        return target.mul(d) / (10**18);
    }

    function mulCeil(uint256 target, uint256 d) internal pure returns (uint256) {
        return target.mul(d).divCeil(10**18);
    }

    function divFloor(uint256 target, uint256 d) internal pure returns (uint256) {
        return target.mul(10**18).div(d);
    }

    function divCeil(uint256 target, uint256 d) internal pure returns (uint256) {
        return target.mul(10**18).divCeil(d);
    }

    function reciprocalFloor(uint256 target) internal pure returns (uint256) {
        return uint256(10**36).div(target);
    }

    function reciprocalCeil(uint256 target) internal pure returns (uint256) {
        return uint256(10**36).divCeil(target);
    }
}

// File: contracts/lib/InitializableOwnable.sol

/**
 * @title Ownable
 * @author DODO Breeder
 *
 * @notice Ownership related functions
 */
contract InitializableOwnable {
    address public _OWNER_;
    address public _NEW_OWNER_;
    bool internal _INITIALIZED_;

    // ============ Events ============

    event OwnershipTransferPrepared(address indexed previousOwner, address indexed newOwner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    // ============ Modifiers ============

    modifier notInitialized() {
        require(!_INITIALIZED_, "DODO_INITIALIZED");
        _;
    }

    modifier onlyOwner() {
        require(msg.sender == _OWNER_, "NOT_OWNER");
        _;
    }

    // ============ Functions ============

    function initOwner(address newOwner) public notInitialized {
        _INITIALIZED_ = true;
        _OWNER_ = newOwner;
    }

    function transferOwnership(address newOwner) public onlyOwner {
        emit OwnershipTransferPrepared(_OWNER_, newOwner);
        _NEW_OWNER_ = newOwner;
    }

    function claimOwnership() public {
        require(msg.sender == _NEW_OWNER_, "INVALID_CLAIM");
        emit OwnershipTransferred(_OWNER_, _NEW_OWNER_);
        _OWNER_ = _NEW_OWNER_;
        _NEW_OWNER_ = address(0);
    }
}

// File: contracts/lib/SafeERC20.sol



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) {
            // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: contracts/intf/IDODOApprove.sol


interface IDODOApprove {
    function claimTokens(address token,address who,address dest,uint256 amount) external;
    function getDODOProxy() external view returns (address);
}

// File: contracts/SmartRoute/DODOApproveProxy.sol


interface IDODOApproveProxy {
    function isAllowedProxy(address _proxy) external view returns (bool);
    function claimTokens(address token,address who,address dest,uint256 amount) external;
}

/**
 * @title DODOApproveProxy
 * @author DODO Breeder
 *
 * @notice Allow different version dodoproxy to claim from DODOApprove
 */
contract DODOApproveProxy is InitializableOwnable {
    
    // ============ Storage ============
    uint256 private constant _TIMELOCK_DURATION_ = 3 days;
    mapping (address => bool) public _IS_ALLOWED_PROXY_;
    uint256 public _TIMELOCK_;
    address public _PENDING_ADD_DODO_PROXY_;
    address public immutable _DODO_APPROVE_;

    // ============ Modifiers ============
    modifier notLocked() {
        require(
            _TIMELOCK_ <= block.timestamp,
            "SetProxy is timelocked"
        );
        _;
    }

    constructor(address dodoApporve) public {
        _DODO_APPROVE_ = dodoApporve;
    }

    function init(address owner, address[] memory proxies) external {
        initOwner(owner);
        for(uint i = 0; i < proxies.length; i++) 
            _IS_ALLOWED_PROXY_[proxies[i]] = true;
    }

    function unlockAddProxy(address newDodoProxy) public onlyOwner {
        _TIMELOCK_ = block.timestamp + _TIMELOCK_DURATION_;
        _PENDING_ADD_DODO_PROXY_ = newDodoProxy;
    }

    function lockAddProxy() public onlyOwner {
       _PENDING_ADD_DODO_PROXY_ = address(0);
       _TIMELOCK_ = 0;
    }


    function addDODOProxy() external onlyOwner notLocked() {
        _IS_ALLOWED_PROXY_[_PENDING_ADD_DODO_PROXY_] = true;
        lockAddProxy();
    }

    function removeDODOProxy (address oldDodoProxy) public onlyOwner {
        _IS_ALLOWED_PROXY_[oldDodoProxy] = false;
    }
    
    function claimTokens(
        address token,
        address who,
        address dest,
        uint256 amount
    ) external {
        require(_IS_ALLOWED_PROXY_[msg.sender], "DODOApproveProxy:Access restricted");
        IDODOApprove(_DODO_APPROVE_).claimTokens(
            token,
            who,
            dest,
            amount
        );
    }

    function isAllowedProxy(address _proxy) external view returns (bool) {
        return _IS_ALLOWED_PROXY_[_proxy];
    }
}

// File: contracts/DODOToken/vDODOToken.sol



interface IGovernance {
    function getLockedvDODO(address account) external view returns (uint256);
}

interface IDODOCirculationHelper {
    // Locked vDOOD not counted in circulation
    function getCirculation() external view returns (uint256);

    function getDodoWithdrawFeeRatio() external view returns (uint256);
}

contract vDODOToken is InitializableOwnable {
    using SafeMath for uint256;

    // ============ Storage(ERC20) ============

    string public name = "vDODO Membership Token";
    string public symbol = "vDODO";
    uint8 public decimals = 18;
    mapping(address => mapping(address => uint256)) internal _ALLOWED_;

    // ============ Storage ============

    address public immutable _DODO_TOKEN_;
    address public immutable _DODO_APPROVE_PROXY_;
    address public immutable _DODO_TEAM_;
    address public _DOOD_GOV_;
    address public _DODO_CIRCULATION_HELPER_;

    bool public _CAN_TRANSFER_;

    // staking reward parameters
    uint256 public _DODO_PER_BLOCK_;
    uint256 public constant _SUPERIOR_RATIO_ = 10**17; // 0.1
    uint256 public constant _DODO_RATIO_ = 100; // 100
    uint256 public _DODO_FEE_BURN_RATIO_;

    // accounting
    uint112 public alpha = 10**18; // 1
    uint112 public _TOTAL_BLOCK_DISTRIBUTION_;
    uint32 public _LAST_REWARD_BLOCK_;

    uint256 public _TOTAL_BLOCK_REWARD_;
    uint256 public _TOTAL_STAKING_POWER_;
    mapping(address => UserInfo) public userInfo;

    struct UserInfo {
        uint128 stakingPower;
        uint128 superiorSP;
        address superior;
        uint256 credit;
    }

    // ============ Events ============

    event MintVDODO(address user, address superior, uint256 mintDODO);
    event RedeemVDODO(address user, uint256 receiveDODO, uint256 burnDODO, uint256 feeDODO);
    event DonateDODO(address user, uint256 donateDODO);
    event SetCantransfer(bool allowed);

    event PreDeposit(uint256 dodoAmount);
    event ChangePerReward(uint256 dodoPerBlock);
    event UpdateDODOFeeBurnRatio(uint256 dodoFeeBurnRatio);

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

    // ============ Modifiers ============

    modifier canTransfer() {
        require(_CAN_TRANSFER_, "vDODOToken: not allowed transfer");
        _;
    }

    modifier balanceEnough(address account, uint256 amount) {
        require(availableBalanceOf(account) >= amount, "vDODOToken: available amount not enough");
        _;
    }

    // ============ Constructor ============

    constructor(
        address dodoGov,
        address dodoToken,
        address dodoApproveProxy,
        address dodoTeam
    ) public {
        _DOOD_GOV_ = dodoGov;
        _DODO_TOKEN_ = dodoToken;
        _DODO_APPROVE_PROXY_ = dodoApproveProxy;
        _DODO_TEAM_ = dodoTeam;
    }

    // ============ Ownable Functions ============`

    function setCantransfer(bool allowed) public onlyOwner {
        _CAN_TRANSFER_ = allowed;
        emit SetCantransfer(allowed);
    }

    function changePerReward(uint256 dodoPerBlock) public onlyOwner {
        _updateAlpha();
        _DODO_PER_BLOCK_ = dodoPerBlock;
        emit ChangePerReward(dodoPerBlock);
    }

    function updateDODOFeeBurnRatio(uint256 dodoFeeBurnRatio) public onlyOwner {
        _DODO_FEE_BURN_RATIO_ = dodoFeeBurnRatio;
        emit UpdateDODOFeeBurnRatio(_DODO_FEE_BURN_RATIO_);
    }

    function updateDODOCirculationHelper(address helper) public onlyOwner {
        _DODO_CIRCULATION_HELPER_ = helper;
    }

    function updateGovernance(address governance) public onlyOwner {
        _DOOD_GOV_ = governance;
    }

    function emergencyWithdraw() public onlyOwner {
        uint256 dodoBalance = IERC20(_DODO_TOKEN_).balanceOf(address(this));
        IERC20(_DODO_TOKEN_).transfer(_OWNER_, dodoBalance);
    }

    // ============ Mint & Redeem & Donate ============

    function mint(uint256 dodoAmount, address superiorAddress) public {
        require(
            superiorAddress != address(0) && superiorAddress != msg.sender,
            "vDODOToken: Superior INVALID"
        );
        require(dodoAmount > 0, "vDODOToken: must mint greater than 0");

        UserInfo storage user = userInfo[msg.sender];

        if (user.superior == address(0)) {
            require(
                superiorAddress == _DODO_TEAM_ || userInfo[superiorAddress].superior != address(0),
                "vDODOToken: INVALID_SUPERIOR_ADDRESS"
            );
            user.superior = superiorAddress;
        }

        _updateAlpha();

        IDODOApproveProxy(_DODO_APPROVE_PROXY_).claimTokens(
            _DODO_TOKEN_,
            msg.sender,
            address(this),
            dodoAmount
        );

        uint256 newStakingPower = DecimalMath.divFloor(dodoAmount, alpha);

        _mint(user, newStakingPower);

        emit MintVDODO(msg.sender, superiorAddress, dodoAmount);
    }

    function redeem(uint256 vdodoAmount, bool all) public balanceEnough(msg.sender, vdodoAmount) {
        _updateAlpha();
        UserInfo storage user = userInfo[msg.sender];

        uint256 dodoAmount;
        uint256 stakingPower;

        if (all) {
            stakingPower = uint256(user.stakingPower).sub(DecimalMath.divFloor(user.credit, alpha));
            dodoAmount = DecimalMath.mulFloor(stakingPower, alpha);
        } else {
            dodoAmount = vdodoAmount.mul(_DODO_RATIO_);
            stakingPower = DecimalMath.divFloor(dodoAmount, alpha);
        }

        _redeem(user, stakingPower);

        (uint256 dodoReceive, uint256 burnDodoAmount, uint256 withdrawFeeDodoAmount) = getWithdrawResult(dodoAmount);

        IERC20(_DODO_TOKEN_).transfer(msg.sender, dodoReceive);
        
        if (burnDodoAmount > 0) {
            IERC20(_DODO_TOKEN_).transfer(address(0), burnDodoAmount);
        }
        
        if (withdrawFeeDodoAmount > 0) {
            alpha = uint112(
                uint256(alpha).add(
                    DecimalMath.divFloor(withdrawFeeDodoAmount, _TOTAL_STAKING_POWER_)
                )
            );
        }

        emit RedeemVDODO(msg.sender, dodoReceive, burnDodoAmount, withdrawFeeDodoAmount);
    }

    function donate(uint256 dodoAmount) public {
        IDODOApproveProxy(_DODO_APPROVE_PROXY_).claimTokens(
            _DODO_TOKEN_,
            msg.sender,
            address(this),
            dodoAmount
        );
        alpha = uint112(
            uint256(alpha).add(DecimalMath.divFloor(dodoAmount, _TOTAL_STAKING_POWER_))
        );
        emit DonateDODO(msg.sender, dodoAmount);
    }

    function preDepositedBlockReward(uint256 dodoAmount) public {
        IDODOApproveProxy(_DODO_APPROVE_PROXY_).claimTokens(
            _DODO_TOKEN_,
            msg.sender,
            address(this),
            dodoAmount
        );
        _TOTAL_BLOCK_REWARD_ = _TOTAL_BLOCK_REWARD_.add(dodoAmount);
        emit PreDeposit(dodoAmount);
    }

    // ============ ERC20 Functions ============

    function totalSupply() public view returns (uint256 vDODOSupply) {
        uint256 totalDODO = IERC20(_DODO_TOKEN_).balanceOf(address(this));
        (,uint256 curDistribution) = getLatestAlpha();
        uint256 actualDODO = totalDODO.sub(_TOTAL_BLOCK_REWARD_.sub(curDistribution.add(_TOTAL_BLOCK_DISTRIBUTION_)));
        vDODOSupply = actualDODO / _DODO_RATIO_;
    }
    
    function balanceOf(address account) public view returns (uint256 vDODOAmount) {
        vDODOAmount = dodoBalanceOf(account) / _DODO_RATIO_;
    }

    function transfer(address to, uint256 vDODOAmount) public returns (bool) {
        _updateAlpha();
        _transfer(msg.sender, to, vDODOAmount);
        return true;
    }

    function approve(address spender, uint256 vDODOAmount) canTransfer public returns (bool) {
        _ALLOWED_[msg.sender][spender] = vDODOAmount;
        emit Approval(msg.sender, spender, vDODOAmount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 vDODOAmount
    ) public returns (bool) {
        require(vDODOAmount <= _ALLOWED_[from][msg.sender], "ALLOWANCE_NOT_ENOUGH");
        _updateAlpha();
        _transfer(from, to, vDODOAmount);
        _ALLOWED_[from][msg.sender] = _ALLOWED_[from][msg.sender].sub(vDODOAmount);
        return true;
    }

    function allowance(address owner, address spender) public view returns (uint256) {
        return _ALLOWED_[owner][spender];
    }

    // ============ Helper Functions ============

    function getLatestAlpha() public view returns (uint256 newAlpha, uint256 curDistribution) {
        if (_LAST_REWARD_BLOCK_ == 0) {
            curDistribution = 0;
        } else {
            curDistribution = _DODO_PER_BLOCK_ * (block.number - _LAST_REWARD_BLOCK_);
        }
        if (_TOTAL_STAKING_POWER_ > 0) {
            newAlpha = uint256(alpha).add(DecimalMath.divFloor(curDistribution, _TOTAL_STAKING_POWER_));
        } else {
            newAlpha = alpha;
        }
    }

    function availableBalanceOf(address account) public view returns (uint256 vDODOAmount) {
        if (_DOOD_GOV_ == address(0)) {
            vDODOAmount = balanceOf(account);
        } else {
            uint256 lockedvDODOAmount = IGovernance(_DOOD_GOV_).getLockedvDODO(account);
            vDODOAmount = balanceOf(account).sub(lockedvDODOAmount);
        }
    }

    function dodoBalanceOf(address account) public view returns (uint256 dodoAmount) {
        UserInfo memory user = userInfo[account];
        (uint256 newAlpha,) = getLatestAlpha();
        uint256 nominalDodo =  DecimalMath.mulFloor(uint256(user.stakingPower), newAlpha);
        if(nominalDodo > user.credit) {
            dodoAmount = nominalDodo - user.credit;
        }else {
            dodoAmount = 0;
        }
    }

    function getWithdrawResult(uint256 dodoAmount)
        public
        view
        returns (
            uint256 dodoReceive,
            uint256 burnDodoAmount,
            uint256 withdrawFeeDodoAmount
        )
    {
        uint256 feeRatio =
            IDODOCirculationHelper(_DODO_CIRCULATION_HELPER_).getDodoWithdrawFeeRatio();

        withdrawFeeDodoAmount = DecimalMath.mulFloor(dodoAmount, feeRatio);
        dodoReceive = dodoAmount.sub(withdrawFeeDodoAmount);

        burnDodoAmount = DecimalMath.mulFloor(withdrawFeeDodoAmount, _DODO_FEE_BURN_RATIO_);
        withdrawFeeDodoAmount = withdrawFeeDodoAmount.sub(burnDodoAmount);
    }

    function getDODOWithdrawFeeRatio() public view returns (uint256 feeRatio) {
        feeRatio = IDODOCirculationHelper(_DODO_CIRCULATION_HELPER_).getDodoWithdrawFeeRatio();
    }

    function getSuperior(address account) public view returns (address superior) {
        return userInfo[account].superior;
    }

    // ============ Internal Functions ============

    function _updateAlpha() internal {
        (uint256 newAlpha, uint256 curDistribution) = getLatestAlpha();
        uint256 newTotalDistribution = curDistribution.add(_TOTAL_BLOCK_DISTRIBUTION_);
        require(newAlpha <= uint112(-1) && newTotalDistribution <= uint112(-1), "OVERFLOW");
        alpha = uint112(newAlpha);
        _TOTAL_BLOCK_DISTRIBUTION_ = uint112(newTotalDistribution);
        _LAST_REWARD_BLOCK_ = uint32(block.number);
    }

    function _mint(UserInfo storage to, uint256 stakingPower) internal {
        require(stakingPower <= uint128(-1), "OVERFLOW");
        UserInfo storage superior = userInfo[to.superior];
        uint256 superiorIncreSP = DecimalMath.mulFloor(stakingPower, _SUPERIOR_RATIO_);
        uint256 superiorIncreCredit = DecimalMath.mulFloor(superiorIncreSP, alpha);

        to.stakingPower = uint128(uint256(to.stakingPower).add(stakingPower));
        to.superiorSP = uint128(uint256(to.superiorSP).add(superiorIncreSP));

        superior.stakingPower = uint128(uint256(superior.stakingPower).add(superiorIncreSP));
        superior.credit = uint128(uint256(superior.credit).add(superiorIncreCredit));

        _TOTAL_STAKING_POWER_ = _TOTAL_STAKING_POWER_.add(stakingPower).add(superiorIncreSP);
    }

    function _redeem(UserInfo storage from, uint256 stakingPower) internal {
        from.stakingPower = uint128(uint256(from.stakingPower).sub(stakingPower));

        // superior decrease sp = min(stakingPower*0.1, from.superiorSP)
        uint256 superiorDecreSP = DecimalMath.mulFloor(stakingPower, _SUPERIOR_RATIO_);
        superiorDecreSP = from.superiorSP <= superiorDecreSP ? from.superiorSP : superiorDecreSP;
        from.superiorSP = uint128(uint256(from.superiorSP).sub(superiorDecreSP));

        UserInfo storage superior = userInfo[from.superior];
        uint256 creditSP = DecimalMath.divFloor(superior.credit, alpha);

        if (superiorDecreSP >= creditSP) {
            superior.credit = 0;
            superior.stakingPower = uint128(uint256(superior.stakingPower).sub(creditSP));
        } else {
            superior.credit = uint128(
                uint256(superior.credit).sub(DecimalMath.mulFloor(superiorDecreSP, alpha))
            );
            superior.stakingPower = uint128(uint256(superior.stakingPower).sub(superiorDecreSP));
        }

        _TOTAL_STAKING_POWER_ = _TOTAL_STAKING_POWER_.sub(stakingPower).sub(superiorDecreSP);
    }

    function _transfer(
        address from,
        address to,
        uint256 vDODOAmount
    ) internal canTransfer balanceEnough(from, vDODOAmount) {
        require(from != address(0), "transfer from the zero address");
        require(to != address(0), "transfer to the zero address");
        require(from != to, "transfer from same with to");

        uint256 stakingPower = DecimalMath.divFloor(vDODOAmount * _DODO_RATIO_, alpha);

        UserInfo storage fromUser = userInfo[from];
        UserInfo storage toUser = userInfo[to];

        _redeem(fromUser, stakingPower);
        _mint(toUser, stakingPower);

        emit Transfer(from, to, vDODOAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"dodoGov","type":"address"},{"internalType":"address","name":"dodoToken","type":"address"},{"internalType":"address","name":"dodoApproveProxy","type":"address"},{"internalType":"address","name":"dodoTeam","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":false,"internalType":"uint256","name":"dodoPerBlock","type":"uint256"}],"name":"ChangePerReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"donateDODO","type":"uint256"}],"name":"DonateDODO","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"address","name":"superior","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintDODO","type":"uint256"}],"name":"MintVDODO","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferPrepared","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"dodoAmount","type":"uint256"}],"name":"PreDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"receiveDODO","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burnDODO","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeDODO","type":"uint256"}],"name":"RedeemVDODO","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"allowed","type":"bool"}],"name":"SetCantransfer","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"dodoFeeBurnRatio","type":"uint256"}],"name":"UpdateDODOFeeBurnRatio","type":"event"},{"inputs":[],"name":"_CAN_TRANSFER_","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DODO_APPROVE_PROXY_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DODO_CIRCULATION_HELPER_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DODO_FEE_BURN_RATIO_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DODO_PER_BLOCK_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DODO_RATIO_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DODO_TEAM_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DODO_TOKEN_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_DOOD_GOV_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_LAST_REWARD_BLOCK_","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_NEW_OWNER_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_OWNER_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SUPERIOR_RATIO_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TOTAL_BLOCK_DISTRIBUTION_","outputs":[{"internalType":"uint112","name":"","type":"uint112"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TOTAL_BLOCK_REWARD_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TOTAL_STAKING_POWER_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alpha","outputs":[{"internalType":"uint112","name":"","type":"uint112"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"vDODOAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"availableBalanceOf","outputs":[{"internalType":"uint256","name":"vDODOAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"vDODOAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dodoPerBlock","type":"uint256"}],"name":"changePerReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dodoBalanceOf","outputs":[{"internalType":"uint256","name":"dodoAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dodoAmount","type":"uint256"}],"name":"donate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getDODOWithdrawFeeRatio","outputs":[{"internalType":"uint256","name":"feeRatio","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLatestAlpha","outputs":[{"internalType":"uint256","name":"newAlpha","type":"uint256"},{"internalType":"uint256","name":"curDistribution","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getSuperior","outputs":[{"internalType":"address","name":"superior","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dodoAmount","type":"uint256"}],"name":"getWithdrawResult","outputs":[{"internalType":"uint256","name":"dodoReceive","type":"uint256"},{"internalType":"uint256","name":"burnDodoAmount","type":"uint256"},{"internalType":"uint256","name":"withdrawFeeDodoAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"initOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dodoAmount","type":"uint256"},{"internalType":"address","name":"superiorAddress","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dodoAmount","type":"uint256"}],"name":"preDepositedBlockReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"vdodoAmount","type":"uint256"},{"internalType":"bool","name":"all","type":"bool"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"allowed","type":"bool"}],"name":"setCantransfer","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":"vDODOSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"vDODOAmount","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":"vDODOAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"helper","type":"address"}],"name":"updateDODOCirculationHelper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dodoFeeBurnRatio","type":"uint256"}],"name":"updateDODOFeeBurnRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"governance","type":"address"}],"name":"updateGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint128","name":"stakingPower","type":"uint128"},{"internalType":"uint128","name":"superiorSP","type":"uint128"},{"internalType":"address","name":"superior","type":"address"},{"internalType":"uint256","name":"credit","type":"uint256"}],"stateMutability":"view","type":"function"}]

610120604052601660e08190527f76444f444f204d656d6265727368697020546f6b656e0000000000000000000061010090815262000042916002919062000113565b506040805180820190915260058082526476444f444f60d81b6020909201918252620000719160039162000113565b506004805460ff19166012179055600a80546001600160701b031916670de0b6b3a7640000179055348015620000a657600080fd5b506040516200295838038062002958833981016040819052620000c991620001d6565b600680546001600160a01b039095166001600160a01b0319909516949094179093556001600160601b0319606092831b811660805290821b811660a05291901b1660c05262000236565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200015657805160ff191683800117855562000186565b8280016001018555821562000186579182015b828111156200018657825182559160200191906001019062000169565b506200019492915062000198565b5090565b620001b591905b808211156200019457600081556001016200019f565b90565b80516001600160a01b0381168114620001d057600080fd5b92915050565b60008060008060808587031215620001ec578384fd5b620001f88686620001b8565b9350620002098660208701620001b8565b92506200021a8660408701620001b8565b91506200022b8660608701620001b8565b905092959194509250565b60805160601c60a05160601c60c05160601c6126b0620002a860003980610cff5280611083525080610b375280610db252806116e4528061172c5250806107195280610a4f5280610b645280610ddf5280611287528061134352806114b9528061155b528061175952506126b06000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c806395d89b411161015c578063d65a06b0116100ce578063eb99be1211610087578063eb99be121461051a578063eec2cc5014610522578063f14faf6f1461052a578063f2fde38b1461053d578063f3a37cd214610550578063f9eaa5df146105635761028a565b8063d65a06b0146104c9578063db1d0fd5146104dc578063db2e21bc146104e4578063db90c318146104ec578063dd62ed3e146104f4578063e401b5ba146105075761028a565b8063b6617a1a11610120578063b6617a1a1461047f578063b88c4f3314610487578063bcb860521461048f578063c39eabf5146104b1578063ce71b65c146104b9578063d2b5c5dd146104c15761028a565b806395d89b411461042b5780639615396714610433578063a9059cbb14610446578063b256126314610459578063b420901a1461046c5761028a565b8063443355e5116102005780636d401f71116101b95780636d401f71146103d857806370a08231146103e057806374083bbf146103f35780637cf834e1146103fb5780638456db151461041057806394bf804d146104185761028a565b8063443355e5146103855780634e71e0c8146103985780635400e36f146103a057806354015ea8146103b357806354087b21146103bb5780635de65173146103d05761028a565b80631959a002116102525780631959a0021461030c57806323b872dd1461032f57806325d998bb14610342578063300773cd14610355578063313ce5671461036857806334cf13321461037d5761028a565b806306fdde031461028f578063095ea7b3146102ad5780630d009297146102cd57806316048bc4146102e257806318160ddd146102f7575b600080fd5b610297610579565b6040516102a4919061223a565b60405180910390f35b6102c06102bb3660046120aa565b610604565b6040516102a4919061222f565b6102e06102db36600461201b565b6106a5565b005b6102ea610705565b6040516102a4919061218e565b6102ff610714565b6040516102a49190612608565b61031f61031a36600461201b565b610814565b6040516102a494939291906125d6565b6102c061033d36600461206a565b610852565b6102ff61035036600461201b565b61090a565b6102e061036336600461210c565b6109d2565b610370610a44565b6040516102a49190612646565b6102ea610a4d565b6102ea61039336600461201b565b610a71565b6102e0610a92565b6102e06103ae36600461210c565b610b20565b6102ff610c0b565b6103c3610c11565b6040516102a491906125c2565b6102ea610c27565b6102ff610c36565b6102ff6103ee36600461201b565b610c3c565b6102ff610c57565b610403610c5d565b6040516102a49190612635565b6102ea610c70565b6102e061042636600461213c565b610c7f565b610297610ea6565b6102ff61044136600461201b565b610f01565b6102c06104543660046120aa565b610fb3565b6102e061046736600461201b565b610fd1565b6102e061047a36600461210c565b61101d565b6102ff61107c565b6102ea611081565b6104a261049d36600461210c565b6110a5565b6040516102a49392919061261f565b6102c0611178565b6102ff611188565b6102ff61118e565b6102e06104d736600461215f565b61119a565b6103c3611466565b6102e0611475565b6102ff6115e9565b6102ff610502366004612036565b61166b565b6102e061051536600461201b565b611696565b6102ea6116e2565b6102ea611706565b6102e061053836600461210c565b611715565b6102e061054b36600461201b565b61181a565b6102e061055e3660046120d4565b61189f565b61056b611910565b6040516102a4929190612611565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105fc5780601f106105d1576101008083540402835291602001916105fc565b820191906000526020600020905b8154815290600101906020018083116105df57829003601f168201915b505050505081565b600754600090600160a01b900460ff166106395760405162461bcd60e51b81526004016106309061240f565b60405180910390fd5b3360008181526005602090815260408083206001600160a01b03881680855292529182902085905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610693908690612608565b60405180910390a35060015b92915050565b600154600160a01b900460ff16156106cf5760405162461bcd60e51b81526004016106309061248f565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b031681565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401610763919061218e565b60206040518083038186803b15801561077b57600080fd5b505afa15801561078f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b39190612124565b905060006107bf611910565b600a5490925060009150610808906107fb906107ec908590600160701b90046001600160701b031661197b565b600b549063ffffffff6119a716565b849063ffffffff6119a716565b60649004949350505050565b600d602052600090815260409020805460018201546002909201546001600160801b0380831693600160801b90930416916001600160a01b03169084565b6001600160a01b03831660009081526005602090815260408083203384529091528120548211156108955760405162461bcd60e51b81526004016106309061232f565b61089d6119cf565b6108a8848484611a98565b6001600160a01b03841660009081526005602090815260408083203384529091529020546108dc908363ffffffff6119a716565b6001600160a01b03851660009081526005602090815260408083203384529091529020555060019392505050565b6006546000906001600160a01b031661092d5761092682610c3c565b90506109cd565b6006546040516305ef02c760e31b81526000916001600160a01b031690632f7816389061095e90869060040161218e565b60206040518083038186803b15801561097657600080fd5b505afa15801561098a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ae9190612124565b90506109c9816109bd85610c3c565b9063ffffffff6119a716565b9150505b919050565b6000546001600160a01b031633146109fc5760405162461bcd60e51b815260040161063090612522565b610a046119cf565b60088190556040517feca81e4b546cfbc80883349ef5bdaca1c02dc7cb0bdb9e1183cb7698f90bbb8590610a39908390612608565b60405180910390a150565b60045460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b039081166000908152600d60205260409020600101541690565b6001546001600160a01b03163314610abc5760405162461bcd60e51b81526004016106309061228d565b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60405163052f523360e11b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690630a5ea46690610b92907f000000000000000000000000000000000000000000000000000000000000000090339030908790600401612205565b600060405180830381600087803b158015610bac57600080fd5b505af1158015610bc0573d6000803e3d6000fd5b5050600b54610bd8925090508263ffffffff61197b16565b600b556040517fdee982458f84113ac3e32d44595820a6fa60cfbe80a1bdd444c26599ee5b7dd590610a39908390612608565b600b5481565b600a54600160701b90046001600160701b031681565b6006546001600160a01b031681565b600c5481565b60006064610c4983610f01565b81610c5057fe5b0492915050565b60085481565b600a54600160e01b900463ffffffff1681565b6001546001600160a01b031681565b6001600160a01b03811615801590610ca057506001600160a01b0381163314155b610cbc5760405162461bcd60e51b815260040161063090612568565b60008211610cdc5760405162461bcd60e51b8152600401610630906123cb565b336000908152600d6020526040902060018101546001600160a01b0316610d93577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161480610d5957506001600160a01b038281166000908152600d60205260409020600101541615155b610d755760405162461bcd60e51b8152600401610630906122b4565b6001810180546001600160a01b0319166001600160a01b0384161790555b610d9b6119cf565b60405163052f523360e11b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690630a5ea46690610e0d907f000000000000000000000000000000000000000000000000000000000000000090339030908990600401612205565b600060405180830381600087803b158015610e2757600080fd5b505af1158015610e3b573d6000803e3d6000fd5b5050600a5460009250610e59915085906001600160701b0316611c14565b9050610e658282611c3e565b7fb299178f92646282937cbe7c9e854594cb5ef6330e03b43946086e9dc0ca9ecd338486604051610e98939291906121a2565b60405180910390a150505050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105fc5780601f106105d1576101008083540402835291602001916105fc565b6000610f0b611fdd565b506001600160a01b038083166000908152600d60209081526040808320815160808101835281546001600160801b038082168352600160801b90910416938101939093526001810154909416908201526002909201546060830152610f6e611910565b5090506000610f8a83600001516001600160801b031683611d90565b90508260600151811115610fa657826060015181039350610fab565b600093505b505050919050565b6000610fbd6119cf565b610fc8338484611a98565b50600192915050565b6000546001600160a01b03163314610ffb5760405162461bcd60e51b815260040161063090612522565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146110475760405162461bcd60e51b815260040161063090612522565b60098190556040517fff3692e8e3336aaee232986626f21d80be86e891d2122581acf795123af3e8a390610a39908390612608565b606481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080600080600760009054906101000a90046001600160a01b03166001600160a01b031663def0d15d6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110f957600080fd5b505afa15801561110d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111319190612124565b905061113d8582611d90565b915061114f858363ffffffff6119a716565b935061115d82600954611d90565b925061116f828463ffffffff6119a716565b93959294505050565b600754600160a01b900460ff1681565b60095481565b67016345785d8a000081565b3382806111a68361090a565b10156111c45760405162461bcd60e51b8152600401610630906124b9565b6111cc6119cf565b336000908152600d6020526040812090808515611239576002830154600a5461121891611201916001600160701b0316611c14565b84546001600160801b03169063ffffffff6119a716565b600a549091506112329082906001600160701b0316611d90565b9150611267565b61124a87606463ffffffff611dba16565b600a549092506112649083906001600160701b0316611c14565b90505b6112718382611df4565b600080600061127f856110a5565b9250925092507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb33856040518363ffffffff1660e01b81526004016112d39291906121c6565b602060405180830381600087803b1580156112ed57600080fd5b505af1158015611301573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132591906120f0565b5081156113cf5760405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb9061137b9060009086906004016121c6565b602060405180830381600087803b15801561139557600080fd5b505af11580156113a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cd91906120f0565b505b801561141d576113fc6113e482600c54611c14565b600a546001600160701b03169063ffffffff61197b16565b600a80546001600160701b0319166001600160701b03929092169190911790555b7f10e8afa8e2aa45e6f179fcaa8538c699a53e253cda2b304d7fa46174527cedc33384848460405161145294939291906121df565b60405180910390a150505050505050505050565b600a546001600160701b031681565b6000546001600160a01b0316331461149f5760405162461bcd60e51b815260040161063090612522565b6040516370a0823160e01b81526000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906114ee90309060040161218e565b60206040518083038186803b15801561150657600080fd5b505afa15801561151a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153e9190612124565b60005460405163a9059cbb60e01b81529192506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263a9059cbb9261159392169085906004016121c6565b602060405180830381600087803b1580156115ad57600080fd5b505af11580156115c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e591906120f0565b5050565b6007546040805163def0d15d60e01b815290516000926001600160a01b03169163def0d15d916004808301926020929190829003018186803b15801561162e57600080fd5b505afa158015611642573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116669190612124565b905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6000546001600160a01b031633146116c05760405162461bcd60e51b815260040161063090612522565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b6007546001600160a01b031681565b60405163052f523360e11b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690630a5ea46690611787907f000000000000000000000000000000000000000000000000000000000000000090339030908790600401612205565b600060405180830381600087803b1580156117a157600080fd5b505af11580156117b5573d6000803e3d6000fd5b505050506117c86113e482600c54611c14565b600a80546001600160701b0319166001600160701b03929092169190911790556040517f3ed260d8e11a4e325861a1b184d8389e34339a456bc04d53f111e5d99ae22ac190610a3990339084906121c6565b6000546001600160a01b031633146118445760405162461bcd60e51b815260040161063090612522565b600080546040516001600160a01b03808516939216917fdcf55418cee3220104fef63f979ff3c4097ad240c0c43dcb33ce837748983e6291a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146118c95760405162461bcd60e51b815260040161063090612522565b6007805460ff60a01b1916600160a01b831515021790556040517f8faf67cb6de7f4aed6e2791474b60016b6cb2b4e756529701e7863892e46869490610a3990839061222f565b600a546000908190600160e01b900463ffffffff166119315750600061194a565b50600a54600854600160e01b90910463ffffffff164303025b600c5415611968576119616113e482600c54611c14565b9150611977565b600a546001600160701b031691505b9091565b6000828201838110156119a05760405162461bcd60e51b815260040161063090612545565b9392505050565b6000828211156119c95760405162461bcd60e51b81526004016106309061246c565b50900390565b6000806119da611910565b600a549193509150600090611a00908390600160701b90046001600160701b031661197b565b90506001600160701b038311801590611a2057506001600160701b038111155b611a3c5760405162461bcd60e51b815260040161063090612500565b600a80546001600160701b0319166001600160701b03948516176dffffffffffffffffffffffffffff60701b1916600160701b9290941691909102929092176001600160e01b0316600160e01b4363ffffffff16021790915550565b600754600160a01b900460ff16611ac15760405162461bcd60e51b81526004016106309061240f565b828180611acd8361090a565b1015611aeb5760405162461bcd60e51b8152600401610630906124b9565b6001600160a01b038516611b115760405162461bcd60e51b8152600401610630906122f8565b6001600160a01b038416611b375760405162461bcd60e51b81526004016106309061235d565b836001600160a01b0316856001600160a01b03161415611b695760405162461bcd60e51b815260040161063090612394565b600a54600090611b869060648602906001600160701b0316611c14565b6001600160a01b038088166000908152600d60205260408082209289168252902091925090611bb58284611df4565b611bbf8184611c3e565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051611c029190612608565b60405180910390a35050505050505050565b60006119a082611c3285670de0b6b3a764000063ffffffff611dba16565b9063ffffffff611fb316565b6001600160801b03811115611c655760405162461bcd60e51b815260040161063090612500565b60018201546001600160a01b03166000908152600d6020526040812090611c948367016345785d8a0000611d90565b600a54909150600090611cb19083906001600160701b0316611d90565b8554909150611ccf906001600160801b03168563ffffffff61197b16565b85546001600160801b0319166001600160801b0391821617808755611cfd91600160801b909104168361197b565b85546001600160801b03918216600160801b029082161786558354611d2991168363ffffffff61197b16565b83546001600160801b0319166001600160801b03919091161783556002830154611d53908261197b565b6001600160801b03166002840155600c54611d86908390611d7a908763ffffffff61197b16565b9063ffffffff61197b16565b600c555050505050565b6000670de0b6b3a7640000611dab848463ffffffff611dba16565b81611db257fe5b049392505050565b600082611dc95750600061069f565b82820282848281611dd657fe5b04146119a05760405162461bcd60e51b81526004016106309061259f565b8154611e0f906001600160801b03168263ffffffff6119a716565b82546001600160801b0319166001600160801b03919091161782556000611e3e8267016345785d8a0000611d90565b8354909150600160801b90046001600160801b0316811015611e605780611e73565b8254600160801b90046001600160801b03165b8354909150611e9290600160801b90046001600160801b0316826119a7565b83546001600160801b03918216600160801b02911617835560018301546001600160a01b03166000908152600d602052604081206002810154600a54919291611ee491906001600160701b0316611c14565b9050808310611f2f57600060028301558154611f0f906001600160801b03168263ffffffff6119a716565b82546001600160801b0319166001600160801b0391909116178255611f9a565b600a54611f5b90611f4a9085906001600160701b0316611d90565b60028401549063ffffffff6119a716565b6001600160801b0390811660028401558254611f7e91168463ffffffff6119a716565b82546001600160801b0319166001600160801b03919091161782555b611d86836109bd86600c546119a790919063ffffffff16565b6000808211611fd45760405162461bcd60e51b815260040161063090612444565b818381611db257fe5b60408051608081018252600080825260208201819052918101829052606081019190915290565b80356001600160a01b038116811461069f57600080fd5b60006020828403121561202c578081fd5b6119a08383612004565b60008060408385031215612048578081fd5b6120528484612004565b91506120618460208501612004565b90509250929050565b60008060006060848603121561207e578081fd5b833561208981612654565b9250602084013561209981612654565b929592945050506040919091013590565b600080604083850312156120bc578182fd5b6120c68484612004565b946020939093013593505050565b6000602082840312156120e5578081fd5b81356119a08161266c565b600060208284031215612101578081fd5b81516119a08161266c565b60006020828403121561211d578081fd5b5035919050565b600060208284031215612135578081fd5b5051919050565b6000806040838503121561214e578182fd5b823591506120618460208501612004565b60008060408385031215612171578182fd5b8235915060208301356121838161266c565b809150509250929050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b901515815260200190565b6000602080835283518082850152825b818110156122665785810183015185820160400152820161224a565b818111156122775783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600d908201526c494e56414c49445f434c41494d60981b604082015260600190565b60208082526024908201527f76444f444f546f6b656e3a20494e56414c49445f5355504552494f525f4144446040820152635245535360e01b606082015260800190565b6020808252601e908201527f7472616e736665722066726f6d20746865207a65726f20616464726573730000604082015260600190565b60208082526014908201527308298989eae829c868abe9c9ea8be8a9c9eaa8e960631b604082015260600190565b6020808252601c908201527f7472616e7366657220746f20746865207a65726f206164647265737300000000604082015260600190565b6020808252601a908201527f7472616e736665722066726f6d2073616d65207769746820746f000000000000604082015260600190565b60208082526024908201527f76444f444f546f6b656e3a206d757374206d696e7420677265617465722074686040820152630616e20360e41b606082015260800190565b6020808252818101527f76444f444f546f6b656e3a206e6f7420616c6c6f776564207472616e73666572604082015260600190565b6020808252600e908201526d2224ab24a224a723afa2a92927a960911b604082015260600190565b60208082526009908201526829aaa12fa2a92927a960b91b604082015260600190565b60208082526010908201526f1113d113d7d25392551250531256915160821b604082015260600190565b60208082526027908201527f76444f444f546f6b656e3a20617661696c61626c6520616d6f756e74206e6f74604082015266040cadcdeeaced60cb1b606082015260800190565b6020808252600890820152674f564552464c4f5760c01b604082015260600190565b6020808252600990820152682727aa2fa7aba722a960b91b604082015260600190565b60208082526009908201526820a2222fa2a92927a960b91b604082015260600190565b6020808252601c908201527f76444f444f546f6b656e3a205375706572696f7220494e56414c494400000000604082015260600190565b60208082526009908201526826aaa62fa2a92927a960b91b604082015260600190565b6001600160701b0391909116815260200190565b6001600160801b0394851681529290931660208301526001600160a01b03166040820152606081019190915260800190565b90815260200190565b918252602082015260400190565b9283526020830191909152604082015260600190565b63ffffffff91909116815260200190565b60ff91909116815260200190565b6001600160a01b038116811461266957600080fd5b50565b801515811461266957600080fdfea26469706673582212207b4fb94c47a1c1d4eb8a67cf39d4a9890a6ea811b50c1406bf846bb511c4b87b64736f6c63430006090033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd000000000000000000000000335ac99bb3e51bdbf22025f092ebc1cf2c5cc61900000000000000000000000095c4f5b83aa70810d4f142d58e5f7242bd891cb0

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061028a5760003560e01c806395d89b411161015c578063d65a06b0116100ce578063eb99be1211610087578063eb99be121461051a578063eec2cc5014610522578063f14faf6f1461052a578063f2fde38b1461053d578063f3a37cd214610550578063f9eaa5df146105635761028a565b8063d65a06b0146104c9578063db1d0fd5146104dc578063db2e21bc146104e4578063db90c318146104ec578063dd62ed3e146104f4578063e401b5ba146105075761028a565b8063b6617a1a11610120578063b6617a1a1461047f578063b88c4f3314610487578063bcb860521461048f578063c39eabf5146104b1578063ce71b65c146104b9578063d2b5c5dd146104c15761028a565b806395d89b411461042b5780639615396714610433578063a9059cbb14610446578063b256126314610459578063b420901a1461046c5761028a565b8063443355e5116102005780636d401f71116101b95780636d401f71146103d857806370a08231146103e057806374083bbf146103f35780637cf834e1146103fb5780638456db151461041057806394bf804d146104185761028a565b8063443355e5146103855780634e71e0c8146103985780635400e36f146103a057806354015ea8146103b357806354087b21146103bb5780635de65173146103d05761028a565b80631959a002116102525780631959a0021461030c57806323b872dd1461032f57806325d998bb14610342578063300773cd14610355578063313ce5671461036857806334cf13321461037d5761028a565b806306fdde031461028f578063095ea7b3146102ad5780630d009297146102cd57806316048bc4146102e257806318160ddd146102f7575b600080fd5b610297610579565b6040516102a4919061223a565b60405180910390f35b6102c06102bb3660046120aa565b610604565b6040516102a4919061222f565b6102e06102db36600461201b565b6106a5565b005b6102ea610705565b6040516102a4919061218e565b6102ff610714565b6040516102a49190612608565b61031f61031a36600461201b565b610814565b6040516102a494939291906125d6565b6102c061033d36600461206a565b610852565b6102ff61035036600461201b565b61090a565b6102e061036336600461210c565b6109d2565b610370610a44565b6040516102a49190612646565b6102ea610a4d565b6102ea61039336600461201b565b610a71565b6102e0610a92565b6102e06103ae36600461210c565b610b20565b6102ff610c0b565b6103c3610c11565b6040516102a491906125c2565b6102ea610c27565b6102ff610c36565b6102ff6103ee36600461201b565b610c3c565b6102ff610c57565b610403610c5d565b6040516102a49190612635565b6102ea610c70565b6102e061042636600461213c565b610c7f565b610297610ea6565b6102ff61044136600461201b565b610f01565b6102c06104543660046120aa565b610fb3565b6102e061046736600461201b565b610fd1565b6102e061047a36600461210c565b61101d565b6102ff61107c565b6102ea611081565b6104a261049d36600461210c565b6110a5565b6040516102a49392919061261f565b6102c0611178565b6102ff611188565b6102ff61118e565b6102e06104d736600461215f565b61119a565b6103c3611466565b6102e0611475565b6102ff6115e9565b6102ff610502366004612036565b61166b565b6102e061051536600461201b565b611696565b6102ea6116e2565b6102ea611706565b6102e061053836600461210c565b611715565b6102e061054b36600461201b565b61181a565b6102e061055e3660046120d4565b61189f565b61056b611910565b6040516102a4929190612611565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105fc5780601f106105d1576101008083540402835291602001916105fc565b820191906000526020600020905b8154815290600101906020018083116105df57829003601f168201915b505050505081565b600754600090600160a01b900460ff166106395760405162461bcd60e51b81526004016106309061240f565b60405180910390fd5b3360008181526005602090815260408083206001600160a01b03881680855292529182902085905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610693908690612608565b60405180910390a35060015b92915050565b600154600160a01b900460ff16156106cf5760405162461bcd60e51b81526004016106309061248f565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b031681565b6000807f00000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd6001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401610763919061218e565b60206040518083038186803b15801561077b57600080fd5b505afa15801561078f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b39190612124565b905060006107bf611910565b600a5490925060009150610808906107fb906107ec908590600160701b90046001600160701b031661197b565b600b549063ffffffff6119a716565b849063ffffffff6119a716565b60649004949350505050565b600d602052600090815260409020805460018201546002909201546001600160801b0380831693600160801b90930416916001600160a01b03169084565b6001600160a01b03831660009081526005602090815260408083203384529091528120548211156108955760405162461bcd60e51b81526004016106309061232f565b61089d6119cf565b6108a8848484611a98565b6001600160a01b03841660009081526005602090815260408083203384529091529020546108dc908363ffffffff6119a716565b6001600160a01b03851660009081526005602090815260408083203384529091529020555060019392505050565b6006546000906001600160a01b031661092d5761092682610c3c565b90506109cd565b6006546040516305ef02c760e31b81526000916001600160a01b031690632f7816389061095e90869060040161218e565b60206040518083038186803b15801561097657600080fd5b505afa15801561098a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ae9190612124565b90506109c9816109bd85610c3c565b9063ffffffff6119a716565b9150505b919050565b6000546001600160a01b031633146109fc5760405162461bcd60e51b815260040161063090612522565b610a046119cf565b60088190556040517feca81e4b546cfbc80883349ef5bdaca1c02dc7cb0bdb9e1183cb7698f90bbb8590610a39908390612608565b60405180910390a150565b60045460ff1681565b7f00000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd81565b6001600160a01b039081166000908152600d60205260409020600101541690565b6001546001600160a01b03163314610abc5760405162461bcd60e51b81526004016106309061228d565b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60405163052f523360e11b81526001600160a01b037f000000000000000000000000335ac99bb3e51bdbf22025f092ebc1cf2c5cc6191690630a5ea46690610b92907f00000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd90339030908790600401612205565b600060405180830381600087803b158015610bac57600080fd5b505af1158015610bc0573d6000803e3d6000fd5b5050600b54610bd8925090508263ffffffff61197b16565b600b556040517fdee982458f84113ac3e32d44595820a6fa60cfbe80a1bdd444c26599ee5b7dd590610a39908390612608565b600b5481565b600a54600160701b90046001600160701b031681565b6006546001600160a01b031681565b600c5481565b60006064610c4983610f01565b81610c5057fe5b0492915050565b60085481565b600a54600160e01b900463ffffffff1681565b6001546001600160a01b031681565b6001600160a01b03811615801590610ca057506001600160a01b0381163314155b610cbc5760405162461bcd60e51b815260040161063090612568565b60008211610cdc5760405162461bcd60e51b8152600401610630906123cb565b336000908152600d6020526040902060018101546001600160a01b0316610d93577f00000000000000000000000095c4f5b83aa70810d4f142d58e5f7242bd891cb06001600160a01b0316826001600160a01b03161480610d5957506001600160a01b038281166000908152600d60205260409020600101541615155b610d755760405162461bcd60e51b8152600401610630906122b4565b6001810180546001600160a01b0319166001600160a01b0384161790555b610d9b6119cf565b60405163052f523360e11b81526001600160a01b037f000000000000000000000000335ac99bb3e51bdbf22025f092ebc1cf2c5cc6191690630a5ea46690610e0d907f00000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd90339030908990600401612205565b600060405180830381600087803b158015610e2757600080fd5b505af1158015610e3b573d6000803e3d6000fd5b5050600a5460009250610e59915085906001600160701b0316611c14565b9050610e658282611c3e565b7fb299178f92646282937cbe7c9e854594cb5ef6330e03b43946086e9dc0ca9ecd338486604051610e98939291906121a2565b60405180910390a150505050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105fc5780601f106105d1576101008083540402835291602001916105fc565b6000610f0b611fdd565b506001600160a01b038083166000908152600d60209081526040808320815160808101835281546001600160801b038082168352600160801b90910416938101939093526001810154909416908201526002909201546060830152610f6e611910565b5090506000610f8a83600001516001600160801b031683611d90565b90508260600151811115610fa657826060015181039350610fab565b600093505b505050919050565b6000610fbd6119cf565b610fc8338484611a98565b50600192915050565b6000546001600160a01b03163314610ffb5760405162461bcd60e51b815260040161063090612522565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146110475760405162461bcd60e51b815260040161063090612522565b60098190556040517fff3692e8e3336aaee232986626f21d80be86e891d2122581acf795123af3e8a390610a39908390612608565b606481565b7f00000000000000000000000095c4f5b83aa70810d4f142d58e5f7242bd891cb081565b600080600080600760009054906101000a90046001600160a01b03166001600160a01b031663def0d15d6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110f957600080fd5b505afa15801561110d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111319190612124565b905061113d8582611d90565b915061114f858363ffffffff6119a716565b935061115d82600954611d90565b925061116f828463ffffffff6119a716565b93959294505050565b600754600160a01b900460ff1681565b60095481565b67016345785d8a000081565b3382806111a68361090a565b10156111c45760405162461bcd60e51b8152600401610630906124b9565b6111cc6119cf565b336000908152600d6020526040812090808515611239576002830154600a5461121891611201916001600160701b0316611c14565b84546001600160801b03169063ffffffff6119a716565b600a549091506112329082906001600160701b0316611d90565b9150611267565b61124a87606463ffffffff611dba16565b600a549092506112649083906001600160701b0316611c14565b90505b6112718382611df4565b600080600061127f856110a5565b9250925092507f00000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd6001600160a01b031663a9059cbb33856040518363ffffffff1660e01b81526004016112d39291906121c6565b602060405180830381600087803b1580156112ed57600080fd5b505af1158015611301573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132591906120f0565b5081156113cf5760405163a9059cbb60e01b81526001600160a01b037f00000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd169063a9059cbb9061137b9060009086906004016121c6565b602060405180830381600087803b15801561139557600080fd5b505af11580156113a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cd91906120f0565b505b801561141d576113fc6113e482600c54611c14565b600a546001600160701b03169063ffffffff61197b16565b600a80546001600160701b0319166001600160701b03929092169190911790555b7f10e8afa8e2aa45e6f179fcaa8538c699a53e253cda2b304d7fa46174527cedc33384848460405161145294939291906121df565b60405180910390a150505050505050505050565b600a546001600160701b031681565b6000546001600160a01b0316331461149f5760405162461bcd60e51b815260040161063090612522565b6040516370a0823160e01b81526000906001600160a01b037f00000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd16906370a08231906114ee90309060040161218e565b60206040518083038186803b15801561150657600080fd5b505afa15801561151a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153e9190612124565b60005460405163a9059cbb60e01b81529192506001600160a01b037f00000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd81169263a9059cbb9261159392169085906004016121c6565b602060405180830381600087803b1580156115ad57600080fd5b505af11580156115c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e591906120f0565b5050565b6007546040805163def0d15d60e01b815290516000926001600160a01b03169163def0d15d916004808301926020929190829003018186803b15801561162e57600080fd5b505afa158015611642573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116669190612124565b905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6000546001600160a01b031633146116c05760405162461bcd60e51b815260040161063090612522565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b7f000000000000000000000000335ac99bb3e51bdbf22025f092ebc1cf2c5cc61981565b6007546001600160a01b031681565b60405163052f523360e11b81526001600160a01b037f000000000000000000000000335ac99bb3e51bdbf22025f092ebc1cf2c5cc6191690630a5ea46690611787907f00000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd90339030908790600401612205565b600060405180830381600087803b1580156117a157600080fd5b505af11580156117b5573d6000803e3d6000fd5b505050506117c86113e482600c54611c14565b600a80546001600160701b0319166001600160701b03929092169190911790556040517f3ed260d8e11a4e325861a1b184d8389e34339a456bc04d53f111e5d99ae22ac190610a3990339084906121c6565b6000546001600160a01b031633146118445760405162461bcd60e51b815260040161063090612522565b600080546040516001600160a01b03808516939216917fdcf55418cee3220104fef63f979ff3c4097ad240c0c43dcb33ce837748983e6291a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146118c95760405162461bcd60e51b815260040161063090612522565b6007805460ff60a01b1916600160a01b831515021790556040517f8faf67cb6de7f4aed6e2791474b60016b6cb2b4e756529701e7863892e46869490610a3990839061222f565b600a546000908190600160e01b900463ffffffff166119315750600061194a565b50600a54600854600160e01b90910463ffffffff164303025b600c5415611968576119616113e482600c54611c14565b9150611977565b600a546001600160701b031691505b9091565b6000828201838110156119a05760405162461bcd60e51b815260040161063090612545565b9392505050565b6000828211156119c95760405162461bcd60e51b81526004016106309061246c565b50900390565b6000806119da611910565b600a549193509150600090611a00908390600160701b90046001600160701b031661197b565b90506001600160701b038311801590611a2057506001600160701b038111155b611a3c5760405162461bcd60e51b815260040161063090612500565b600a80546001600160701b0319166001600160701b03948516176dffffffffffffffffffffffffffff60701b1916600160701b9290941691909102929092176001600160e01b0316600160e01b4363ffffffff16021790915550565b600754600160a01b900460ff16611ac15760405162461bcd60e51b81526004016106309061240f565b828180611acd8361090a565b1015611aeb5760405162461bcd60e51b8152600401610630906124b9565b6001600160a01b038516611b115760405162461bcd60e51b8152600401610630906122f8565b6001600160a01b038416611b375760405162461bcd60e51b81526004016106309061235d565b836001600160a01b0316856001600160a01b03161415611b695760405162461bcd60e51b815260040161063090612394565b600a54600090611b869060648602906001600160701b0316611c14565b6001600160a01b038088166000908152600d60205260408082209289168252902091925090611bb58284611df4565b611bbf8184611c3e565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef88604051611c029190612608565b60405180910390a35050505050505050565b60006119a082611c3285670de0b6b3a764000063ffffffff611dba16565b9063ffffffff611fb316565b6001600160801b03811115611c655760405162461bcd60e51b815260040161063090612500565b60018201546001600160a01b03166000908152600d6020526040812090611c948367016345785d8a0000611d90565b600a54909150600090611cb19083906001600160701b0316611d90565b8554909150611ccf906001600160801b03168563ffffffff61197b16565b85546001600160801b0319166001600160801b0391821617808755611cfd91600160801b909104168361197b565b85546001600160801b03918216600160801b029082161786558354611d2991168363ffffffff61197b16565b83546001600160801b0319166001600160801b03919091161783556002830154611d53908261197b565b6001600160801b03166002840155600c54611d86908390611d7a908763ffffffff61197b16565b9063ffffffff61197b16565b600c555050505050565b6000670de0b6b3a7640000611dab848463ffffffff611dba16565b81611db257fe5b049392505050565b600082611dc95750600061069f565b82820282848281611dd657fe5b04146119a05760405162461bcd60e51b81526004016106309061259f565b8154611e0f906001600160801b03168263ffffffff6119a716565b82546001600160801b0319166001600160801b03919091161782556000611e3e8267016345785d8a0000611d90565b8354909150600160801b90046001600160801b0316811015611e605780611e73565b8254600160801b90046001600160801b03165b8354909150611e9290600160801b90046001600160801b0316826119a7565b83546001600160801b03918216600160801b02911617835560018301546001600160a01b03166000908152600d602052604081206002810154600a54919291611ee491906001600160701b0316611c14565b9050808310611f2f57600060028301558154611f0f906001600160801b03168263ffffffff6119a716565b82546001600160801b0319166001600160801b0391909116178255611f9a565b600a54611f5b90611f4a9085906001600160701b0316611d90565b60028401549063ffffffff6119a716565b6001600160801b0390811660028401558254611f7e91168463ffffffff6119a716565b82546001600160801b0319166001600160801b03919091161782555b611d86836109bd86600c546119a790919063ffffffff16565b6000808211611fd45760405162461bcd60e51b815260040161063090612444565b818381611db257fe5b60408051608081018252600080825260208201819052918101829052606081019190915290565b80356001600160a01b038116811461069f57600080fd5b60006020828403121561202c578081fd5b6119a08383612004565b60008060408385031215612048578081fd5b6120528484612004565b91506120618460208501612004565b90509250929050565b60008060006060848603121561207e578081fd5b833561208981612654565b9250602084013561209981612654565b929592945050506040919091013590565b600080604083850312156120bc578182fd5b6120c68484612004565b946020939093013593505050565b6000602082840312156120e5578081fd5b81356119a08161266c565b600060208284031215612101578081fd5b81516119a08161266c565b60006020828403121561211d578081fd5b5035919050565b600060208284031215612135578081fd5b5051919050565b6000806040838503121561214e578182fd5b823591506120618460208501612004565b60008060408385031215612171578182fd5b8235915060208301356121838161266c565b809150509250929050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b901515815260200190565b6000602080835283518082850152825b818110156122665785810183015185820160400152820161224a565b818111156122775783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600d908201526c494e56414c49445f434c41494d60981b604082015260600190565b60208082526024908201527f76444f444f546f6b656e3a20494e56414c49445f5355504552494f525f4144446040820152635245535360e01b606082015260800190565b6020808252601e908201527f7472616e736665722066726f6d20746865207a65726f20616464726573730000604082015260600190565b60208082526014908201527308298989eae829c868abe9c9ea8be8a9c9eaa8e960631b604082015260600190565b6020808252601c908201527f7472616e7366657220746f20746865207a65726f206164647265737300000000604082015260600190565b6020808252601a908201527f7472616e736665722066726f6d2073616d65207769746820746f000000000000604082015260600190565b60208082526024908201527f76444f444f546f6b656e3a206d757374206d696e7420677265617465722074686040820152630616e20360e41b606082015260800190565b6020808252818101527f76444f444f546f6b656e3a206e6f7420616c6c6f776564207472616e73666572604082015260600190565b6020808252600e908201526d2224ab24a224a723afa2a92927a960911b604082015260600190565b60208082526009908201526829aaa12fa2a92927a960b91b604082015260600190565b60208082526010908201526f1113d113d7d25392551250531256915160821b604082015260600190565b60208082526027908201527f76444f444f546f6b656e3a20617661696c61626c6520616d6f756e74206e6f74604082015266040cadcdeeaced60cb1b606082015260800190565b6020808252600890820152674f564552464c4f5760c01b604082015260600190565b6020808252600990820152682727aa2fa7aba722a960b91b604082015260600190565b60208082526009908201526820a2222fa2a92927a960b91b604082015260600190565b6020808252601c908201527f76444f444f546f6b656e3a205375706572696f7220494e56414c494400000000604082015260600190565b60208082526009908201526826aaa62fa2a92927a960b91b604082015260600190565b6001600160701b0391909116815260200190565b6001600160801b0394851681529290931660208301526001600160a01b03166040820152606081019190915260800190565b90815260200190565b918252602082015260400190565b9283526020830191909152604082015260600190565b63ffffffff91909116815260200190565b60ff91909116815260200190565b6001600160a01b038116811461266957600080fd5b50565b801515811461266957600080fdfea26469706673582212207b4fb94c47a1c1d4eb8a67cf39d4a9890a6ea811b50c1406bf846bb511c4b87b64736f6c63430006090033

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

000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd000000000000000000000000335ac99bb3e51bdbf22025f092ebc1cf2c5cc61900000000000000000000000095c4f5b83aa70810d4f142d58e5f7242bd891cb0

-----Decoded View---------------
Arg [0] : dodoGov (address): 0x0000000000000000000000000000000000000000
Arg [1] : dodoToken (address): 0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd
Arg [2] : dodoApproveProxy (address): 0x335aC99bb3E51BDbF22025f092Ebc1Cf2c5cC619
Arg [3] : dodoTeam (address): 0x95C4F5b83aA70810D4f142d58e5F7242Bd891CB0

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 00000000000000000000000043dfc4159d86f3a37a5a4b3d4580b888ad7d4ddd
Arg [2] : 000000000000000000000000335ac99bb3e51bdbf22025f092ebc1cf2c5cc619
Arg [3] : 00000000000000000000000095c4f5b83aa70810d4f142d58e5f7242bd891cb0


Deployed Bytecode Sourcemap

12786:14037:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12923:45;;;:::i;:::-;;;;;;;;;;;;;;;;20437:232;;;;;;;;;:::i;:::-;;;;;;;;6058:127;;;;;;;;;:::i;:::-;;5425:22;;;:::i;:::-;;;;;;;;19709:375;;;:::i;:::-;;;;;;;;13890:44;;;;;;;;;:::i;:::-;;;;;;;;;;;20677:394;;;;;;;;;:::i;21778:372::-;;;;;;;;;:::i;15624:184::-;;;;;;;;;:::i;13012:26::-;;;:::i;:::-;;;;;;;;13164:37;;;:::i;23458:129::-;;;;;;;;;:::i;6364:228::-;;;:::i;19295:354::-;;;;;;;;;:::i;13805:35::-;;;:::i;13715:41::-;;;:::i;:::-;;;;;;;;13303:25;;;:::i;13847:36::-;;;:::i;20096:148::-;;;;;;;;;:::i;13453:31::-;;;:::i;13763:33::-;;;:::i;:::-;;;;;;;;5454:26;;;:::i;16524:1048::-;;;;;;;;;:::i;12975:30::-;;;:::i;22158:432::-;;;;;;;;;:::i;20252:177::-;;;;;;;;;:::i;16150:105::-;;;;;;;;;:::i;15816:195::-;;;;;;;;;:::i;13554:42::-;;;:::i;13260:36::-;;;:::i;22598:665::-;;;;;;;;;:::i;:::-;;;;;;;;;;13384:26;;;:::i;13610:36::-;;;:::i;13491:49::-;;;:::i;17580:1293::-;;;;;;;;;:::i;13674:29::-;;;:::i;16263:194::-;;;:::i;23271:179::-;;;:::i;21079:132::-;;;;;;;;;:::i;16019:123::-;;;;;;;;;:::i;13208:45::-;;;:::i;13335:40::-;;;:::i;18881:406::-;;;;;;;;;:::i;6193:163::-;;;;;;;;;:::i;15479:137::-;;;;;;;;;:::i;21272:498::-;;;:::i;:::-;;;;;;;;;12923:45;;;;;;;;;;;;;;-1:-1:-1;;12923:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20437:232::-;14806:14;;20520:4;;-1:-1:-1;;;14806:14:0;;;;14798:59;;;;-1:-1:-1;;;14798:59:0;;;;;;;;;;;;;;;;;20547:10:::1;20537:21;::::0;;;:9:::1;:21;::::0;;;;;;;-1:-1:-1;;;;;20537:30:0;::::1;::::0;;;;;;;;;:44;;;20597:42;;20537:30;;20547:10;20597:42:::1;::::0;::::1;::::0;20570:11;;20597:42:::1;;;;;;;;;;-1:-1:-1::0;20657:4:0::1;14868:1;20437:232:::0;;;;:::o;6058:127::-;5847:13;;-1:-1:-1;;;5847:13:0;;;;5846:14;5838:43;;;;-1:-1:-1;;;5838:43:0;;;;;;;;;6144:4:::1;6128:20:::0;;-1:-1:-1;;;;6128:20:0::1;-1:-1:-1::0;;;6128:20:0::1;::::0;;;6159:18;;-1:-1:-1;;;;;6159:18:0;;::::1;-1:-1:-1::0;;;;;;6159:18:0;;::::1;::::0;;;::::1;::::0;;6058:127::o;5425:22::-;;;-1:-1:-1;;;;;5425:22:0;;:::o;19709:375::-;19753:19;19785:17;19812:12;-1:-1:-1;;;;;19805:30:0;;19844:4;19805:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19785:65;;19863:23;19890:16;:14;:16::i;:::-;19997:26;;19861:45;;-1:-1:-1;19917:18:0;;-1:-1:-1;19938:88:0;;19952:73;;19977:47;;19861:45;;-1:-1:-1;;;19997:26:0;;-1:-1:-1;;;;;19997:26:0;19977:19;:47::i;:::-;19952:20;;;:73;:24;:73;:::i;:::-;19938:9;;:88;:13;:88;:::i;:::-;13593:3;20051:25;;;19709:375;-1:-1:-1;;;;19709:375:0:o;13890:44::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13890:44:0;;;;-1:-1:-1;;;13890:44:0;;;;;-1:-1:-1;;;;;13890:44:0;;;:::o;20677:394::-;-1:-1:-1;;;;;20836:15:0;;20796:4;20836:15;;;:9;:15;;;;;;;;20852:10;20836:27;;;;;;;;20821:42;;;20813:75;;;;-1:-1:-1;;;20813:75:0;;;;;;;;;20899:14;:12;:14::i;:::-;20924:32;20934:4;20940:2;20944:11;20924:9;:32::i;:::-;-1:-1:-1;;;;;20997:15:0;;;;;;:9;:15;;;;;;;;21013:10;20997:27;;;;;;;;:44;;21029:11;20997:44;:31;:44;:::i;:::-;-1:-1:-1;;;;;20967:15:0;;;;;;:9;:15;;;;;;;;20983:10;20967:27;;;;;;;:74;-1:-1:-1;21059:4:0;20677:394;;;;;:::o;21778:372::-;21880:10;;21844:19;;-1:-1:-1;;;;;21880:10:0;21876:267;;21935:18;21945:7;21935:9;:18::i;:::-;21921:32;;21876:267;;;22026:10;;22014:47;;-1:-1:-1;;;22014:47:0;;21986:25;;-1:-1:-1;;;;;22026:10:0;;22014:38;;:47;;22053:7;;22014:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21986:75;;22090:41;22113:17;22090:18;22100:7;22090:9;:18::i;:::-;:22;:41;:22;:41;:::i;:::-;22076:55;;21876:267;;21778:372;;;:::o;15624:184::-;5963:7;;-1:-1:-1;;;;;5963:7:0;5949:10;:21;5941:43;;;;-1:-1:-1;;;5941:43:0;;;;;;;;;15699:14:::1;:12;:14::i;:::-;15724:16;:31:::0;;;15771:29:::1;::::0;::::1;::::0;::::1;::::0;15743:12;;15771:29:::1;;;;;;;;;;15624:184:::0;:::o;13012:26::-;;;;;;:::o;13164:37::-;;;:::o;23458:129::-;-1:-1:-1;;;;;23553:17:0;;;23517:16;23553:17;;;:8;:17;;;;;:26;;;;;23458:129::o;6364:228::-;6430:11;;-1:-1:-1;;;;;6430:11:0;6416:10;:25;6408:51;;;;-1:-1:-1;;;6408:51:0;;;;;;;;;6505:11;;;6496:7;;6475:42;;-1:-1:-1;;;;;6505:11:0;;;;6496:7;;;;6475:42;;;6538:11;;;;6528:21;;-1:-1:-1;;;;;;6528:21:0;;;-1:-1:-1;;;;;6538:11:0;;6528:21;;;;6560:24;;;6364:228::o;19295:354::-;19366:167;;-1:-1:-1;;;19366:167:0;;-1:-1:-1;;;;;19384:20:0;19366:51;;;;:167;;19432:12;;19459:10;;19492:4;;19512:10;;19366:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19567:20:0;;:36;;-1:-1:-1;19567:20:0;-1:-1:-1;19592:10:0;19567:36;:24;:36;:::i;:::-;19544:20;:59;19619:22;;;;;;19630:10;;19619:22;;13805:35;;;;:::o;13715:41::-;;;-1:-1:-1;;;13715:41:0;;-1:-1:-1;;;;;13715:41:0;;:::o;13303:25::-;;;-1:-1:-1;;;;;13303:25:0;;:::o;13847:36::-;;;;:::o;20096:148::-;20153:19;13593:3;20199:22;20213:7;20199:13;:22::i;:::-;:37;;;;;;;20096:148;-1:-1:-1;;20096:148:0:o;13453:31::-;;;;:::o;13763:33::-;;;-1:-1:-1;;;13763:33:0;;;;;:::o;5454:26::-;;;-1:-1:-1;;;;;5454:26:0;;:::o;16524:1048::-;-1:-1:-1;;;;;16623:29:0;;;;;;:62;;-1:-1:-1;;;;;;16656:29:0;;16675:10;16656:29;;16623:62;16601:140;;;;-1:-1:-1;;;16601:140:0;;;;;;;;;16773:1;16760:10;:14;16752:63;;;;-1:-1:-1;;;16752:63:0;;;;;;;;;16861:10;16828:21;16852:20;;;:8;:20;;;;;16889:13;;;;-1:-1:-1;;;;;16889:13:0;16885:286;;16978:11;-1:-1:-1;;;;;16959:30:0;:15;-1:-1:-1;;;;;16959:30:0;;:82;;;-1:-1:-1;;;;;;16993:25:0;;;17039:1;16993:25;;;:8;:25;;;;;:34;;;;:48;;16959:82;16933:180;;;;-1:-1:-1;;;16933:180:0;;;;;;;;;17128:13;;;:31;;-1:-1:-1;;;;;;17128:31:0;-1:-1:-1;;;;;17128:31:0;;;;;16885:286;17183:14;:12;:14::i;:::-;17210:167;;-1:-1:-1;;;17210:167:0;;-1:-1:-1;;;;;17228:20:0;17210:51;;;;:167;;17276:12;;17303:10;;17336:4;;17356:10;;17210:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;17449:5:0;;17390:23;;-1:-1:-1;17416:39:0;;-1:-1:-1;17437:10:0;;-1:-1:-1;;;;;17449:5:0;17416:20;:39::i;:::-;17390:65;;17468:28;17474:4;17480:15;17468:5;:28::i;:::-;17514:50;17524:10;17536:15;17553:10;17514:50;;;;;;;;;;;;;;;;;16524:1048;;;;:::o;12975:30::-;;;;;;;;;;;;;;;-1:-1:-1;;12975:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22158:432;22219:18;22250:20;;:::i;:::-;-1:-1:-1;;;;;;22273:17:0;;;;;;;:8;:17;;;;;;;;22250:40;;;;;;;;;-1:-1:-1;;;;;22250:40:0;;;;;-1:-1:-1;;;22250:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22323:16;:14;:16::i;:::-;22301:38;;;22350:19;22373:58;22402:4;:17;;;-1:-1:-1;;;;;22394:26:0;22422:8;22373:20;:58::i;:::-;22350:81;;22459:4;:11;;;22445;:25;22442:141;;;22514:4;:11;;;22500;:25;22487:38;;22442:141;;;22570:1;22557:14;;22442:141;22158:432;;;;;;:::o;20252:177::-;20319:4;20336:14;:12;:14::i;:::-;20361:38;20371:10;20383:2;20387:11;20361:9;:38::i;:::-;-1:-1:-1;20417:4:0;20252:177;;;;:::o;16150:105::-;5963:7;;-1:-1:-1;;;;;5963:7:0;5949:10;:21;5941:43;;;;-1:-1:-1;;;5941:43:0;;;;;;;;;16224:10:::1;:23:::0;;-1:-1:-1;;;;;;16224:23:0::1;-1:-1:-1::0;;;;;16224:23:0;;;::::1;::::0;;;::::1;::::0;;16150:105::o;15816:195::-;5963:7;;-1:-1:-1;;;;;5963:7:0;5949:10;:21;5941:43;;;;-1:-1:-1;;;5941:43:0;;;;;;;;;15902:21:::1;:40:::0;;;15958:45:::1;::::0;::::1;::::0;::::1;::::0;15926:16;;15958:45:::1;;13554:42:::0;13593:3;13554:42;:::o;13260:36::-;;;:::o;22598:665::-;22707:19;22741:22;22778:29;22835:16;22890:25;;;;;;;;;-1:-1:-1;;;;;22890:25:0;-1:-1:-1;;;;;22867:73:0;;:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22835:107;;22979:42;23000:10;23012:8;22979:20;:42::i;:::-;22955:66;-1:-1:-1;23046:37:0;:10;22955:66;23046:37;:14;:37;:::i;:::-;23032:51;;23113:66;23134:21;23157;;23113:20;:66::i;:::-;23096:83;-1:-1:-1;23214:41:0;:21;23096:83;23214:41;:25;:41;:::i;:::-;22598:665;;;;-1:-1:-1;;;22598:665:0:o;13384:26::-;;;-1:-1:-1;;;13384:26:0;;;;;:::o;13610:36::-;;;;:::o;13491:49::-;13534:6;13491:49;:::o;17580:1293::-;17648:10;17660:11;14991:6;14960:27;14979:7;14960:18;:27::i;:::-;:37;;14952:89;;;;-1:-1:-1;;;14952:89:0;;;;;;;;;17684:14:::1;:12;:14::i;:::-;17742:10;17709:21;17733:20:::0;;;:8:::1;:20;::::0;;;;;17709:21;17828:336;::::1;;;17919:11;::::0;::::1;::::0;17932:5:::1;::::0;17867:72:::1;::::0;17898:40:::1;::::0;-1:-1:-1;;;;;17932:5:0::1;17898:20;:40::i;:::-;17875:17:::0;;-1:-1:-1;;;;;17875:17:0::1;::::0;17867:72:::1;:30;:72;:::i;:::-;18002:5;::::0;17852:87;;-1:-1:-1;17967:41:0::1;::::0;17852:87;;-1:-1:-1;;;;;18002:5:0::1;17967:20;:41::i;:::-;17954:54;;17828:336;;;18054:29;:11:::0;13593:3:::1;18054:29;:15;:29;:::i;:::-;18146:5;::::0;18041:42;;-1:-1:-1;18113:39:0::1;::::0;18041:42;;-1:-1:-1;;;;;18146:5:0::1;18113:20;:39::i;:::-;18098:54;;17828:336;18176:27;18184:4;18190:12;18176:7;:27::i;:::-;18217:19;18238:22:::0;18262:29:::1;18295;18313:10;18295:17;:29::i;:::-;18216:108;;;;;;18344:12;-1:-1:-1::0;;;;;18337:29:0::1;;18367:10;18379:11;18337:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;18416:18:0;;18412:108:::1;;18451:57;::::0;-1:-1:-1;;;18451:57:0;;-1:-1:-1;;;;;18458:12:0::1;18451:29;::::0;::::1;::::0;:57:::1;::::0;18489:1:::1;::::0;18493:14;;18451:57:::1;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18412:108;18544:25:::0;;18540:233:::1;;18620:126;18661:66;18682:21;18705;;18661:20;:66::i;:::-;18628:5;::::0;-1:-1:-1;;;;;18628:5:0::1;::::0;18620:126:::1;:18;:126;:::i;:::-;18586:5;:175:::0;;-1:-1:-1;;;;;;18586:175:0::1;-1:-1:-1::0;;;;;18586:175:0;;;::::1;::::0;;;::::1;::::0;;18540:233:::1;18790:75;18802:10;18814:11;18827:14;18843:21;18790:75;;;;;;;;;;;;;;;;;;15052:1;;;;;;17580:1293:::0;;;;:::o;13674:29::-;;;-1:-1:-1;;;;;13674:29:0;;:::o;16263:194::-;5963:7;;-1:-1:-1;;;;;5963:7:0;5949:10;:21;5941:43;;;;-1:-1:-1;;;5941:43:0;;;;;;;;;16342:45:::1;::::0;-1:-1:-1;;;16342:45:0;;16320:19:::1;::::0;-1:-1:-1;;;;;16349:12:0::1;16342:30;::::0;::::1;::::0;:45:::1;::::0;16381:4:::1;::::0;16342:45:::1;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16428:7;::::0;16398:51:::1;::::0;-1:-1:-1;;;16398:51:0;;16320:67;;-1:-1:-1;;;;;;16405:12:0::1;16398:29:::0;::::1;::::0;::::1;::::0;:51:::1;::::0;16428:7:::1;::::0;16320:67;;16398:51:::1;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5995:1;16263:194::o:0;23271:179::-;23390:25;;23367:75;;;-1:-1:-1;;;23367:75:0;;;;23327:16;;-1:-1:-1;;;;;23390:25:0;;23367:73;;:75;;;;;;;;;;;;;;23390:25;23367:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23356:86;;23271:179;:::o;21079:132::-;-1:-1:-1;;;;;21178:16:0;;;21151:7;21178:16;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;21079:132::o;16019:123::-;5963:7;;-1:-1:-1;;;;;5963:7:0;5949:10;:21;5941:43;;;;-1:-1:-1;;;5941:43:0;;;;;;;;;16100:25:::1;:34:::0;;-1:-1:-1;;;;;;16100:34:0::1;-1:-1:-1::0;;;;;16100:34:0;;;::::1;::::0;;;::::1;::::0;;16019:123::o;13208:45::-;;;:::o;13335:40::-;;;-1:-1:-1;;;;;13335:40:0;;:::o;18881:406::-;18935:167;;-1:-1:-1;;;18935:167:0;;-1:-1:-1;;;;;18953:20:0;18935:51;;;;:167;;19001:12;;19028:10;;19061:4;;19081:10;;18935:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19143:75;19162:55;19183:10;19195:21;;19162:20;:55::i;19143:75::-;19113:5;:116;;-1:-1:-1;;;;;;19113:116:0;-1:-1:-1;;;;;19113:116:0;;;;;;;;;;19245:34;;;;;;19256:10;;19268;;19245:34;;6193:163;5963:7;;-1:-1:-1;;;;;5963:7:0;5949:10;:21;5941:43;;;;-1:-1:-1;;;5941:43:0;;;;;;;;;6297:7:::1;::::0;;6271:44:::1;::::0;-1:-1:-1;;;;;6271:44:0;;::::1;::::0;6297:7;::::1;::::0;6271:44:::1;::::0;::::1;6326:11;:22:::0;;-1:-1:-1;;;;;;6326:22:0::1;-1:-1:-1::0;;;;;6326:22:0;;;::::1;::::0;;;::::1;::::0;;6193:163::o;15479:137::-;5963:7;;-1:-1:-1;;;;;5963:7:0;5949:10;:21;5941:43;;;;-1:-1:-1;;;5941:43:0;;;;;;;;;15545:14:::1;:24:::0;;-1:-1:-1;;;;15545:24:0::1;-1:-1:-1::0;;;15545:24:0;::::1;;;;::::0;;15585:23:::1;::::0;::::1;::::0;::::1;::::0;15545:24;;15585:23:::1;;21272:498:::0;21377:19;;21319:16;;;;-1:-1:-1;;;21377:19:0;;;;21373:182;;-1:-1:-1;21436:1:0;21373:182;;;-1:-1:-1;21523:19:0;;21488:16;;-1:-1:-1;;;21523:19:0;;;;;21508:12;:34;21488:55;21373:182;21569:21;;:25;21565:198;;21622:80;21641:60;21662:15;21679:21;;21641:20;:60::i;21622:80::-;21611:91;;21565:198;;;21746:5;;-1:-1:-1;;;;;21746:5:0;;-1:-1:-1;21565:198:0;21272:498;;:::o;3718:161::-;3776:7;3808:5;;;3832:6;;;;3824:28;;;;-1:-1:-1;;;3824:28:0;;;;;;;;;3870:1;3718:161;-1:-1:-1;;;3718:161:0:o;3573:137::-;3631:7;3664:1;3659;:6;;3651:28;;;;-1:-1:-1;;;3651:28:0;;;;;;;;;-1:-1:-1;3697:5:0;;;3573:137::o;23650:455::-;23695:16;23713:23;23740:16;:14;:16::i;:::-;23818:26;;23694:62;;-1:-1:-1;23694:62:0;-1:-1:-1;23767:28:0;;23798:47;;23694:62;;-1:-1:-1;;;23818:26:0;;-1:-1:-1;;;;;23818:26:0;23798:19;:47::i;:::-;23767:78;-1:-1:-1;;;;;;23864:23:0;;;;;:62;;-1:-1:-1;;;;;;23891:35:0;;;23864:62;23856:83;;;;-1:-1:-1;;;23856:83:0;;;;;;;;;23950:5;:25;;-1:-1:-1;;;;;;23950:25:0;-1:-1:-1;;;;;23950:25:0;;;;-1:-1:-1;;;;23986:58:0;-1:-1:-1;;;23986:58:0;;;;;;;;;;;;-1:-1:-1;;;;;24055:42:0;-1:-1:-1;;;24084:12:0;24055:42;;;;;;;-1:-1:-1;23650:455:0:o;26132:688::-;14806:14;;-1:-1:-1;;;14806:14:0;;;;14798:59;;;;-1:-1:-1;;;14798:59:0;;;;;;;;;26267:4:::1;26273:11;14991:6;14960:27;14979:7;14960:18;:27::i;:::-;:37;;14952:89;;;;-1:-1:-1::0;;;14952:89:0::1;;;;;;;;;-1:-1:-1::0;;;;;26305:18:0;::::2;26297:61;;;;-1:-1:-1::0;;;26297:61:0::2;;;;;;;;;-1:-1:-1::0;;;;;26377:16:0;::::2;26369:57;;;;-1:-1:-1::0;;;26369:57:0::2;;;;;;;;;26453:2;-1:-1:-1::0;;;;;26445:10:0::2;:4;-1:-1:-1::0;;;;;26445:10:0::2;;;26437:49;;;;-1:-1:-1::0;;;26437:49:0::2;;;;;;;;;26571:5;::::0;26499:20:::2;::::0;26522:55:::2;::::0;13593:3:::2;26543:26:::0;::::2;::::0;-1:-1:-1;;;;;26571:5:0::2;26522:20;:55::i;:::-;-1:-1:-1::0;;;;;26618:14:0;;::::2;26590:25;26618:14:::0;;;:8:::2;:14;::::0;;;;;26669:12;;::::2;::::0;;;;26499:78;;-1:-1:-1;26618:14:0;26694:31:::2;26618:14:::0;26499:78;26694:7:::2;:31::i;:::-;26736:27;26742:6;26750:12;26736:5;:27::i;:::-;26796:2;-1:-1:-1::0;;;;;26781:31:0::2;26790:4;-1:-1:-1::0;;;;;26781:31:0::2;;26800:11;26781:31;;;;;;;;;;;;;;;15052:1;;;14868::::1;;26132:688:::0;;;:::o;4694:128::-;4762:7;4789:25;4812:1;4789:18;:6;4800;4789:18;:10;:18;:::i;:::-;:22;:25;:22;:25;:::i;24113:810::-;-1:-1:-1;;;;;24199:27:0;;;24191:48;;;;-1:-1:-1;;;24191:48:0;;;;;;;;;24287:11;;;;-1:-1:-1;;;;;24287:11:0;24250:25;24278:21;;;:8;:21;;;;;;24336:52;24357:12;13534:6;24336:20;:52::i;:::-;24467:5;;24310:78;;-1:-1:-1;24399:27:0;;24429:44;;24310:78;;-1:-1:-1;;;;;24467:5:0;24429:20;:44::i;:::-;24520:15;;24399:74;;-1:-1:-1;24512:42:0;;-1:-1:-1;;;;;24520:15:0;24541:12;24512:42;:28;:42;:::i;:::-;24486:69;;-1:-1:-1;;;;;;24486:69:0;-1:-1:-1;;;;;24486:69:0;;;;;;;24590:43;;-1:-1:-1;;;24598:13:0;;;;24617:15;24590:26;:43::i;:::-;24566:68;;-1:-1:-1;;;;;24566:68:0;;;-1:-1:-1;;;24566:68:0;;;;;;;24687:21;;24679:51;;24687:21;24714:15;24679:51;:34;:51;:::i;:::-;24647:84;;-1:-1:-1;;;;;;24647:84:0;-1:-1:-1;;;;;24647:84:0;;;;;;;24776:15;;;;24768:49;;24797:19;24768:28;:49::i;:::-;-1:-1:-1;;;;;24742:76:0;:15;;;:76;24855:21;;:60;;24899:15;;24855:39;;24881:12;24855:39;:25;:39;:::i;:::-;:43;:60;:43;:60;:::i;:::-;24831:21;:84;-1:-1:-1;;;;;24113:810:0:o;4420:127::-;4488:7;4532:6;4515:13;:6;4526:1;4515:13;:10;:13;:::i;:::-;:24;;;;;;;4420:127;-1:-1:-1;;;4420:127:0:o;2894:226::-;2952:7;2976:6;2972:47;;-1:-1:-1;3006:1:0;2999:8;;2972:47;3043:5;;;3047:1;3043;:5;:1;3067:5;;;;;:10;3059:32;;;;-1:-1:-1;;;3059:32:0;;;;;;;;24931:1193;25049:17;;25041:44;;-1:-1:-1;;;;;25049:17:0;25072:12;25041:44;:30;:44;:::i;:::-;25013:73;;-1:-1:-1;;;;;;25013:73:0;-1:-1:-1;;;;;25013:73:0;;;;;;;-1:-1:-1;25199:52:0;25220:12;13534:6;25199:20;:52::i;:::-;25280:15;;25173:78;;-1:-1:-1;;;;25280:15:0;;-1:-1:-1;;;;;25280:15:0;-1:-1:-1;;25280:34:0;:70;;25335:15;25280:70;;;25317:15;;-1:-1:-1;;;25317:15:0;;-1:-1:-1;;;;;25317:15:0;25280:70;25395:15;;25262:88;;-1:-1:-1;25387:45:0;;-1:-1:-1;;;25395:15:0;;-1:-1:-1;;;;;25395:15:0;25262:88;25387:28;:45::i;:::-;25361:72;;-1:-1:-1;;;;;25361:72:0;;;-1:-1:-1;;;25361:72:0;;;;;;-1:-1:-1;25483:13:0;;;-1:-1:-1;;;;;25483:13:0;25361:15;25474:23;;;:8;:23;;;;;25548:15;;;;25565:5;;25474:23;;25361:15;25527:44;;25548:15;-1:-1:-1;;;;;25565:5:0;25527:20;:44::i;:::-;25508:63;;25607:8;25588:15;:27;25584:436;;25650:1;25632:15;;;:19;25706:21;;25698:44;;-1:-1:-1;;;;;25706:21:0;25733:8;25698:44;:34;:44;:::i;:::-;25666:77;;-1:-1:-1;;;;;;25666:77:0;-1:-1:-1;;;;;25666:77:0;;;;;;;25584:436;;;25887:5;;25820:74;;25849:44;;25870:15;;-1:-1:-1;;;;;25887:5:0;25849:20;:44::i;:::-;25828:15;;;;;25820:74;:28;:74;:::i;:::-;-1:-1:-1;;;;;25776:133:0;;;:15;;;:133;25964:21;;25956:51;;25964:21;25991:15;25956:51;:34;:51;:::i;:::-;25924:84;;-1:-1:-1;;;;;;25924:84:0;-1:-1:-1;;;;;25924:84:0;;;;;;;25584:436;26056:60;26100:15;26056:39;26082:12;26056:21;;:25;;:39;;;;:::i;3128:141::-;3186:7;3218:1;3214;:5;3206:32;;;;-1:-1:-1;;;3206:32:0;;;;;;;;;3260:1;3256;:5;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;24310:54;;25458:35;;25448:2;;25507:1;;25497:12;686:241;;790:2;778:9;769:7;765:23;761:32;758:2;;;-1:-1;;796:12;758:2;858:53;903:7;879:22;858:53;;934:366;;;1055:2;1043:9;1034:7;1030:23;1026:32;1023:2;;;-1:-1;;1061:12;1023:2;1123:53;1168:7;1144:22;1123:53;;;1113:63;;1231:53;1276:7;1213:2;1256:9;1252:22;1231:53;;;1221:63;;1017:283;;;;;;1307:491;;;;1445:2;1433:9;1424:7;1420:23;1416:32;1413:2;;;-1:-1;;1451:12;1413:2;85:6;72:20;97:33;124:5;97:33;;;1503:63;-1:-1;1603:2;1642:22;;72:20;97:33;72:20;97:33;;;1407:391;;1611:63;;-1:-1;;;1711:2;1750:22;;;;475:20;;1407:391;1805:366;;;1926:2;1914:9;1905:7;1901:23;1897:32;1894:2;;;-1:-1;;1932:12;1894:2;1994:53;2039:7;2015:22;1994:53;;;1984:63;2084:2;2123:22;;;;475:20;;-1:-1;;;1888:283;2178:235;;2279:2;2267:9;2258:7;2254:23;2250:32;2247:2;;;-1:-1;;2285:12;2247:2;219:6;206:20;231:30;255:5;231:30;;2420:257;;2532:2;2520:9;2511:7;2507:23;2503:32;2500:2;;;-1:-1;;2538:12;2500:2;354:6;348:13;366:30;390:5;366:30;;2684:241;;2788:2;2776:9;2767:7;2763:23;2759:32;2756:2;;;-1:-1;;2794:12;2756:2;-1:-1;475:20;;2750:175;-1:-1;2750:175;2932:263;;3047:2;3035:9;3026:7;3022:23;3018:32;3015:2;;;-1:-1;;3053:12;3015:2;-1:-1;623:13;;3009:186;-1:-1;3009:186;3202:366;;;3323:2;3311:9;3302:7;3298:23;3294:32;3291:2;;;-1:-1;;3329:12;3291:2;488:6;475:20;3381:63;;3499:53;3544:7;3481:2;3524:9;3520:22;3499:53;;3575:360;;;3693:2;3681:9;3672:7;3668:23;3664:32;3661:2;;;-1:-1;;3699:12;3661:2;488:6;475:20;3751:63;;3851:2;3891:9;3887:22;206:20;231:30;255:5;231:30;;;3859:60;;;;3655:280;;;;;;10988:222;-1:-1;;;;;24310:54;;;;4162:37;;11115:2;11100:18;;11086:124;11217:460;-1:-1;;;;;24310:54;;;4021:58;;24310:54;;;;11580:2;11565:18;;4162:37;11663:2;11648:18;;10708:37;;;;11408:2;11393:18;;11379:298;11684:349;-1:-1;;;;;24310:54;;;;4021:58;;12019:2;12004:18;;10708:37;11847:2;11832:18;;11818:215;12040:572;-1:-1;;;;;24310:54;;;;4021:58;;12432:2;12417:18;;10708:37;;;;12515:2;12500:18;;10708:37;12598:2;12583:18;;10708:37;12259:3;12244:19;;12230:382;12619:572;-1:-1;;;;;24310:54;;;4162:37;;24310:54;;;13011:2;12996:18;;4021:58;24310:54;;13094:2;13079:18;;4162:37;13177:2;13162:18;;10708:37;;;;12838:3;12823:19;;12809:382;13538:210;23986:13;;23979:21;4276:34;;13659:2;13644:18;;13630:118;13755:310;;13902:2;;13923:17;13916:47;4467:5;23609:12;23766:6;13902:2;13891:9;13887:18;23754:19;-1:-1;25090:101;25104:6;25101:1;25098:13;25090:101;;;25171:11;;;;;25165:18;25152:11;;;23794:14;25152:11;25145:39;25119:10;;25090:101;;;25206:6;25203:1;25200:13;25197:2;;;-1:-1;23794:14;25262:6;13891:9;25253:16;;25246:27;25197:2;-1:-1;25378:7;25362:14;-1:-1;;25358:28;4625:39;;;;23794:14;4625:39;;13873:192;-1:-1;;;13873:192;14072:416;14272:2;14286:47;;;4901:2;14257:18;;;23754:19;-1:-1;;;23794:14;;;4917:36;4972:12;;;14243:245;14495:416;14695:2;14709:47;;;5223:2;14680:18;;;23754:19;5259:34;23794:14;;;5239:55;-1:-1;;;5314:12;;;5307:28;5354:12;;;14666:245;14918:416;15118:2;15132:47;;;5605:2;15103:18;;;23754:19;5641:32;23794:14;;;5621:53;5693:12;;;15089:245;15341:416;15541:2;15555:47;;;5944:2;15526:18;;;23754:19;-1:-1;;;23794:14;;;5960:43;6022:12;;;15512:245;15764:416;15964:2;15978:47;;;6273:2;15949:18;;;23754:19;6309:30;23794:14;;;6289:51;6359:12;;;15935:245;16187:416;16387:2;16401:47;;;6610:2;16372:18;;;23754:19;6646:28;23794:14;;;6626:49;6694:12;;;16358:245;16610:416;16810:2;16824:47;;;6945:2;16795:18;;;23754:19;6981:34;23794:14;;;6961:55;-1:-1;;;7036:12;;;7029:28;7076:12;;;16781:245;17033:416;17233:2;17247:47;;;17218:18;;;23754:19;7363:34;23794:14;;;7343:55;7417:12;;;17204:245;17456:416;17656:2;17670:47;;;7668:2;17641:18;;;23754:19;-1:-1;;;23794:14;;;7684:37;7740:12;;;17627:245;17879:416;18079:2;18093:47;;;7991:1;18064:18;;;23754:19;-1:-1;;;23794:14;;;8006:32;8057:12;;;18050:245;18302:416;18502:2;18516:47;;;8308:2;18487:18;;;23754:19;-1:-1;;;23794:14;;;8324:39;8382:12;;;18473:245;18725:416;18925:2;18939:47;;;8633:2;18910:18;;;23754:19;8669:34;23794:14;;;8649:55;-1:-1;;;8724:12;;;8717:31;8767:12;;;18896:245;19148:416;19348:2;19362:47;;;9018:1;19333:18;;;23754:19;-1:-1;;;23794:14;;;9033:31;9083:12;;;19319:245;19571:416;19771:2;19785:47;;;9334:1;19756:18;;;23754:19;-1:-1;;;23794:14;;;9349:32;9400:12;;;19742:245;19994:416;20194:2;20208:47;;;9651:1;20179:18;;;23754:19;-1:-1;;;23794:14;;;9666:32;9717:12;;;20165:245;20417:416;20617:2;20631:47;;;9968:2;20602:18;;;23754:19;10004:30;23794:14;;;9984:51;10054:12;;;20588:245;20840:416;21040:2;21054:47;;;10305:1;21025:18;;;23754:19;-1:-1;;;23794:14;;;10320:32;10371:12;;;21011:245;21263:222;-1:-1;;;;;24074:42;;;;10468:37;;21390:2;21375:18;;21361:124;21492:556;-1:-1;;;;;24190:46;;;10588:37;;24190:46;;;;21868:2;21853:18;;10588:37;-1:-1;;;;;24310:54;21951:2;21936:18;;4162:37;22034:2;22019:18;;10708:37;;;;21703:3;21688:19;;21674:374;22055:222;10708:37;;;22182:2;22167:18;;22153:124;22284:333;10708:37;;;22603:2;22588:18;;10708:37;22439:2;22424:18;;22410:207;22624:444;10708:37;;;22971:2;22956:18;;10708:37;;;;23054:2;23039:18;;10708:37;22807:2;22792:18;;22778:290;23075:218;24527:10;24516:22;;;;10826:36;;23200:2;23185:18;;23171:122;23300:214;24621:4;24610:16;;;;10941:35;;23423:2;23408:18;;23394:120;25399:117;-1:-1;;;;;24310:54;;25458:35;;25448:2;;25507:1;;25497:12;25448:2;25442:74;;25523:111;25604:5;23986:13;23979:21;25582:5;25579:32;25569:2;;25625:1;;25615:12

Swarm Source

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