ETH Price: $2,301.51 (+1.61%)

Token

Moma Lichang MOMAT (Lichang-mMOMAT)
 

Overview

Max Total Supply

7,518,630.84843363 Lichang-mMOMAT

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
blackhole1987.eth
Balance
862,599.99999997 Lichang-mMOMAT

Value
$0.00
0x58dbfe31ce1e639ec9d0da60d82cabce637b2ba4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xB2b5F834...00F65C708
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MErc20Delegator

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 5: MErc20Delegator.sol
pragma solidity 0.5.17;

import "./MTokenInterfaces.sol";
import "./MomaFactoryInterface.sol";

/**
 * @title Moma's MErc20Delegator Contract
 * @notice MTokens which wrap an EIP-20 underlying and delegate to an implementation
 * @author Moma
 */
contract MErc20Delegator is MTokenStorage, MErc20Storage, MDelegatorInterface {
    /**
     * @notice Construct a new money market
     * @param underlying_ The address of the underlying asset
     * @param momaMaster_ The address of the momaMaster
     * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18
     * @param name_ ERC-20 name of this token
     * @param symbol_ ERC-20 symbol of this token
     * @param decimals_ ERC-20 decimal precision of this token
     * @param becomeImplementationData The encoded args for becomeImplementation
     * @param feeReceiver_ Address of the free receiver of this token
     */
    constructor(address underlying_,
                MomaMasterInterface momaMaster_,
                uint initialExchangeRateMantissa_,
                string memory name_,
                string memory symbol_,
                uint8 decimals_,
                bytes memory becomeImplementationData,
                address payable feeReceiver_) public {
        // Get the address of the implementation the contract delegates to from factory
        address implementation_ = MomaFactoryInterface(momaMaster_.factory()).mErc20Implementation();
        require(implementation_ != address(0), 'MErc20Delegator: ZERO FORBIDDEN');

        // First delegate gets to initialize the delegator (i.e. storage contract)
        delegateTo(implementation_, abi.encodeWithSignature("initialize(address,address,uint256,string,string,uint8,address)",
                                                            underlying_,
                                                            momaMaster_,
                                                            initialExchangeRateMantissa_,
                                                            name_,
                                                            symbol_,
                                                            decimals_,
                                                            feeReceiver_));

        // New implementations always get set via the settor (post-initialize)
        _setImplementation(implementation_, false, becomeImplementationData);

    }

    /**
     * @notice Called by the admin to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public {
        require(msg.sender == momaMaster.admin(), "MErc20Delegator::_setImplementation: Caller must be admin");

        // Check is mErc20
        require(MomaFactoryInterface(momaMaster.factory()).isMErc20Implementation(implementation_) == true, 'MErc20Delegator: not mERC20Implementation');

        if (allowResign) {
            delegateToImplementation(abi.encodeWithSignature("_resignImplementation()"));
        }

        address oldImplementation = implementation;
        implementation = implementation_;

        delegateToImplementation(abi.encodeWithSignature("_becomeImplementation(bytes)", becomeImplementationData));

        emit NewImplementation(oldImplementation, implementation);
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint amount) external returns (bool) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("transfer(address,uint256)", dst, amount));
        return abi.decode(data, (bool));
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint256 amount) external returns (bool) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("transferFrom(address,address,uint256)", src, dst, amount));
        return abi.decode(data, (bool));
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 amount) external returns (bool) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("approve(address,uint256)", spender, amount));
        return abi.decode(data, (bool));
    }

    /**
     * @notice Get the current allowance from `owner` for `spender`
     * @param owner The address of the account which owns the tokens to be spent
     * @param spender The address of the account which may transfer tokens
     * @return The number of tokens allowed to be spent (-1 means infinite)
     */
    function allowance(address owner, address spender) external view returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("allowance(address,address)", owner, spender));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Get the token balance of the `owner`
     * @param owner The address of the account to query
     * @return The number of tokens owned by `owner`
     */
    function balanceOf(address owner) external view returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("balanceOf(address)", owner));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Internal method to delegate execution to another contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param callee The contract to delegatecall
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateTo(address callee, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returnData) = callee.delegatecall(data);
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize)
            }
        }
        return returnData;
    }

    /**
     * @notice Delegates execution to the implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToImplementation(bytes memory data) public returns (bytes memory) {
        return delegateTo(implementation, data);
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     *  There are an additional 2 prefix uints from the wrapper returndata, which we ignore since we make an extra hop.
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToViewImplementation(bytes memory data) public view returns (bytes memory) {
        (bool success, bytes memory returnData) = address(this).staticcall(abi.encodeWithSignature("delegateToImplementation(bytes)", data));
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize)
            }
        }
        return abi.decode(returnData, (bytes));
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     */
    function () external payable {
        require(msg.value == 0,"MErc20Delegator:fallback: cannot send value to fallback");

        // delegate all other functions to current implementation
        (bool success, ) = implementation.delegatecall(msg.data);

        assembly {
            let free_mem_ptr := mload(0x40)
            returndatacopy(free_mem_ptr, 0, returndatasize)

            switch success
            case 0 { revert(free_mem_ptr, returndatasize) }
            default { return(free_mem_ptr, returndatasize) }
        }
    }
}

File 1 of 5: InterestRateModel.sol
pragma solidity 0.5.17;

/**
  * @title Compound's InterestRateModel Interface
  * @author Compound
  */
contract InterestRateModel {
    /// @notice Indicator that this is an InterestRateModel contract (for inspection)
    bool public constant isInterestRateModel = true;

    /**
      * @notice Calculates the current borrow interest rate per block
      * @param cash The total amount of cash the market has
      * @param borrows The total amount of borrows the market has outstanding
      * @param reserves The total amount of reserves the market has
      * @param fees The total amount of fees the market has
      * @param momaFees The total amount of Moma fees the market has
      * @return The borrow rate per block (as a percentage, and scaled by 1e18)
      */
    function getBorrowRate(
        uint cash, 
        uint borrows, 
        uint reserves, 
        uint fees, 
        uint momaFees
    ) external view returns (uint);

    /**
      * @notice Calculates the current supply interest rate per block
      * @param cash The total amount of cash the market has
      * @param borrows The total amount of borrows the market has outstanding
      * @param reserves The total amount of reserves the market has
      * @param reserveFactorMantissa The current reserve factor the market has
      * @param fees The total amount of fees the market has
      * @param feeFactorMantissa The current fee factor the market has
      * @param momaFees The total amount of Moma fees the market has
      * @param momaFeeFactorMantissa The current Moma fees factor the market has
      * @return The supply rate per block (as a percentage, and scaled by 1e18)
      */
    function getSupplyRate(
        uint cash, 
        uint borrows, 
        uint reserves, 
        uint reserveFactorMantissa, 
        uint fees, 
        uint feeFactorMantissa, 
        uint momaFees, 
        uint momaFeeFactorMantissa
    ) external view returns (uint);
}

