ETH Price: $2,348.43 (-2.87%)

Token

ArchiBank Ether (abETH)
 

Overview

Max Total Supply

1,755.51812078 abETH

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
0.00000176 abETH

Value
$0.00
0x4AEA89e8Fd73cdcFa45d4a9Aa643F1daDbF7Fcc5
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:
CEther

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
File 1 of 11 : CEther.sol
pragma solidity ^0.5.16;

import "./CToken.sol";

contract CEther is CToken {
    constructor(ComptrollerInterface comptroller_,
                InterestRateModel interestRateModel_,
                uint initialExchangeRateMantissa_,
                string memory name_,
                string memory symbol_,
                uint8 decimals_,
                address payable admin_) public {

        admin = msg.sender;

        initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_);
        admin = admin_;
    }


    function mint() external payable {
        (uint err,) = mintInternal(msg.value);
        requireNoError(err, "MINT_FAILED");
    }

    function redeem(uint redeemTokens) external returns (uint) {
        return redeemInternal(redeemTokens);
    }

    function redeemUnderlying(uint redeemAmount) external returns (uint) {
        return redeemUnderlyingInternal(redeemAmount);
    }

    function borrow(uint borrowAmount) external returns (uint) {
        return borrowInternal(borrowAmount);
    }

    function repayBorrow() external payable {
        (uint err,) = repayBorrowInternal(msg.value);
        requireNoError(err, "REPAY_BORROW_FAILED");
    }

    function repayBorrowBehalf(address borrower) external payable {
        (uint err,) = repayBorrowBehalfInternal(borrower, msg.value);
        requireNoError(err, "REPAY_BORROW_BEHALF_FAILED failed");
    }

    function liquidateBorrow(address borrower, CToken cTokenCollateral) external payable {
        (uint err,) = liquidateBorrowInternal(borrower, msg.value, cTokenCollateral);
        requireNoError(err, "LIQUIDATEBORROW_BEHALF_FAILED");
    }

    function () external payable {
        (uint err,) = mintInternal(msg.value);
        requireNoError(err, "MINT_FAILED");
    }

    function getCashPrior() internal view returns (uint) {
        (MathError err, uint startingBalance) = subUInt(address(this).balance, msg.value);
        require(err == MathError.NO_ERROR);
        return startingBalance;
    }

    function doTransferIn(address from, uint amount) internal returns (uint) {
        require(msg.sender == from, "SENDER_MISMATCH");
        require(msg.value == amount, "VALUE_MISMATCH");
        return amount;
    }

    function doTransferOut(address payable to, uint amount) internal {
        to.transfer(amount);
    }

    function requireNoError(uint errCode, string memory message) internal pure {
        if (errCode == uint(Error.NO_ERROR)) {
            return;
        }

        bytes memory fullMessage = new bytes(bytes(message).length + 5);
        uint i;

        for (i = 0; i < bytes(message).length; i++) {
            fullMessage[i] = bytes(message)[i];
        }

        fullMessage[i+0] = byte(uint8(32));
        fullMessage[i+1] = byte(uint8(40));
        fullMessage[i+2] = byte(uint8(48 + ( errCode / 10 )));
        fullMessage[i+3] = byte(uint8(48 + ( errCode % 10 )));
        fullMessage[i+4] = byte(uint8(41));

        require(errCode == uint(Error.NO_ERROR), string(fullMessage));
    }
}

File 2 of 11 : CToken.sol
pragma solidity ^0.5.16;

import "./ComptrollerInterface.sol";
import "./CTokenInterfaces.sol";
import "./ErrorReporter.sol";
import "./Exponential.sol";
import "./EIP20Interface.sol";
import "./EIP20NonStandardInterface.sol";
import "./InterestRateModel.sol";