File 3 of 5: MomaFactoryInterface.sol
pragma solidity 0.5.17;

interface MomaFactoryInterface {

    event PoolCreated(address pool, address creator, uint poolLength);
    event NewMomaFarming(address oldMomaFarming, address newMomaFarming);
    event NewFarmingDelegate(address oldDelegate, address newDelegate);
    event NewFeeAdmin(address oldFeeAdmin, address newFeeAdmin);
    event NewDefualtFeeReceiver(address oldFeeReceiver, address newFeeReceiver);
    event NewDefualtFeeFactor(uint oldFeeFactor, uint newFeeFactor);
    event NewNoFeeTokenStatus(address token, bool oldNoFeeTokenStatus, bool newNoFeeTokenStatus);
    event NewTokenFeeFactor(address token, uint oldFeeFactor, uint newFeeFactor);
    event NewOracle(address oldOracle, address newOracle);
    event NewTimelock(address oldTimelock, address newTimelock);
    event NewMomaMaster(address oldMomaMaster, address newMomaMaster);
    event NewMEther(address oldMEther, address newMEther);
    event NewMErc20(address oldMErc20, address newMErc20);
    event NewMErc20Implementation(address oldMErc20Implementation, address newMErc20Implementation);
    event NewMEtherImplementation(address oldMEtherImplementation, address newMEtherImplementation);
    event NewLendingPool(address pool);
    event NewPoolFeeAdmin(address pool, address oldPoolFeeAdmin, address newPoolFeeAdmin);
    event NewPoolFeeReceiver(address pool, address oldPoolFeeReceiver, address newPoolFeeReceiver);
    event NewPoolFeeFactor(address pool, uint oldPoolFeeFactor, uint newPoolFeeFactor);
    event NewPoolFeeStatus(address pool, bool oldPoolFeeStatus, bool newPoolFeeStatus);

    function isMomaFactory() external view returns (bool);
    function oracle() external view returns (address);
    function momaFarming() external view returns (address);
    function farmingDelegate() external view returns (address);
    function mEtherImplementation() external view returns (address);
    function mErc20Implementation() external view returns (address);
    function admin() external view returns (address);
    function feeAdmin() external view returns (address);
    function defualtFeeReceiver() external view returns (address);
    function defualtFeeFactorMantissa() external view returns (uint);
    function feeFactorMaxMantissa() external view returns (uint);

    function tokenFeeFactors(address token) external view returns (uint);
    // function pools(address pool) external view returns (PoolInfo memory);
    function allPools(uint) external view returns (address);

    function createPool() external returns (address);
    function allPoolsLength() external view returns (uint);
    function getMomaFeeAdmin(address pool) external view returns (address);
    function getMomaFeeReceiver(address pool) external view returns (address payable);
    function getMomaFeeFactorMantissa(address pool, address underlying) external view returns (uint);
    function isMomaPool(address pool) external view returns (bool);
    function isLendingPool(address pool) external view returns (bool);
    function isTimelock(address b) external view returns (bool);
    function isMomaMaster(address b) external view returns (bool);
    function isMEtherImplementation(address b) external view returns (bool);
    function isMErc20Implementation(address b) external view returns (bool);
    function isMToken(address b) external view returns (bool);
    function isCodeSame(address a, address b) external view returns (bool);

    function upgradeLendingPool() external returns (bool);
    
    function setFeeAdmin(address _newFeeAdmin) external;
    function setDefualtFeeReceiver(address payable _newFeeReceiver) external;
    function setDefualtFeeFactor(uint _newFeeFactor) external;
    function setTokenFeeFactor(address token, uint _newFeeFactor) external;

    function setPoolFeeAdmin(address pool, address _newPoolFeeAdmin) external;
    function setPoolFeeReceiver(address pool, address payable _newPoolFeeReceiver) external;
    function setPoolFeeFactor(address pool, uint _newFeeFactor) external;
    function setPoolFeeStatus(address pool, bool _noFee) external;
}

File 4 of 5: MomaMasterInterface.sol
pragma solidity 0.5.17;

interface MomaMasterInterface {
    /// @notice Indicator that this is a MomaMaster contract (for inspection)
    function isMomaMaster() external view returns (bool);

    function factory() external view returns (address);
    function admin() external view returns (address payable);

    /*** Assets You Are In ***/

    function enterMarkets(address[] calldata mTokens) external returns (uint[] memory);
    function exitMarket(address mToken) external returns (uint);

    /*** Policy Hooks ***/

    function mintAllowed(address mToken, address minter, uint mintAmount) external returns (uint);
    function mintVerify(address mToken, address minter, uint mintAmount, uint mintTokens) external;

    function redeemAllowed(address mToken, address redeemer, uint redeemTokens) external returns (uint);
    function redeemVerify(address mToken, address redeemer, uint redeemAmount, uint redeemTokens) external;

    function borrowAllowed(address mToken, address borrower, uint borrowAmount) external returns (uint);
    function borrowVerify(address mToken, address borrower, uint borrowAmount) external;

    function repayBorrowAllowed(
        address mToken,
        address payer,
        address borrower,
        uint repayAmount) external returns (uint);
    function repayBorrowVerify(
        address mToken,
        address payer,
        address borrower,
        uint repayAmount,
        uint borrowerIndex) external;

    function liquidateBorrowAllowed(
        address mTokenBorrowed,
        address mTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount) external returns (uint);
    function liquidateBorrowVerify(
        address mTokenBorrowed,
        address mTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount,
        uint seizeTokens) external;

    function seizeAllowed(
        address mTokenCollateral,
        address mTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external returns (uint);
    function seizeVerify(
        address mTokenCollateral,
        address mTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external;

    function transferAllowed(address mToken, address src, address dst, uint transferTokens) external returns (uint);
    function transferVerify(address mToken, address src, address dst, uint transferTokens) external;

    /*** Liquidity/Liquidation Calculations ***/

    function liquidateCalculateSeizeTokens(
        address mTokenBorrowed,
        address mTokenCollateral,
        uint repayAmount) external view returns (uint, uint);
}

File 5 of 5: MTokenInterfaces.sol
pragma solidity 0.5.17;

import "./MomaMasterInterface.sol";
import "./InterestRateModel.sol";

contract MTokenStorage {
    /**
     * @dev Guard variable for re-entrancy checks
     */
    bool internal _notEntered;

    /**
     * @notice EIP-20 token name for this token
     */
    string public name;

    /**
     * @notice EIP-20 token symbol for this token
     */
    string public symbol;

    /**
     * @notice EIP-20 token decimals for this token
     */
    uint8 public decimals;

    /**
     * @notice Maximum borrow rate that can ever be applied (.0005% / block)
     */

    uint internal constant borrowRateMaxMantissa = 0.0005e16;

    /**
     * @notice Maximum fraction of interest that can be set aside for fees
     */
    uint internal constant feeFactorMaxMantissa = 0.3e18;

    /**
     * @notice Maximum fraction of interest that can be set aside for moma fees
     */
    uint internal constant momaFeeFactorMaxMantissa = 0.3e18;

    /**
     * @notice Maximum fraction of interest that can be set aside for reserves
     */
    uint internal constant reserveFactorMaxMantissa = 0.4e18;

    /**
     * @notice Fee receiver for this market
     */
    address payable public feeReceiver;

    /**
     * @notice Contract which oversees inter-mToken operations
     */
    MomaMasterInterface public momaMaster;

    /**
     * @notice Model which tells what the current interest rate should be
     */
    InterestRateModel public interestRateModel;

    /**
     * @notice Initial exchange rate used when minting the first MTokens (used when totalSupply = 0)
     */
    uint internal initialExchangeRateMantissa;

    /**
     * @notice Fraction of interest currently set aside for fees
     */
    uint public feeFactorMantissa = 0.1e18;

    /**
     * @notice Fraction of interest currently set aside for reserves
     */
    uint public reserveFactorMantissa = 0.1e18;

    /**
     * @notice Block number that interest was last accrued at
     */
    uint public accrualBlockNumber;

    /**
     * @notice Accumulator of the total earned interest rate since the opening of the market
     */
    uint public borrowIndex;

    /**
     * @notice Total amount of outstanding borrows of the underlying in this market
     */
    uint public totalBorrows;

    /**
     * @notice Total amount of fees of the underlying held in this market
     */
    uint public totalFees;

    /**
     * @notice Total amount of Moma fees of the underlying held in this market
     */
    uint public totalMomaFees;

    /**
     * @notice Total amount of reserves of the underlying held in this market
     */
    uint public totalReserves;

    /**
     * @notice Total number of tokens in circulation
     */
    uint public totalSupply;

    /**
     * @notice Official record of token balances for each account
     */
    mapping (address => uint) internal accountTokens;

    /**
     * @notice Approved token transfer amounts on behalf of others
     */
    mapping (address => mapping (address => uint)) internal transferAllowances;

    /**
     * @notice Container for borrow balance information
     * @member principal Total balance (with accrued interest), after applying the most recent balance-changing action
     * @member interestIndex Global borrowIndex as of the most recent balance-changing action
     */
    struct BorrowSnapshot {
        uint principal;
        uint interestIndex;
    }

    /**
     * @notice Mapping of account addresses to outstanding borrow balances
     */
    mapping(address => BorrowSnapshot) internal accountBorrows;

    /**
     * @notice Indicator that this is a MToken contract (for inspection)
     */
    bool public constant isMToken = true;
}


contract MTokenInterface is MTokenStorage {

    /*** Market Events ***/

    /**
     * @notice Event emitted when interest is accrued
     */
    event AccrueInterest(uint cashPrior, uint interestAccumulated, uint borrowIndex, uint totalBorrows);

    /**
     * @notice Event emitted when tokens are minted
     */
    event Mint(address minter, uint mintAmount, uint mintTokens);

    /**
     * @notice Event emitted when tokens are redeemed
     */
    event Redeem(address redeemer, uint redeemAmount, uint redeemTokens);

    /**
     * @notice Event emitted when underlying is borrowed
     */
    event Borrow(address borrower, uint borrowAmount, uint accountBorrows, uint totalBorrows);

    /**
     * @notice Event emitted when a borrow is repaid
     */
    event RepayBorrow(address payer, address borrower, uint repayAmount, uint accountBorrows, uint totalBorrows);

    /**
     * @notice Event emitted when a borrow is liquidated
     */
    event LiquidateBorrow(address liquidator, address borrower, uint repayAmount, address mTokenCollateral, uint seizeTokens);


    /*** Admin Events ***/

    /**
     * @notice Event emitted when momaMaster is changed
     */
    event NewMomaMaster(MomaMasterInterface oldMomaMaster, MomaMasterInterface newMomaMaster);

    /**
     * @notice Event emitted when interestRateModel is changed
     */
    event NewMarketInterestRateModel(InterestRateModel oldInterestRateModel, InterestRateModel newInterestRateModel);

    /**
     * @notice Event emitted when feeReceiver is changed
     */
    event NewFeeReceiver(address oldFeeReceiver, address newFeeReceiver);

    /**
     * @notice Event emitted when the fee factor is changed
     */
    event NewFeeFactor(uint oldFeeFactorMantissa, uint newFeeFactorMantissa);

    /**
     * @notice Event emitted when the fees are collected
     */
    event FeesCollected(address feeReceiver, uint collectAmount, uint newTotalFees);

    /**
     * @notice Event emitted when the moma fees are collected
     */
    event MomaFeesCollected(address momaFeeReceiver, uint collectAmount, uint newTotalMomaFees);

    /**
     * @notice Event emitted when the reserve factor is changed
     */
    event NewReserveFactor(uint oldReserveFactorMantissa, uint newReserveFactorMantissa);

    /**
     * @notice Event emitted when the reserves are added
     */
    event ReservesAdded(address benefactor, uint addAmount, uint newTotalReserves);

    /**
     * @notice Event emitted when the reserves are reduced
     */
    event ReservesReduced(address admin, uint reduceAmount, uint newTotalReserves);

    /**
     * @notice EIP20 Transfer event
     */
    event Transfer(address indexed from, address indexed to, uint amount);

    /**
     * @notice EIP20 Approval event
     */
    event Approval(address indexed owner, address indexed spender, uint amount);

    /**
     * @notice Failure event
     */
    event Failure(uint error, uint info, uint detail);


    /*** User Interface ***/

    function transfer(address dst, uint amount) external returns (bool);
    function transferFrom(address src, address dst, uint amount) external returns (bool);
    function approve(address spender, uint amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function balanceOfUnderlying(address owner) external returns (uint);
    function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint);
    function borrowRatePerBlock() external view returns (uint);
    function supplyRatePerBlock() external view returns (uint);
    function totalBorrowsCurrent() external returns (uint);
    function borrowBalanceCurrent(address account) external returns (uint);
    function borrowBalanceStored(address account) public view returns (uint);
    function exchangeRateCurrent() public returns (uint);
    function exchangeRateStored() public view returns (uint);
    function getCash() external view returns (uint);
    function getMomaFeeFactor() external view returns (uint);
    function accrueInterest() public returns (uint);
    function seize(address liquidator, address borrower, uint seizeTokens) external returns (uint);


    /*** Admin Functions ***/

    function _setFeeReceiver(address payable newFeeReceiver) external returns (uint);
    function _setFeeFactor(uint newFeeFactorMantissa) external returns (uint);
    function _collectFees(uint collectAmount) external returns (uint);
    function _collectMomaFees(uint collectAmount) external returns (uint);
    function _setReserveFactor(uint newReserveFactorMantissa) external returns (uint);
    function _reduceReserves(uint reduceAmount) external returns (uint);
    function _setInterestRateModel(InterestRateModel newInterestRateModel) external returns (uint);
}

contract MErc20Storage {
    /**
     * @notice Underlying asset for this MToken
     */
    address public underlying;
}

contract MErc20Interface is MErc20Storage {

    /*** User Interface ***/

    function mint(uint mintAmount) external returns (uint);
    function redeem(uint redeemTokens) external returns (uint);
    function redeemUnderlying(uint redeemAmount) external returns (uint);
    function borrow(uint borrowAmount) external returns (uint);
    function repayBorrow(uint repayAmount) external returns (uint);
    function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint);
    function liquidateBorrow(address borrower, uint repayAmount, MTokenInterface mTokenCollateral) external returns (uint);


    /*** Admin Functions ***/

    function _addReserves(uint addAmount) external returns (uint);
}

contract MDelegationStorage {
    /**
     * @notice Implementation address for this contract
     */
    address public implementation;
}

contract MDelegatorInterface is MDelegationStorage {
    /**
     * @notice Emitted when implementation is changed
     */
    event NewImplementation(address oldImplementation, address newImplementation);

    /**
     * @notice Called by the admin to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public;
}

contract MDelegateInterface is MDelegationStorage {
    /**
     * @notice Called by the delegator on a delegate to initialize it for duty
     * @dev Should revert if any issues arise which make it unfit for delegation
     * @param data The encoded bytes data for any initialization
     */
    function _becomeImplementation(bytes memory data) public;

    /**
     * @notice Called by the delegator on a delegate to forfeit its responsibility
     */
    function _resignImplementation() public;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"underlying_","type":"address"},{"internalType":"contract MomaMasterInterface","name":"momaMaster_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldImplementation","type":"address"},{"indexed":false,"internalType":"address","name":"newImplementation","type":"address"}],"name":"NewImplementation","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bool","name":"allowResign","type":"bool"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"name":"_setImplementation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToViewImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feeFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isMToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"momaMaster","outputs":[{"internalType":"contract MomaMasterInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalMomaFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]