contract CToken is CTokenInterface, Exponential, TokenErrorReporter {
    function initialize(ComptrollerInterface comptroller_,
                        InterestRateModel interestRateModel_,
                        uint initialExchangeRateMantissa_,
                        string memory name_,
                        string memory symbol_,
                        uint8 decimals_) public {
        require(msg.sender == admin, "only admin may initialize the market");
        require(accrualBlockNumber == 0 && borrowIndex == 0, "market may only be initialized once");

        initialExchangeRateMantissa = initialExchangeRateMantissa_;
        require(initialExchangeRateMantissa > 0, "initial exchange rate must be greater than zero.");

        uint err = _setComptroller(comptroller_);
        require(err == uint(Error.NO_ERROR), "setting comptroller failed");

        accrualBlockNumber = getBlockNumber();
        borrowIndex = mantissaOne;

        err = _setInterestRateModelFresh(interestRateModel_);
        require(err == uint(Error.NO_ERROR), "setting interest rate model failed");

        name = name_;
        symbol = symbol_;
        decimals = decimals_;

        _notEntered = true;
    }

    function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) {
        uint allowed = comptroller.transferAllowed(address(this), src, dst, tokens);
        require(allowed == 0, "TRANSFER_COMPTROLLER_REJECTION");
        require(src != dst, "EQUAL_SRC_DST");

        uint startingAllowance = 0;
        if (spender == src) {
            startingAllowance = uint(-1);
        } else {
            startingAllowance = transferAllowances[src][spender];
        }

        MathError mathErr;
        uint allowanceNew;
        uint srcTokensNew;
        uint dstTokensNew;

        (mathErr, allowanceNew) = subUInt(startingAllowance, tokens);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_ALLOWANCE");

        (mathErr, srcTokensNew) = subUInt(accountTokens[src], tokens);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_SRC_TOKENS");

        (mathErr, dstTokensNew) = addUInt(accountTokens[dst], tokens);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_DST_TOKENS");

        accountTokens[src] = srcTokensNew;
        accountTokens[dst] = dstTokensNew;

        if (startingAllowance != uint(-1)) {
            transferAllowances[src][spender] = allowanceNew;
        }

        emit Transfer(src, dst, tokens);

        return uint(Error.NO_ERROR);
    }

    function transfer(address dst, uint256 amount) external nonReentrant returns (bool) {
        return transferTokens(msg.sender, msg.sender, dst, amount) == uint(Error.NO_ERROR);
    }

    function transferFrom(address src, address dst, uint256 amount) external nonReentrant returns (bool) {
        return transferTokens(msg.sender, src, dst, amount) == uint(Error.NO_ERROR);
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        address src = msg.sender;
        transferAllowances[src][spender] = amount;
        emit Approval(src, spender, amount);
        return true;
    }

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

    function balanceOf(address owner) external view returns (uint256) {
        return accountTokens[owner];
    }

    function balanceOfUnderlying(address owner) external returns (uint) {
        Exp memory exchangeRate = Exp({mantissa: exchangeRateCurrent()});
        (MathError mErr, uint balance) = mulScalarTruncate(exchangeRate, accountTokens[owner]);
        require(mErr == MathError.NO_ERROR, "UNDERLYING_BALANCE_CANNOT_CALCULATED");
        return balance;
    }

    function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint) {
        uint cTokenBalance = accountTokens[account];
        uint borrowBalance;
        uint exchangeRateMantissa;

        MathError mErr;

        (mErr, borrowBalance) = borrowBalanceStoredInternal(account);
        require(mErr == MathError.NO_ERROR, "MATH_ERROR_BORROW_BALANCE");
                
        (mErr, exchangeRateMantissa) = exchangeRateStoredInternal();
        require(mErr == MathError.NO_ERROR, "MATH_ERROR_EXCHANGERATE");

        return (uint(Error.NO_ERROR), cTokenBalance, borrowBalance, exchangeRateMantissa);
    }

    function getBlockNumber() internal view returns (uint) {
        return block.number;
    }

    function borrowRatePerBlock() external view returns (uint) {
        return interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves);
    }

    function supplyRatePerBlock() external view returns (uint) {
        return interestRateModel.getSupplyRate(getCashPrior(), totalBorrows, totalReserves, reserveFactorMantissa);
    }

    function totalBorrowsCurrent() external nonReentrant returns (uint) {
        require(accrueInterest() == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return totalBorrows;
    }

    function borrowBalanceCurrent(address account) external nonReentrant returns (uint) {
        require(accrueInterest() == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return borrowBalanceStored(account);
    }

    function borrowBalanceStored(address account) public view returns (uint) {
        (MathError err, uint result) = borrowBalanceStoredInternal(account);
        require(err == MathError.NO_ERROR, "MATH_ERROR_BORROW_BALANCE_STORED");
        return result;
    }

    function borrowBalanceStoredInternal(address account) internal view returns (MathError, uint) {
        MathError mathErr;
        uint principalTimesIndex;
        uint result;

        BorrowSnapshot storage borrowSnapshot = accountBorrows[account];
        if (borrowSnapshot.principal == 0) {
            return (MathError.NO_ERROR, 0);
        }

        (mathErr, principalTimesIndex) = mulUInt(borrowSnapshot.principal, borrowIndex);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_PRINCIPAL_TIMES_INDEX");

        (mathErr, result) = divUInt(principalTimesIndex, borrowSnapshot.interestIndex);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_PRINCIPAL_TIMES_INDEX_DIV");

        return (MathError.NO_ERROR, result);
    }

    function exchangeRateCurrent() public nonReentrant returns (uint) {
        require(accrueInterest() == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return exchangeRateStored();
    }

    function exchangeRateStored() public view returns (uint) {
        (MathError err, uint result) = exchangeRateStoredInternal();
        require(err == MathError.NO_ERROR, "MATH_ERROR_EXCHANGE_RATE_SOTRED");
        return result;
    }

    function exchangeRateStoredInternal() internal view returns (MathError, uint) {
        uint _totalSupply = totalSupply;
        if (_totalSupply == 0) {
            return (MathError.NO_ERROR, initialExchangeRateMantissa);
        } else {
            uint totalCash = getCashPrior();
            uint cashPlusBorrowsMinusReserves;
            Exp memory exchangeRate;
            MathError mathErr;

            (mathErr, cashPlusBorrowsMinusReserves) = addThenSubUInt(totalCash, totalBorrows, totalReserves);
            require(mathErr == MathError.NO_ERROR, "MATH_ERROR_CASH_PLUS_BORROWS_MINUS_RESERVES");

            (mathErr, exchangeRate) = getExp(cashPlusBorrowsMinusReserves, _totalSupply);
            require(mathErr == MathError.NO_ERROR, "MATH_ERROR_EXCHANGE_RATE");

            return (MathError.NO_ERROR, exchangeRate.mantissa);
        }
    }

    function getCash() external view returns (uint) {
        return getCashPrior();
    }

    function accrueInterest() public returns (uint) {
        uint currentBlockNumber = getBlockNumber();
        uint accrualBlockNumberPrior = accrualBlockNumber;

        if (accrualBlockNumberPrior == currentBlockNumber) {
            return uint(Error.NO_ERROR);
        }

        uint cashPrior = getCashPrior();
        uint borrowsPrior = totalBorrows;
        uint reservesPrior = totalReserves;
        uint borrowIndexPrior = borrowIndex;

        uint borrowRateMantissa = interestRateModel.getBorrowRate(cashPrior, borrowsPrior, reservesPrior);
        require(borrowRateMantissa <= borrowRateMaxMantissa, "BORROW_RATE_ABSURDLY_HIGH");

        (MathError mathErr, uint blockDelta) = subUInt(currentBlockNumber, accrualBlockNumberPrior);
        require(mathErr == MathError.NO_ERROR, "CANNOT_CALULATE_BLOCK_DELTA");

        Exp memory simpleInterestFactor;
        uint interestAccumulated;
        uint totalBorrowsNew;
        uint totalReservesNew;
        uint borrowIndexNew;

        (mathErr, simpleInterestFactor) = mulScalar(Exp({mantissa: borrowRateMantissa}), blockDelta);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_SIMPLE_INTEREST_FACTOR");

        (mathErr, interestAccumulated) = mulScalarTruncate(simpleInterestFactor, borrowsPrior);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_INTEREST_ACCUMULATED");

        (mathErr, totalBorrowsNew) = addUInt(interestAccumulated, borrowsPrior);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_TOTAL_BORROW");

        (mathErr, totalReservesNew) = mulScalarTruncateAddUInt(Exp({mantissa: reserveFactorMantissa}), interestAccumulated, reservesPrior);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_TOTAL_RESERVES");

        (mathErr, borrowIndexNew) = mulScalarTruncateAddUInt(simpleInterestFactor, borrowIndexPrior, borrowIndexPrior);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_BORROW_INDEX");

        accrualBlockNumber = currentBlockNumber;
        borrowIndex = borrowIndexNew;
        totalBorrows = totalBorrowsNew;
        totalReserves = totalReservesNew;

        emit AccrueInterest(cashPrior, interestAccumulated, borrowIndexNew, totalBorrowsNew);

        return uint(Error.NO_ERROR);
    }

    function mintInternal(uint mintAmount) internal nonReentrant returns (uint, uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return mintFresh(msg.sender, mintAmount);
    }

    struct MintLocalVars {
        Error err;
        MathError mathErr;
        uint exchangeRateMantissa;
        uint mintTokens;
        uint totalSupplyNew;
        uint accountTokensNew;
        uint actualMintAmount;
    }

    function mintFresh(address minter, uint mintAmount) internal returns (uint, uint) {
        uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount);
        require(allowed == 0, "MINT_COMPTROLLER_REJECTION");
        require(accrualBlockNumber == getBlockNumber(), "NOT_EQUAL_BLOCKNUMBER");

        MintLocalVars memory vars;

        (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal();
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_EXCHANGE_RATE");

        vars.actualMintAmount = doTransferIn(minter, mintAmount);

        (vars.mathErr, vars.mintTokens) = divScalarByExpTruncate(vars.actualMintAmount, Exp({mantissa: vars.exchangeRateMantissa}));
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_MINT_TOKENS");

        (vars.mathErr, vars.totalSupplyNew) = addUInt(totalSupply, vars.mintTokens);
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_TOTAL_SUPPLY");

        (vars.mathErr, vars.accountTokensNew) = addUInt(accountTokens[minter], vars.mintTokens);
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_ACCOUNT_TOKENS");

        totalSupply = vars.totalSupplyNew;
        accountTokens[minter] = vars.accountTokensNew;

        emit Mint(minter, vars.actualMintAmount, vars.mintTokens);
        emit Transfer(address(this), minter, vars.mintTokens);

        return (uint(Error.NO_ERROR), vars.actualMintAmount);
    }

    function redeemInternal(uint redeemTokens) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");

        return redeemFresh(msg.sender, redeemTokens, 0);
    }

    function redeemUnderlyingInternal(uint redeemAmount) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return redeemFresh(msg.sender, 0, redeemAmount);
    }

    struct RedeemLocalVars {
        Error err;
        MathError mathErr;
        uint exchangeRateMantissa;
        uint redeemTokens;
        uint redeemAmount;
        uint totalSupplyNew;
        uint accountTokensNew;
    }

    function redeemFresh(address payable redeemer, uint redeemTokensIn, uint redeemAmountIn) internal returns (uint) {
        require(redeemTokensIn == 0 || redeemAmountIn == 0, "INPUT_ALL_NOT_ZERO");

        RedeemLocalVars memory vars;

        (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal();
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_EXCHANGE_RATE");

        if (redeemTokensIn > 0) {
            vars.redeemTokens = redeemTokensIn;
            (vars.mathErr, vars.redeemAmount) = mulScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), redeemTokensIn);
            require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_REDEEM_AMOUNT");
        } else {
            (vars.mathErr, vars.redeemTokens) = divScalarByExpTruncate(redeemAmountIn, Exp({mantissa: vars.exchangeRateMantissa}));
            require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_REDEEM_TOKENS");
            vars.redeemAmount = redeemAmountIn;
        }

        uint allowed = comptroller.redeemAllowed(address(this), redeemer, vars.redeemTokens);
        require(allowed == 0, "REDEEM_COMPTROLLER_REJECTION");

        require(accrualBlockNumber == getBlockNumber(), "NOT_EQUAL_BLOCKNUMBER");

        (vars.mathErr, vars.totalSupplyNew) = subUInt(totalSupply, vars.redeemTokens);
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_TOTAL_SUPPLY");

        (vars.mathErr, vars.accountTokensNew) = subUInt(accountTokens[redeemer], vars.redeemTokens);
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_ACCOUNT_TOKENS");

        require(getCashPrior() >= vars.redeemAmount, "INSUFFICIENT_CASH");

        doTransferOut(redeemer, vars.redeemAmount);

        totalSupply = vars.totalSupplyNew;
        accountTokens[redeemer] = vars.accountTokensNew;

        emit Transfer(redeemer, address(this), vars.redeemTokens);
        emit Redeem(redeemer, vars.redeemAmount, vars.redeemTokens);

        comptroller.redeemVerify(address(this), redeemer, vars.redeemAmount, vars.redeemTokens);

        return uint(Error.NO_ERROR);
    }

    function borrowInternal(uint borrowAmount) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return borrowFresh(msg.sender, borrowAmount);
    }

    struct BorrowLocalVars {
        MathError mathErr;
        uint accountBorrows;
        uint accountBorrowsNew;
        uint totalBorrowsNew;
    }

    function borrowFresh(address payable borrower, uint borrowAmount) internal returns (uint) {
        uint allowed = comptroller.borrowAllowed(address(this), borrower, borrowAmount);
        require(allowed == 0, "BORROW_COMPTROLLER_REJECTION");

        require(accrualBlockNumber == getBlockNumber(), "NOT_EQUAL_BLOCKNUMBER");
        require(getCashPrior() >= borrowAmount, "INSUFFICIENT_CASH");

        BorrowLocalVars memory vars;

        (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower);
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_ACCOUNT_BORROWS");

        (vars.mathErr, vars.accountBorrowsNew) = addUInt(vars.accountBorrows, borrowAmount);
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_ACCOUNT_BORROWS_NEW");

        (vars.mathErr, vars.totalBorrowsNew) = addUInt(totalBorrows, borrowAmount);
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_TOTAL_BORROWS");

        doTransferOut(borrower, borrowAmount);

        accountBorrows[borrower].principal = vars.accountBorrowsNew;
        accountBorrows[borrower].interestIndex = borrowIndex;
        totalBorrows = vars.totalBorrowsNew;

        emit Borrow(borrower, borrowAmount, vars.accountBorrowsNew, vars.totalBorrowsNew);

        return uint(Error.NO_ERROR);
    }

    function repayBorrowInternal(uint repayAmount) internal nonReentrant returns (uint, uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return repayBorrowFresh(msg.sender, msg.sender, repayAmount);
    }

    function repayBorrowBehalfInternal(address borrower, uint repayAmount) internal nonReentrant returns (uint, uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return repayBorrowFresh(msg.sender, borrower, repayAmount);
    }

    struct RepayBorrowLocalVars {
        Error err;
        MathError mathErr;
        uint repayAmount;
        uint borrowerIndex;
        uint accountBorrows;
        uint accountBorrowsNew;
        uint totalBorrowsNew;
        uint actualRepayAmount;
    }

    function repayBorrowFresh(address payer, address borrower, uint repayAmount) internal returns (uint, uint) {
        uint allowed = comptroller.repayBorrowAllowed(address(this), payer, borrower, repayAmount);
        require(allowed == 0, "BORROW_COMPTROLLER_REJECTION");

        require(accrualBlockNumber == getBlockNumber(), "NOT_EQUAL_BLOCKNUMBER");

        RepayBorrowLocalVars memory vars;

        vars.borrowerIndex = accountBorrows[borrower].interestIndex;

        (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower);
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_ACCOUNT_BORROWS");

        if (repayAmount == uint(-1)) {
            vars.repayAmount = vars.accountBorrows;
        } else {
            vars.repayAmount = repayAmount;
        }

        vars.actualRepayAmount = doTransferIn(payer, vars.repayAmount);

        (vars.mathErr, vars.accountBorrowsNew) = subUInt(vars.accountBorrows, vars.actualRepayAmount);
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_ACCOUNT_BORROWS");

        (vars.mathErr, vars.totalBorrowsNew) = subUInt(totalBorrows, vars.actualRepayAmount);
        require(vars.mathErr == MathError.NO_ERROR, "MATH_ERROR_TOTAL_BORROWS");

        accountBorrows[borrower].principal = vars.accountBorrowsNew;
        accountBorrows[borrower].interestIndex = borrowIndex;
        totalBorrows = vars.totalBorrowsNew;

        emit RepayBorrow(payer, borrower, vars.actualRepayAmount, vars.accountBorrowsNew, vars.totalBorrowsNew);

        return (uint(Error.NO_ERROR), vars.actualRepayAmount);
    }

    function liquidateBorrowInternal(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal nonReentrant returns (uint, uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");

        error = cTokenCollateral.accrueInterest();
        require(error == uint(Error.NO_ERROR), "CALLATERAL_ACCRUE_INTEREST_FAILED");

        return liquidateBorrowFresh(msg.sender, borrower, repayAmount, cTokenCollateral);
    }

    function liquidateBorrowFresh(address liquidator, address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal returns (uint, uint) {
        uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(cTokenCollateral), liquidator, borrower, repayAmount);
        require(allowed == 0, "LIQUIDATE_COMPTROLLER_REJECTION");

        require(accrualBlockNumber == getBlockNumber(), "NOT_EQUAL_BLOCKNUMBER");
        require(cTokenCollateral.accrualBlockNumber() == getBlockNumber(), "COLLATERAL_NOT_EQUAL_BLOCKNUMBER");
        require(borrower != liquidator, "EQUAL_BORROWER_LIQUIDATOR");
        require(repayAmount != 0, "REPAY_AMOUNT_IS_ZERO");
        require(repayAmount != uint(-1), "INVALID_REPAY_AMOUNT");

        (uint repayBorrowError, uint actualRepayAmount) = repayBorrowFresh(liquidator, borrower, repayAmount);
        require(repayBorrowError == uint(Error.NO_ERROR), "LIQUIDATE_REPAY_BORROW_FRESH_FAILED");

        (uint amountSeizeError, uint seizeTokens) = comptroller.liquidateCalculateSeizeTokens(address(this), address(cTokenCollateral), actualRepayAmount);
        require(amountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED");

        require(cTokenCollateral.balanceOf(borrower) >= seizeTokens, "LIQUIDATE_SEIZE_TOO_MUCH");
    
        uint seizeError;
        if (address(cTokenCollateral) == address(this)) {
            seizeError = seizeInternal(address(this), liquidator, borrower, seizeTokens);
        } else {
            seizeError = cTokenCollateral.seize(liquidator, borrower, seizeTokens);
        }

        require(seizeError == uint(Error.NO_ERROR), "TOKEN_SEIZURE_FAILED");

        emit LiquidateBorrow(liquidator, borrower, actualRepayAmount, address(cTokenCollateral), seizeTokens);

        return (uint(Error.NO_ERROR), actualRepayAmount);
    }

    function seize(address liquidator, address borrower, uint seizeTokens) external nonReentrant returns (uint) {
        return seizeInternal(msg.sender, liquidator, borrower, seizeTokens);
    }

    function seizeInternal(address seizerToken, address liquidator, address borrower, uint seizeTokens) internal returns (uint) {
        uint allowed = comptroller.seizeAllowed(address(this), seizerToken, liquidator, borrower, seizeTokens);
        require(allowed == 0, "LIQUIDATE_SEIZE_COMPTROLLER_REJECTION");

        require(borrower != liquidator, "EQUAL_BORROWER_LIQUIDATOR");

        MathError mathErr;
        uint borrowerTokensNew;
        uint liquidatorTokensNew;

        (mathErr, borrowerTokensNew) = subUInt(accountTokens[borrower], seizeTokens);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_BORROWER_TOKENS");
        (mathErr, liquidatorTokensNew) = addUInt(accountTokens[liquidator], seizeTokens);
        require(mathErr == MathError.NO_ERROR, "MATH_ERROR_LIQUIDATOR_TOKENS");

        accountTokens[borrower] = borrowerTokensNew;
        accountTokens[liquidator] = liquidatorTokensNew;

        emit Transfer(borrower, liquidator, seizeTokens);

        return uint(Error.NO_ERROR);
    }

    function _setPendingAdmin(address payable newPendingAdmin) external returns (uint) {
        require(msg.sender == admin, "SET_PENDING_ADMIN_OWNER_CHECK");

        address oldPendingAdmin = pendingAdmin;
        pendingAdmin = newPendingAdmin;

        emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin);

        return uint(Error.NO_ERROR);
    }

    function _acceptAdmin() external returns (uint) {
        require(msg.sender == pendingAdmin && msg.sender != address(0), "ACCEPT_ADMIN_PENDING_ADMIN_CHECK");

        address oldAdmin = admin;
        address oldPendingAdmin = pendingAdmin;

        admin = pendingAdmin;
        pendingAdmin = address(0);

        emit NewAdmin(oldAdmin, admin);
        emit NewPendingAdmin(oldPendingAdmin, pendingAdmin);

        return uint(Error.NO_ERROR);
    }

    function _setComptroller(ComptrollerInterface newComptroller) public returns (uint) {
       require(msg.sender == admin, "SET_COMPTROLLER_OWNER_CHECK");

        ComptrollerInterface oldComptroller = comptroller;
        require(newComptroller.isComptroller(), "ISNOT_COMPTROLLER");

        comptroller = newComptroller;

        emit NewComptroller(oldComptroller, newComptroller);

        return uint(Error.NO_ERROR);
    }

    function _setReserveFactor(uint newReserveFactorMantissa) external nonReentrant returns (uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return _setReserveFactorFresh(newReserveFactorMantissa);
    }

    function _setReserveFactorFresh(uint newReserveFactorMantissa) internal returns (uint) {
        require(msg.sender == admin, "SET_RESERVE_FACTOR_ADMIN_CHECK");
        require(accrualBlockNumber == getBlockNumber(), "NOT_EQUAL_BLOCKNUMBER");
        require(newReserveFactorMantissa <= reserveFactorMaxMantissa, "SET_RESERVE_FACTOR_BOUNDS_CHECK");

        uint oldReserveFactorMantissa = reserveFactorMantissa;
        reserveFactorMantissa = newReserveFactorMantissa;

        emit NewReserveFactor(oldReserveFactorMantissa, newReserveFactorMantissa);

        return uint(Error.NO_ERROR);
    }

    function _addReservesInternal(uint addAmount) internal nonReentrant returns (uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");

        (error, ) = _addReservesFresh(addAmount);
        return error;
    }

    function _addReservesFresh(uint addAmount) internal returns (uint, uint) {
        uint totalReservesNew;
        uint actualAddAmount;

        require(accrualBlockNumber == getBlockNumber(), "NOT_EQUAL_BLOCKNUMBER");

        actualAddAmount = doTransferIn(msg.sender, addAmount);

        totalReservesNew = totalReserves + actualAddAmount;
        require(totalReservesNew >= totalReserves, "MATH_ERROR_TOTAL_RESERVES");

        totalReserves = totalReservesNew;

        emit ReservesAdded(msg.sender, actualAddAmount, totalReservesNew);

        return (uint(Error.NO_ERROR), actualAddAmount);
    }

    function _reduceReserves(uint reduceAmount) external nonReentrant returns (uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return _reduceReservesFresh(reduceAmount);
    }

    function _reduceReservesFresh(uint reduceAmount) internal returns (uint) {
        uint totalReservesNew;
        require(msg.sender == admin, "REDUCE_RESERVES_ADMIN_CHECK");
        require(accrualBlockNumber == getBlockNumber(), "NOT_EQUAL_BLOCKNUMBER");
        require(getCashPrior() >= reduceAmount, "INSUFFICIENT_CASH");
        require(reduceAmount <= totalReserves, "INSUFFICIENT_TOTAL_RESERVES");

        totalReservesNew = totalReserves - reduceAmount;
        require(totalReservesNew <= totalReserves, "MATH_ERROR_TOTAL_RESERVES");

        totalReserves = totalReservesNew;

        doTransferOut(admin, reduceAmount);

        emit ReservesReduced(admin, reduceAmount, totalReservesNew);

        return uint(Error.NO_ERROR);
    }

    function _setInterestRateModel(InterestRateModel newInterestRateModel) public returns (uint) {
        uint error = accrueInterest();
        require(error == uint(Error.NO_ERROR), "ACCRUE_INTEREST_FAILED");
        return _setInterestRateModelFresh(newInterestRateModel);
    }

    function _setInterestRateModelFresh(InterestRateModel newInterestRateModel) internal returns (uint) {
        InterestRateModel oldInterestRateModel;
        require(msg.sender == admin, "SET_INTEREST_RATE_MODEL_OWNER_CHECK");
        require(accrualBlockNumber == getBlockNumber(), "NOT_EQUAL_BLOCKNUMBER");

        oldInterestRateModel = interestRateModel;
        require(newInterestRateModel.isInterestRateModel(), "marker method returned false");

        interestRateModel = newInterestRateModel;

        emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel);

        return uint(Error.NO_ERROR);
    }

    function getCashPrior() internal view returns (uint);

    function doTransferIn(address from, uint amount) internal returns (uint);

    function doTransferOut(address payable to, uint amount) internal;

    modifier nonReentrant() {
        require(_notEntered, "REENTERED");
        _notEntered = false;
        _;
        _notEntered = true; 
    }
}

File 3 of 11 : CTokenInterfaces.sol
pragma solidity ^0.5.16;

import "./ComptrollerInterface.sol";
import "./InterestRateModel.sol";

contract CTokenStorage {
    /**
     * @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 reserves
     */
    uint internal constant reserveFactorMaxMantissa = 1e18;

    /**
     * @notice Administrator for this contract
     */
    address payable public admin;

    /**
     * @notice Pending administrator for this contract
     */
    address payable public pendingAdmin;

    /**
     * @notice Contract which oversees inter-cToken operations
     */
    ComptrollerInterface public comptroller;

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

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

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

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

contract CTokenInterface is CTokenStorage {
    /**
     * @notice Indicator that this is a CToken contract (for inspection)
     */
    bool public constant isCToken = true;


    /*** 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 cTokenCollateral, uint seizeTokens);


    /*** Admin Events ***/

    /**
     * @notice Event emitted when pendingAdmin is changed
     */
    event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin);

    /**
     * @notice Event emitted when pendingAdmin is accepted, which means admin is updated
     */
    event NewAdmin(address oldAdmin, address newAdmin);

    /**
     * @notice Event emitted when comptroller is changed
     */
    event NewComptroller(ComptrollerInterface oldComptroller, ComptrollerInterface newComptroller);

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

    /**
     * @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 accrueInterest() public returns (uint);
    function seize(address liquidator, address borrower, uint seizeTokens) external returns (uint);


    /*** Admin Functions ***/

    function _setPendingAdmin(address payable newPendingAdmin) external returns (uint);
    function _acceptAdmin() external returns (uint);
    function _setComptroller(ComptrollerInterface newComptroller) public returns (uint);
    function _setReserveFactor(uint newReserveFactorMantissa) external returns (uint);
    function _reduceReserves(uint reduceAmount) external returns (uint);
    function _setInterestRateModel(InterestRateModel newInterestRateModel) public returns (uint);
}

contract CErc20Storage {
    /**
     * @notice Underlying asset for this CToken
     */
    address public underlying;
}

contract CErc20Interface is CErc20Storage {

    /*** 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, CTokenInterface cTokenCollateral) external returns (uint);


    /*** Admin Functions ***/

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

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

contract CDelegatorInterface is CDelegationStorage {
    /**
     * @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 CDelegateInterface is CDelegationStorage {
    /**
     * @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;
}

File 4 of 11 : CarefulMath.sol
pragma solidity ^0.5.16;

/**
  * @title Careful Math
  * @author Compound
  * @notice Derived from OpenZeppelin's SafeMath library
  *         https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol
  */
contract CarefulMath {

    /**
     * @dev Possible error codes that we can return
     */
    enum MathError {
        NO_ERROR,
        DIVISION_BY_ZERO,
        INTEGER_OVERFLOW,
        INTEGER_UNDERFLOW
    }

    /**
    * @dev Multiplies two numbers, returns an error on overflow.
    */
    function mulUInt(uint a, uint b) internal pure returns (MathError, uint) {
        if (a == 0) {
            return (MathError.NO_ERROR, 0);
        }

        uint c = a * b;

        if (c / a != b) {
            return (MathError.INTEGER_OVERFLOW, 0);
        } else {
            return (MathError.NO_ERROR, c);
        }
    }

    /**
    * @dev Integer division of two numbers, truncating the quotient.
    */
    function divUInt(uint a, uint b) internal pure returns (MathError, uint) {
        if (b == 0) {
            return (MathError.DIVISION_BY_ZERO, 0);
        }

        return (MathError.NO_ERROR, a / b);
    }

    /**
    * @dev Subtracts two numbers, returns an error on overflow (i.e. if subtrahend is greater than minuend).
    */
    function subUInt(uint a, uint b) internal pure returns (MathError, uint) {
        if (b <= a) {
            return (MathError.NO_ERROR, a - b);
        } else {
            return (MathError.INTEGER_UNDERFLOW, 0);
        }
    }

    /**
    * @dev Adds two numbers, returns an error on overflow.
    */
    function addUInt(uint a, uint b) internal pure returns (MathError, uint) {
        uint c = a + b;

        if (c >= a) {
            return (MathError.NO_ERROR, c);
        } else {
            return (MathError.INTEGER_OVERFLOW, 0);
        }
    }

    /**
    * @dev add a and b and then subtract c
    */
    function addThenSubUInt(uint a, uint b, uint c) internal pure returns (MathError, uint) {
        (MathError err0, uint sum) = addUInt(a, b);

        if (err0 != MathError.NO_ERROR) {
            return (err0, 0);
        }

        return subUInt(sum, c);
    }
}

File 5 of 11 : ComptrollerInterface.sol
pragma solidity ^0.5.16;

contract ComptrollerInterface {
    bool public constant isComptroller = true;

    function enterMarkets(address[] calldata cTokens) external returns (uint[] memory);
    function exitMarket(address cToken) external returns (uint);
    function mintAllowed(address cToken, address minter, uint mintAmount) external returns (uint);
    function redeemAllowed(address cToken, address redeemer, uint redeemTokens) external returns (uint);
    function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) external;
    function borrowAllowed(address cToken, address borrower, uint borrowAmount) external returns (uint);

    function repayBorrowAllowed(
        address cToken,
        address payer,
        address borrower,
        uint repayAmount) external returns (uint);

    function liquidateBorrowAllowed(
        address cTokenBorrowed,
        address cTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount) external returns (uint);

    function seizeAllowed(
        address cTokenCollateral,
        address cTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external returns (uint);

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

    function liquidateCalculateSeizeTokens(
        address cTokenBorrowed,
        address cTokenCollateral,
        uint repayAmount) external view returns (uint, uint);
}

File 6 of 11 : EIP20Interface.sol
pragma solidity ^0.5.16;

/**
 * @title ERC 20 Token Standard Interface
 *  https://eips.ethereum.org/EIPS/eip-20
 */
interface EIP20Interface {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);

    /**
      * @notice Get the total number of tokens in circulation
      * @return The supply of tokens
      */
    function totalSupply() external view returns (uint256);

    /**
     * @notice Gets the balance of the specified address
     * @param owner The address from which the balance will be retrieved
     * @return The balance
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
      * @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, uint256 amount) external returns (bool success);

    /**
      * @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 success);

    /**
      * @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 success);

    /**
      * @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 (uint256 remaining);

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

File 7 of 11 : EIP20NonStandardInterface.sol
pragma solidity ^0.5.16;

/**
 * @title EIP20NonStandardInterface
 * @dev Version of ERC20 with no return values for `transfer` and `transferFrom`
 *  See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
 */
interface EIP20NonStandardInterface {

    /**
     * @notice Get the total number of tokens in circulation
     * @return The supply of tokens
     */
    function totalSupply() external view returns (uint256);

    /**
     * @notice Gets the balance of the specified address
     * @param owner The address from which the balance will be retrieved
     * @return The balance
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    ///
    /// !!!!!!!!!!!!!!
    /// !!! NOTICE !!! `transfer` does not return a value, in violation of the ERC-20 specification
    /// !!!!!!!!!!!!!!
    ///

    /**
      * @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
      */
    function transfer(address dst, uint256 amount) external;

    ///
    /// !!!!!!!!!!!!!!
    /// !!! NOTICE !!! `transferFrom` does not return a value, in violation of the ERC-20 specification
    /// !!!!!!!!!!!!!!
    ///

    /**
      * @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
      */
    function transferFrom(address src, address dst, uint256 amount) external;

    /**
      * @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
      * @return Whether or not the approval succeeded
      */
    function approve(address spender, uint256 amount) external returns (bool success);

    /**
      * @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
      */
    function allowance(address owner, address spender) external view returns (uint256 remaining);

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

File 8 of 11 : ErrorReporter.sol
pragma solidity ^0.5.16;

contract ComptrollerErrorReporter {
    enum Error {
        NO_ERROR,
        UNAUTHORIZED,
        COMPTROLLER_MISMATCH,
        INSUFFICIENT_SHORTFALL,
        INSUFFICIENT_LIQUIDITY,
        INVALID_CLOSE_FACTOR,
        INVALID_COLLATERAL_FACTOR,
        INVALID_LIQUIDATION_INCENTIVE,
        MARKET_NOT_ENTERED, // no longer possible
        MARKET_NOT_LISTED,
        MARKET_ALREADY_LISTED,
        MATH_ERROR,
        NONZERO_BORROW_BALANCE,
        PRICE_ERROR,
        REJECTION,
        SNAPSHOT_ERROR,
        TOO_MANY_ASSETS,
        TOO_MUCH_REPAY
    }

    enum FailureInfo {
        ACCEPT_ADMIN_PENDING_ADMIN_CHECK,
        ACCEPT_PENDING_IMPLEMENTATION_ADDRESS_CHECK,
        EXIT_MARKET_BALANCE_OWED,
        EXIT_MARKET_REJECTION,
        SET_CLOSE_FACTOR_OWNER_CHECK,
        SET_CLOSE_FACTOR_VALIDATION,
        SET_COLLATERAL_FACTOR_OWNER_CHECK,
        SET_COLLATERAL_FACTOR_NO_EXISTS,
        SET_COLLATERAL_FACTOR_VALIDATION,
        SET_COLLATERAL_FACTOR_WITHOUT_PRICE,
        SET_IMPLEMENTATION_OWNER_CHECK,
        SET_LIQUIDATION_INCENTIVE_OWNER_CHECK,
        SET_LIQUIDATION_INCENTIVE_VALIDATION,
        SET_MAX_ASSETS_OWNER_CHECK,
        SET_PENDING_ADMIN_OWNER_CHECK,
        SET_PENDING_IMPLEMENTATION_OWNER_CHECK,
        SET_PRICE_ORACLE_OWNER_CHECK,
        SUPPORT_MARKET_EXISTS,
        SUPPORT_MARKET_OWNER_CHECK,
        SET_PAUSE_GUARDIAN_OWNER_CHECK
    }

    /**
      * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary
      * contract-specific code that enables us to report opaque error codes from upgradeable contracts.
      **/
    event Failure(uint error, uint info, uint detail);

    /**
      * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator
      */
    function fail(Error err, FailureInfo info) internal returns (uint) {
        emit Failure(uint(err), uint(info), 0);

        return uint(err);
    }

    /**
      * @dev use this when reporting an opaque error from an upgradeable collaborator contract
      */
    function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) {
        emit Failure(uint(err), uint(info), opaqueError);

        return uint(err);
    }
}

contract TokenErrorReporter {
    enum Error {
        NO_ERROR,
        UNAUTHORIZED,
        BAD_INPUT,
        COMPTROLLER_REJECTION,
        COMPTROLLER_CALCULATION_ERROR,
        INTEREST_RATE_MODEL_ERROR,
        INVALID_ACCOUNT_PAIR,
        INVALID_CLOSE_AMOUNT_REQUESTED,
        INVALID_COLLATERAL_FACTOR,
        MATH_ERROR,
        MARKET_NOT_FRESH,
        MARKET_NOT_LISTED,
        TOKEN_INSUFFICIENT_ALLOWANCE,
        TOKEN_INSUFFICIENT_BALANCE,
        TOKEN_INSUFFICIENT_CASH,
        TOKEN_TRANSFER_IN_FAILED,
        TOKEN_TRANSFER_OUT_FAILED
    }

    /*
     * Note: FailureInfo (but not Error) is kept in alphabetical order
     *       This is because FailureInfo grows significantly faster, and
     *       the order of Error has some meaning, while the order of FailureInfo
     *       is entirely arbitrary.
     */
    enum FailureInfo {
        ACCEPT_ADMIN_PENDING_ADMIN_CHECK,
        ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED,
        ACCRUE_INTEREST_BORROW_RATE_CALCULATION_FAILED,
        ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED,
        ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED,
        ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED,
        ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED,
        BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED,
        BORROW_ACCRUE_INTEREST_FAILED,
        BORROW_CASH_NOT_AVAILABLE,
        BORROW_FRESHNESS_CHECK,
        BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED,
        BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED,
        BORROW_MARKET_NOT_LISTED,
        BORROW_COMPTROLLER_REJECTION,
        LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED,
        LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED,
        LIQUIDATE_COLLATERAL_FRESHNESS_CHECK,
        LIQUIDATE_COMPTROLLER_REJECTION,
        LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED,
        LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX,
        LIQUIDATE_CLOSE_AMOUNT_IS_ZERO,
        LIQUIDATE_FRESHNESS_CHECK,
        LIQUIDATE_LIQUIDATOR_IS_BORROWER,
        LIQUIDATE_REPAY_BORROW_FRESH_FAILED,
        LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED,
        LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED,
        LIQUIDATE_SEIZE_COMPTROLLER_REJECTION,
        LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER,
        LIQUIDATE_SEIZE_TOO_MUCH,
        MINT_ACCRUE_INTEREST_FAILED,
        MINT_COMPTROLLER_REJECTION,
        MINT_EXCHANGE_CALCULATION_FAILED,
        MINT_EXCHANGE_RATE_READ_FAILED,
        MINT_FRESHNESS_CHECK,
        MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED,
        MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED,
        MINT_TRANSFER_IN_FAILED,
        MINT_TRANSFER_IN_NOT_POSSIBLE,
        REDEEM_ACCRUE_INTEREST_FAILED,
        REDEEM_COMPTROLLER_REJECTION,
        REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED,
        REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED,
        REDEEM_EXCHANGE_RATE_READ_FAILED,
        REDEEM_FRESHNESS_CHECK,
        REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED,
        REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED,
        REDEEM_TRANSFER_OUT_NOT_POSSIBLE,
        REDUCE_RESERVES_ACCRUE_INTEREST_FAILED,
        REDUCE_RESERVES_ADMIN_CHECK,
        REDUCE_RESERVES_CASH_NOT_AVAILABLE,
        REDUCE_RESERVES_FRESH_CHECK,
        REDUCE_RESERVES_VALIDATION,
        REPAY_BEHALF_ACCRUE_INTEREST_FAILED,
        REPAY_BORROW_ACCRUE_INTEREST_FAILED,
        REPAY_BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED,
        REPAY_BORROW_COMPTROLLER_REJECTION,
        REPAY_BORROW_FRESHNESS_CHECK,
        REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED,
        REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED,
        REPAY_BORROW_TRANSFER_IN_NOT_POSSIBLE,
        SET_COLLATERAL_FACTOR_OWNER_CHECK,
        SET_COLLATERAL_FACTOR_VALIDATION,
        SET_COMPTROLLER_OWNER_CHECK,
        SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED,
        SET_INTEREST_RATE_MODEL_FRESH_CHECK,
        SET_INTEREST_RATE_MODEL_OWNER_CHECK,
        SET_MAX_ASSETS_OWNER_CHECK,
        SET_ORACLE_MARKET_NOT_LISTED,
        SET_PENDING_ADMIN_OWNER_CHECK,
        SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED,
        SET_RESERVE_FACTOR_ADMIN_CHECK,
        SET_RESERVE_FACTOR_FRESH_CHECK,
        SET_RESERVE_FACTOR_BOUNDS_CHECK,
        TRANSFER_COMPTROLLER_REJECTION,
        TRANSFER_NOT_ALLOWED,
        TRANSFER_NOT_ENOUGH,
        TRANSFER_TOO_MUCH,
        ADD_RESERVES_ACCRUE_INTEREST_FAILED,
        ADD_RESERVES_FRESH_CHECK,
        ADD_RESERVES_TRANSFER_IN_NOT_POSSIBLE
    }

    /**
      * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary
      * contract-specific code that enables us to report opaque error codes from upgradeable contracts.
      **/
    event Failure(uint error, uint info, uint detail);

    /**
      * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator
      */
    function fail(Error err, FailureInfo info) internal returns (uint) {
        emit Failure(uint(err), uint(info), 0);

        return uint(err);
    }

    /**
      * @dev use this when reporting an opaque error from an upgradeable collaborator contract
      */
    function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) {
        emit Failure(uint(err), uint(info), opaqueError);

        return uint(err);
    }
}

File 9 of 11 : Exponential.sol
pragma solidity ^0.5.16;

import "./CarefulMath.sol";
import "./ExponentialNoError.sol";

/**
 * @title Exponential module for storing fixed-precision decimals
 * @author Compound
 * @dev Legacy contract for compatibility reasons with existing contracts that still use MathError
 * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places.
 *         Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is:
 *         `Exp({mantissa: 5100000000000000000})`.
 */
contract Exponential is CarefulMath, ExponentialNoError {
    /**
     * @dev Creates an exponential from numerator and denominator values.
     *      Note: Returns an error if (`num` * 10e18) > MAX_INT,
     *            or if `denom` is zero.
     */
    function getExp(uint num, uint denom) pure internal returns (MathError, Exp memory) {
        (MathError err0, uint scaledNumerator) = mulUInt(num, expScale);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        (MathError err1, uint rational) = divUInt(scaledNumerator, denom);
        if (err1 != MathError.NO_ERROR) {
            return (err1, Exp({mantissa: 0}));
        }

        return (MathError.NO_ERROR, Exp({mantissa: rational}));
    }

    /**
     * @dev Adds two exponentials, returning a new exponential.
     */
    function addExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {
        (MathError error, uint result) = addUInt(a.mantissa, b.mantissa);

        return (error, Exp({mantissa: result}));
    }

    /**
     * @dev Subtracts two exponentials, returning a new exponential.
     */
    function subExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {
        (MathError error, uint result) = subUInt(a.mantissa, b.mantissa);

        return (error, Exp({mantissa: result}));
    }

    /**
     * @dev Multiply an Exp by a scalar, returning a new Exp.
     */
    function mulScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) {
        (MathError err0, uint scaledMantissa) = mulUInt(a.mantissa, scalar);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        return (MathError.NO_ERROR, Exp({mantissa: scaledMantissa}));
    }

    /**
     * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer.
     */
    function mulScalarTruncate(Exp memory a, uint scalar) pure internal returns (MathError, uint) {
        (MathError err, Exp memory product) = mulScalar(a, scalar);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

        return (MathError.NO_ERROR, truncate(product));
    }

    /**
     * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer.
     */
    function mulScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (MathError, uint) {
        (MathError err, Exp memory product) = mulScalar(a, scalar);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

        return addUInt(truncate(product), addend);
    }

    /**
     * @dev Divide an Exp by a scalar, returning a new Exp.
     */
    function divScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) {
        (MathError err0, uint descaledMantissa) = divUInt(a.mantissa, scalar);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        return (MathError.NO_ERROR, Exp({mantissa: descaledMantissa}));
    }

    /**
     * @dev Divide a scalar by an Exp, returning a new Exp.
     */
    function divScalarByExp(uint scalar, Exp memory divisor) pure internal returns (MathError, Exp memory) {
        /*
          We are doing this as:
          getExp(mulUInt(expScale, scalar), divisor.mantissa)

          How it works:
          Exp = a / b;
          Scalar = s;
          `s / (a / b)` = `b * s / a` and since for an Exp `a = mantissa, b = expScale`
        */
        (MathError err0, uint numerator) = mulUInt(expScale, scalar);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }
        return getExp(numerator, divisor.mantissa);
    }

    /**
     * @dev Divide a scalar by an Exp, then truncate to return an unsigned integer.
     */
    function divScalarByExpTruncate(uint scalar, Exp memory divisor) pure internal returns (MathError, uint) {
        (MathError err, Exp memory fraction) = divScalarByExp(scalar, divisor);
        if (err != MathError.NO_ERROR) {
            return (err, 0);
        }

        return (MathError.NO_ERROR, truncate(fraction));
    }

    /**
     * @dev Multiplies two exponentials, returning a new exponential.
     */
    function mulExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {

        (MathError err0, uint doubleScaledProduct) = mulUInt(a.mantissa, b.mantissa);
        if (err0 != MathError.NO_ERROR) {
            return (err0, Exp({mantissa: 0}));
        }

        // We add half the scale before dividing so that we get rounding instead of truncation.
        //  See "Listing 6" and text above it at https://accu.org/index.php/journals/1717
        // Without this change, a result like 6.6...e-19 will be truncated to 0 instead of being rounded to 1e-18.
        (MathError err1, uint doubleScaledProductWithHalfScale) = addUInt(halfExpScale, doubleScaledProduct);
        if (err1 != MathError.NO_ERROR) {
            return (err1, Exp({mantissa: 0}));
        }

        (MathError err2, uint product) = divUInt(doubleScaledProductWithHalfScale, expScale);
        // The only error `div` can return is MathError.DIVISION_BY_ZERO but we control `expScale` and it is not zero.
        assert(err2 == MathError.NO_ERROR);

        return (MathError.NO_ERROR, Exp({mantissa: product}));
    }

    /**
     * @dev Multiplies two exponentials given their mantissas, returning a new exponential.
     */
    function mulExp(uint a, uint b) pure internal returns (MathError, Exp memory) {
        return mulExp(Exp({mantissa: a}), Exp({mantissa: b}));
    }

    /**
     * @dev Multiplies three exponentials, returning a new exponential.
     */
    function mulExp3(Exp memory a, Exp memory b, Exp memory c) pure internal returns (MathError, Exp memory) {
        (MathError err, Exp memory ab) = mulExp(a, b);
        if (err != MathError.NO_ERROR) {
            return (err, ab);
        }
        return mulExp(ab, c);
    }

    /**
     * @dev Divides two exponentials, returning a new exponential.
     *     (a/scale) / (b/scale) = (a/scale) * (scale/b) = a/b,
     *  which we can scale as an Exp by calling getExp(a.mantissa, b.mantissa)
     */
    function divExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) {
        return getExp(a.mantissa, b.mantissa);
    }
}