608060405267016345785d8a000060075567016345785d8a00006008553480156200002957600080fd5b5060405162001c7d38038062001c7d83398181016040526101008110156200005057600080fd5b8151602083015160408085015160608601805192519496939591949391820192846401000000008211156200008457600080fd5b9083019060208201858111156200009a57600080fd5b8251640100000000811182820188101715620000b557600080fd5b82525081516020918201929091019080838360005b83811015620000e4578181015183820152602001620000ca565b50505050905090810190601f168015620001125780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200013657600080fd5b9083019060208201858111156200014c57600080fd5b82516401000000008111828201881017156200016757600080fd5b82525081516020918201929091019080838360005b83811015620001965781810151838201526020016200017c565b50505050905090810190601f168015620001c45780820380516001836020036101000a031916815260200191505b50604081815260208301519201805192949193919284640100000000821115620001ed57600080fd5b9083019060208201858111156200020357600080fd5b82516401000000008111828201881017156200021e57600080fd5b82525081516020918201929091019080838360005b838110156200024d57818101518382015260200162000233565b50505050905090810190601f1680156200027b5780820380516001836020036101000a031916815260200191505b50604081815260209283015163c45a015560e01b83529051909450600093506001600160a01b038b169263c45a01559260048082019391829003018186803b158015620002c757600080fd5b505afa158015620002dc573d6000803e3d6000fd5b505050506040513d6020811015620002f357600080fd5b50516040805163b2646eb760e01b815290516001600160a01b039092169163b2646eb791600480820192602092909190829003018186803b1580156200033857600080fd5b505afa1580156200034d573d6000803e3d6000fd5b505050506040513d60208110156200036457600080fd5b505190506001600160a01b038116620003c4576040805162461bcd60e51b815260206004820152601f60248201527f4d457263323044656c656761746f723a205a45524f20464f5242494444454e00604482015290519081900360640190fd5b62000543818a8a8a8a8a8a8960405160240180886001600160a01b03166001600160a01b03168152602001876001600160a01b03166001600160a01b0316815260200186815260200180602001806020018560ff1660ff168152602001846001600160a01b03166001600160a01b03168152602001838103835287818151815260200191508051906020019080838360005b838110156200047057818101518382015260200162000456565b50505050905090810190601f1680156200049e5780820380516001836020036101000a031916815260200191505b50838103825286518152865160209182019188019080838360005b83811015620004d3578181015183820152602001620004b9565b50505050905090810190601f168015620005015780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03908116634340720f60e01b17909152909a506200056a1698505050505050505050565b506200055b816000856001600160e01b036200063116565b505050505050505050620009a7565b606060006060846001600160a01b0316846040518082805190602001908083835b60208310620005ac5780518252601f1990920191602091820191016200058b565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d80600081146200060e576040519150601f19603f3d011682016040523d82523d6000602084013e62000613565b606091505b5091509150600082141562000629573d60208201fd5b949350505050565b60048054604080516303e1469160e61b815290516001600160a01b039092169263f851a440928282019260209290829003018186803b1580156200067457600080fd5b505afa15801562000689573d6000803e3d6000fd5b505050506040513d6020811015620006a057600080fd5b50516001600160a01b03163314620006ea5760405162461bcd60e51b815260040180806020018281038252603981526020018062001c1b6039913960400191505060405180910390fd5b600480546040805163c45a015560e01b815290516001600160a01b039092169263c45a0155928282019260209290829003018186803b1580156200072d57600080fd5b505afa15801562000742573d6000803e3d6000fd5b505050506040513d60208110156200075957600080fd5b50516040805163020b2c1f60e21b81526001600160a01b0386811660048301529151919092169163082cb07c916024808301926020929190829003018186803b158015620007a657600080fd5b505afa158015620007bb573d6000803e3d6000fd5b505050506040513d6020811015620007d257600080fd5b50511515600114620008165760405162461bcd60e51b815260040180806020018281038252602981526020018062001c546029913960400191505060405180910390fd5b811562000858576040805160048152602481019091526020810180516001600160e01b0390811663153ab50560e01b179091526200085691906200097d16565b505b601480546001600160a01b038581166001600160a01b031983161790925560405160206024820181815285516044840152855194909316936200092e938693909283926064909201919085019080838360005b83811015620008c5578181015183820152602001620008ab565b50505050905090810190601f168015620008f35780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03908116630adccee560e31b179091529093506200097d16915050565b50601454604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b601454606090620009a1906001600160a01b0316836001600160e01b036200056a16565b92915050565b61126480620009b76000396000f3fe6080604052600436106101815760003560e01c80635c60da1b116100d157806395d89b411161008a578063b3f0067411610064578063b3f006741461075d578063dd62ed3e14610772578063f3fdb15a146107ad578063fe98224b146107c257610181565b806395d89b41146106fa578063a9059cbb1461070f578063aa5af0fd1461074857610181565b80635c60da1b1461065e578063699cd5e2146106735780636c540baf146106885780636f307dc31461069d57806370a08231146106b25780638f840ddd146106e557610181565b806318160ddd1161013e578063313ce56711610118578063313ce567146104a35780634487152f146104ce57806347bd37181461057f578063555bcc401461059457610181565b806318160ddd1461041a5780631a4a73701461042f57806323b872dd1461046057610181565b806306fdde03146102415780630933c1ed146102cb578063095ea7b31461037c5780630b665673146103c957806313114a9d146103f0578063173b990414610405575b34156101be5760405162461bcd60e51b81526004018080602001828103825260378152602001806111976037913960400191505060405180910390fd5b6014546040516000916001600160a01b031690829036908083838082843760405192019450600093509091505080830381855af49150503d8060008114610221576040519150601f19603f3d011682016040523d82523d6000602084013e610226565b606091505b505090506040513d6000823e81801561023d573d82f35b3d82fd5b34801561024d57600080fd5b506102566107d7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610290578181015183820152602001610278565b50505050905090810190601f1680156102bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d757600080fd5b50610256600480360360208110156102ee57600080fd5b810190602081018135600160201b81111561030857600080fd5b82018360208201111561031a57600080fd5b803590602001918460018302840111600160201b8311171561033b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610864945050505050565b34801561038857600080fd5b506103b56004803603604081101561039f57600080fd5b506001600160a01b038135169060200135610883565b604080519115158252519081900360200190f35b3480156103d557600080fd5b506103de6108fa565b60408051918252519081900360200190f35b3480156103fc57600080fd5b506103de610900565b34801561041157600080fd5b506103de610906565b34801561042657600080fd5b506103de61090c565b34801561043b57600080fd5b50610444610912565b604080516001600160a01b039092168252519081900360200190f35b34801561046c57600080fd5b506103b56004803603606081101561048357600080fd5b506001600160a01b03813581169160208101359091169060400135610921565b3480156104af57600080fd5b506104b86109a1565b6040805160ff9092168252519081900360200190f35b3480156104da57600080fd5b50610256600480360360208110156104f157600080fd5b810190602081018135600160201b81111561050b57600080fd5b82018360208201111561051d57600080fd5b803590602001918460018302840111600160201b8311171561053e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506109aa945050505050565b34801561058b57600080fd5b506103de610bc9565b3480156105a057600080fd5b5061065c600480360360608110156105b757600080fd5b6001600160a01b03823516916020810135151591810190606081016040820135600160201b8111156105e857600080fd5b8201836020820111156105fa57600080fd5b803590602001918460018302840111600160201b8311171561061b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610bcf945050505050565b005b34801561066a57600080fd5b50610444610efc565b34801561067f57600080fd5b506103b5610f0b565b34801561069457600080fd5b506103de610f10565b3480156106a957600080fd5b50610444610f16565b3480156106be57600080fd5b506103de600480360360208110156106d557600080fd5b50356001600160a01b0316610f25565b3480156106f157600080fd5b506103de610f97565b34801561070657600080fd5b50610256610f9d565b34801561071b57600080fd5b506103b56004803603604081101561073257600080fd5b506001600160a01b038135169060200135610ff5565b34801561075457600080fd5b506103de61104b565b34801561076957600080fd5b50610444611051565b34801561077e57600080fd5b506103de6004803603604081101561079557600080fd5b506001600160a01b0381358116916020013516611065565b3480156107b957600080fd5b506104446110bf565b3480156107ce57600080fd5b506103de6110ce565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561085c5780601f106108315761010080835404028352916020019161085c565b820191906000526020600020905b81548152906001019060200180831161083f57829003601f168201915b505050505081565b60145460609061087d906001600160a01b0316836110d4565b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526000906060906108d990610864565b90508080602001905160208110156108f057600080fd5b5051949350505050565b600d5481565b600c5481565b60085481565b600f5481565b6004546001600160a01b031681565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905260009060609061097f90610864565b905080806020019051602081101561099657600080fd5b505195945050505050565b60035460ff1681565b606060006060306001600160a01b0316846040516024018080602001828103825283818151815260200191508051906020019080838360005b838110156109fb5781810151838201526020016109e3565b50505050905090810190601f168015610a285780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b178152905182519295509350839250908083835b60208310610a835780518252601f199092019160209182019101610a64565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d8060008114610ae3576040519150601f19603f3d011682016040523d82523d6000602084013e610ae8565b606091505b50915091506000821415610afd573d60208201fd5b808060200190516020811015610b1257600080fd5b8101908080516040519392919084600160201b821115610b3157600080fd5b908301906020820185811115610b4657600080fd5b8251600160201b811182820188101715610b5f57600080fd5b82525081516020918201929091019080838360005b83811015610b8c578181015183820152602001610b74565b50505050905090810190601f168015610bb95780820380516001836020036101000a031916815260200191505b5060405250505092505050919050565b600b5481565b60048054604080516303e1469160e61b815290516001600160a01b039092169263f851a440928282019260209290829003018186803b158015610c1157600080fd5b505afa158015610c25573d6000803e3d6000fd5b505050506040513d6020811015610c3b57600080fd5b50516001600160a01b03163314610c835760405162461bcd60e51b81526004018080602001828103825260398152602001806111ce6039913960400191505060405180910390fd5b600480546040805163c45a015560e01b815290516001600160a01b039092169263c45a0155928282019260209290829003018186803b158015610cc557600080fd5b505afa158015610cd9573d6000803e3d6000fd5b505050506040513d6020811015610cef57600080fd5b50516040805163020b2c1f60e21b81526001600160a01b0386811660048301529151919092169163082cb07c916024808301926020929190829003018186803b158015610d3b57600080fd5b505afa158015610d4f573d6000803e3d6000fd5b505050506040513d6020811015610d6557600080fd5b50511515600114610da75760405162461bcd60e51b81526004018080602001828103825260298152602001806112076029913960400191505060405180910390fd5b8115610de1576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b179052610ddf90610864565b505b601480546001600160a01b038581166001600160a01b03198316179092556040516020602482018181528551604484015285519490931693610ead938693909283926064909201919085019080838360005b83811015610e4b578181015183820152602001610e33565b50505050905090810190601f168015610e785780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b1790529250610864915050565b50601454604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b6014546001600160a01b031681565b600181565b60095481565b6013546001600160a01b031681565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166370a0823160e01b179052600090606090610f77906109aa565b9050808060200190516020811015610f8e57600080fd5b50519392505050565b600e5481565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561085c5780601f106108315761010080835404028352916020019161085c565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526000906060906108d990610864565b600a5481565b60035461010090046001600160a01b031681565b604080516001600160a01b03808516602483015283166044808301919091528251808303909101815260649091019091526020810180516001600160e01b0316636eb1769f60e11b1790526000906060906108d9906109aa565b6005546001600160a01b031681565b60075481565b606060006060846001600160a01b0316846040518082805190602001908083835b602083106111145780518252601f1990920191602091820191016110f5565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114611174576040519150601f19603f3d011682016040523d82523d6000602084013e611179565b606091505b5091509150600082141561118e573d60208201fd5b94935050505056fe4d457263323044656c656761746f723a66616c6c6261636b3a2063616e6e6f742073656e642076616c756520746f2066616c6c6261636b4d457263323044656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d7573742062652061646d696e4d457263323044656c656761746f723a206e6f74206d4552433230496d706c656d656e746174696f6ea265627a7a72315820cb629b7604a861ec4934fb0ff9fa6387bc27ef8434616f80d19afa1f72e4471564736f6c634300051100324d457263323044656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d7573742062652061646d696e4d457263323044656c656761746f723a206e6f74206d4552433230496d706c656d656e746174696f6e00000000000000000000000023b99002a1749cc4fb81d8a4a2d56acf4a2b47ad0000000000000000000000001d6426d6f55ad3b36f7a4fdf328a16064df380bf000000000000000000000000000000000000000000a56fa5b99019a5c80000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000180000000000000000000000000376fe4d01f14ed16ddda449f8dd331e2970b33d600000000000000000000000000000000000000000000000000000000000000074d6f6d61204c430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036d4c4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c80635c60da1b116100d157806395d89b411161008a578063b3f0067411610064578063b3f006741461075d578063dd62ed3e14610772578063f3fdb15a146107ad578063fe98224b146107c257610181565b806395d89b41146106fa578063a9059cbb1461070f578063aa5af0fd1461074857610181565b80635c60da1b1461065e578063699cd5e2146106735780636c540baf146106885780636f307dc31461069d57806370a08231146106b25780638f840ddd146106e557610181565b806318160ddd1161013e578063313ce56711610118578063313ce567146104a35780634487152f146104ce57806347bd37181461057f578063555bcc401461059457610181565b806318160ddd1461041a5780631a4a73701461042f57806323b872dd1461046057610181565b806306fdde03146102415780630933c1ed146102cb578063095ea7b31461037c5780630b665673146103c957806313114a9d146103f0578063173b990414610405575b34156101be5760405162461bcd60e51b81526004018080602001828103825260378152602001806111976037913960400191505060405180910390fd5b6014546040516000916001600160a01b031690829036908083838082843760405192019450600093509091505080830381855af49150503d8060008114610221576040519150601f19603f3d011682016040523d82523d6000602084013e610226565b606091505b505090506040513d6000823e81801561023d573d82f35b3d82fd5b34801561024d57600080fd5b506102566107d7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610290578181015183820152602001610278565b50505050905090810190601f1680156102bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d757600080fd5b50610256600480360360208110156102ee57600080fd5b810190602081018135600160201b81111561030857600080fd5b82018360208201111561031a57600080fd5b803590602001918460018302840111600160201b8311171561033b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610864945050505050565b34801561038857600080fd5b506103b56004803603604081101561039f57600080fd5b506001600160a01b038135169060200135610883565b604080519115158252519081900360200190f35b3480156103d557600080fd5b506103de6108fa565b60408051918252519081900360200190f35b3480156103fc57600080fd5b506103de610900565b34801561041157600080fd5b506103de610906565b34801561042657600080fd5b506103de61090c565b34801561043b57600080fd5b50610444610912565b604080516001600160a01b039092168252519081900360200190f35b34801561046c57600080fd5b506103b56004803603606081101561048357600080fd5b506001600160a01b03813581169160208101359091169060400135610921565b3480156104af57600080fd5b506104b86109a1565b6040805160ff9092168252519081900360200190f35b3480156104da57600080fd5b50610256600480360360208110156104f157600080fd5b810190602081018135600160201b81111561050b57600080fd5b82018360208201111561051d57600080fd5b803590602001918460018302840111600160201b8311171561053e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506109aa945050505050565b34801561058b57600080fd5b506103de610bc9565b3480156105a057600080fd5b5061065c600480360360608110156105b757600080fd5b6001600160a01b03823516916020810135151591810190606081016040820135600160201b8111156105e857600080fd5b8201836020820111156105fa57600080fd5b803590602001918460018302840111600160201b8311171561061b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610bcf945050505050565b005b34801561066a57600080fd5b50610444610efc565b34801561067f57600080fd5b506103b5610f0b565b34801561069457600080fd5b506103de610f10565b3480156106a957600080fd5b50610444610f16565b3480156106be57600080fd5b506103de600480360360208110156106d557600080fd5b50356001600160a01b0316610f25565b3480156106f157600080fd5b506103de610f97565b34801561070657600080fd5b50610256610f9d565b34801561071b57600080fd5b506103b56004803603604081101561073257600080fd5b506001600160a01b038135169060200135610ff5565b34801561075457600080fd5b506103de61104b565b34801561076957600080fd5b50610444611051565b34801561077e57600080fd5b506103de6004803603604081101561079557600080fd5b506001600160a01b0381358116916020013516611065565b3480156107b957600080fd5b506104446110bf565b3480156107ce57600080fd5b506103de6110ce565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561085c5780601f106108315761010080835404028352916020019161085c565b820191906000526020600020905b81548152906001019060200180831161083f57829003601f168201915b505050505081565b60145460609061087d906001600160a01b0316836110d4565b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b1790526000906060906108d990610864565b90508080602001905160208110156108f057600080fd5b5051949350505050565b600d5481565b600c5481565b60085481565b600f5481565b6004546001600160a01b031681565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905260009060609061097f90610864565b905080806020019051602081101561099657600080fd5b505195945050505050565b60035460ff1681565b606060006060306001600160a01b0316846040516024018080602001828103825283818151815260200191508051906020019080838360005b838110156109fb5781810151838201526020016109e3565b50505050905090810190601f168015610a285780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b178152905182519295509350839250908083835b60208310610a835780518252601f199092019160209182019101610a64565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d8060008114610ae3576040519150601f19603f3d011682016040523d82523d6000602084013e610ae8565b606091505b50915091506000821415610afd573d60208201fd5b808060200190516020811015610b1257600080fd5b8101908080516040519392919084600160201b821115610b3157600080fd5b908301906020820185811115610b4657600080fd5b8251600160201b811182820188101715610b5f57600080fd5b82525081516020918201929091019080838360005b83811015610b8c578181015183820152602001610b74565b50505050905090810190601f168015610bb95780820380516001836020036101000a031916815260200191505b5060405250505092505050919050565b600b5481565b60048054604080516303e1469160e61b815290516001600160a01b039092169263f851a440928282019260209290829003018186803b158015610c1157600080fd5b505afa158015610c25573d6000803e3d6000fd5b505050506040513d6020811015610c3b57600080fd5b50516001600160a01b03163314610c835760405162461bcd60e51b81526004018080602001828103825260398152602001806111ce6039913960400191505060405180910390fd5b600480546040805163c45a015560e01b815290516001600160a01b039092169263c45a0155928282019260209290829003018186803b158015610cc557600080fd5b505afa158015610cd9573d6000803e3d6000fd5b505050506040513d6020811015610cef57600080fd5b50516040805163020b2c1f60e21b81526001600160a01b0386811660048301529151919092169163082cb07c916024808301926020929190829003018186803b158015610d3b57600080fd5b505afa158015610d4f573d6000803e3d6000fd5b505050506040513d6020811015610d6557600080fd5b50511515600114610da75760405162461bcd60e51b81526004018080602001828103825260298152602001806112076029913960400191505060405180910390fd5b8115610de1576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b179052610ddf90610864565b505b601480546001600160a01b038581166001600160a01b03198316179092556040516020602482018181528551604484015285519490931693610ead938693909283926064909201919085019080838360005b83811015610e4b578181015183820152602001610e33565b50505050905090810190601f168015610e785780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b1790529250610864915050565b50601454604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b6014546001600160a01b031681565b600181565b60095481565b6013546001600160a01b031681565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166370a0823160e01b179052600090606090610f77906109aa565b9050808060200190516020811015610f8e57600080fd5b50519392505050565b600e5481565b6002805460408051602060018416156101000260001901909316849004601f8101849004840282018401909252818152929183018282801561085c5780601f106108315761010080835404028352916020019161085c565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526000906060906108d990610864565b600a5481565b60035461010090046001600160a01b031681565b604080516001600160a01b03808516602483015283166044808301919091528251808303909101815260649091019091526020810180516001600160e01b0316636eb1769f60e11b1790526000906060906108d9906109aa565b6005546001600160a01b031681565b60075481565b606060006060846001600160a01b0316846040518082805190602001908083835b602083106111145780518252601f1990920191602091820191016110f5565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114611174576040519150601f19603f3d011682016040523d82523d6000602084013e611179565b606091505b5091509150600082141561118e573d60208201fd5b94935050505056fe4d457263323044656c656761746f723a66616c6c6261636b3a2063616e6e6f742073656e642076616c756520746f2066616c6c6261636b4d457263323044656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d7573742062652061646d696e4d457263323044656c656761746f723a206e6f74206d4552433230496d706c656d656e746174696f6ea265627a7a72315820cb629b7604a861ec4934fb0ff9fa6387bc27ef8434616f80d19afa1f72e4471564736f6c63430005110032