File 10 of 11 : ExponentialNoError.sol
pragma solidity ^0.5.16;

/**
 * @title Exponential module for storing fixed-precision decimals
 * @author Compound
 * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places.
 *         Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is:
 *         `Exp({mantissa: 5100000000000000000})`.
 */
contract ExponentialNoError {
    uint constant expScale = 1e18;
    uint constant doubleScale = 1e36;
    uint constant halfExpScale = expScale/2;
    uint constant mantissaOne = expScale;

    struct Exp {
        uint mantissa;
    }

    struct Double {
        uint mantissa;
    }

    /**
     * @dev Truncates the given exp to a whole number value.
     *      For example, truncate(Exp{mantissa: 15 * expScale}) = 15
     */
    function truncate(Exp memory exp) pure internal returns (uint) {
        // Note: We are not using careful math here as we're performing a division that cannot fail
        return exp.mantissa / expScale;
    }

    /**
     * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer.
     */
    function mul_ScalarTruncate(Exp memory a, uint scalar) pure internal returns (uint) {
        Exp memory product = mul_(a, scalar);
        return truncate(product);
    }

    /**
     * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer.
     */
    function mul_ScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (uint) {
        Exp memory product = mul_(a, scalar);
        return add_(truncate(product), addend);
    }

    /**
     * @dev Checks if first Exp is less than second Exp.
     */
    function lessThanExp(Exp memory left, Exp memory right) pure internal returns (bool) {
        return left.mantissa < right.mantissa;
    }

    /**
     * @dev Checks if left Exp <= right Exp.
     */
    function lessThanOrEqualExp(Exp memory left, Exp memory right) pure internal returns (bool) {
        return left.mantissa <= right.mantissa;
    }

    /**
     * @dev Checks if left Exp > right Exp.
     */
    function greaterThanExp(Exp memory left, Exp memory right) pure internal returns (bool) {
        return left.mantissa > right.mantissa;
    }

    /**
     * @dev returns true if Exp is exactly zero
     */
    function isZeroExp(Exp memory value) pure internal returns (bool) {
        return value.mantissa == 0;
    }

    function safe224(uint n, string memory errorMessage) pure internal returns (uint224) {
        require(n < 2**224, errorMessage);
        return uint224(n);
    }

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

    function add_(Exp memory a, Exp memory b) pure internal returns (Exp memory) {
        return Exp({mantissa: add_(a.mantissa, b.mantissa)});
    }

    function add_(Double memory a, Double memory b) pure internal returns (Double memory) {
        return Double({mantissa: add_(a.mantissa, b.mantissa)});
    }

    function add_(uint a, uint b) pure internal returns (uint) {
        return add_(a, b, "addition overflow");
    }

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

    function sub_(Exp memory a, Exp memory b) pure internal returns (Exp memory) {
        return Exp({mantissa: sub_(a.mantissa, b.mantissa)});
    }

    function sub_(Double memory a, Double memory b) pure internal returns (Double memory) {
        return Double({mantissa: sub_(a.mantissa, b.mantissa)});
    }

    function sub_(uint a, uint b) pure internal returns (uint) {
        return sub_(a, b, "subtraction underflow");
    }

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

    function mul_(Exp memory a, Exp memory b) pure internal returns (Exp memory) {
        return Exp({mantissa: mul_(a.mantissa, b.mantissa) / expScale});
    }

    function mul_(Exp memory a, uint b) pure internal returns (Exp memory) {
        return Exp({mantissa: mul_(a.mantissa, b)});
    }

    function mul_(uint a, Exp memory b) pure internal returns (uint) {
        return mul_(a, b.mantissa) / expScale;
    }

    function mul_(Double memory a, Double memory b) pure internal returns (Double memory) {
        return Double({mantissa: mul_(a.mantissa, b.mantissa) / doubleScale});
    }

    function mul_(Double memory a, uint b) pure internal returns (Double memory) {
        return Double({mantissa: mul_(a.mantissa, b)});
    }

    function mul_(uint a, Double memory b) pure internal returns (uint) {
        return mul_(a, b.mantissa) / doubleScale;
    }

    function mul_(uint a, uint b) pure internal returns (uint) {
        return mul_(a, b, "multiplication overflow");
    }

    function mul_(uint a, uint b, string memory errorMessage) pure internal returns (uint) {
        if (a == 0 || b == 0) {
            return 0;
        }
        uint c = a * b;
        require(c / a == b, errorMessage);
        return c;
    }

    function div_(Exp memory a, Exp memory b) pure internal returns (Exp memory) {
        return Exp({mantissa: div_(mul_(a.mantissa, expScale), b.mantissa)});
    }

    function div_(Exp memory a, uint b) pure internal returns (Exp memory) {
        return Exp({mantissa: div_(a.mantissa, b)});
    }

    function div_(uint a, Exp memory b) pure internal returns (uint) {
        return div_(mul_(a, expScale), b.mantissa);
    }

    function div_(Double memory a, Double memory b) pure internal returns (Double memory) {
        return Double({mantissa: div_(mul_(a.mantissa, doubleScale), b.mantissa)});
    }

    function div_(Double memory a, uint b) pure internal returns (Double memory) {
        return Double({mantissa: div_(a.mantissa, b)});
    }

    function div_(uint a, Double memory b) pure internal returns (uint) {
        return div_(mul_(a, doubleScale), b.mantissa);
    }

    function div_(uint a, uint b) pure internal returns (uint) {
        return div_(a, b, "divide by zero");
    }

    function div_(uint a, uint b, string memory errorMessage) pure internal returns (uint) {
        require(b > 0, errorMessage);
        return a / b;
    }

    function fraction(uint a, uint b) pure internal returns (Double memory) {
        return Double({mantissa: div_(mul_(a, doubleScale), b)});
    }
}

File 11 of 11 : InterestRateModel.sol
pragma solidity ^0.5.16;

/**
  * @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
      * @return The borrow rate per block (as a percentage, and scaled by 1e18)
      */
    function getBorrowRate(uint cash, uint borrows, uint reserves) 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
      * @return The supply rate per block (as a percentage, and scaled by 1e18)
      */
    function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) external view returns (uint);

}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","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":"address payable","name":"admin_","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cashPrior","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestAccumulated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"AccrueInterest","type":"event"},{"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":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"borrowAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"Borrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"error","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"info","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"detail","type":"uint256"}],"name":"Failure","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"liquidator","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"cTokenCollateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"LiquidateBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintTokens","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract ComptrollerInterface","name":"oldComptroller","type":"address"},{"indexed":false,"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"NewComptroller","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract InterestRateModel","name":"oldInterestRateModel","type":"address"},{"indexed":false,"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"NewMarketInterestRateModel","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldReserveFactorMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"NewReserveFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"redeemer","type":"address"},{"indexed":false,"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"RepayBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"benefactor","type":"address"},{"indexed":false,"internalType":"uint256","name":"addAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"reduceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesReduced","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"_setComptroller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newPendingAdmin","type":"address"}],"name":"_setPendingAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"_setReserveFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"accrueInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":false,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceStored","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":"borrowRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"comptroller","outputs":[{"internalType":"contract ComptrollerInterface","name":"","type":"address"}],"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":[],"name":"exchangeRateCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"exchangeRateStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","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"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isCToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"contract CToken","name":"cTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"repayBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"repayBorrowBehalf","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"supplyRatePerBlock","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":false,"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","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"}]

60806040523480156200001157600080fd5b5060405162005fe638038062005fe6833981810160405260e08110156200003757600080fd5b8151602083015160408085015160608601805192519496939591949391820192846401000000008211156200006b57600080fd5b9083019060208201858111156200008157600080fd5b82516401000000008111828201881017156200009c57600080fd5b82525081516020918201929091019080838360005b83811015620000cb578181015183820152602001620000b1565b50505050905090810190601f168015620000f95780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011d57600080fd5b9083019060208201858111156200013357600080fd5b82516401000000008111828201881017156200014e57600080fd5b82525081516020918201929091019080838360005b838110156200017d57818101518382015260200162000163565b50505050905090810190601f168015620001ab5780820380516001836020036101000a031916815260200191505b506040908152602082015191015160038054610100600160a81b03191633610100021790559092509050620001e587878787878762000218565b600380546001600160a01b0390921661010002610100600160a81b03199092169190911790555062000851945050505050565b60035461010090046001600160a01b03163314620002685760405162461bcd60e51b815260040180806020018281038252602481526020018062005f4d6024913960400191505060405180910390fd5b600954158015620002795750600a54155b620002b65760405162461bcd60e51b815260040180806020018281038252602381526020018062005f716023913960400191505060405180910390fd5b600784905583620002f95760405162461bcd60e51b815260040180806020018281038252603081526020018062005f946030913960400191505060405180910390fd5b60006200030f876001600160e01b036200042e16565b9050801562000365576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b620003786001600160e01b03620005b616565b600955670de0b6b3a7640000600a556200039b866001600160e01b03620005bb16565b90508015620003dc5760405162461bcd60e51b815260040180806020018281038252602281526020018062005fc46022913960400191505060405180910390fd5b8351620003f1906001906020870190620007af565b50825162000407906002906020860190620007af565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b60035460009061010090046001600160a01b0316331462000496576040805162461bcd60e51b815260206004820152601b60248201527f5345545f434f4d5054524f4c4c45525f4f574e45525f434845434b0000000000604482015290519081900360640190fd5b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015620004dc57600080fd5b505afa158015620004f1573d6000803e3d6000fd5b505050506040513d60208110156200050857600080fd5b505162000550576040805162461bcd60e51b815260206004820152601160248201527024a9a727aa2fa1a7a6a82a2927a62622a960791b604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b435b90565b600354600090819061010090046001600160a01b03163314620006105760405162461bcd60e51b815260040180806020018281038252602381526020018062005f2a6023913960400191505060405180910390fd5b620006236001600160e01b03620005b616565b6009541462000679576040805162461bcd60e51b815260206004820152601560248201527f4e4f545f455155414c5f424c4f434b4e554d4245520000000000000000000000604482015290519081900360640190fd5b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015620006cb57600080fd5b505afa158015620006e0573d6000803e3d6000fd5b505050506040513d6020811015620006f757600080fd5b50516200074b576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000620005af565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007f257805160ff191683800117855562000822565b8280016001018555821562000822579182015b828111156200082257825182559160200191906001019062000805565b506200083092915062000834565b5090565b620005b891905b808211156200083057600081556001016200083b565b6156c980620008616000396000f3fe6080604052600436106102725760003560e01c806395d89b411161014f578063c37f68e2116100c1578063f2b3abbd1161007a578063f2b3abbd14610a22578063f3fdb15a14610a55578063f851a44014610a6a578063f8f9da2814610a7f578063fca7820b14610a94578063fe9c44ae14610abe57610272565b8063c37f68e2146108ff578063c5ebeaec14610958578063db006a7514610982578063dd62ed3e146109ac578063e5974619146109e7578063e9c714f214610a0d57610272565b8063aa5af0fd11610113578063aa5af0fd1461081c578063aae40a2a14610831578063ae9d70b01461085f578063b2a02ff114610874578063b71d1a0c146108b7578063bd6d894d146108ea57610272565b806395d89b411461062757806395dd91931461063c57806399d8c1b41461066f578063a6afed95146107ce578063a9059cbb146107e357610272565b80633b1d21a2116101e8578063601a0bf1116101ac578063601a0bf1146105615780636c540baf1461058b57806370a08231146105a057806373acee98146105d3578063852a12e3146105e85780638f840ddd1461061257610272565b80633b1d21a2146104e75780634576b5db146104fc57806347bd37181461052f5780634e4d9fea146105445780635fe3b5671461054c57610272565b806318160ddd1161023a57806318160ddd146103eb578063182df0f51461040057806323b872dd146104155780632678224714610458578063313ce567146104895780633af9e669146104b457610272565b806306fdde03146102b0578063095ea7b31461033a5780631249c58b14610387578063173b99041461039157806317bfdfbc146103b8575b600061027d34610ad3565b5090506102ad816040518060400160405280600b81526020016a1352539517d1905253115160aa1b815250610b91565b50005b3480156102bc57600080fd5b506102c5610d91565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ff5781810151838201526020016102e7565b50505050905090810190601f16801561032c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034657600080fd5b506103736004803603604081101561035d57600080fd5b506001600160a01b038135169060200135610e1e565b604080519115158252519081900360200190f35b61038f610e89565b005b34801561039d57600080fd5b506103a6610ec7565b60408051918252519081900360200190f35b3480156103c457600080fd5b506103a6600480360360208110156103db57600080fd5b50356001600160a01b0316610ecd565b3480156103f757600080fd5b506103a6610f80565b34801561040c57600080fd5b506103a6610f86565b34801561042157600080fd5b506103736004803603606081101561043857600080fd5b506001600160a01b03813581169160208101359091169060400135610fff565b34801561046457600080fd5b5061046d611070565b604080516001600160a01b039092168252519081900360200190f35b34801561049557600080fd5b5061049e61107f565b6040805160ff9092168252519081900360200190f35b3480156104c057600080fd5b506103a6600480360360208110156104d757600080fd5b50356001600160a01b0316611088565b3480156104f357600080fd5b506103a6611128565b34801561050857600080fd5b506103a66004803603602081101561051f57600080fd5b50356001600160a01b0316611137565b34801561053b57600080fd5b506103a66112ba565b61038f6112c0565b34801561055857600080fd5b5061046d611303565b34801561056d57600080fd5b506103a66004803603602081101561058457600080fd5b5035611312565b34801561059757600080fd5b506103a66113c9565b3480156105ac57600080fd5b506103a6600480360360208110156105c357600080fd5b50356001600160a01b03166113cf565b3480156105df57600080fd5b506103a66113ea565b3480156105f457600080fd5b506103a66004803603602081101561060b57600080fd5b5035611494565b34801561061e57600080fd5b506103a66114a5565b34801561063357600080fd5b506102c56114ab565b34801561064857600080fd5b506103a66004803603602081101561065f57600080fd5b50356001600160a01b0316611503565b34801561067b57600080fd5b5061038f600480360360c081101561069257600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156106cd57600080fd5b8201836020820111156106df57600080fd5b8035906020019184600183028401116401000000008311171561070157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561075457600080fd5b82018360208201111561076657600080fd5b8035906020019184600183028401116401000000008311171561078857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506115769050565b3480156107da57600080fd5b506103a661175d565b3480156107ef57600080fd5b506103736004803603604081101561080657600080fd5b506001600160a01b038135169060200135611ba3565b34801561082857600080fd5b506103a6611c13565b61038f6004803603604081101561084757600080fd5b506001600160a01b0381358116916020013516611c19565b34801561086b57600080fd5b506103a6611c6d565b34801561088057600080fd5b506103a66004803603606081101561089757600080fd5b506001600160a01b03813581169160208101359091169060400135611d0c565b3480156108c357600080fd5b506103a6600480360360208110156108da57600080fd5b50356001600160a01b0316611d7c565b3480156108f657600080fd5b506103a6611e49565b34801561090b57600080fd5b506109326004803603602081101561092257600080fd5b50356001600160a01b0316611ef9565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561096457600080fd5b506103a66004803603602081101561097b57600080fd5b5035612005565b34801561098e57600080fd5b506103a6600480360360208110156109a557600080fd5b5035612010565b3480156109b857600080fd5b506103a6600480360360408110156109cf57600080fd5b506001600160a01b038135811691602001351661201b565b61038f600480360360208110156109fd57600080fd5b50356001600160a01b0316612046565b348015610a1957600080fd5b506103a6612077565b348015610a2e57600080fd5b506103a660048036036020811015610a4557600080fd5b50356001600160a01b03166121b4565b348015610a6157600080fd5b5061046d61220b565b348015610a7657600080fd5b5061046d61221a565b348015610a8b57600080fd5b506103a661222e565b348015610aa057600080fd5b506103a660048036036020811015610ab757600080fd5b5035612292565b348015610aca57600080fd5b50610373612334565b60008054819060ff16610b19576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155610b2b61175d565b90508015610b6e576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b610b783385612339565b92509250506000805460ff191660011790559092909150565b81610b9b57610d8d565b606081516005016040519080825280601f01601f191660200182016040528015610bcc576020820181803883390190505b50905060005b8251811015610c1d57828181518110610be757fe5b602001015160f81c60f81b828281518110610bfe57fe5b60200101906001600160f81b031916908160001a905350600101610bd2565b8151600160fd1b90839083908110610c3157fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610c5c57fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610c8c57fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610cbc57fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610ce757fe5b60200101906001600160f81b031916908160001a905350818415610d895760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d4e578181015183820152602001610d36565b50505050905090810190601f168015610d7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e165780601f10610deb57610100808354040283529160200191610e16565b820191906000526020600020905b815481529060010190602001808311610df957829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060019392505050565b6000610e9434610ad3565b509050610ec4816040518060400160405280600b81526020016a1352539517d1905253115160aa1b815250610b91565b50565b60085481565b6000805460ff16610f11576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155610f2361175d565b14610f63576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b610f6c82611503565b90506000805460ff19166001179055919050565b600d5481565b6000806000610f936127ab565b90925090506000826003811115610fa657fe5b14610ff8576040805162461bcd60e51b815260206004820152601f60248201527f4d4154485f4552524f525f45584348414e47455f524154455f534f5452454400604482015290519081900360640190fd5b9150505b90565b6000805460ff16611043576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155611059338686866128b9565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b60006110926152cf565b60405180602001604052806110a5611e49565b90526001600160a01b0384166000908152600e60205260408120549192509081906110d1908490612c4b565b909250905060008260038111156110e457fe5b146111205760405162461bcd60e51b81526004018080602001828103825260248152602001806155fd6024913960400191505060405180910390fd5b949350505050565b6000611132612c9e565b905090565b60035460009061010090046001600160a01b0316331461119e576040805162461bcd60e51b815260206004820152601b60248201527f5345545f434f4d5054524f4c4c45525f4f574e45525f434845434b0000000000604482015290519081900360640190fd5b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b1580156111e357600080fd5b505afa1580156111f7573d6000803e3d6000fd5b505050506040513d602081101561120d57600080fd5b5051611254576040805162461bcd60e51b815260206004820152601160248201527024a9a727aa2fa1a7a6a82a2927a62622a960791b604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b60006112cb34612cca565b509050610ec48160405180604001604052806013815260200172149154105657d093d49493d5d7d19052531151606a1b815250610b91565b6005546001600160a01b031681565b6000805460ff16611356576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff1916815561136861175d565b905080156113ab576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6113b483612d70565b9150506000805460ff19166001179055919050565b60095481565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff1661142e576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff1916815561144061175d565b14611480576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b600061149f82612f9b565b92915050565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e165780601f10610deb57610100808354040283529160200191610e16565b600080600061151184613040565b9092509050600082600381111561152457fe5b146112b3576040805162461bcd60e51b815260206004820181905260248201527f4d4154485f4552524f525f424f52524f575f42414c414e43455f53544f524544604482015290519081900360640190fd5b60035461010090046001600160a01b031633146115c45760405162461bcd60e51b815260040180806020018281038252602481526020018061546b6024913960400191505060405180910390fd5b6009541580156115d45750600a54155b61160f5760405162461bcd60e51b81526004018080602001828103825260238152602001806154af6023913960400191505060405180910390fd5b6007849055836116505760405162461bcd60e51b815260040180806020018281038252603081526020018061555c6030913960400191505060405180910390fd5b600061165b87611137565b905080156116b0576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b6116b8613158565b600955670de0b6b3a7640000600a556116d08661315c565b9050801561170f5760405162461bcd60e51b81526004018080602001828103825260228152602001806155b06022913960400191505060405180910390fd5b83516117229060019060208701906152e2565b5082516117369060029060208601906152e2565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080611768613158565b6009549091508082141561178157600092505050610ffc565b600061178b612c9e565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b1580156117f957600080fd5b505afa15801561180d573d6000803e3d6000fd5b505050506040513d602081101561182357600080fd5b5051905065048c27395000811115611882576040805162461bcd60e51b815260206004820152601960248201527f424f52524f575f524154455f4142535552444c595f4849474800000000000000604482015290519081900360640190fd5b60008061188f898961332b565b909250905060008260038111156118a257fe5b146118f4576040805162461bcd60e51b815260206004820152601b60248201527f43414e4e4f545f43414c554c4154455f424c4f434b5f44454c54410000000000604482015290519081900360640190fd5b6118fc6152cf565b60008060008061191a60405180602001604052808a8152508761334e565b9097509450600087600381111561192d57fe5b146119695760405162461bcd60e51b815260040180806020018281038252602181526020018061553b6021913960400191505060405180910390fd5b611973858c612c4b565b9097509350600087600381111561198657fe5b146119d8576040805162461bcd60e51b815260206004820152601f60248201527f4d4154485f4552524f525f494e5445524553545f414343554d554c4154454400604482015290519081900360640190fd5b6119e2848c6133b6565b909750925060008760038111156119f557fe5b14611a47576040805162461bcd60e51b815260206004820152601760248201527f4d4154485f4552524f525f544f54414c5f424f52524f57000000000000000000604482015290519081900360640190fd5b611a626040518060200160405280600854815250858c6133dc565b90975091506000876003811115611a7557fe5b14611ac3576040805162461bcd60e51b81526020600482015260196024820152784d4154485f4552524f525f544f54414c5f524553455256455360381b604482015290519081900360640190fd5b611ace858a8b6133dc565b90975090506000876003811115611ae157fe5b14611b33576040805162461bcd60e51b815260206004820152601760248201527f4d4154485f4552524f525f424f52524f575f494e444558000000000000000000604482015290519081900360640190fd5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611be7576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155611bfd333386866128b9565b1490506000805460ff1916600117905592915050565b600a5481565b6000611c26833484613438565b509050611c68816040518060400160405280601d81526020017f4c4951554944415445424f52524f575f424548414c465f4641494c4544000000815250610b91565b505050565b6006546000906001600160a01b031663b8168816611c89612c9e565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611cdb57600080fd5b505afa158015611cef573d6000803e3d6000fd5b505050506040513d6020811015611d0557600080fd5b5051905090565b6000805460ff16611d50576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19169055611d66338585856135a1565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611de3576040805162461bcd60e51b815260206004820152601d60248201527f5345545f50454e44494e475f41444d494e5f4f574e45525f434845434b000000604482015290519081900360640190fd5b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a160006112b3565b6000805460ff16611e8d576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155611e9f61175d565b14611edf576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b611ee7610f86565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611f2489613040565b935090506000816003811115611f3657fe5b14611f88576040805162461bcd60e51b815260206004820152601960248201527f4d4154485f4552524f525f424f52524f575f42414c414e434500000000000000604482015290519081900360640190fd5b611f906127ab565b925090506000816003811115611fa257fe5b14611ff4576040805162461bcd60e51b815260206004820152601760248201527f4d4154485f4552524f525f45584348414e474552415445000000000000000000604482015290519081900360640190fd5b506000989297509095509350915050565b600061149f8261384d565b600061149f826138f0565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b60006120528234613995565b509050610d8d8160405180606001604052806021815260200161567460219139610b91565b6004546000906001600160a01b03163314801561209357503315155b6120e4576040805162461bcd60e51b815260206004820181905260248201527f4143434550545f41444d494e5f50454e44494e475f41444d494e5f434845434b604482015290519081900360640190fd5b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6000806121bf61175d565b90508015612202576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6112b38361315c565b6006546001600160a01b031681565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f2405361224a612c9e565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611cdb57600080fd5b6000805460ff166122d6576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff191681556122e861175d565b9050801561232b576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6113b483613a56565b600181565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b15801561239a57600080fd5b505af11580156123ae573d6000803e3d6000fd5b505050506040513d60208110156123c457600080fd5b50519050801561241b576040805162461bcd60e51b815260206004820152601a60248201527f4d494e545f434f4d5054524f4c4c45525f52454a454354494f4e000000000000604482015290519081900360640190fd5b612423613158565b60095414612466576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b61246e615360565b6124766127ab565b604083018190526020830182600381111561248d57fe5b600381111561249857fe5b90525060009050816020015160038111156124af57fe5b146124fc576040805162461bcd60e51b81526020600482015260186024820152774d4154485f4552524f525f45584348414e47455f5241544560401b604482015290519081900360640190fd5b6125068686613baf565b60c08201819052604080516020810182529083015181526125279190613c4b565b606083018190526020830182600381111561253e57fe5b600381111561254957fe5b905250600090508160200151600381111561256057fe5b146125ab576040805162461bcd60e51b81526020600482015260166024820152754d4154485f4552524f525f4d494e545f544f4b454e5360501b604482015290519081900360640190fd5b6125bb600d5482606001516133b6565b60808301819052602083018260038111156125d257fe5b60038111156125dd57fe5b90525060009050816020015160038111156125f457fe5b14612640576040805162461bcd60e51b81526020600482015260176024820152764d4154485f4552524f525f544f54414c5f535550504c5960481b604482015290519081900360640190fd5b6001600160a01b0386166000908152600e6020526040902054606082015161266891906133b6565b60a083018190526020830182600381111561267f57fe5b600381111561268a57fe5b90525060009050816020015160038111156126a157fe5b146126ef576040805162461bcd60e51b81526020600482015260196024820152784d4154485f4552524f525f4143434f554e545f544f4b454e5360381b604482015290519081900360640190fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206156218339815191529181900360200190a360c00151600093509150505b9250929050565b600d546000908190806127c6575050600754600091506128b5565b60006127d0612c9e565b905060006127dc6152cf565b60006127ed84600b54600c54613c62565b9350905060008160038111156127ff57fe5b1461283b5760405162461bcd60e51b815260040180806020018281038252602b8152602001806155d2602b913960400191505060405180910390fd5b6128458386613ca0565b92509050600081600381111561285757fe5b146128a4576040805162461bcd60e51b81526020600482015260186024820152774d4154485f4552524f525f45584348414e47455f5241544560401b604482015290519081900360640190fd5b50516000955093506128b592505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b15801561291e57600080fd5b505af1158015612932573d6000803e3d6000fd5b505050506040513d602081101561294857600080fd5b50519050801561299f576040805162461bcd60e51b815260206004820152601e60248201527f5452414e534645525f434f4d5054524f4c4c45525f52454a454354494f4e0000604482015290519081900360640190fd5b836001600160a01b0316856001600160a01b031614156129f6576040805162461bcd60e51b815260206004820152600d60248201526c115455505317d4d490d7d114d5609a1b604482015290519081900360640190fd5b60006001600160a01b038781169087161415612a155750600019612a3d565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b600080600080612a4d858961332b565b90945092506000846003811115612a6057fe5b14612aa9576040805162461bcd60e51b81526020600482015260146024820152734d4154485f4552524f525f414c4c4f57414e434560601b604482015290519081900360640190fd5b6001600160a01b038a166000908152600e6020526040902054612acc908961332b565b90945091506000846003811115612adf57fe5b14612b29576040805162461bcd60e51b81526020600482015260156024820152744d4154485f4552524f525f5352435f544f4b454e5360581b604482015290519081900360640190fd5b6001600160a01b0389166000908152600e6020526040902054612b4c90896133b6565b90945090506000846003811115612b5f57fe5b14612ba9576040805162461bcd60e51b81526020600482015260156024820152744d4154485f4552524f525f4453545f544f4b454e5360581b604482015290519081900360640190fd5b6001600160a01b03808b166000908152600e6020526040808220859055918b168152208190556000198514612c01576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206156218339815191528a6040518082815260200191505060405180910390a360009b9a5050505050505050505050565b6000806000612c586152cf565b612c62868661334e565b90925090506000826003811115612c7557fe5b14612c8657509150600090506127a4565b6000612c9182613d50565b9350935050509250929050565b6000806000612cad473461332b565b90925090506000826003811115612cc057fe5b14610ff857600080fd5b60008054819060ff16612d10576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155612d2261175d565b90508015612d65576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b610b78333386613d5f565b600354600090819061010090046001600160a01b03163314612dd9576040805162461bcd60e51b815260206004820152601b60248201527f5245445543455f52455345525645535f41444d494e5f434845434b0000000000604482015290519081900360640190fd5b612de1613158565b60095414612e24576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b82612e2d612c9e565b1015612e74576040805162461bcd60e51b81526020600482015260116024820152700929ca6aa8c8c9286928a9ca8be8682a69607b1b604482015290519081900360640190fd5b600c54831115612ecb576040805162461bcd60e51b815260206004820152601b60248201527f494e53554646494349454e545f544f54414c5f52455345525645530000000000604482015290519081900360640190fd5b50600c5482810390811115612f23576040805162461bcd60e51b81526020600482015260196024820152784d4154485f4552524f525f544f54414c5f524553455256455360381b604482015290519081900360640190fd5b600c819055600354612f439061010090046001600160a01b031684614158565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a160006112b3565b6000805460ff16612fdf576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155612ff161175d565b90508015613034576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6113b43360008561418e565b6001600160a01b03811660009081526010602052604081208054829182918291829161307757506000945084935061315392505050565b6130878160000154600a546147f2565b9094509250600084600381111561309a57fe5b146130ec576040805162461bcd60e51b815260206004820181905260248201527f4d4154485f4552524f525f5052494e434950414c5f54494d45535f494e444558604482015290519081900360640190fd5b6130fa838260010154614831565b9094509150600084600381111561310d57fe5b146131495760405162461bcd60e51b815260040180806020018281038252602481526020018061558c6024913960400191505060405180910390fd5b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b031633146131af5760405162461bcd60e51b81526004018080602001828103825260238152602001806154286023913960400191505060405180910390fd5b6131b7613158565b600954146131fa576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561324b57600080fd5b505afa15801561325f573d6000803e3d6000fd5b505050506040513d602081101561327557600080fd5b50516132c8576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a160006112b3565b6000808383116133425750600090508183036127a4565b506003905060006127a4565b60006133586152cf565b6000806133698660000151866147f2565b9092509050600082600381111561337c57fe5b1461339b575060408051602081019091526000815290925090506127a4565b60408051602081019091529081526000969095509350505050565b6000808383018481106133ce576000925090506127a4565b5060029150600090506127a4565b60008060006133e96152cf565b6133f3878761334e565b9092509050600082600381111561340657fe5b146134175750915060009050613430565b61342961342382613d50565b866133b6565b9350935050505b935093915050565b60008054819060ff1661347e576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff1916815561349061175d565b905080156134d3576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561350e57600080fd5b505af1158015613522573d6000803e3d6000fd5b505050506040513d602081101561353857600080fd5b5051905080156135795760405162461bcd60e51b81526004018080602001828103825260218152602001806154d26021913960400191505060405180910390fd5b6135853387878761485c565b92509250506000805460ff191660011790559094909350915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b15801561360e57600080fd5b505af1158015613622573d6000803e3d6000fd5b505050506040513d602081101561363857600080fd5b5051905080156136795760405162461bcd60e51b81526004018080602001828103825260258152602001806155166025913960400191505060405180910390fd5b846001600160a01b0316846001600160a01b031614156136dc576040805162461bcd60e51b815260206004820152601960248201527822a8aaa0a62fa127a92927aba2a92fa624a8aaa4a220aa27a960391b604482015290519081900360640190fd5b6001600160a01b0384166000908152600e602052604081205481908190613703908761332b565b9093509150600083600381111561371657fe5b14613768576040805162461bcd60e51b815260206004820152601a60248201527f4d4154485f4552524f525f424f52524f5745525f544f4b454e53000000000000604482015290519081900360640190fd5b6001600160a01b0388166000908152600e602052604090205461378b90876133b6565b9093509050600083600381111561379e57fe5b146137f0576040805162461bcd60e51b815260206004820152601c60248201527f4d4154485f4552524f525f4c495155494441544f525f544f4b454e5300000000604482015290519081900360640190fd5b6001600160a01b038088166000818152600e60209081526040808320879055938c168083529184902085905583518a815293519193600080516020615621833981519152929081900390910190a360009998505050505050505050565b6000805460ff16613891576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff191681556138a361175d565b905080156138e6576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6113b43384614eae565b6000805460ff16613934576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff1916815561394661175d565b90508015613989576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6113b43384600061418e565b60008054819060ff166139db576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff191681556139ed61175d565b90508015613a30576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b613a3b338686613d5f565b92509250506000805460ff1916600117905590939092509050565b60035460009061010090046001600160a01b03163314613abd576040805162461bcd60e51b815260206004820152601e60248201527f5345545f524553455256455f464143544f525f41444d494e5f434845434b0000604482015290519081900360640190fd5b613ac5613158565b60095414613b08576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b670de0b6b3a7640000821115613b65576040805162461bcd60e51b815260206004820152601f60248201527f5345545f524553455256455f464143544f525f424f554e44535f434845434b00604482015290519081900360640190fd5b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a160006112b3565b6000336001600160a01b03841614613c00576040805162461bcd60e51b815260206004820152600f60248201526e0a68a9c888aa4be9a92a69a82a8869608b1b604482015290519081900360640190fd5b813414613c45576040805162461bcd60e51b815260206004820152600e60248201526d0ac8298aa8abe9a92a69a82a886960931b604482015290519081900360640190fd5b50919050565b6000806000613c586152cf565b612c628686615270565b600080600080613c7287876133b6565b90925090506000826003811115613c8557fe5b14613c965750915060009050613430565b613429818661332b565b6000613caa6152cf565b600080613cbf86670de0b6b3a76400006147f2565b90925090506000826003811115613cd257fe5b14613cf1575060408051602081019091526000815290925090506127a4565b600080613cfe8388614831565b90925090506000826003811115613d1157fe5b14613d33575060408051602081019091526000815290945092506127a4915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b158015613dc857600080fd5b505af1158015613ddc573d6000803e3d6000fd5b505050506040513d6020811015613df257600080fd5b505190508015613e49576040805162461bcd60e51b815260206004820152601c60248201527f424f52524f575f434f4d5054524f4c4c45525f52454a454354494f4e00000000604482015290519081900360640190fd5b613e51613158565b60095414613e94576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b613e9c61539e565b6001600160a01b0386166000908152601060205260409020600101546060820152613ec686613040565b6080830181905260208301826003811115613edd57fe5b6003811115613ee857fe5b9052506000905081602001516003811115613eff57fe5b14613f4e576040805162461bcd60e51b815260206004820152601a6024820152794d4154485f4552524f525f4143434f554e545f424f52524f575360301b604482015290519081900360640190fd5b600019851415613f675760808101516040820152613f6f565b604081018590525b613f7d878260400151613baf565b60e082018190526080820151613f929161332b565b60a0830181905260208301826003811115613fa957fe5b6003811115613fb457fe5b9052506000905081602001516003811115613fcb57fe5b1461401a576040805162461bcd60e51b815260206004820152601a6024820152794d4154485f4552524f525f4143434f554e545f424f52524f575360301b604482015290519081900360640190fd5b61402a600b548260e0015161332b565b60c083018190526020830182600381111561404157fe5b600381111561404c57fe5b905250600090508160200151600381111561406357fe5b146140b0576040805162461bcd60e51b81526020600482015260186024820152774d4154485f4552524f525f544f54414c5f424f52524f575360401b604482015290519081900360640190fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611c68573d6000803e3d6000fd5b600082158061419b575081155b6141e1576040805162461bcd60e51b8152602060048201526012602482015271494e5055545f414c4c5f4e4f545f5a45524f60701b604482015290519081900360640190fd5b6141e9615360565b6141f16127ab565b604083018190526020830182600381111561420857fe5b600381111561421357fe5b905250600090508160200151600381111561422a57fe5b14614277576040805162461bcd60e51b81526020600482015260186024820152774d4154485f4552524f525f45584348414e47455f5241544560401b604482015290519081900360640190fd5b831561432e57606081018490526040805160208101825290820151815261429e9085612c4b565b60808301819052602083018260038111156142b557fe5b60038111156142c057fe5b90525060009050816020015160038111156142d757fe5b14614329576040805162461bcd60e51b815260206004820152601860248201527f4d4154485f4552524f525f52454445454d5f414d4f554e540000000000000000604482015290519081900360640190fd5b6143dd565b61434a8360405180602001604052808460400151815250613c4b565b606083018190526020830182600381111561436157fe5b600381111561436c57fe5b905250600090508160200151600381111561438357fe5b146143d5576040805162461bcd60e51b815260206004820152601860248201527f4d4154485f4552524f525f52454445454d5f544f4b454e530000000000000000604482015290519081900360640190fd5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b15801561444257600080fd5b505af1158015614456573d6000803e3d6000fd5b505050506040513d602081101561446c57600080fd5b5051905080156144c3576040805162461bcd60e51b815260206004820152601c60248201527f52454445454d5f434f4d5054524f4c4c45525f52454a454354494f4e00000000604482015290519081900360640190fd5b6144cb613158565b6009541461450e576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b61451e600d54836060015161332b565b60a084018190526020840182600381111561453557fe5b600381111561454057fe5b905250600090508260200151600381111561455757fe5b146145a3576040805162461bcd60e51b81526020600482015260176024820152764d4154485f4552524f525f544f54414c5f535550504c5960481b604482015290519081900360640190fd5b6001600160a01b0386166000908152600e602052604090205460608301516145cb919061332b565b60c08401819052602084018260038111156145e257fe5b60038111156145ed57fe5b905250600090508260200151600381111561460457fe5b14614652576040805162461bcd60e51b81526020600482015260196024820152784d4154485f4552524f525f4143434f554e545f544f4b454e5360381b604482015290519081900360640190fd5b816080015161465f612c9e565b10156146a6576040805162461bcd60e51b81526020600482015260116024820152700929ca6aa8c8c9286928a9ca8be8682a69607b1b604482015290519081900360640190fd5b6146b4868360800151614158565b60a0820151600d5560c08201516001600160a01b0387166000818152600e6020908152604091829020939093556060850151815190815290513093600080516020615621833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b1580156147c757600080fd5b505af11580156147db573d6000803e3d6000fd5b50600092506147e8915050565b9695505050505050565b60008083614805575060009050806127a4565b8383028385828161481257fe5b0414614826575060029150600090506127a4565b6000925090506127a4565b6000808261484557506001905060006127a4565b600083858161485057fe5b04915091509250929050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b1580156148cd57600080fd5b505af11580156148e1573d6000803e3d6000fd5b505050506040513d60208110156148f757600080fd5b50519050801561494e576040805162461bcd60e51b815260206004820152601f60248201527f4c49515549444154455f434f4d5054524f4c4c45525f52454a454354494f4e00604482015290519081900360640190fd5b614956613158565b60095414614999576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b6149a1613158565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b1580156149da57600080fd5b505afa1580156149ee573d6000803e3d6000fd5b505050506040513d6020811015614a0457600080fd5b505114614a58576040805162461bcd60e51b815260206004820181905260248201527f434f4c4c41544552414c5f4e4f545f455155414c5f424c4f434b4e554d424552604482015290519081900360640190fd5b866001600160a01b0316866001600160a01b03161415614abb576040805162461bcd60e51b815260206004820152601960248201527822a8aaa0a62fa127a92927aba2a92fa624a8aaa4a220aa27a960391b604482015290519081900360640190fd5b84614b04576040805162461bcd60e51b815260206004820152601460248201527352455041595f414d4f554e545f49535f5a45524f60601b604482015290519081900360640190fd5b600019851415614b52576040805162461bcd60e51b81526020600482015260146024820152731253959053125117d49154105657d05353d5539560621b604482015290519081900360640190fd5b600080614b60898989613d5f565b90925090508115614ba25760405162461bcd60e51b81526004018080602001828103825260238152602001806154f36023913960400191505060405180910390fd5b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b158015614bfc57600080fd5b505afa158015614c10573d6000803e3d6000fd5b505050506040513d6040811015614c2657600080fd5b50805160209091015190925090508115614c715760405162461bcd60e51b81526004018080602001828103825260338152602001806156416033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015614cc857600080fd5b505afa158015614cdc573d6000803e3d6000fd5b505050506040513d6020811015614cf257600080fd5b50511015614d47576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b038916301415614d6d57614d66308d8d856135a1565b9050614df7565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b158015614dc857600080fd5b505af1158015614ddc573d6000803e3d6000fd5b505050506040513d6020811015614df257600080fd5b505190505b8015614e41576040805162461bcd60e51b81526020600482015260146024820152731513d2d15397d4d1525695549157d1905253115160621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a160009c939b50929950505050505050505050565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b158015614f0b57600080fd5b505af1158015614f1f573d6000803e3d6000fd5b505050506040513d6020811015614f3557600080fd5b505190508015614f8c576040805162461bcd60e51b815260206004820152601c60248201527f424f52524f575f434f4d5054524f4c4c45525f52454a454354494f4e00000000604482015290519081900360640190fd5b614f94613158565b60095414614fd7576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b82614fe0612c9e565b1015615027576040805162461bcd60e51b81526020600482015260116024820152700929ca6aa8c8c9286928a9ca8be8682a69607b1b604482015290519081900360640190fd5b61502f6153e4565b61503885613040565b602083018190528282600381111561504c57fe5b600381111561505757fe5b905250600090508151600381111561506b57fe5b146150ba576040805162461bcd60e51b815260206004820152601a6024820152794d4154485f4552524f525f4143434f554e545f424f52524f575360301b604482015290519081900360640190fd5b6150c88160200151856133b6565b60408301819052828260038111156150dc57fe5b60038111156150e757fe5b90525060009050815160038111156150fb57fe5b1461514d576040805162461bcd60e51b815260206004820152601e60248201527f4d4154485f4552524f525f4143434f554e545f424f52524f57535f4e45570000604482015290519081900360640190fd5b615159600b54856133b6565b606083018190528282600381111561516d57fe5b600381111561517857fe5b905250600090508151600381111561518c57fe5b146151d9576040805162461bcd60e51b81526020600482015260186024820152774d4154485f4552524f525f544f54414c5f424f52524f575360401b604482015290519081900360640190fd5b6151e38585614158565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b600061527a6152cf565b60008061528f670de0b6b3a7640000876147f2565b909250905060008260038111156152a257fe5b146152c1575060408051602081019091526000815290925090506127a4565b612c91818660000151613ca0565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061532357805160ff1916838001178555615350565b82800160010185558215615350579182015b82811115615350578251825591602001919060010190615335565b5061535c92915061540d565b5090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610ffc91905b8082111561535c576000815560010161541356fe5345545f494e5445524553545f524154455f4d4f44454c5f4f574e45525f434845434b4e4f545f455155414c5f424c4f434b4e554d42455200000000000000000000006f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65744143435255455f494e5445524553545f4641494c4544000000000000000000006d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e636543414c4c41544552414c5f4143435255455f494e5445524553545f4641494c45444c49515549444154455f52455041595f424f52524f575f46524553485f4641494c45444c49515549444154455f5345495a455f434f4d5054524f4c4c45525f52454a454354494f4e4d4154485f4552524f525f53494d504c455f494e5445524553545f464143544f52696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e4d4154485f4552524f525f5052494e434950414c5f54494d45535f494e4445585f44495673657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d4154485f4552524f525f434153485f504c55535f424f52524f57535f4d494e55535f5245534552564553554e4445524c59494e475f42414c414e43455f43414e4e4f545f43414c43554c41544544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454452455041595f424f52524f575f424548414c465f4641494c4544206661696c6564a265627a7a72315820820ad966a46c8671796e73d10694d54622656a7986d38c7c1627b7ccf3eb5ba364736f6c634300051000325345545f494e5445524553545f524154455f4d4f44454c5f4f574e45525f434845434b6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c6564000000000000000000000000ce0efbf9fe365ab3271f7e9cd87f305703383da80000000000000000000000003f5d9cd7d2f23264eef944526b68bfcb69fddc5c000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000080000000000000000000000001dd1fb688200be97d312399ece57cda7fdaa5aab000000000000000000000000000000000000000000000000000000000000000f417263686942616e6b204574686572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056162455448000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806395d89b411161014f578063c37f68e2116100c1578063f2b3abbd1161007a578063f2b3abbd14610a22578063f3fdb15a14610a55578063f851a44014610a6a578063f8f9da2814610a7f578063fca7820b14610a94578063fe9c44ae14610abe57610272565b8063c37f68e2146108ff578063c5ebeaec14610958578063db006a7514610982578063dd62ed3e146109ac578063e5974619146109e7578063e9c714f214610a0d57610272565b8063aa5af0fd11610113578063aa5af0fd1461081c578063aae40a2a14610831578063ae9d70b01461085f578063b2a02ff114610874578063b71d1a0c146108b7578063bd6d894d146108ea57610272565b806395d89b411461062757806395dd91931461063c57806399d8c1b41461066f578063a6afed95146107ce578063a9059cbb146107e357610272565b80633b1d21a2116101e8578063601a0bf1116101ac578063601a0bf1146105615780636c540baf1461058b57806370a08231146105a057806373acee98146105d3578063852a12e3146105e85780638f840ddd1461061257610272565b80633b1d21a2146104e75780634576b5db146104fc57806347bd37181461052f5780634e4d9fea146105445780635fe3b5671461054c57610272565b806318160ddd1161023a57806318160ddd146103eb578063182df0f51461040057806323b872dd146104155780632678224714610458578063313ce567146104895780633af9e669146104b457610272565b806306fdde03146102b0578063095ea7b31461033a5780631249c58b14610387578063173b99041461039157806317bfdfbc146103b8575b600061027d34610ad3565b5090506102ad816040518060400160405280600b81526020016a1352539517d1905253115160aa1b815250610b91565b50005b3480156102bc57600080fd5b506102c5610d91565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102ff5781810151838201526020016102e7565b50505050905090810190601f16801561032c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561034657600080fd5b506103736004803603604081101561035d57600080fd5b506001600160a01b038135169060200135610e1e565b604080519115158252519081900360200190f35b61038f610e89565b005b34801561039d57600080fd5b506103a6610ec7565b60408051918252519081900360200190f35b3480156103c457600080fd5b506103a6600480360360208110156103db57600080fd5b50356001600160a01b0316610ecd565b3480156103f757600080fd5b506103a6610f80565b34801561040c57600080fd5b506103a6610f86565b34801561042157600080fd5b506103736004803603606081101561043857600080fd5b506001600160a01b03813581169160208101359091169060400135610fff565b34801561046457600080fd5b5061046d611070565b604080516001600160a01b039092168252519081900360200190f35b34801561049557600080fd5b5061049e61107f565b6040805160ff9092168252519081900360200190f35b3480156104c057600080fd5b506103a6600480360360208110156104d757600080fd5b50356001600160a01b0316611088565b3480156104f357600080fd5b506103a6611128565b34801561050857600080fd5b506103a66004803603602081101561051f57600080fd5b50356001600160a01b0316611137565b34801561053b57600080fd5b506103a66112ba565b61038f6112c0565b34801561055857600080fd5b5061046d611303565b34801561056d57600080fd5b506103a66004803603602081101561058457600080fd5b5035611312565b34801561059757600080fd5b506103a66113c9565b3480156105ac57600080fd5b506103a6600480360360208110156105c357600080fd5b50356001600160a01b03166113cf565b3480156105df57600080fd5b506103a66113ea565b3480156105f457600080fd5b506103a66004803603602081101561060b57600080fd5b5035611494565b34801561061e57600080fd5b506103a66114a5565b34801561063357600080fd5b506102c56114ab565b34801561064857600080fd5b506103a66004803603602081101561065f57600080fd5b50356001600160a01b0316611503565b34801561067b57600080fd5b5061038f600480360360c081101561069257600080fd5b6001600160a01b038235811692602081013590911691604082013591908101906080810160608201356401000000008111156106cd57600080fd5b8201836020820111156106df57600080fd5b8035906020019184600183028401116401000000008311171561070157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561075457600080fd5b82018360208201111561076657600080fd5b8035906020019184600183028401116401000000008311171561078857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506115769050565b3480156107da57600080fd5b506103a661175d565b3480156107ef57600080fd5b506103736004803603604081101561080657600080fd5b506001600160a01b038135169060200135611ba3565b34801561082857600080fd5b506103a6611c13565b61038f6004803603604081101561084757600080fd5b506001600160a01b0381358116916020013516611c19565b34801561086b57600080fd5b506103a6611c6d565b34801561088057600080fd5b506103a66004803603606081101561089757600080fd5b506001600160a01b03813581169160208101359091169060400135611d0c565b3480156108c357600080fd5b506103a6600480360360208110156108da57600080fd5b50356001600160a01b0316611d7c565b3480156108f657600080fd5b506103a6611e49565b34801561090b57600080fd5b506109326004803603602081101561092257600080fd5b50356001600160a01b0316611ef9565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561096457600080fd5b506103a66004803603602081101561097b57600080fd5b5035612005565b34801561098e57600080fd5b506103a6600480360360208110156109a557600080fd5b5035612010565b3480156109b857600080fd5b506103a6600480360360408110156109cf57600080fd5b506001600160a01b038135811691602001351661201b565b61038f600480360360208110156109fd57600080fd5b50356001600160a01b0316612046565b348015610a1957600080fd5b506103a6612077565b348015610a2e57600080fd5b506103a660048036036020811015610a4557600080fd5b50356001600160a01b03166121b4565b348015610a6157600080fd5b5061046d61220b565b348015610a7657600080fd5b5061046d61221a565b348015610a8b57600080fd5b506103a661222e565b348015610aa057600080fd5b506103a660048036036020811015610ab757600080fd5b5035612292565b348015610aca57600080fd5b50610373612334565b60008054819060ff16610b19576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155610b2b61175d565b90508015610b6e576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b610b783385612339565b92509250506000805460ff191660011790559092909150565b81610b9b57610d8d565b606081516005016040519080825280601f01601f191660200182016040528015610bcc576020820181803883390190505b50905060005b8251811015610c1d57828181518110610be757fe5b602001015160f81c60f81b828281518110610bfe57fe5b60200101906001600160f81b031916908160001a905350600101610bd2565b8151600160fd1b90839083908110610c3157fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610c5c57fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610c8c57fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610cbc57fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610ce757fe5b60200101906001600160f81b031916908160001a905350818415610d895760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d4e578181015183820152602001610d36565b50505050905090810190601f168015610d7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e165780601f10610deb57610100808354040283529160200191610e16565b820191906000526020600020905b815481529060010190602001808311610df957829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060019392505050565b6000610e9434610ad3565b509050610ec4816040518060400160405280600b81526020016a1352539517d1905253115160aa1b815250610b91565b50565b60085481565b6000805460ff16610f11576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155610f2361175d565b14610f63576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b610f6c82611503565b90506000805460ff19166001179055919050565b600d5481565b6000806000610f936127ab565b90925090506000826003811115610fa657fe5b14610ff8576040805162461bcd60e51b815260206004820152601f60248201527f4d4154485f4552524f525f45584348414e47455f524154455f534f5452454400604482015290519081900360640190fd5b9150505b90565b6000805460ff16611043576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155611059338686866128b9565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b60006110926152cf565b60405180602001604052806110a5611e49565b90526001600160a01b0384166000908152600e60205260408120549192509081906110d1908490612c4b565b909250905060008260038111156110e457fe5b146111205760405162461bcd60e51b81526004018080602001828103825260248152602001806155fd6024913960400191505060405180910390fd5b949350505050565b6000611132612c9e565b905090565b60035460009061010090046001600160a01b0316331461119e576040805162461bcd60e51b815260206004820152601b60248201527f5345545f434f4d5054524f4c4c45525f4f574e45525f434845434b0000000000604482015290519081900360640190fd5b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b1580156111e357600080fd5b505afa1580156111f7573d6000803e3d6000fd5b505050506040513d602081101561120d57600080fd5b5051611254576040805162461bcd60e51b815260206004820152601160248201527024a9a727aa2fa1a7a6a82a2927a62622a960791b604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b60006112cb34612cca565b509050610ec48160405180604001604052806013815260200172149154105657d093d49493d5d7d19052531151606a1b815250610b91565b6005546001600160a01b031681565b6000805460ff16611356576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff1916815561136861175d565b905080156113ab576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6113b483612d70565b9150506000805460ff19166001179055919050565b60095481565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff1661142e576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff1916815561144061175d565b14611480576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b600061149f82612f9b565b92915050565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e165780601f10610deb57610100808354040283529160200191610e16565b600080600061151184613040565b9092509050600082600381111561152457fe5b146112b3576040805162461bcd60e51b815260206004820181905260248201527f4d4154485f4552524f525f424f52524f575f42414c414e43455f53544f524544604482015290519081900360640190fd5b60035461010090046001600160a01b031633146115c45760405162461bcd60e51b815260040180806020018281038252602481526020018061546b6024913960400191505060405180910390fd5b6009541580156115d45750600a54155b61160f5760405162461bcd60e51b81526004018080602001828103825260238152602001806154af6023913960400191505060405180910390fd5b6007849055836116505760405162461bcd60e51b815260040180806020018281038252603081526020018061555c6030913960400191505060405180910390fd5b600061165b87611137565b905080156116b0576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b6116b8613158565b600955670de0b6b3a7640000600a556116d08661315c565b9050801561170f5760405162461bcd60e51b81526004018080602001828103825260228152602001806155b06022913960400191505060405180910390fd5b83516117229060019060208701906152e2565b5082516117369060029060208601906152e2565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080611768613158565b6009549091508082141561178157600092505050610ffc565b600061178b612c9e565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b1580156117f957600080fd5b505afa15801561180d573d6000803e3d6000fd5b505050506040513d602081101561182357600080fd5b5051905065048c27395000811115611882576040805162461bcd60e51b815260206004820152601960248201527f424f52524f575f524154455f4142535552444c595f4849474800000000000000604482015290519081900360640190fd5b60008061188f898961332b565b909250905060008260038111156118a257fe5b146118f4576040805162461bcd60e51b815260206004820152601b60248201527f43414e4e4f545f43414c554c4154455f424c4f434b5f44454c54410000000000604482015290519081900360640190fd5b6118fc6152cf565b60008060008061191a60405180602001604052808a8152508761334e565b9097509450600087600381111561192d57fe5b146119695760405162461bcd60e51b815260040180806020018281038252602181526020018061553b6021913960400191505060405180910390fd5b611973858c612c4b565b9097509350600087600381111561198657fe5b146119d8576040805162461bcd60e51b815260206004820152601f60248201527f4d4154485f4552524f525f494e5445524553545f414343554d554c4154454400604482015290519081900360640190fd5b6119e2848c6133b6565b909750925060008760038111156119f557fe5b14611a47576040805162461bcd60e51b815260206004820152601760248201527f4d4154485f4552524f525f544f54414c5f424f52524f57000000000000000000604482015290519081900360640190fd5b611a626040518060200160405280600854815250858c6133dc565b90975091506000876003811115611a7557fe5b14611ac3576040805162461bcd60e51b81526020600482015260196024820152784d4154485f4552524f525f544f54414c5f524553455256455360381b604482015290519081900360640190fd5b611ace858a8b6133dc565b90975090506000876003811115611ae157fe5b14611b33576040805162461bcd60e51b815260206004820152601760248201527f4d4154485f4552524f525f424f52524f575f494e444558000000000000000000604482015290519081900360640190fd5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611be7576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155611bfd333386866128b9565b1490506000805460ff1916600117905592915050565b600a5481565b6000611c26833484613438565b509050611c68816040518060400160405280601d81526020017f4c4951554944415445424f52524f575f424548414c465f4641494c4544000000815250610b91565b505050565b6006546000906001600160a01b031663b8168816611c89612c9e565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611cdb57600080fd5b505afa158015611cef573d6000803e3d6000fd5b505050506040513d6020811015611d0557600080fd5b5051905090565b6000805460ff16611d50576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19169055611d66338585856135a1565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611de3576040805162461bcd60e51b815260206004820152601d60248201527f5345545f50454e44494e475f41444d494e5f4f574e45525f434845434b000000604482015290519081900360640190fd5b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a160006112b3565b6000805460ff16611e8d576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155611e9f61175d565b14611edf576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b611ee7610f86565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611f2489613040565b935090506000816003811115611f3657fe5b14611f88576040805162461bcd60e51b815260206004820152601960248201527f4d4154485f4552524f525f424f52524f575f42414c414e434500000000000000604482015290519081900360640190fd5b611f906127ab565b925090506000816003811115611fa257fe5b14611ff4576040805162461bcd60e51b815260206004820152601760248201527f4d4154485f4552524f525f45584348414e474552415445000000000000000000604482015290519081900360640190fd5b506000989297509095509350915050565b600061149f8261384d565b600061149f826138f0565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b60006120528234613995565b509050610d8d8160405180606001604052806021815260200161567460219139610b91565b6004546000906001600160a01b03163314801561209357503315155b6120e4576040805162461bcd60e51b815260206004820181905260248201527f4143434550545f41444d494e5f50454e44494e475f41444d494e5f434845434b604482015290519081900360640190fd5b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6000806121bf61175d565b90508015612202576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6112b38361315c565b6006546001600160a01b031681565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f2405361224a612c9e565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611cdb57600080fd5b6000805460ff166122d6576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff191681556122e861175d565b9050801561232b576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6113b483613a56565b600181565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b15801561239a57600080fd5b505af11580156123ae573d6000803e3d6000fd5b505050506040513d60208110156123c457600080fd5b50519050801561241b576040805162461bcd60e51b815260206004820152601a60248201527f4d494e545f434f4d5054524f4c4c45525f52454a454354494f4e000000000000604482015290519081900360640190fd5b612423613158565b60095414612466576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b61246e615360565b6124766127ab565b604083018190526020830182600381111561248d57fe5b600381111561249857fe5b90525060009050816020015160038111156124af57fe5b146124fc576040805162461bcd60e51b81526020600482015260186024820152774d4154485f4552524f525f45584348414e47455f5241544560401b604482015290519081900360640190fd5b6125068686613baf565b60c08201819052604080516020810182529083015181526125279190613c4b565b606083018190526020830182600381111561253e57fe5b600381111561254957fe5b905250600090508160200151600381111561256057fe5b146125ab576040805162461bcd60e51b81526020600482015260166024820152754d4154485f4552524f525f4d494e545f544f4b454e5360501b604482015290519081900360640190fd5b6125bb600d5482606001516133b6565b60808301819052602083018260038111156125d257fe5b60038111156125dd57fe5b90525060009050816020015160038111156125f457fe5b14612640576040805162461bcd60e51b81526020600482015260176024820152764d4154485f4552524f525f544f54414c5f535550504c5960481b604482015290519081900360640190fd5b6001600160a01b0386166000908152600e6020526040902054606082015161266891906133b6565b60a083018190526020830182600381111561267f57fe5b600381111561268a57fe5b90525060009050816020015160038111156126a157fe5b146126ef576040805162461bcd60e51b81526020600482015260196024820152784d4154485f4552524f525f4143434f554e545f544f4b454e5360381b604482015290519081900360640190fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206156218339815191529181900360200190a360c00151600093509150505b9250929050565b600d546000908190806127c6575050600754600091506128b5565b60006127d0612c9e565b905060006127dc6152cf565b60006127ed84600b54600c54613c62565b9350905060008160038111156127ff57fe5b1461283b5760405162461bcd60e51b815260040180806020018281038252602b8152602001806155d2602b913960400191505060405180910390fd5b6128458386613ca0565b92509050600081600381111561285757fe5b146128a4576040805162461bcd60e51b81526020600482015260186024820152774d4154485f4552524f525f45584348414e47455f5241544560401b604482015290519081900360640190fd5b50516000955093506128b592505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b15801561291e57600080fd5b505af1158015612932573d6000803e3d6000fd5b505050506040513d602081101561294857600080fd5b50519050801561299f576040805162461bcd60e51b815260206004820152601e60248201527f5452414e534645525f434f4d5054524f4c4c45525f52454a454354494f4e0000604482015290519081900360640190fd5b836001600160a01b0316856001600160a01b031614156129f6576040805162461bcd60e51b815260206004820152600d60248201526c115455505317d4d490d7d114d5609a1b604482015290519081900360640190fd5b60006001600160a01b038781169087161415612a155750600019612a3d565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b600080600080612a4d858961332b565b90945092506000846003811115612a6057fe5b14612aa9576040805162461bcd60e51b81526020600482015260146024820152734d4154485f4552524f525f414c4c4f57414e434560601b604482015290519081900360640190fd5b6001600160a01b038a166000908152600e6020526040902054612acc908961332b565b90945091506000846003811115612adf57fe5b14612b29576040805162461bcd60e51b81526020600482015260156024820152744d4154485f4552524f525f5352435f544f4b454e5360581b604482015290519081900360640190fd5b6001600160a01b0389166000908152600e6020526040902054612b4c90896133b6565b90945090506000846003811115612b5f57fe5b14612ba9576040805162461bcd60e51b81526020600482015260156024820152744d4154485f4552524f525f4453545f544f4b454e5360581b604482015290519081900360640190fd5b6001600160a01b03808b166000908152600e6020526040808220859055918b168152208190556000198514612c01576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206156218339815191528a6040518082815260200191505060405180910390a360009b9a5050505050505050505050565b6000806000612c586152cf565b612c62868661334e565b90925090506000826003811115612c7557fe5b14612c8657509150600090506127a4565b6000612c9182613d50565b9350935050509250929050565b6000806000612cad473461332b565b90925090506000826003811115612cc057fe5b14610ff857600080fd5b60008054819060ff16612d10576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155612d2261175d565b90508015612d65576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b610b78333386613d5f565b600354600090819061010090046001600160a01b03163314612dd9576040805162461bcd60e51b815260206004820152601b60248201527f5245445543455f52455345525645535f41444d494e5f434845434b0000000000604482015290519081900360640190fd5b612de1613158565b60095414612e24576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b82612e2d612c9e565b1015612e74576040805162461bcd60e51b81526020600482015260116024820152700929ca6aa8c8c9286928a9ca8be8682a69607b1b604482015290519081900360640190fd5b600c54831115612ecb576040805162461bcd60e51b815260206004820152601b60248201527f494e53554646494349454e545f544f54414c5f52455345525645530000000000604482015290519081900360640190fd5b50600c5482810390811115612f23576040805162461bcd60e51b81526020600482015260196024820152784d4154485f4552524f525f544f54414c5f524553455256455360381b604482015290519081900360640190fd5b600c819055600354612f439061010090046001600160a01b031684614158565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a160006112b3565b6000805460ff16612fdf576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff19168155612ff161175d565b90508015613034576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6113b43360008561418e565b6001600160a01b03811660009081526010602052604081208054829182918291829161307757506000945084935061315392505050565b6130878160000154600a546147f2565b9094509250600084600381111561309a57fe5b146130ec576040805162461bcd60e51b815260206004820181905260248201527f4d4154485f4552524f525f5052494e434950414c5f54494d45535f494e444558604482015290519081900360640190fd5b6130fa838260010154614831565b9094509150600084600381111561310d57fe5b146131495760405162461bcd60e51b815260040180806020018281038252602481526020018061558c6024913960400191505060405180910390fd5b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b031633146131af5760405162461bcd60e51b81526004018080602001828103825260238152602001806154286023913960400191505060405180910390fd5b6131b7613158565b600954146131fa576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561324b57600080fd5b505afa15801561325f573d6000803e3d6000fd5b505050506040513d602081101561327557600080fd5b50516132c8576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a160006112b3565b6000808383116133425750600090508183036127a4565b506003905060006127a4565b60006133586152cf565b6000806133698660000151866147f2565b9092509050600082600381111561337c57fe5b1461339b575060408051602081019091526000815290925090506127a4565b60408051602081019091529081526000969095509350505050565b6000808383018481106133ce576000925090506127a4565b5060029150600090506127a4565b60008060006133e96152cf565b6133f3878761334e565b9092509050600082600381111561340657fe5b146134175750915060009050613430565b61342961342382613d50565b866133b6565b9350935050505b935093915050565b60008054819060ff1661347e576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff1916815561349061175d565b905080156134d3576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561350e57600080fd5b505af1158015613522573d6000803e3d6000fd5b505050506040513d602081101561353857600080fd5b5051905080156135795760405162461bcd60e51b81526004018080602001828103825260218152602001806154d26021913960400191505060405180910390fd5b6135853387878761485c565b92509250506000805460ff191660011790559094909350915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b15801561360e57600080fd5b505af1158015613622573d6000803e3d6000fd5b505050506040513d602081101561363857600080fd5b5051905080156136795760405162461bcd60e51b81526004018080602001828103825260258152602001806155166025913960400191505060405180910390fd5b846001600160a01b0316846001600160a01b031614156136dc576040805162461bcd60e51b815260206004820152601960248201527822a8aaa0a62fa127a92927aba2a92fa624a8aaa4a220aa27a960391b604482015290519081900360640190fd5b6001600160a01b0384166000908152600e602052604081205481908190613703908761332b565b9093509150600083600381111561371657fe5b14613768576040805162461bcd60e51b815260206004820152601a60248201527f4d4154485f4552524f525f424f52524f5745525f544f4b454e53000000000000604482015290519081900360640190fd5b6001600160a01b0388166000908152600e602052604090205461378b90876133b6565b9093509050600083600381111561379e57fe5b146137f0576040805162461bcd60e51b815260206004820152601c60248201527f4d4154485f4552524f525f4c495155494441544f525f544f4b454e5300000000604482015290519081900360640190fd5b6001600160a01b038088166000818152600e60209081526040808320879055938c168083529184902085905583518a815293519193600080516020615621833981519152929081900390910190a360009998505050505050505050565b6000805460ff16613891576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff191681556138a361175d565b905080156138e6576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6113b43384614eae565b6000805460ff16613934576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff1916815561394661175d565b90508015613989576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b6113b43384600061418e565b60008054819060ff166139db576040805162461bcd60e51b815260206004820152600960248201526814915153951154915160ba1b604482015290519081900360640190fd5b6000805460ff191681556139ed61175d565b90508015613a30576040805162461bcd60e51b8152602060048201526016602482015260008051602061548f833981519152604482015290519081900360640190fd5b613a3b338686613d5f565b92509250506000805460ff1916600117905590939092509050565b60035460009061010090046001600160a01b03163314613abd576040805162461bcd60e51b815260206004820152601e60248201527f5345545f524553455256455f464143544f525f41444d494e5f434845434b0000604482015290519081900360640190fd5b613ac5613158565b60095414613b08576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b670de0b6b3a7640000821115613b65576040805162461bcd60e51b815260206004820152601f60248201527f5345545f524553455256455f464143544f525f424f554e44535f434845434b00604482015290519081900360640190fd5b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a160006112b3565b6000336001600160a01b03841614613c00576040805162461bcd60e51b815260206004820152600f60248201526e0a68a9c888aa4be9a92a69a82a8869608b1b604482015290519081900360640190fd5b813414613c45576040805162461bcd60e51b815260206004820152600e60248201526d0ac8298aa8abe9a92a69a82a886960931b604482015290519081900360640190fd5b50919050565b6000806000613c586152cf565b612c628686615270565b600080600080613c7287876133b6565b90925090506000826003811115613c8557fe5b14613c965750915060009050613430565b613429818661332b565b6000613caa6152cf565b600080613cbf86670de0b6b3a76400006147f2565b90925090506000826003811115613cd257fe5b14613cf1575060408051602081019091526000815290925090506127a4565b600080613cfe8388614831565b90925090506000826003811115613d1157fe5b14613d33575060408051602081019091526000815290945092506127a4915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b158015613dc857600080fd5b505af1158015613ddc573d6000803e3d6000fd5b505050506040513d6020811015613df257600080fd5b505190508015613e49576040805162461bcd60e51b815260206004820152601c60248201527f424f52524f575f434f4d5054524f4c4c45525f52454a454354494f4e00000000604482015290519081900360640190fd5b613e51613158565b60095414613e94576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b613e9c61539e565b6001600160a01b0386166000908152601060205260409020600101546060820152613ec686613040565b6080830181905260208301826003811115613edd57fe5b6003811115613ee857fe5b9052506000905081602001516003811115613eff57fe5b14613f4e576040805162461bcd60e51b815260206004820152601a6024820152794d4154485f4552524f525f4143434f554e545f424f52524f575360301b604482015290519081900360640190fd5b600019851415613f675760808101516040820152613f6f565b604081018590525b613f7d878260400151613baf565b60e082018190526080820151613f929161332b565b60a0830181905260208301826003811115613fa957fe5b6003811115613fb457fe5b9052506000905081602001516003811115613fcb57fe5b1461401a576040805162461bcd60e51b815260206004820152601a6024820152794d4154485f4552524f525f4143434f554e545f424f52524f575360301b604482015290519081900360640190fd5b61402a600b548260e0015161332b565b60c083018190526020830182600381111561404157fe5b600381111561404c57fe5b905250600090508160200151600381111561406357fe5b146140b0576040805162461bcd60e51b81526020600482015260186024820152774d4154485f4552524f525f544f54414c5f424f52524f575360401b604482015290519081900360640190fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611c68573d6000803e3d6000fd5b600082158061419b575081155b6141e1576040805162461bcd60e51b8152602060048201526012602482015271494e5055545f414c4c5f4e4f545f5a45524f60701b604482015290519081900360640190fd5b6141e9615360565b6141f16127ab565b604083018190526020830182600381111561420857fe5b600381111561421357fe5b905250600090508160200151600381111561422a57fe5b14614277576040805162461bcd60e51b81526020600482015260186024820152774d4154485f4552524f525f45584348414e47455f5241544560401b604482015290519081900360640190fd5b831561432e57606081018490526040805160208101825290820151815261429e9085612c4b565b60808301819052602083018260038111156142b557fe5b60038111156142c057fe5b90525060009050816020015160038111156142d757fe5b14614329576040805162461bcd60e51b815260206004820152601860248201527f4d4154485f4552524f525f52454445454d5f414d4f554e540000000000000000604482015290519081900360640190fd5b6143dd565b61434a8360405180602001604052808460400151815250613c4b565b606083018190526020830182600381111561436157fe5b600381111561436c57fe5b905250600090508160200151600381111561438357fe5b146143d5576040805162461bcd60e51b815260206004820152601860248201527f4d4154485f4552524f525f52454445454d5f544f4b454e530000000000000000604482015290519081900360640190fd5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b15801561444257600080fd5b505af1158015614456573d6000803e3d6000fd5b505050506040513d602081101561446c57600080fd5b5051905080156144c3576040805162461bcd60e51b815260206004820152601c60248201527f52454445454d5f434f4d5054524f4c4c45525f52454a454354494f4e00000000604482015290519081900360640190fd5b6144cb613158565b6009541461450e576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b61451e600d54836060015161332b565b60a084018190526020840182600381111561453557fe5b600381111561454057fe5b905250600090508260200151600381111561455757fe5b146145a3576040805162461bcd60e51b81526020600482015260176024820152764d4154485f4552524f525f544f54414c5f535550504c5960481b604482015290519081900360640190fd5b6001600160a01b0386166000908152600e602052604090205460608301516145cb919061332b565b60c08401819052602084018260038111156145e257fe5b60038111156145ed57fe5b905250600090508260200151600381111561460457fe5b14614652576040805162461bcd60e51b81526020600482015260196024820152784d4154485f4552524f525f4143434f554e545f544f4b454e5360381b604482015290519081900360640190fd5b816080015161465f612c9e565b10156146a6576040805162461bcd60e51b81526020600482015260116024820152700929ca6aa8c8c9286928a9ca8be8682a69607b1b604482015290519081900360640190fd5b6146b4868360800151614158565b60a0820151600d5560c08201516001600160a01b0387166000818152600e6020908152604091829020939093556060850151815190815290513093600080516020615621833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b1580156147c757600080fd5b505af11580156147db573d6000803e3d6000fd5b50600092506147e8915050565b9695505050505050565b60008083614805575060009050806127a4565b8383028385828161481257fe5b0414614826575060029150600090506127a4565b6000925090506127a4565b6000808261484557506001905060006127a4565b600083858161485057fe5b04915091509250929050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b1580156148cd57600080fd5b505af11580156148e1573d6000803e3d6000fd5b505050506040513d60208110156148f757600080fd5b50519050801561494e576040805162461bcd60e51b815260206004820152601f60248201527f4c49515549444154455f434f4d5054524f4c4c45525f52454a454354494f4e00604482015290519081900360640190fd5b614956613158565b60095414614999576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b6149a1613158565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b1580156149da57600080fd5b505afa1580156149ee573d6000803e3d6000fd5b505050506040513d6020811015614a0457600080fd5b505114614a58576040805162461bcd60e51b815260206004820181905260248201527f434f4c4c41544552414c5f4e4f545f455155414c5f424c4f434b4e554d424552604482015290519081900360640190fd5b866001600160a01b0316866001600160a01b03161415614abb576040805162461bcd60e51b815260206004820152601960248201527822a8aaa0a62fa127a92927aba2a92fa624a8aaa4a220aa27a960391b604482015290519081900360640190fd5b84614b04576040805162461bcd60e51b815260206004820152601460248201527352455041595f414d4f554e545f49535f5a45524f60601b604482015290519081900360640190fd5b600019851415614b52576040805162461bcd60e51b81526020600482015260146024820152731253959053125117d49154105657d05353d5539560621b604482015290519081900360640190fd5b600080614b60898989613d5f565b90925090508115614ba25760405162461bcd60e51b81526004018080602001828103825260238152602001806154f36023913960400191505060405180910390fd5b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b158015614bfc57600080fd5b505afa158015614c10573d6000803e3d6000fd5b505050506040513d6040811015614c2657600080fd5b50805160209091015190925090508115614c715760405162461bcd60e51b81526004018080602001828103825260338152602001806156416033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015614cc857600080fd5b505afa158015614cdc573d6000803e3d6000fd5b505050506040513d6020811015614cf257600080fd5b50511015614d47576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b038916301415614d6d57614d66308d8d856135a1565b9050614df7565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b158015614dc857600080fd5b505af1158015614ddc573d6000803e3d6000fd5b505050506040513d6020811015614df257600080fd5b505190505b8015614e41576040805162461bcd60e51b81526020600482015260146024820152731513d2d15397d4d1525695549157d1905253115160621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a160009c939b50929950505050505050505050565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b158015614f0b57600080fd5b505af1158015614f1f573d6000803e3d6000fd5b505050506040513d6020811015614f3557600080fd5b505190508015614f8c576040805162461bcd60e51b815260206004820152601c60248201527f424f52524f575f434f4d5054524f4c4c45525f52454a454354494f4e00000000604482015290519081900360640190fd5b614f94613158565b60095414614fd7576040805162461bcd60e51b8152602060048201526015602482015260008051602061544b833981519152604482015290519081900360640190fd5b82614fe0612c9e565b1015615027576040805162461bcd60e51b81526020600482015260116024820152700929ca6aa8c8c9286928a9ca8be8682a69607b1b604482015290519081900360640190fd5b61502f6153e4565b61503885613040565b602083018190528282600381111561504c57fe5b600381111561505757fe5b905250600090508151600381111561506b57fe5b146150ba576040805162461bcd60e51b815260206004820152601a6024820152794d4154485f4552524f525f4143434f554e545f424f52524f575360301b604482015290519081900360640190fd5b6150c88160200151856133b6565b60408301819052828260038111156150dc57fe5b60038111156150e757fe5b90525060009050815160038111156150fb57fe5b1461514d576040805162461bcd60e51b815260206004820152601e60248201527f4d4154485f4552524f525f4143434f554e545f424f52524f57535f4e45570000604482015290519081900360640190fd5b615159600b54856133b6565b606083018190528282600381111561516d57fe5b600381111561517857fe5b905250600090508151600381111561518c57fe5b146151d9576040805162461bcd60e51b81526020600482015260186024820152774d4154485f4552524f525f544f54414c5f424f52524f575360401b604482015290519081900360640190fd5b6151e38585614158565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b600061527a6152cf565b60008061528f670de0b6b3a7640000876147f2565b909250905060008260038111156152a257fe5b146152c1575060408051602081019091526000815290925090506127a4565b612c91818660000151613ca0565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061532357805160ff1916838001178555615350565b82800160010185558215615350579182015b82811115615350578251825591602001919060010190615335565b5061535c92915061540d565b5090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610ffc91905b8082111561535c576000815560010161541356fe5345545f494e5445524553545f524154455f4d4f44454c5f4f574e45525f434845434b4e4f545f455155414c5f424c4f434b4e554d42455200000000000000000000006f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65744143435255455f494e5445524553545f4641494c4544000000000000000000006d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e636543414c4c41544552414c5f4143435255455f494e5445524553545f4641494c45444c49515549444154455f52455041595f424f52524f575f46524553485f4641494c45444c49515549444154455f5345495a455f434f4d5054524f4c4c45525f52454a454354494f4e4d4154485f4552524f525f53494d504c455f494e5445524553545f464143544f52696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e4d4154485f4552524f525f5052494e434950414c5f54494d45535f494e4445585f44495673657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d4154485f4552524f525f434153485f504c55535f424f52524f57535f4d494e55535f5245534552564553554e4445524c59494e475f42414c414e43455f43414e4e4f545f43414c43554c41544544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef4c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454452455041595f424f52524f575f424548414c465f4641494c4544206661696c6564a265627a7a72315820820ad966a46c8671796e73d10694d54622656a7986d38c7c1627b7ccf3eb5ba364736f6c63430005100032

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

000000000000000000000000ce0efbf9fe365ab3271f7e9cd87f305703383da80000000000000000000000003f5d9cd7d2f23264eef944526b68bfcb69fddc5c000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000080000000000000000000000001dd1fb688200be97d312399ece57cda7fdaa5aab000000000000000000000000000000000000000000000000000000000000000f417263686942616e6b204574686572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056162455448000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : comptroller_ (address): 0xCE0eFbF9fe365ab3271f7e9CD87F305703383dA8
Arg [1] : interestRateModel_ (address): 0x3f5D9CD7D2f23264EEf944526B68bFCb69fdDc5c
Arg [2] : initialExchangeRateMantissa_ (uint256): 200000000000000000000000000
Arg [3] : name_ (string): ArchiBank Ether
Arg [4] : symbol_ (string): abETH
Arg [5] : decimals_ (uint8): 8
Arg [6] : admin_ (address): 0x1DD1FB688200BE97d312399ECe57CDA7FDAa5aAb

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000ce0efbf9fe365ab3271f7e9cd87f305703383da8
Arg [1] : 0000000000000000000000003f5d9cd7d2f23264eef944526b68bfcb69fddc5c
Arg [2] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 0000000000000000000000001dd1fb688200be97d312399ece57cda7fdaa5aab
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [8] : 417263686942616e6b2045746865720000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 6162455448000000000000000000000000000000000000000000000000000000


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.