Deployed Bytecode Sourcemap

247:8841:1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8590:9;:14;8582:81;;;;-1:-1:-1;;;8582:81:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8759:14;;:37;;8741:12;;-1:-1:-1;;;;;8759:14:1;;8741:12;;8787:8;;8759:37;8741:12;8787:8;;8741:12;8759:37;1:33:-1;8759:37:1;;45:16:-1;;;-1:-1;8759:37:1;;-1:-1:-1;8759:37:1;;-1:-1:-1;;8759:37:1;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;8740:56:1;;;8856:4;8850:11;8906:14;8903:1;8889:12;8874:47;8942:7;8962:47;;;;9053:14;9039:12;9032:36;8962:47;8992:14;8978:12;8971:36;287:18:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;287:18:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;287:18:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7376:139:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7376:139:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7376:139:1;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;7376:139:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;7376:139:1;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;7376:139:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;7376:139:1;;-1:-1:-1;7376:139:1;;-1:-1:-1;;;;;7376:139:1:i;5165:246::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5165:246:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5165:246:1;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2511:25:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2511:25:2;;;:::i;:::-;;;;;;;;;;;;;;;;2388:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2388:21:2;;;:::i;1864:42::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1864:42:2;;;:::i;2738:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2738:23:2;;;:::i;1305:37::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1305:37:2;;;:::i;:::-;;;;-1:-1:-1;;;;;1305:37:2;;;;;;;;;;;;;;4431:274:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4431:274:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4431:274:1;;;;;;;;;;;;;;;;;:::i;473:21:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;473:21:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7928:426:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7928:426:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7928:426:1;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;7928:426:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;7928:426:1;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;7928:426:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;7928:426:1;;-1:-1:-1;7928:426:1;;-1:-1:-1;;;;;7928:426:1:i;2267:24:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2267:24:2;;;:::i;2816:827:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2816:827:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;2816:827:1;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;2816:827:1;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2816:827:1;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;2816:827:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;2816:827:1;;-1:-1:-1;2816:827:1;;-1:-1:-1;;;;;2816:827:1:i;:::-;;9580:29:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9580:29:2;;;:::i;3686:36::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3686:36:2;;;:::i;1991:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1991:30:2;;;:::i;8720:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8720:25:2;;;:::i;6173:223:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6173:223:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6173:223:1;-1:-1:-1;;;;;6173:223:1;;:::i;2637:25:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2637:25:2;;;:::i;378:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;378:20:2;;;:::i;3896:237:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3896:237:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3896:237:1;;;;;;;;:::i;2137:23:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2137:23:2;;;:::i;1185:34::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1185:34:2;;;:::i;5733:257:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5733:257:1;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5733:257:1;;;;;;;;;;:::i;1439:42:2:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1439:42:2;;;:::i;1734:38::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1734:38:2;;;:::i;287:18::-;;;;;;;;;;;;;;;-1:-1:-1;;287:18:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7376:139:1:-;7487:14;;7445:12;;7476:32;;-1:-1:-1;;;;;7487:14:1;7503:4;7476:10;:32::i;:::-;7469:39;7376:139;-1:-1:-1;;7376:139:1:o;5165:246::-;5294:68;;;-1:-1:-1;;;;;5294:68:1;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;5294:68:1;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;5233:4:1;;5249:17;;5269:94;;:24;:94::i;:::-;5249:114;;5391:4;5380:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5380:24:1;;5165:246;-1:-1:-1;;;;5165:246:1:o;2511:25:2:-;;;;:::o;2388:21::-;;;;:::o;1864:42::-;;;;:::o;2738:23::-;;;;:::o;1305:37::-;;;-1:-1:-1;;;;;1305:37:2;;:::o;4431:274:1:-;4574:82;;;-1:-1:-1;;;;;4574:82:1;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;4574:82:1;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;4513:4:1;;4529:17;;4549:108;;:24;:108::i;:::-;4529:128;;4685:4;4674:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4674:24:1;;4431:274;-1:-1:-1;;;;;4431:274:1:o;473:21:2:-;;;;;;:::o;7928:426:1:-;8006:12;8031;8045:23;8080:4;-1:-1:-1;;;;;8072:24:1;8156:4;8097:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8097:64:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8097:64:1;;;-1:-1:-1;;26:21;;;22:32;6:49;;8097:64:1;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;8072:90:1;;;;8097:64;;-1:-1:-1;8072:90:1;-1:-1:-1;8072:90:1;;-1:-1:-1;25:18;8072:90:1;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;8072:90:1;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;8030:132:1;;;;8210:1;8201:7;8198:14;8195:2;;;8261:14;8254:4;8242:10;8238:21;8231:45;8195:2;8327:10;8316:31;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8316:31:1;;;;;;;;;;;;;-1:-1:-1;;;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;213:10;;-1:-1;;;244:29;;285:43;;;282:58;-1:-1;233:115;230:2;;;361:1;358;351:12;230:2;372:25;;-1:-1;8316:31:1;;420:4:-1;411:14;;;;8316:31:1;;;;;411:14:-1;8316:31:1;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8316:31:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8309:38;;;;7928:426;;;:::o;2267:24:2:-;;;;:::o;2816:827:1:-;2965:10;;;:18;;;-1:-1:-1;;;2965:18:1;;;;-1:-1:-1;;;;;2965:10:1;;;;:16;;:18;;;;;;;;;;;;:10;:18;;;5:2:-1;;;;30:1;27;20:12;5:2;2965:18:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;2965:18:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2965:18:1;-1:-1:-1;;;;;2951:32:1;:10;:32;2943:102;;;;-1:-1:-1;;;2943:102:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3112:10;;;:20;;;-1:-1:-1;;;3112:20:1;;;;-1:-1:-1;;;;;3112:10:1;;;;:18;;:20;;;;;;;;;;;;:10;:20;;;5:2:-1;;;;30:1;27;20:12;5:2;3112:20:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3112:20:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3112:20:1;3091:82;;;-1:-1:-1;;;3091:82:1;;-1:-1:-1;;;;;3091:82:1;;;;;;;;;:65;;;;;;;:82;;;;;3112:20;;3091:82;;;;;;;:65;:82;;;5:2:-1;;;;30:1;27;20:12;5:2;3091:82:1;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3091:82:1;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3091:82:1;:90;;3177:4;3091:90;3083:144;;;;-1:-1:-1;;;3083:144:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3242:11;3238:118;;;3294:50;;;22:32:-1;6:49;;3294:50:1;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;3269:76:1;;:24;:76::i;:::-;;3238:118;3394:14;;;-1:-1:-1;;;;;3418:32:1;;;-1:-1:-1;;;;;;3418:32:1;;;;;;3486:81;;;;;;;;;;;;;;;;;3394:14;;;;;3461:107;;3542:24;;3486:81;;;;;;;;;;;;;;;;3366:25;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3486:81:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3486:81:1;;;-1:-1:-1;;26:21;;;22:32;6:49;;3486:81:1;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;3486:81:1;-1:-1:-1;3461:24:1;;-1:-1:-1;;3461:107:1:i;:::-;-1:-1:-1;3621:14:1;;3584:52;;;-1:-1:-1;;;;;3584:52:1;;;;;3621:14;;;3584:52;;;;;;;;;;;;;;;;2816:827;;;;:::o;9580:29:2:-;;;-1:-1:-1;;;;;9580:29:2;;:::o;3686:36::-;3718:4;3686:36;:::o;1991:30::-;;;;:::o;8720:25::-;;;-1:-1:-1;;;;;8720:25:2;;:::o;6173:223:1:-;6295:52;;;-1:-1:-1;;;;;6295:52:1;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;6295:52:1;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;6230:4:1;;6246:17;;6266:82;;:28;:82::i;:::-;6246:102;;6376:4;6365:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6365:24:1;;6173:223;-1:-1:-1;;;6173:223:1:o;2637:25:2:-;;;;:::o;378:20::-;;;;;;;;;;;;;;-1:-1:-1;;378:20:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3896:237:1;4019:65;;;-1:-1:-1;;;;;4019:65:1;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;4019:65:1;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;3958:4:1;;3974:17;;3994:91;;:24;:91::i;2137:23:2:-;;;;:::o;1185:34::-;;;;;;-1:-1:-1;;;;;1185:34:2;;:::o;5733:257:1:-;5872:69;;;-1:-1:-1;;;;;5872:69:1;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;5872:69:1;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;5807:4:1;;5823:17;;5843:99;;:28;:99::i;1439:42:2:-;;;-1:-1:-1;;;;;1439:42:2;;:::o;1734:38::-;;;;:::o;6747:335:1:-;6820:12;6845;6859:23;6886:6;-1:-1:-1;;;;;6886:19:1;6906:4;6886:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;6886:25:1;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;6844:67:1;;;;6959:1;6950:7;6947:14;6944:2;;;7010:14;7003:4;6991:10;6987:21;6980:45;6944:2;7065:10;6747:335;-1:-1:-1;;;;6747:335:1:o

Swarm Source

bzzr://cb629b7604a861ec4934fb0ff9fa6387bc27ef8434616f80d19afa1f72e44715
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.