Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
CErc721MoonbirdDelegate
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./CErc721Moonbird.sol"; /** * @title Drops's CErc721 Contract (Modified from "Compound's CErc20Immutable Contract") * @notice CTokens which wrap an EIP-20 underlying and are immutable * @author Drops Loan */ contract CErc721MoonbirdDelegate is CErc721Moonbird, CDelegateInterface { /** * @notice Construct an empty delegate */ constructor() public {} /** * @notice Called by the delegator on a delegate to initialize it for duty * @param data The encoded bytes data for any initialization */ function _becomeImplementation(bytes memory data) virtual override public { // Shh -- currently unused data; // Shh -- we don't ever want this hook to be marked pure if (false) { implementation = address(0); } require(msg.sender == admin, "only the admin may call _becomeImplementation"); } /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() virtual override public { // Shh -- we don't ever want this hook to be marked pure if (false) { implementation = address(0); } require(msg.sender == admin, "only the admin may call _resignImplementation"); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./CErc721Virtual.sol"; interface IFlashClaimer { function onFlashClaim(address user, uint256 tokenId) external; } interface ICERC721Moonbird { function balanceOf(address owner) external view returns (uint256 balance); function transferFrom(address from, address to, uint256 tokenId) external; function nestingPeriod(uint256 tokenId) external view returns (bool nesting, uint256 current, uint256 total); function safeTransferWhileNesting(address from, address to, uint256 tokenId) external; } contract CErc721MoonbirdStorage { // Reserve tokenId per Supply mapping(uint256 => address) internal reserves; } /** * @title Drops's CErc721 Contract (Modified from "Compound's CErc20 Contract") * @notice CTokens which wrap an EIP-721 underlying * @author Drops Loan */ contract CErc721Moonbird is CErc721Virtual, CErc721MigrationInterface, CErc721MoonbirdStorage { /** * @notice Initialize the new money market * @param underlying_ The address of the underlying asset * @param comptroller_ The address of the Comptroller * @param interestRateModel_ The address of the interest rate model * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 * @param name_ ERC-20 name of this token * @param symbol_ ERC-20 symbol of this token * @param decimals_ ERC-20 decimal precision of this token */ function initialize(address underlying_, ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_) public override { // CToken initialize does the bulk of the work super.initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); // Set underlying and sanity check it underlying = underlying_; EIP20Interface(underlying).totalSupply(); } function mintInternalTo(address to, uint tokenId) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.MINT_ACCRUE_INTEREST_FAILED), 0); } // mintFresh emits the actual Mint event if successful and logs on errors, so we don't need to return mintFresh(to, tokenId); } function onERC721Received(address, address from, uint256 tokenId, bytes memory) external returns(bytes4) { if (msg.sender == underlying) { reserves[tokenId] = from; (uint err,) = mintInternalTo(from, tokenId); require(err == uint(Error.NO_ERROR), "mintInternal failed"); delete reserves[tokenId]; } return this.onERC721Received.selector; } /** * @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom` and reverts in that case. * This will revert due to insufficient balance or insufficient allowance. * This function returns the actual amount received, * which may be less than `amount` if there is a fee attached to the transfer. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferIn(address from, uint tokenId) internal override returns (uint) { ICERC721Moonbird token = ICERC721Moonbird(underlying); uint balanceBefore = token.balanceOf(address(this)); if (reserves[tokenId] == address(0)) { token.transferFrom(from, address(this), tokenId); } else { require(reserves[tokenId] == from, "invalid supply"); balanceBefore -= 1; } userTokens[from].push(tokenId); // bool success; // assembly { // switch returndatasize() // case 0 { // This is a non-standard ERC-20 // success := not(0) // set success to true // } // case 32 { // This is a compliant ERC-20 // returndatacopy(0, 0, 32) // success := mload(0) // Set `success = returndata` of external call // } // default { // This is an excessively non-compliant ERC-20, revert. // revert(0, 0) // } // } // require(success, "TOKEN_TRANSFER_IN_FAILED"); // Calculate the amount that was *actually* transferred uint balanceAfter = token.balanceOf(address(this)); require(balanceAfter >= balanceBefore, "TOKEN_TRANSFER_IN_OVERFLOW"); return balanceAfter - balanceBefore; // underflow already checked above, just subtract } /** * @dev Similar to EIP20 transfer, except it handles a False success from `transfer` and returns an explanatory * error code rather than reverting. If caller has not called checked protocol's balance, this may revert due to * insufficient cash held in this contract. If caller has checked protocol's balance prior to this call, and verified * it is >= amount, this should not revert in normal conditions. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferOut(address payable to, uint tokenIndex) internal override { ICERC721Moonbird token = ICERC721Moonbird(underlying); uint tokenId = userTokens[to][tokenIndex]; uint newBalance = userTokens[to].length - 1; userTokens[to][tokenIndex] = userTokens[to][newBalance]; userTokens[to].pop(); (bool nesting, , ) = token.nestingPeriod(tokenId); if (nesting) { token.safeTransferWhileNesting(address(this), to, tokenId); } else { token.transferFrom(address(this), to, tokenId); } // bool success; // assembly { // switch returndatasize() // case 0 { // This is a non-standard ERC-20 // success := not(0) // set success to true // } // case 32 { // This is a complaint ERC-20 // returndatacopy(0, 0, 32) // success := mload(0) // Set `success = returndata` of external call // } // default { // This is an excessively non-compliant ERC-20, revert. // revert(0, 0) // } // } // require(success, "TOKEN_TRANSFER_OUT_FAILED"); } /** * @notice Gets balance of this contract in terms of the underlying * @dev This excludes the value of the current message, if any * @return The quantity of underlying tokens owned by this contract */ function getCashPrior() internal view virtual override returns (uint) { // [2022.7.15] - cash to `totalySupply` // ISSUE - NFT transfer can cause exchangeRate changed return totalSupply; // [COMMENT] - original code // ICERC721 token = ICERC721(underlying); // return token.balanceOf(address(this)); } function flashClaim(uint256 tokenIndex, address claimer) external { address user = msg.sender; require(tx.origin == user, "Invalid owner"); uint256 tokenId = userTokens[user][tokenIndex]; ICERC721(underlying).transferFrom(address(this), claimer, tokenId); IFlashClaimer(claimer).onFlashClaim(user, tokenId); ICERC721(underlying).transferFrom(claimer, address(this), tokenId); } function migrate() external virtual override returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return fail(Error(error), FailureInfo.MINT_ACCRUE_INTEREST_FAILED); } address minter = msg.sender; uint256 mintAmount = CErc721Virtual(migration).balanceOf(minter); for (uint256 i = 0; i < mintAmount; i++) { userTokens[minter].push(CErc721Virtual(migration).userTokens(minter, i)); } /* Fail if mint not allowed */ uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.MINT_COMPTROLLER_REJECTION, allowed); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.MINT_FRESHNESS_CHECK); } MintLocalVars memory vars; (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.MINT_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)); } // vars.actualMintAmount = doTransferIn(minter, tokenId); vars.actualMintAmount = mintAmount; (vars.mathErr, vars.mintTokens) = divScalarByExpTruncate(vars.actualMintAmount, Exp({mantissa: vars.exchangeRateMantissa})); require(vars.mathErr == MathError.NO_ERROR, "MINT_EXCHANGE_CALCULATION_FAILED"); (vars.mathErr, vars.totalSupplyNew) = addUInt(totalSupply, vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED"); (vars.mathErr, vars.accountTokensNew) = addUInt(accountTokens[minter], vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED"); /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[minter] = vars.accountTokensNew; /* We emit a Mint event, and a Transfer event */ emit Mint(minter, vars.actualMintAmount, vars.mintTokens); emit Transfer(address(this), minter, vars.mintTokens); /* We call the defense hook */ comptroller.mintVerify(address(this), minter, vars.actualMintAmount, vars.mintTokens); uint256[] memory redeemTokenIds = new uint256[](mintAmount); for (uint256 i = mintAmount; i > 0; i--) { require(CErc721Virtual(migration).transferFrom(minter, address(this), i - 1), "Transfer dToken failed"); redeemTokenIds[mintAmount - i] = i - 1; } CErc721Virtual(migration).redeems(redeemTokenIds); return uint(Error.NO_ERROR); } function _setMigration(address migration_) external virtual override { require(msg.sender == admin, "Invalid admin"); migration = migration_; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./CTokenEx.sol"; interface ICERC721 { function balanceOf(address owner) external view returns (uint256 balance); function transferFrom(address from, address to, uint256 tokenId) external; } /** * @title Drops's CErc721 Contract (Modified from "Compound's CErc20 Contract") * @notice CTokens which wrap an EIP-721 underlying * @author Drops Loan */ contract CErc721Virtual is CTokenEx, CErc721Interface { /** * @notice Initialize the new money market * @param underlying_ The address of the underlying asset * @param comptroller_ The address of the Comptroller * @param interestRateModel_ The address of the interest rate model * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 * @param name_ ERC-20 name of this token * @param symbol_ ERC-20 symbol of this token * @param decimals_ ERC-20 decimal precision of this token */ function initialize(address underlying_, ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_) public virtual { // CToken initialize does the bulk of the work super.initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); // Set underlying and sanity check it underlying = underlying_; EIP20Interface(underlying).totalSupply(); } /*** User Interface ***/ /** * @notice Sender supplies assets into the market and receives cTokens in exchange * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param mintAmount The amount of the underlying asset to supply * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ // function mint(uint mintAmount) external override returns (uint) { // (uint err,) = mintInternal(mintAmount); // return err; // } /** * @notice Sender supplies assets into the market and receives cTokens in exchange * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param tokenId The amount of the underlying asset to supply * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function mint(uint tokenId) external override returns (uint) { (uint err,) = mintInternal(tokenId); return err; } function mints(uint[] calldata tokenIds) external override returns (uint[] memory) { uint amount = tokenIds.length; uint[] memory errs = new uint[](amount); for (uint i = 0; i < amount; i++) { (errs[i],) = mintInternal(tokenIds[i]); } return errs; } /** * @notice Sender redeems cTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokenId The number of cTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeem(uint redeemTokenId) external override returns (uint) { return redeemInternal(redeemTokenId); } function redeems(uint[] calldata redeemTokenIds) external override returns (uint[] memory) { uint amount = redeemTokenIds.length; uint[] memory errs = new uint[](amount); for (uint i = 0; i < amount; i++) { errs[i] = redeemInternal(redeemTokenIds[i]); } return errs; } /** * @notice Sender redeems cTokens in exchange for a specified amount of underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemAmount The amount of underlying to redeem * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemUnderlying(uint redeemAmount) external override returns (uint) { return redeemUnderlyingInternal(redeemAmount); } /** * @notice Sender borrows assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrow(uint borrowAmount) external override returns (uint) { require(false); return borrowInternal(borrowAmount); } /** * @notice Sender repays their own borrow * @param repayAmount The amount to repay * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function repayBorrow(uint repayAmount) external override returns (uint) { require(false); (uint err,) = repayBorrowInternal(repayAmount); return err; } /** * @notice Sender repays a borrow belonging to borrower * @param borrower the account with the debt being payed off * @param repayAmount The amount to repay * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function repayBorrowBehalf(address borrower, uint repayAmount) external override returns (uint) { require(false); (uint err,) = repayBorrowBehalfInternal(borrower, repayAmount); return err; } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this cToken to be liquidated * @param repayAmount The amount of the underlying borrowed asset to repay * @param cTokenCollateral The market in which to seize collateral from the borrower * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function liquidateBorrow(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) external override returns (uint) { require(false); (uint err,) = liquidateBorrowInternal(borrower, repayAmount, cTokenCollateral); return err; } /** * @notice A public function to sweep accidental ERC-20 transfers to this contract. Tokens are sent to admin (timelock) * @param token The address of the ERC-20 token to sweep */ function sweepToken(EIP20NonStandardInterface token) external { require(address(token) != underlying, "CErc20::sweepToken: can not sweep underlying token"); uint256 balance = token.balanceOf(address(this)); token.transfer(admin, balance); } /** * @notice The sender adds to reserves. * @param addAmount The amount fo underlying token to add as reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _addReserves(uint addAmount) external override returns (uint) { return _addReservesInternal(addAmount); } /*** Safe Token ***/ /** * @notice Gets balance of this contract in terms of the underlying * @dev This excludes the value of the current message, if any * @return The quantity of underlying tokens owned by this contract */ function getCashPrior() internal view virtual override returns (uint) { ICERC721 token = ICERC721(underlying); return token.balanceOf(address(this)); } /** * @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom` and reverts in that case. * This will revert due to insufficient balance or insufficient allowance. * This function returns the actual amount received, * which may be less than `amount` if there is a fee attached to the transfer. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferIn(address from, uint tokenId) internal virtual override returns (uint) { ICERC721 token = ICERC721(underlying); uint balanceBefore = token.balanceOf(address(this)); token.transferFrom(from, address(this), tokenId); userTokens[from].push(tokenId); // bool success; // assembly { // switch returndatasize() // case 0 { // This is a non-standard ERC-20 // success := not(0) // set success to true // } // case 32 { // This is a compliant ERC-20 // returndatacopy(0, 0, 32) // success := mload(0) // Set `success = returndata` of external call // } // default { // This is an excessively non-compliant ERC-20, revert. // revert(0, 0) // } // } // require(success, "TOKEN_TRANSFER_IN_FAILED"); // Calculate the amount that was *actually* transferred uint balanceAfter = token.balanceOf(address(this)); require(balanceAfter >= balanceBefore, "TOKEN_TRANSFER_IN_OVERFLOW"); return balanceAfter - balanceBefore; // underflow already checked above, just subtract } /** * @dev Similar to EIP20 transfer, except it handles a False success from `transfer` and returns an explanatory * error code rather than reverting. If caller has not called checked protocol's balance, this may revert due to * insufficient cash held in this contract. If caller has checked protocol's balance prior to this call, and verified * it is >= amount, this should not revert in normal conditions. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferOut(address payable to, uint tokenIndex) internal virtual override { ICERC721 token = ICERC721(underlying); uint tokenId = userTokens[to][tokenIndex]; uint newBalance = userTokens[to].length - 1; userTokens[to][tokenIndex] = userTokens[to][newBalance]; userTokens[to].pop(); token.transferFrom(address(this), to, tokenId); // bool success; // assembly { // switch returndatasize() // case 0 { // This is a non-standard ERC-20 // success := not(0) // set success to true // } // case 32 { // This is a complaint ERC-20 // returndatacopy(0, 0, 32) // success := mload(0) // Set `success = returndata` of external call // } // default { // This is an excessively non-compliant ERC-20, revert. // revert(0, 0) // } // } // require(success, "TOKEN_TRANSFER_OUT_FAILED"); } function doTransfer(address from, address to, uint tokenIndex) internal virtual override { // doTransferOut uint newBalance = userTokens[from].length - 1; require(tokenIndex <= newBalance); uint tokenId = userTokens[from][tokenIndex]; if (tokenIndex < newBalance) { userTokens[from][tokenIndex] = userTokens[from][newBalance]; } userTokens[from].pop(); // doTransferIn userTokens[to].push(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./ComptrollerInterface.sol"; import "./CTokenInterfaces.sol"; import "./ErrorReporter.sol"; import "./Exponential.sol"; import "./EIP20Interface.sol"; import "./EIP20NonStandardInterface.sol"; import "./InterestRateModel.sol"; /** * @title Drops's CTokenEx Contract (Modified from "Compound's CToken Contract") * @notice Abstract base for CTokens * @author Drops Loan */ abstract contract CTokenEx is CTokenInterface, Exponential, TokenErrorReporter { /** * @notice Initialize the money market * @param comptroller_ The address of the Comptroller * @param interestRateModel_ The address of the interest rate model * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 * @param name_ EIP-20 name of this token * @param symbol_ EIP-20 symbol of this token * @param decimals_ EIP-20 decimal precision of this token */ 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"); // Set initial exchange rate // initialExchangeRateMantissa = initialExchangeRateMantissa_; // require(initialExchangeRateMantissa > 0, "initial exchange rate must be greater than zero."); initialExchangeRateMantissa = 1000000000000000000; // Set the comptroller uint err = _setComptroller(comptroller_); require(err == uint(Error.NO_ERROR), "setting comptroller failed"); // Initialize block number and borrow index (block number mocks depend on comptroller being set) accrualBlockNumber = getBlockNumber(); borrowIndex = mantissaOne; // Set the interest rate model (depends on block number / borrow index) err = _setInterestRateModelFresh(interestRateModel_); require(err == uint(Error.NO_ERROR), "setting interest rate model failed"); name = name_; symbol = symbol_; decimals = decimals_; // The counter starts true to prevent changing it from zero to non-zero (i.e. smaller cost/refund) _notEntered = true; } /** * @notice Transfer `tokens` tokens from `src` to `dst` by `spender` * @dev Called by both `transfer` and `transferFrom` internally * @param spender The address of the account performing the transfer * @param src The address of the source account * @param dst The address of the destination account * @param tokens The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) { /* Fail if transfer not allowed */ uint allowed = comptroller.transferAllowed(address(this), src, dst, 1); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.TRANSFER_COMPTROLLER_REJECTION, allowed); } /* Do not allow self-transfers */ if (src == dst) { return fail(Error.BAD_INPUT, FailureInfo.TRANSFER_NOT_ALLOWED); } /* Get the allowance, infinite for the account owner */ uint startingAllowance = 0; if (spender == src) { startingAllowance = uint(-1); } else { startingAllowance = transferAllowances[src][spender]; } /* Do the calculations, checking for {under,over}flow */ MathError mathErr; uint allowanceNew; uint srcTokensNew; uint dstTokensNew; (mathErr, allowanceNew) = subUInt(startingAllowance, 1); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ALLOWED); } (mathErr, srcTokensNew) = subUInt(accountTokens[src], 1); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ENOUGH); } (mathErr, dstTokensNew) = addUInt(accountTokens[dst], 1); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_TOO_MUCH); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) accountTokens[src] = srcTokensNew; accountTokens[dst] = dstTokensNew; /* Eat some of the allowance (if necessary) */ if (startingAllowance != uint(-1)) { transferAllowances[src][spender] = allowanceNew; } doTransfer(src, dst, tokens); /* We emit a Transfer event */ emit Transfer(src, dst, 1); comptroller.transferVerify(address(this), src, dst, 1); return uint(Error.NO_ERROR); } /** * @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 override nonReentrant returns (bool) { return transferTokens(msg.sender, msg.sender, dst, amount) == uint(Error.NO_ERROR); } /** * @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 override nonReentrant returns (bool) { return transferTokens(msg.sender, src, dst, amount) == uint(Error.NO_ERROR); } /** * @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 override returns (bool) { address src = msg.sender; transferAllowances[src][spender] = amount; emit Approval(src, spender, amount); return true; } /** * @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 override view returns (uint256) { return transferAllowances[owner][spender]; } /** * @notice Get the token balance of the `owner` * @param owner The address of the account to query * @return The number of tokens owned by `owner` */ function balanceOf(address owner) external override view returns (uint256) { return accountTokens[owner]; } /** * @notice Get the underlying balance of the `owner` * @dev This also accrues interest in a transaction * @param owner The address of the account to query * @return The amount of underlying owned by `owner` */ function balanceOfUnderlying(address owner) external override returns (uint) { Exp memory exchangeRate = Exp({mantissa: exchangeRateCurrent()}); (MathError mErr, uint balance) = mulScalarTruncate(exchangeRate, accountTokens[owner]); require(mErr == MathError.NO_ERROR, "balance could not be calculated"); return balance; } /** * @notice Get a snapshot of the account's balances, and the cached exchange rate * @dev This is used by comptroller to more efficiently perform liquidity checks. * @param account Address of the account to snapshot * @return (possible error, token balance, borrow balance, exchange rate mantissa) */ function getAccountSnapshot(address account) external override view returns (uint, uint, uint, uint) { uint cTokenBalance = accountTokens[account]; uint borrowBalance; uint exchangeRateMantissa; MathError mErr; (mErr, borrowBalance) = borrowBalanceStoredInternal(account); if (mErr != MathError.NO_ERROR) { return (uint(Error.MATH_ERROR), 0, 0, 0); } (mErr, exchangeRateMantissa) = exchangeRateStoredInternal(); if (mErr != MathError.NO_ERROR) { return (uint(Error.MATH_ERROR), 0, 0, 0); } return (uint(Error.NO_ERROR), cTokenBalance, borrowBalance, exchangeRateMantissa); } /** * @dev Function to simply retrieve block number * This exists mainly for inheriting test contracts to stub this result. */ function getBlockNumber() internal view returns (uint) { return block.number; } /** * @notice Returns the current per-block borrow interest rate for this cToken * @return The borrow interest rate per block, scaled by 1e18 */ function borrowRatePerBlock() external override view returns (uint) { return interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves); } /** * @notice Returns the current per-block supply interest rate for this cToken * @return The supply interest rate per block, scaled by 1e18 */ function supplyRatePerBlock() external override view returns (uint) { return interestRateModel.getSupplyRate(getCashPrior(), totalBorrows, totalReserves, reserveFactorMantissa); } /** * @notice Returns the current total borrows plus accrued interest * @return The total borrows with interest */ function totalBorrowsCurrent() external override nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return totalBorrows; } /** * @notice Accrue interest to updated borrowIndex and then calculate account's borrow balance using the updated borrowIndex * @param account The address whose balance should be calculated after updating borrowIndex * @return The calculated balance */ function borrowBalanceCurrent(address account) external override nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return borrowBalanceStored(account); } /** * @notice Return the borrow balance of account based on stored data * @param account The address whose balance should be calculated * @return The calculated balance */ function borrowBalanceStored(address account) public override view returns (uint) { (MathError err, uint result) = borrowBalanceStoredInternal(account); require(err == MathError.NO_ERROR, "borrowBalanceStored: borrowBalanceStoredInternal failed"); return result; } /** * @notice Return the borrow balance of account based on stored data * @param account The address whose balance should be calculated * @return (error code, the calculated balance or 0 if error code is non-zero) */ function borrowBalanceStoredInternal(address account) internal view returns (MathError, uint) { /* Note: we do not assert that the market is up to date */ MathError mathErr; uint principalTimesIndex; uint result; /* Get borrowBalance and borrowIndex */ BorrowSnapshot storage borrowSnapshot = accountBorrows[account]; /* If borrowBalance = 0 then borrowIndex is likely also 0. * Rather than failing the calculation with a division by 0, we immediately return 0 in this case. */ if (borrowSnapshot.principal == 0) { return (MathError.NO_ERROR, 0); } /* Calculate new borrow balance using the interest index: * recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex */ (mathErr, principalTimesIndex) = mulUInt(borrowSnapshot.principal, borrowIndex); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } (mathErr, result) = divUInt(principalTimesIndex, borrowSnapshot.interestIndex); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } return (MathError.NO_ERROR, result); } /** * @notice Accrue interest then return the up-to-date exchange rate * @return Calculated exchange rate scaled by 1e18 */ function exchangeRateCurrent() public override nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return exchangeRateStored(); } /** * @notice Calculates the exchange rate from the underlying to the CToken * @dev This function does not accrue interest before calculating the exchange rate * @return Calculated exchange rate scaled by 1e18 */ function exchangeRateStored() public override view returns (uint) { (MathError err, uint result) = exchangeRateStoredInternal(); require(err == MathError.NO_ERROR, "exchangeRateStored: exchangeRateStoredInternal failed"); return result; } /** * @notice Calculates the exchange rate from the underlying to the CToken * @dev This function does not accrue interest before calculating the exchange rate * @return (error code, calculated exchange rate scaled by 1e18) */ function exchangeRateStoredInternal() internal view returns (MathError, uint) { uint _totalSupply = totalSupply; if (_totalSupply == 0) { /* * If there are no tokens minted: * exchangeRate = initialExchangeRate */ return (MathError.NO_ERROR, initialExchangeRateMantissa); } else { /* * Otherwise: * exchangeRate = (totalCash + totalBorrows - totalReserves) / totalSupply */ uint totalCash = getCashPrior(); uint cashPlusBorrowsMinusReserves; Exp memory exchangeRate; MathError mathErr; (mathErr, cashPlusBorrowsMinusReserves) = addThenSubUInt(totalCash, totalBorrows, totalReserves); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } (mathErr, exchangeRate) = getExp(cashPlusBorrowsMinusReserves, _totalSupply); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } return (MathError.NO_ERROR, exchangeRate.mantissa); } } /** * @notice Get cash balance of this cToken in the underlying asset * @return The quantity of underlying asset owned by this contract */ function getCash() external override view returns (uint) { return getCashPrior(); } /** * @notice Applies accrued interest to total borrows and reserves * @dev This calculates interest accrued from the last checkpointed block * up to the current block and writes new checkpoint to storage. */ function accrueInterest() override public returns (uint) { /* Remember the initial block number */ uint currentBlockNumber = getBlockNumber(); uint accrualBlockNumberPrior = accrualBlockNumber; /* Short-circuit accumulating 0 interest */ if (accrualBlockNumberPrior == currentBlockNumber) { return uint(Error.NO_ERROR); } /* Read the previous values out of storage */ uint cashPrior = getCashPrior(); uint borrowsPrior = totalBorrows; uint reservesPrior = totalReserves; uint borrowIndexPrior = borrowIndex; /* Calculate the current borrow interest rate */ uint borrowRateMantissa = interestRateModel.getBorrowRate(cashPrior, borrowsPrior, reservesPrior); require(borrowRateMantissa <= borrowRateMaxMantissa, "borrow rate is absurdly high"); /* Calculate the number of blocks elapsed since the last accrual */ (MathError mathErr, uint blockDelta) = subUInt(currentBlockNumber, accrualBlockNumberPrior); require(mathErr == MathError.NO_ERROR, "could not calculate block delta"); /* * Calculate the interest accumulated into borrows and reserves and the new index: * simpleInterestFactor = borrowRate * blockDelta * interestAccumulated = simpleInterestFactor * totalBorrows * totalBorrowsNew = interestAccumulated + totalBorrows * totalReservesNew = interestAccumulated * reserveFactor + totalReserves * borrowIndexNew = simpleInterestFactor * borrowIndex + borrowIndex */ Exp memory simpleInterestFactor; uint interestAccumulated; uint totalBorrowsNew; uint totalReservesNew; uint borrowIndexNew; (mathErr, simpleInterestFactor) = mulScalar(Exp({mantissa: borrowRateMantissa}), blockDelta); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, uint(mathErr)); } (mathErr, interestAccumulated) = mulScalarTruncate(simpleInterestFactor, borrowsPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED, uint(mathErr)); } (mathErr, totalBorrowsNew) = addUInt(interestAccumulated, borrowsPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED, uint(mathErr)); } (mathErr, totalReservesNew) = mulScalarTruncateAddUInt(Exp({mantissa: reserveFactorMantissa}), interestAccumulated, reservesPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED, uint(mathErr)); } (mathErr, borrowIndexNew) = mulScalarTruncateAddUInt(simpleInterestFactor, borrowIndexPrior, borrowIndexPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED, uint(mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write the previously calculated values into storage */ accrualBlockNumber = currentBlockNumber; borrowIndex = borrowIndexNew; totalBorrows = totalBorrowsNew; totalReserves = totalReservesNew; /* We emit an AccrueInterest event */ emit AccrueInterest(cashPrior, interestAccumulated, borrowIndexNew, totalBorrowsNew); return uint(Error.NO_ERROR); } /** * @notice Sender supplies assets into the market and receives cTokens in exchange * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param tokenId *Drops* * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount. */ function mintInternal(uint tokenId) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.MINT_ACCRUE_INTEREST_FAILED), 0); } // mintFresh emits the actual Mint event if successful and logs on errors, so we don't need to return mintFresh(msg.sender, tokenId); } struct MintLocalVars { Error err; MathError mathErr; uint exchangeRateMantissa; uint mintTokens; uint totalSupplyNew; uint accountTokensNew; uint actualMintAmount; } /** * @notice User supplies assets into the market and receives cTokens in exchange * @dev Assumes interest has already been accrued up to the current block * @param minter The address of the account which is supplying the assets * @param tokenId *Drops* * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount. */ function mintFresh(address minter, uint tokenId) internal returns (uint, uint) { uint mintAmount = 1; /* Fail if mint not allowed */ uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.MINT_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.MINT_FRESHNESS_CHECK), 0); } MintLocalVars memory vars; (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return (failOpaque(Error.MATH_ERROR, FailureInfo.MINT_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)), 0); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call `doTransferIn` for the minter and the tokenId. * Note: The cToken must handle variations between ERC-20 and ETH underlying. * `doTransferIn` reverts if anything goes wrong, since we can't be sure if * side-effects occurred. The function returns the amount actually transferred, * in case of a fee. On success, the cToken holds an additional `actualMintAmount` * of cash. */ vars.actualMintAmount = doTransferIn(minter, tokenId); /* * We get the current exchange rate and calculate the number of cTokens to be minted: * mintTokens = actualMintAmount / exchangeRate */ (vars.mathErr, vars.mintTokens) = divScalarByExpTruncate(vars.actualMintAmount, Exp({mantissa: vars.exchangeRateMantissa})); require(vars.mathErr == MathError.NO_ERROR, "MINT_EXCHANGE_CALCULATION_FAILED"); /* * We calculate the new total supply of cTokens and minter token balance, checking for overflow: * totalSupplyNew = totalSupply + mintTokens * accountTokensNew = accountTokens[minter] + mintTokens */ (vars.mathErr, vars.totalSupplyNew) = addUInt(totalSupply, vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED"); (vars.mathErr, vars.accountTokensNew) = addUInt(accountTokens[minter], vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED"); /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[minter] = vars.accountTokensNew; /* We emit a Mint event, and a Transfer event */ emit Mint(minter, vars.actualMintAmount, vars.mintTokens); emit Transfer(address(this), minter, vars.mintTokens); /* We call the defense hook */ comptroller.mintVerify(address(this), minter, vars.actualMintAmount, vars.mintTokens); return (uint(Error.NO_ERROR), vars.actualMintAmount); } /** * @notice Sender redeems cTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemToken The number of cTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemInternal(uint redeemToken) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED); } // redeemFresh emits redeem-specific logs on errors, so we don't need to return redeemFreshCToken(msg.sender, redeemToken); } /** * @notice Sender redeems cTokens in exchange for a specified amount of underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemToken The amount of underlying to receive from redeeming cTokens * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemUnderlyingInternal(uint redeemToken) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED); } // redeemFresh emits redeem-specific logs on errors, so we don't need to return redeemFreshUnderlying(msg.sender, redeemToken); } struct RedeemLocalVars { Error err; MathError mathErr; uint exchangeRateMantissa; uint redeemTokens; uint redeemAmount; uint totalSupplyNew; uint accountTokensNew; } /** * @notice User redeems cTokens in exchange for the underlying asset * @dev Assumes interest has already been accrued up to the current block * @param redeemer The address of the account which is redeeming the tokens * @param redeemTokenIn The number of cTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be non-zero) * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemFreshCToken(address payable redeemer, uint redeemTokenIn) internal returns (uint) { RedeemLocalVars memory vars; /* exchangeRate = invoke Exchange Rate Stored() */ (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)); } /* * We calculate the exchange rate and the amount of underlying to be redeemed: * redeemTokens = redeemTokensIn * redeemAmount = redeemTokensIn x exchangeRateCurrent */ vars.redeemTokens = 1; (vars.mathErr, vars.redeemAmount) = mulScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), 1); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, uint(vars.mathErr)); } /* Fail if redeem not allowed */ uint allowed = comptroller.redeemAllowed(address(this), redeemer, vars.redeemTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REDEEM_COMPTROLLER_REJECTION, allowed); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDEEM_FRESHNESS_CHECK); } /* * We calculate the new total supply and redeemer balance, checking for underflow: * totalSupplyNew = totalSupply - redeemTokens * accountTokensNew = accountTokens[redeemer] - redeemTokens */ (vars.mathErr, vars.totalSupplyNew) = subUInt(totalSupply, vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountTokensNew) = subUInt(accountTokens[redeemer], vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } /* Fail gracefully if protocol has insufficient cash */ if (getCashPrior() < vars.redeemAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDEEM_TRANSFER_OUT_NOT_POSSIBLE); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[redeemer] = vars.accountTokensNew; if (totalSupply == 0 && totalBorrows > 0) { totalReserves = totalReserves - totalBorrows; totalBorrows = 0; } /* * We invoke doTransferOut for the redeemer and the redeemAmount. * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken has redeemAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(redeemer, redeemTokenIn); /* We emit a Transfer event, and a Redeem event */ emit Transfer(redeemer, address(this), vars.redeemTokens); emit Redeem(redeemer, vars.redeemAmount, vars.redeemTokens); /* We call the defense hook */ comptroller.redeemVerify(address(this), redeemer, vars.redeemAmount, vars.redeemTokens); return uint(Error.NO_ERROR); } /** * @notice User redeems cTokens in exchange for the underlying asset * @dev Assumes interest has already been accrued up to the current block * @param redeemer The address of the account which is redeeming the tokens * @param redeemAmountIn The number of underlying tokens to receive from redeeming cTokens (only one of redeemTokensIn or redeemAmountIn may be non-zero) * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemFreshUnderlying(address payable redeemer, uint redeemAmountIn) internal returns (uint) { RedeemLocalVars memory vars; /* exchangeRate = invoke Exchange Rate Stored() */ (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)); } /* * We get the current exchange rate and calculate the amount to be redeemed: * redeemTokens = redeemAmountIn / exchangeRate * redeemAmount = redeemAmountIn */ (vars.mathErr, vars.redeemTokens) = divScalarByExpTruncate(1, Exp({mantissa: vars.exchangeRateMantissa})); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED, uint(vars.mathErr)); } vars.redeemAmount = 1; /* Fail if redeem not allowed */ uint allowed = comptroller.redeemAllowed(address(this), redeemer, vars.redeemTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REDEEM_COMPTROLLER_REJECTION, allowed); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDEEM_FRESHNESS_CHECK); } /* * We calculate the new total supply and redeemer balance, checking for underflow: * totalSupplyNew = totalSupply - redeemTokens * accountTokensNew = accountTokens[redeemer] - redeemTokens */ (vars.mathErr, vars.totalSupplyNew) = subUInt(totalSupply, vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountTokensNew) = subUInt(accountTokens[redeemer], vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } /* Fail gracefully if protocol has insufficient cash */ if (getCashPrior() < vars.redeemAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDEEM_TRANSFER_OUT_NOT_POSSIBLE); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[redeemer] = vars.accountTokensNew; if (totalSupply == 0 && totalBorrows > 0) { totalReserves = totalReserves - totalBorrows; totalBorrows = 0; } /* * We invoke doTransferOut for the redeemer and the redeemAmount. * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken has redeemAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(redeemer, redeemAmountIn); /* We emit a Transfer event, and a Redeem event */ emit Transfer(redeemer, address(this), vars.redeemTokens); emit Redeem(redeemer, vars.redeemAmount, vars.redeemTokens); /* We call the defense hook */ comptroller.redeemVerify(address(this), redeemer, vars.redeemAmount, vars.redeemTokens); return uint(Error.NO_ERROR); } /** * @notice Sender borrows assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrowInternal(uint borrowAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return fail(Error(error), FailureInfo.BORROW_ACCRUE_INTEREST_FAILED); } // borrowFresh emits borrow-specific logs on errors, so we don't need to return borrowFresh(msg.sender, borrowAmount); } struct BorrowLocalVars { MathError mathErr; uint accountBorrows; uint accountBorrowsNew; uint totalBorrowsNew; } /** * @notice Users borrow assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrowFresh(address payable borrower, uint borrowAmount) internal returns (uint) { /* Fail if borrow not allowed */ uint allowed = comptroller.borrowAllowed(address(this), borrower, borrowAmount); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.BORROW_COMPTROLLER_REJECTION, allowed); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.BORROW_FRESHNESS_CHECK); } /* Fail gracefully if protocol has insufficient underlying cash */ if (getCashPrior() < borrowAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.BORROW_CASH_NOT_AVAILABLE); } BorrowLocalVars memory vars; /* * We calculate the new borrower and total borrow balances, failing on overflow: * accountBorrowsNew = accountBorrows + borrowAmount * totalBorrowsNew = totalBorrows + borrowAmount */ (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountBorrowsNew) = addUInt(vars.accountBorrows, borrowAmount); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.totalBorrowsNew) = addUInt(totalBorrows, borrowAmount); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write the previously calculated values into storage */ accountBorrows[borrower].principal = vars.accountBorrowsNew; accountBorrows[borrower].interestIndex = borrowIndex; totalBorrows = vars.totalBorrowsNew; /* * We invoke doTransferOut for the borrower and the borrowAmount. * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken borrowAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(borrower, borrowAmount); /* We emit a Borrow event */ emit Borrow(borrower, borrowAmount, vars.accountBorrowsNew, vars.totalBorrowsNew); /* We call the defense hook */ comptroller.borrowVerify(address(this), borrower, borrowAmount); return uint(Error.NO_ERROR); } /** * @notice Sender repays their own borrow * @param repayAmount The amount to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowInternal(uint repayAmount) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.REPAY_BORROW_ACCRUE_INTEREST_FAILED), 0); } // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to return repayBorrowFresh(msg.sender, msg.sender, repayAmount); } /** * @notice Sender repays a borrow belonging to borrower * @param borrower the account with the debt being payed off * @param repayAmount The amount to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowBehalfInternal(address borrower, uint repayAmount) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.REPAY_BEHALF_ACCRUE_INTEREST_FAILED), 0); } // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to return repayBorrowFresh(msg.sender, borrower, repayAmount); } struct RepayBorrowLocalVars { Error err; MathError mathErr; uint repayAmount; uint borrowerIndex; uint accountBorrows; uint accountBorrowsNew; uint totalBorrowsNew; uint actualRepayAmount; } /** * @notice Borrows are repaid by another user (possibly the borrower). * @param payer the account paying off the borrow * @param borrower the account with the debt being payed off * @param repayAmount the amount of undelrying tokens being returned * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowFresh(address payer, address borrower, uint repayAmount) internal returns (uint, uint) { /* Fail if repayBorrow not allowed */ uint allowed = comptroller.repayBorrowAllowed(address(this), payer, borrower, repayAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REPAY_BORROW_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.REPAY_BORROW_FRESHNESS_CHECK), 0); } RepayBorrowLocalVars memory vars; /* We remember the original borrowerIndex for verification purposes */ vars.borrowerIndex = accountBorrows[borrower].interestIndex; /* We fetch the amount the borrower owes, with accumulated interest */ (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower); if (vars.mathErr != MathError.NO_ERROR) { return (failOpaque(Error.MATH_ERROR, FailureInfo.REPAY_BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)), 0); } /* If repayAmount == -1, repayAmount = accountBorrows */ if (repayAmount == uint(-1)) { vars.repayAmount = vars.accountBorrows; } else { vars.repayAmount = repayAmount; } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call doTransferIn for the payer and the repayAmount * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken holds an additional repayAmount of cash. * doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. * it returns the amount actually transferred, in case of a fee. */ vars.actualRepayAmount = doTransferIn(payer, vars.repayAmount); /* * We calculate the new borrower and total borrow balances, failing on underflow: * accountBorrowsNew = accountBorrows - actualRepayAmount * totalBorrowsNew = totalBorrows - actualRepayAmount */ (vars.mathErr, vars.accountBorrowsNew) = subUInt(vars.accountBorrows, vars.actualRepayAmount); require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED"); (vars.mathErr, vars.totalBorrowsNew) = subUInt(totalBorrows, vars.actualRepayAmount); require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED"); /* We write the previously calculated values into storage */ accountBorrows[borrower].principal = vars.accountBorrowsNew; accountBorrows[borrower].interestIndex = borrowIndex; totalBorrows = vars.totalBorrowsNew; /* We emit a RepayBorrow event */ emit RepayBorrow(payer, borrower, vars.actualRepayAmount, vars.accountBorrowsNew, vars.totalBorrowsNew); /* We call the defense hook */ comptroller.repayBorrowVerify(address(this), payer, borrower, vars.actualRepayAmount, vars.borrowerIndex); return (uint(Error.NO_ERROR), vars.actualRepayAmount); } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this cToken to be liquidated * @param cTokenCollateral The market in which to seize collateral from the borrower * @param repayAmount The amount of the underlying borrowed asset to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowInternal(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed return (fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED), 0); } error = cTokenCollateral.accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed return (fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED), 0); } // liquidateBorrowFresh emits borrow-specific logs on errors, so we don't need to return liquidateBorrowFresh(msg.sender, borrower, repayAmount, cTokenCollateral); } /** * @notice The liquidator liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this cToken to be liquidated * @param liquidator The address repaying the borrow and seizing collateral * @param cTokenCollateral The market in which to seize collateral from the borrower * @param repayAmount The amount of the underlying borrowed asset to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowFresh(address liquidator, address borrower, uint repayAmount, CTokenInterface cTokenCollateral) internal returns (uint, uint) { /* Fail if liquidate not allowed */ uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(cTokenCollateral), liquidator, borrower, repayAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_FRESHNESS_CHECK), 0); } /* Verify cTokenCollateral market's block number equals current block number */ if (cTokenCollateral.accrualBlockNumber() != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_COLLATERAL_FRESHNESS_CHECK), 0); } /* Fail if borrower = liquidator */ if (borrower == liquidator) { return (fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_LIQUIDATOR_IS_BORROWER), 0); } /* Fail if repayAmount = 0 */ if (repayAmount == 0) { return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_ZERO), 0); } /* Fail if repayAmount = -1 */ if (repayAmount == uint(-1)) { return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX), 0); } /* Fail if repayBorrow fails */ (uint repayBorrowError, uint actualRepayAmount) = repayBorrowFresh(liquidator, borrower, repayAmount); if (repayBorrowError != uint(Error.NO_ERROR)) { return (fail(Error(repayBorrowError), FailureInfo.LIQUIDATE_REPAY_BORROW_FRESH_FAILED), 0); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We calculate the number of collateral tokens that will be seized */ (uint amountSeizeError, uint seizeTokens) = comptroller.liquidateCalculateSeizeTokens(address(this), address(cTokenCollateral), actualRepayAmount); require(amountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED"); /* Revert if borrower collateral token balance < seizeTokens */ require(cTokenCollateral.balanceOf(borrower) >= seizeTokens, "LIQUIDATE_SEIZE_TOO_MUCH"); // If this is also the collateral, run seizeInternal to avoid re-entrancy, otherwise make an external call uint seizeError; if (address(cTokenCollateral) == address(this)) { seizeError = seizeInternal(address(this), liquidator, borrower, seizeTokens); } else { seizeError = cTokenCollateral.seize(liquidator, borrower, seizeTokens); } /* Revert if seize tokens fails (since we cannot be sure of side effects) */ require(seizeError == uint(Error.NO_ERROR), "token seizure failed"); /* We emit a LiquidateBorrow event */ emit LiquidateBorrow(liquidator, borrower, actualRepayAmount, address(cTokenCollateral), seizeTokens); /* We call the defense hook */ comptroller.liquidateBorrowVerify(address(this), address(cTokenCollateral), liquidator, borrower, actualRepayAmount, seizeTokens); return (uint(Error.NO_ERROR), actualRepayAmount); } /** * @notice Transfers collateral tokens (this market) to the liquidator. * @dev Will fail unless called by another cToken during the process of liquidation. * Its absolutely critical to use msg.sender as the borrowed cToken and not a parameter. * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of cTokens to seize * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function seize(address liquidator, address borrower, uint seizeTokens) external override nonReentrant returns (uint) { return seizeInternal(msg.sender, liquidator, borrower, seizeTokens); } /** * @notice Transfers collateral tokens (this market) to the liquidator. * @dev Called only during an in-kind liquidation, or by liquidateBorrow during the liquidation of another CToken. * Its absolutely critical to use msg.sender as the seizer cToken and not a parameter. * @param seizerToken The contract seizing the collateral (i.e. borrowed cToken) * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of cTokens to seize * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function seizeInternal(address seizerToken, address liquidator, address borrower, uint seizeTokens) internal returns (uint) { /* Fail if seize not allowed */ uint allowed = comptroller.seizeAllowed(address(this), seizerToken, liquidator, borrower, seizeTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_SEIZE_COMPTROLLER_REJECTION, allowed); } /* Fail if borrower = liquidator */ if (borrower == liquidator) { return fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER); } MathError mathErr; uint borrowerTokensNew; uint liquidatorTokensNew; /* * We calculate the new borrower and liquidator token balances, failing on underflow/overflow: * borrowerTokensNew = accountTokens[borrower] - seizeTokens * liquidatorTokensNew = accountTokens[liquidator] + seizeTokens */ uint borrowerBalance = accountTokens[borrower]; (mathErr, borrowerTokensNew) = subUInt(borrowerBalance, seizeTokens); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED, uint(mathErr)); } (mathErr, liquidatorTokensNew) = addUInt(accountTokens[liquidator], seizeTokens); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED, uint(mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write the previously calculated values into storage */ accountTokens[borrower] = borrowerTokensNew; accountTokens[liquidator] = liquidatorTokensNew; for (; borrowerBalance > borrowerTokensNew; borrowerBalance -= 1) { doTransfer(borrower, liquidator, borrowerBalance - 1); } /* Emit a Transfer event */ emit Transfer(borrower, liquidator, seizeTokens); /* We call the defense hook */ comptroller.seizeVerify(address(this), seizerToken, liquidator, borrower, seizeTokens); return uint(Error.NO_ERROR); } /*** Admin Functions ***/ /** * @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. * @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer. * @param newPendingAdmin New pending admin. * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setPendingAdmin(address payable newPendingAdmin) external override returns (uint) { // Check caller = admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_PENDING_ADMIN_OWNER_CHECK); } // Save current value, if any, for inclusion in log address oldPendingAdmin = pendingAdmin; // Store pendingAdmin with value newPendingAdmin pendingAdmin = newPendingAdmin; // Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin) emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin); return uint(Error.NO_ERROR); } /** * @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin * @dev Admin function for pending admin to accept role and update admin * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _acceptAdmin() external override returns (uint) { // Check caller is pendingAdmin and pendingAdmin ≠ address(0) if (msg.sender != pendingAdmin || msg.sender == address(0)) { return fail(Error.UNAUTHORIZED, FailureInfo.ACCEPT_ADMIN_PENDING_ADMIN_CHECK); } // Save current values for inclusion in log address oldAdmin = admin; address oldPendingAdmin = pendingAdmin; // Store admin with value pendingAdmin admin = pendingAdmin; // Clear the pending value pendingAdmin = address(0); emit NewAdmin(oldAdmin, admin); emit NewPendingAdmin(oldPendingAdmin, pendingAdmin); return uint(Error.NO_ERROR); } /** * @notice Sets a new comptroller for the market * @dev Admin function to set a new comptroller * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setComptroller(ComptrollerInterface newComptroller) public override returns (uint) { // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_COMPTROLLER_OWNER_CHECK); } ComptrollerInterface oldComptroller = comptroller; // Ensure invoke comptroller.isComptroller() returns true require(newComptroller.isComptroller(), "marker method returned false"); // Set market's comptroller to newComptroller comptroller = newComptroller; // Emit NewComptroller(oldComptroller, newComptroller) emit NewComptroller(oldComptroller, newComptroller); return uint(Error.NO_ERROR); } /** * @notice accrues interest and sets a new reserve factor for the protocol using _setReserveFactorFresh * @dev Admin function to accrue interest and set a new reserve factor * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setReserveFactor(uint newReserveFactorMantissa) external override nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reserve factor change failed. return fail(Error(error), FailureInfo.SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED); } // _setReserveFactorFresh emits reserve-factor-specific logs on errors, so we don't need to. return _setReserveFactorFresh(newReserveFactorMantissa); } /** * @notice Sets a new reserve factor for the protocol (*requires fresh interest accrual) * @dev Admin function to set a new reserve factor * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setReserveFactorFresh(uint newReserveFactorMantissa) internal returns (uint) { // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_RESERVE_FACTOR_ADMIN_CHECK); } // Verify market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_RESERVE_FACTOR_FRESH_CHECK); } // Check newReserveFactor ≤ maxReserveFactor if (newReserveFactorMantissa > reserveFactorMaxMantissa) { return fail(Error.BAD_INPUT, FailureInfo.SET_RESERVE_FACTOR_BOUNDS_CHECK); } uint oldReserveFactorMantissa = reserveFactorMantissa; reserveFactorMantissa = newReserveFactorMantissa; emit NewReserveFactor(oldReserveFactorMantissa, newReserveFactorMantissa); return uint(Error.NO_ERROR); } /** * @notice Accrues interest and reduces reserves by transferring from msg.sender * @param addAmount Amount of addition to reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _addReservesInternal(uint addAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reduce reserves failed. return fail(Error(error), FailureInfo.ADD_RESERVES_ACCRUE_INTEREST_FAILED); } // _addReservesFresh emits reserve-addition-specific logs on errors, so we don't need to. (error, ) = _addReservesFresh(addAmount); return error; } /** * @notice Add reserves by transferring from caller * @dev Requires fresh interest accrual * @param addAmount Amount of addition to reserves * @return (uint, uint) An error code (0=success, otherwise a failure (see ErrorReporter.sol for details)) and the actual amount added, net token fees */ function _addReservesFresh(uint addAmount) internal returns (uint, uint) { // totalReserves + actualAddAmount uint totalReservesNew; uint actualAddAmount; // We fail gracefully unless market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.ADD_RESERVES_FRESH_CHECK), actualAddAmount); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call doTransferIn for the caller and the addAmount * Note: The cToken must handle variations between ERC-20 and ETH underlying. * On success, the cToken holds an additional addAmount of cash. * doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. * it returns the amount actually transferred, in case of a fee. */ actualAddAmount = doTransferIn(msg.sender, addAmount); totalReservesNew = totalReserves + actualAddAmount; /* Revert on overflow */ require(totalReservesNew >= totalReserves, "add reserves unexpected overflow"); // Store reserves[n+1] = reserves[n] + actualAddAmount totalReserves = totalReservesNew; /* Emit NewReserves(admin, actualAddAmount, reserves[n+1]) */ emit ReservesAdded(msg.sender, actualAddAmount, totalReservesNew); /* Return (NO_ERROR, actualAddAmount) */ return (uint(Error.NO_ERROR), actualAddAmount); } /** * @notice Accrues interest and reduces reserves by transferring to admin * @param reduceAmount Amount of reduction to reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _reduceReserves(uint reduceAmount) external override nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reduce reserves failed. return fail(Error(error), FailureInfo.REDUCE_RESERVES_ACCRUE_INTEREST_FAILED); } // _reduceReservesFresh emits reserve-reduction-specific logs on errors, so we don't need to. return _reduceReservesFresh(reduceAmount); } /** * @notice Reduces reserves by transferring to admin * @dev Requires fresh interest accrual * @param reduceAmount Amount of reduction to reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _reduceReservesFresh(uint reduceAmount) internal returns (uint) { // totalReserves - reduceAmount uint totalReservesNew; // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.REDUCE_RESERVES_ADMIN_CHECK); } // We fail gracefully unless market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDUCE_RESERVES_FRESH_CHECK); } // Fail gracefully if protocol has insufficient underlying cash if (getCashPrior() < reduceAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDUCE_RESERVES_CASH_NOT_AVAILABLE); } // Check reduceAmount ≤ reserves[n] (totalReserves) if (reduceAmount > totalReserves) { return fail(Error.BAD_INPUT, FailureInfo.REDUCE_RESERVES_VALIDATION); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) totalReservesNew = totalReserves - reduceAmount; // We checked reduceAmount <= totalReserves above, so this should never revert. require(totalReservesNew <= totalReserves, "reduce reserves unexpected underflow"); // Store reserves[n+1] = reserves[n] - reduceAmount totalReserves = totalReservesNew; // doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. doTransferOut(admin, reduceAmount); emit ReservesReduced(admin, reduceAmount, totalReservesNew); return uint(Error.NO_ERROR); } /** * @notice accrues interest and updates the interest rate model using _setInterestRateModelFresh * @dev Admin function to accrue interest and update the interest rate model * @param newInterestRateModel the new interest rate model to use * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setInterestRateModel(InterestRateModel newInterestRateModel) public override returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted change of interest rate model failed return fail(Error(error), FailureInfo.SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED); } // _setInterestRateModelFresh emits interest-rate-model-update-specific logs on errors, so we don't need to. return _setInterestRateModelFresh(newInterestRateModel); } /** * @notice updates the interest rate model (*requires fresh interest accrual) * @dev Admin function to update the interest rate model * @param newInterestRateModel the new interest rate model to use * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setInterestRateModelFresh(InterestRateModel newInterestRateModel) internal returns (uint) { // Used to store old model for use in the event that is emitted on success InterestRateModel oldInterestRateModel; // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_INTEREST_RATE_MODEL_OWNER_CHECK); } // We fail gracefully unless market's block number equals current block number if (accrualBlockNumber != getBlockNumber()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_INTEREST_RATE_MODEL_FRESH_CHECK); } // Track the market's current interest rate model oldInterestRateModel = interestRateModel; // Ensure invoke newInterestRateModel.isInterestRateModel() returns true require(newInterestRateModel.isInterestRateModel(), "marker method returned false"); // Set the interest rate model to newInterestRateModel interestRateModel = newInterestRateModel; // Emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel) emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel); return uint(Error.NO_ERROR); } /*** Safe Token ***/ /** * @notice Gets balance of this contract in terms of the underlying * @dev This excludes the value of the current message, if any * @return The quantity of underlying owned by this contract */ function getCashPrior() internal view virtual returns (uint); /** * @dev Performs a transfer in, reverting upon failure. Returns the amount actually transferred to the protocol, in case of a fee. * This may revert due to insufficient balance or insufficient allowance. */ function doTransferIn(address from, uint tokenId) internal virtual returns (uint); /** * @dev Performs a transfer out, ideally returning an explanatory error code upon failure tather than reverting. * If caller has not called checked protocol's balance, may revert due to insufficient cash held in the contract. * If caller has checked protocol's balance, and verified it is >= amount, this should not revert in normal conditions. */ function doTransferOut(address payable to, uint amount) internal virtual; function doTransfer(address from, address to, uint tokenIndex) internal virtual; /*** Reentrancy Guard ***/ /** * @dev Prevents a contract from calling itself, directly or indirectly. */ modifier nonReentrant() { require(_notEntered, "re-entered"); _notEntered = false; _; _notEntered = true; // get a gas-refund post-Istanbul } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; 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; /** * @notice Share of seized collateral that is added to reserves */ uint public constant protocolSeizeShareMantissa = 5.0e16; // 5.0% } abstract 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 virtual returns (bool); function transferFrom(address src, address dst, uint amount) external virtual returns (bool); function approve(address spender, uint amount) external virtual returns (bool); function allowance(address owner, address spender) external view virtual returns (uint); function balanceOf(address owner) external view virtual returns (uint); function balanceOfUnderlying(address owner) external virtual returns (uint); function getAccountSnapshot(address account) external view virtual returns (uint, uint, uint, uint); function borrowRatePerBlock() external view virtual returns (uint); function supplyRatePerBlock() external view virtual returns (uint); function totalBorrowsCurrent() external virtual returns (uint); function borrowBalanceCurrent(address account) external virtual returns (uint); function borrowBalanceStored(address account) public view virtual returns (uint); function exchangeRateCurrent() public virtual returns (uint); function exchangeRateStored() public view virtual returns (uint); function getCash() external view virtual returns (uint); function accrueInterest() public virtual returns (uint); function seize(address liquidator, address borrower, uint seizeTokens) external virtual returns (uint); /*** Admin Functions ***/ function _setPendingAdmin(address payable newPendingAdmin) external virtual returns (uint); function _acceptAdmin() external virtual returns (uint); function _setComptroller(ComptrollerInterface newComptroller) public virtual returns (uint); function _setReserveFactor(uint newReserveFactorMantissa) external virtual returns (uint); function _reduceReserves(uint reduceAmount) external virtual returns (uint); function _setInterestRateModel(InterestRateModel newInterestRateModel) public virtual returns (uint); } contract CErc20Storage { /** * @notice Underlying asset for this CToken */ address public underlying; } abstract contract CErc20Interface is CErc20Storage { /*** User Interface ***/ function mint(uint mintAmount) external virtual returns (uint); function redeem(uint redeemTokens) external virtual returns (uint); function redeemUnderlying(uint redeemAmount) external virtual returns (uint); function borrow(uint borrowAmount) external virtual returns (uint); function repayBorrow(uint repayAmount) external virtual returns (uint); function repayBorrowBehalf(address borrower, uint repayAmount) external virtual returns (uint); function liquidateBorrow(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) external virtual returns (uint); /*** Admin Functions ***/ function _addReserves(uint addAmount) external virtual returns (uint); } contract CErc721Storage { /** * @notice Underlying asset for this CToken */ address public underlying; /** * @dev User deposit tokens map */ mapping (address => uint256[]) public userTokens; } abstract contract CErc721Interface is CErc721Storage { /*** User Interface ***/ function mint(uint tokenId) external virtual returns (uint); function redeem(uint redeemTokens) external virtual returns (uint); function mints(uint[] calldata tokenIds) external virtual returns (uint[] memory); function redeems(uint[] calldata redeemTokenIds) external virtual returns (uint[] memory); function redeemUnderlying(uint redeemAmount) external virtual returns (uint); function borrow(uint borrowAmount) external virtual returns (uint); function repayBorrow(uint repayAmount) external virtual returns (uint); function repayBorrowBehalf(address borrower, uint repayAmount) external virtual returns (uint); function liquidateBorrow(address borrower, uint repayAmount, CTokenInterface cTokenCollateral) external virtual returns (uint); /*** Admin Functions ***/ function _addReserves(uint addAmount) external virtual returns (uint); } contract CErc721MigrationStorage { /** * @notice Old version asset for this CToken */ address public migration; } abstract contract CErc721MigrationInterface is CErc721MigrationStorage { /*** User Interface ***/ function migrate() external virtual returns (uint); /*** Admin Functions ***/ function _setMigration(address migration_) external virtual; } contract CDelegationStorage { /** * @notice Implementation address for this contract */ address public implementation; } abstract 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 virtual; } abstract 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 virtual; /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() public virtual; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @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); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; abstract contract ComptrollerInterface { /// @notice Indicator that this is a Comptroller contract (for inspection) bool public constant isComptroller = true; /*** Assets You Are In ***/ function enterMarkets(address[] calldata cTokens) external virtual returns (uint[] memory); function exitMarket(address cToken) external virtual returns (uint); /*** Policy Hooks ***/ function mintAllowed(address cToken, address minter, uint mintAmount) external virtual returns (uint); function mintVerify(address cToken, address minter, uint mintAmount, uint mintTokens) external virtual; function redeemAllowed(address cToken, address redeemer, uint redeemTokens) external virtual returns (uint); function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) external virtual; function borrowAllowed(address cToken, address borrower, uint borrowAmount) external virtual returns (uint); function borrowVerify(address cToken, address borrower, uint borrowAmount) external virtual; function repayBorrowAllowed( address cToken, address payer, address borrower, uint repayAmount) external virtual returns (uint); function repayBorrowVerify( address cToken, address payer, address borrower, uint repayAmount, uint borrowerIndex) external virtual; function liquidateBorrowAllowed( address cTokenBorrowed, address cTokenCollateral, address liquidator, address borrower, uint repayAmount) external virtual returns (uint); function liquidateBorrowVerify( address cTokenBorrowed, address cTokenCollateral, address liquidator, address borrower, uint repayAmount, uint seizeTokens) external virtual; function seizeAllowed( address cTokenCollateral, address cTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external virtual returns (uint); function seizeVerify( address cTokenCollateral, address cTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external virtual; function transferAllowed(address cToken, address src, address dst, uint transferTokens) external virtual returns (uint); function transferVerify(address cToken, address src, address dst, uint transferTokens) external virtual; /*** Liquidity/Liquidation Calculations ***/ function liquidateCalculateSeizeTokens( address cTokenBorrowed, address cTokenCollateral, uint repayAmount) external virtual returns (uint, uint); } abstract contract ComptrollerG3Interface { /// @notice Indicator that this is a Comptroller contract (for inspection) bool public constant isComptroller = true; /*** Assets You Are In ***/ function enterMarkets(address[] calldata cTokens) external virtual returns (uint[] memory); function exitMarket(address cToken) external virtual returns (uint); /*** Policy Hooks ***/ function mintAllowed(address cToken, address minter, uint mintAmount) external virtual returns (uint); function mintVerify(address cToken, address minter, uint mintAmount, uint mintTokens) external virtual; function redeemAllowed(address cToken, address redeemer, uint redeemTokens) external virtual returns (uint); function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) external virtual; function borrowAllowed(address cToken, address borrower, uint borrowAmount) external virtual returns (uint); function borrowVerify(address cToken, address borrower, uint borrowAmount) external virtual; function repayBorrowAllowed( address cToken, address payer, address borrower, uint repayAmount) external virtual returns (uint); function repayBorrowVerify( address cToken, address payer, address borrower, uint repayAmount, uint borrowerIndex) external virtual; function liquidateBorrowAllowed( address cTokenBorrowed, address cTokenCollateral, address liquidator, address borrower, uint repayAmount) external virtual returns (uint); function liquidateBorrowVerify( address cTokenBorrowed, address cTokenCollateral, address liquidator, address borrower, uint repayAmount, uint seizeTokens) external virtual; function seizeAllowed( address cTokenCollateral, address cTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external virtual returns (uint); function seizeVerify( address cTokenCollateral, address cTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external virtual; function transferAllowed(address cToken, address src, address dst, uint transferTokens) external virtual returns (uint); function transferVerify(address cToken, address src, address dst, uint transferTokens) external virtual; /*** Liquidity/Liquidation Calculations ***/ function liquidateCalculateSeizeTokens( address cTokenBorrowed, address cTokenCollateral, uint repayAmount) external view virtual returns (uint, uint); function liquidateCalculateSeizeTokensEx( address cTokenBorrowed, address cTokenExCollateral, uint repayAmount) external view virtual returns (uint, uint, uint); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @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 balance 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 success 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 success 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 success 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 remaining 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); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @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 balance 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 success 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 remaining 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); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; 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, LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_EX_FAILED } /** * @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); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./CarefulMath.sol"; /** * @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 Exponential is CarefulMath { 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 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); } /** * @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 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)}); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @title Compound's InterestRateModel Interface * @author Compound */ abstract 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 virtual 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 virtual view returns (uint); }
{ "evmVersion": "istanbul", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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"},{"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"addAmount","type":"uint256"}],"name":"_addReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"_becomeImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_resignImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"_setComptroller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"migration_","type":"address"}],"name":"_setMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newPendingAdmin","type":"address"}],"name":"_setPendingAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"_setReserveFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accrueInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"borrowIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"borrowRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"comptroller","outputs":[{"internalType":"contract ComptrollerInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exchangeRateCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exchangeRateStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIndex","type":"uint256"},{"internalType":"address","name":"claimer","type":"address"}],"name":"flashClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"underlying_","type":"address"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"},{"internalType":"contract CTokenInterface","name":"cTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migration","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mints","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolSeizeShareMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"redeemTokenId","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"redeemTokenIds","type":"uint256[]"}],"name":"redeems","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrowBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract EIP20NonStandardInterface","name":"token","type":"address"}],"name":"sweepToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50615563806100206000396000f3fe608060405234801561001057600080fd5b50600436106103af5760003560e01c80636f307dc3116101f4578063b71d1a0c1161011a578063f3fdb15a116100ad578063f8f9da281161007c578063f8f9da2814610e78578063f9f411d814610e80578063fca7820b14610eac578063fe9c44ae14610ec9576103af565b8063f3fdb15a14610e06578063f5e3c46214610e0e578063f77bac0114610e44578063f851a44014610e70576103af565b8063db006a75116100e9578063db006a7514610d8d578063dd62ed3e14610daa578063e9c714f214610dd8578063f2b3abbd14610de0576103af565b8063b71d1a0c14610d13578063bd6d894d14610d39578063c37f68e214610d41578063c5ebeaec1461052f576103af565b806395dd919311610192578063a9059cbb11610161578063a9059cbb14610ca1578063aa5af0fd14610ccd578063ae9d70b014610cd5578063b2a02ff114610cdd576103af565b806395dd919314610b0857806399d8c1b414610b2e578063a0712d6814610c7c578063a6afed9514610c99576103af565b8063852a12e3116101ce578063852a12e314610ad35780638f840ddd14610af05780638fd3ab8014610af857806395d89b4114610b00576103af565b80636f307dc314610a9d57806370a0823114610aa557806373acee9814610acb576103af565b806326782247116102d95780634576b5db116102775780635fe3b567116102465780635fe3b56714610a68578063601a0bf114610a705780636752e70214610a8d5780636c540baf14610a95576103af565b80634576b5db1461098e57806347bd3718146109b457806356e67728146109bc5780635c60da1b14610a60576103af565b80633b1d21a2116102b35780633b1d21a2146108d55780633d298dda146108dd5780633d8b1a981461094b5780633e94101014610971576103af565b80632678224714610889578063313ce567146108915780633af9e669146108af576103af565b8063173b9904116103515780631a31d465116103205780631a31d465146106ab5780631be195601461080157806323b872dd146108275780632608f8181461085d576103af565b8063173b99041461066d57806317bfdfbc1461067557806318160ddd1461069b578063182df0f5146106a3576103af565b80630e7527021161038d5780630e7527021461052f578063150b7a021461055e578063153ab5051461063f5780631705a3bd14610649576103af565b8063059d51d8146103b457806306fdde0314610472578063095ea7b3146104ef575b600080fd5b610422600480360360208110156103ca57600080fd5b810190602081018135600160201b8111156103e457600080fd5b8201836020820111156103f657600080fd5b803590602001918460208302840111600160201b8311171561041757600080fd5b509092509050610ed1565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561045e578181015183820152602001610446565b505050509050019250505060405180910390f35b61047a610f6a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104b457818101518382015260200161049c565b50505050905090810190601f1680156104e15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61051b6004803603604081101561050557600080fd5b506001600160a01b038135169060200135610ff7565b604080519115158252519081900360200190f35b61054c6004803603602081101561054557600080fd5b5035611062565b60408051918252519081900360200190f35b6106226004803603608081101561057457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156105ae57600080fd5b8201836020820111156105c057600080fd5b803590602001918460018302840111600160201b831117156105e157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611072945050505050565b604080516001600160e01b03199092168252519081900360200190f35b610647611135565b005b610651611185565b604080516001600160a01b039092168252519081900360200190f35b61054c611194565b61054c6004803603602081101561068b57600080fd5b50356001600160a01b031661119a565b61054c61125a565b61054c611260565b610647600480360360e08110156106c157600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b81111561070357600080fd5b82018360208201111561071557600080fd5b803590602001918460018302840111600160201b8311171561073657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561078857600080fd5b82018360208201111561079a57600080fd5b803590602001918460018302840111600160201b831117156107bb57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506112c39050565b6106476004803603602081101561081757600080fd5b50356001600160a01b0316611362565b61051b6004803603606081101561083d57600080fd5b506001600160a01b038135811691602081013590911690604001356114a3565b61054c6004803603604081101561087357600080fd5b506001600160a01b038135169060200135611062565b610651611515565b610899611524565b6040805160ff9092168252519081900360200190f35b61054c600480360360208110156108c557600080fd5b50356001600160a01b031661152d565b61054c6115db565b610422600480360360208110156108f357600080fd5b810190602081018135600160201b81111561090d57600080fd5b82018360208201111561091f57600080fd5b803590602001918460208302840111600160201b8311171561094057600080fd5b5090925090506115ea565b6106476004803603602081101561096157600080fd5b50356001600160a01b0316611677565b61054c6004803603602081101561098757600080fd5b50356116ed565b61054c600480360360208110156109a457600080fd5b50356001600160a01b03166116f8565b61054c61184d565b610647600480360360208110156109d257600080fd5b810190602081018135600160201b8111156109ec57600080fd5b8201836020820111156109fe57600080fd5b803590602001918460018302840111600160201b83111715610a1f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611853945050505050565b6106516118a4565b6106516118b3565b61054c60048036036020811015610a8657600080fd5b50356118c2565b61054c61195d565b61054c611968565b61065161196e565b61054c60048036036020811015610abb57600080fd5b50356001600160a01b031661197d565b61054c611998565b61054c60048036036020811015610ae957600080fd5b5035611a4e565b61054c611a59565b61054c611a5f565b61047a6122b1565b61054c60048036036020811015610b1e57600080fd5b50356001600160a01b0316612309565b610647600480360360c0811015610b4457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610b7e57600080fd5b820183602082011115610b9057600080fd5b803590602001918460018302840111600160201b83111715610bb157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610c0357600080fd5b820183602082011115610c1557600080fd5b803590602001918460018302840111600160201b83111715610c3657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506123669050565b61054c60048036036020811015610c9257600080fd5b5035612518565b61054c612524565b61051b60048036036040811015610cb757600080fd5b506001600160a01b038135169060200135612877565b61054c6128e8565b61054c6128ee565b61054c60048036036060811015610cf357600080fd5b506001600160a01b0381358116916020810135909116906040013561298d565b61054c60048036036020811015610d2957600080fd5b50356001600160a01b03166129fe565b61054c612a8a565b610d6760048036036020811015610d5757600080fd5b50356001600160a01b0316612b46565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61054c60048036036020811015610da357600080fd5b5035612bdb565b61054c60048036036040811015610dc057600080fd5b506001600160a01b0381358116916020013516612be6565b61054c612c11565b61054c60048036036020811015610df657600080fd5b50356001600160a01b0316612d14565b610651612d4e565b61054c60048036036060811015610e2457600080fd5b506001600160a01b03813581169160208101359160409091013516611062565b61064760048036036040811015610e5a57600080fd5b50803590602001356001600160a01b0316612d5d565b610651612f28565b61054c612f3c565b61054c60048036036040811015610e9657600080fd5b506001600160a01b038135169060200135612fa0565b61054c60048036036020811015610ec257600080fd5b5035612fce565b61051b61304c565b606081818167ffffffffffffffff81118015610eec57600080fd5b50604051908082528060200260200182016040528015610f16578160200160208202803683370190505b50905060005b82811015610f5f57610f3f868683818110610f3357fe5b90506020020135613051565b50828281518110610f4c57fe5b6020908102919091010152600101610f1c565b509150505b92915050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060019392505050565b60008080fd5b509150505b919050565b6011546000906001600160a01b031633141561112357600083815260146020526040812080546001600160a01b0319166001600160a01b0387161790556110b985856130f1565b5090508015611105576040805162461bcd60e51b81526020600482015260136024820152721b5a5b9d125b9d195c9b985b0819985a5b1959606a1b604482015290519081900360640190fd5b50600083815260146020526040902080546001600160a01b03191690555b50630a85bd0160e11b5b949350505050565b60035461010090046001600160a01b031633146111835760405162461bcd60e51b815260040180806020018281038252602d8152602001806153d1602d913960400191505060405180910390fd5b565b6013546001600160a01b031681565b60085481565b6000805460ff166111df576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556111f1612524565b1461123c576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b61124582612309565b90505b6000805460ff19166001179055919050565b600d5481565b600080600061126d613193565b9092509050600082600381111561128057fe5b146112bc5760405162461bcd60e51b81526004018080602001828103825260358152602001806154806035913960400191505060405180910390fd5b9150505b90565b6112d1868686868686612366565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b15801561132d57600080fd5b505afa158015611341573d6000803e3d6000fd5b505050506040513d602081101561135757600080fd5b505050505050505050565b6011546001600160a01b03828116911614156113af5760405162461bcd60e51b815260040180806020018281038252603281526020018061537d6032913960400191505060405180910390fd5b6000816001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156113fe57600080fd5b505afa158015611412573d6000803e3d6000fd5b505050506040513d602081101561142857600080fd5b50516003546040805163a9059cbb60e01b81526101009092046001600160a01b03908116600484015260248301849052905192935084169163a9059cbb9160448082019260009290919082900301818387803b15801561148757600080fd5b505af115801561149b573d6000803e3d6000fd5b505050505050565b6000805460ff166114e8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114fe33868686613242565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b6000611537615251565b604051806020016040528061154a612a8a565b90526001600160a01b0384166000908152600e6020526040812054919250908190611576908490613565565b9092509050600082600381111561158957fe5b1461112d576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b60006115e56135b9565b905090565b606081818167ffffffffffffffff8111801561160557600080fd5b5060405190808252806020026020018201604052801561162f578160200160208202803683370190505b50905060005b82811015610f5f5761165886868381811061164c57fe5b905060200201356135bf565b82828151811061166457fe5b6020908102919091010152600101611635565b60035461010090046001600160a01b031633146116cb576040805162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21030b236b4b760991b604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610f648261363e565b60035460009061010090046001600160a01b031633146117255761171e6001603f6136d2565b905061106d565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b15801561176a57600080fd5b505afa15801561177e573d6000803e3d6000fd5b505050506040513d602081101561179457600080fd5b50516117e7576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b60035461010090046001600160a01b031633146118a15760405162461bcd60e51b815260040180806020018281038252602d815260200180615501602d913960400191505060405180910390fd5b50565b6015546001600160a01b031681565b6005546001600160a01b031681565b6000805460ff16611907576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611919612524565b9050801561193f5761193781601081111561193057fe5b60306136d2565b915050611248565b61194883613738565b9150506000805460ff19166001179055919050565b66b1a2bc2ec5000081565b60095481565b6011546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166119dd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556119ef612524565b14611a3a576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610f648261386b565b600c5481565b600080611a6a612524565b90508015611a9057611a88816010811115611a8157fe5b601e6136d2565b9150506112c0565b601354604080516370a0823160e01b81523360048201819052915191926000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015611ae157600080fd5b505afa158015611af5573d6000803e3d6000fd5b505050506040513d6020811015611b0b57600080fd5b5051905060005b81811015611bc6576001600160a01b038084166000818152601260209081526040918290206013548351631f3e823b60e31b815260048101959095526024850187905292519094929092169263f9f411d89260448083019392829003018186803b158015611b7f57600080fd5b505afa158015611b93573d6000803e3d6000fd5b505050506040513d6020811015611ba957600080fd5b505181546001818101845560009384526020909320015501611b12565b5060055460408051634ef4c3e160e01b81523060048201526001600160a01b0385811660248301526044820185905291516000939290921691634ef4c3e19160648082019260209290919082900301818787803b158015611c2657600080fd5b505af1158015611c3a573d6000803e3d6000fd5b505050506040513d6020811015611c5057600080fd5b505190508015611c7257611c676003601f836138e3565b9450505050506112c0565b611c7a613949565b60095414611c8e57611c67600a60226136d2565b611c96615264565b611c9e613193565b6040830181905260208301826003811115611cb557fe5b6003811115611cc057fe5b9052506000905081602001516003811115611cd757fe5b14611d0457611cf86009602183602001516003811115611cf357fe5b6138e3565b955050505050506112c0565b60c0810183905260408051602081018252908201518152611d2690849061394d565b6060830181905260208301826003811115611d3d57fe5b6003811115611d4857fe5b9052506000905081602001516003811115611d5f57fe5b14611db1576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b611dc1600d548260600151613964565b6080830181905260208301826003811115611dd857fe5b6003811115611de357fe5b9052506000905081602001516003811115611dfa57fe5b14611e365760405162461bcd60e51b81526004018080602001828103825260288152602001806154b56028913960400191505060405180910390fd5b6001600160a01b0384166000908152600e60205260409020546060820151611e5e9190613964565b60a0830181905260208301826003811115611e7557fe5b6003811115611e8057fe5b9052506000905081602001516003811115611e9757fe5b14611ed35760405162461bcd60e51b815260040180806020018281038252602b8152602001806153fe602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0385166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0386169130916000805160206154608339815191529181900360200190a360055460c08201516060830151604080516341c728b960e01b81523060048201526001600160a01b038981166024830152604482019490945260648101929092525191909216916341c728b991608480830192600092919082900301818387803b158015611fe957600080fd5b505af1158015611ffd573d6000803e3d6000fd5b5050505060608367ffffffffffffffff8111801561201a57600080fd5b50604051908082528060200260200182016040528015612044578160200160208202803683370190505b509050835b801561214a57601354604080516323b872dd60e01b81526001600160a01b03898116600483015230602483015260001985016044830152915191909216916323b872dd9160648083019260209291908290030181600087803b1580156120ae57600080fd5b505af11580156120c2573d6000803e3d6000fd5b505050506040513d60208110156120d857600080fd5b5051612124576040805162461bcd60e51b8152602060048201526016602482015275151c985b9cd9995c8819151bdad95b8819985a5b195960521b604482015290519081900360640190fd5b60018103828287038151811061213657fe5b602090810291909101015260001901612049565b50601354604051631e94c6ed60e11b81526020600482018181528451602484015284516001600160a01b0390941693633d298dda9386938392604490920191818601910280838360005b838110156121ac578181015183820152602001612194565b5050505090500192505050600060405180830381600087803b1580156121d157600080fd5b505af11580156121e5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561220e57600080fd5b8101908080516040519392919084600160201b82111561222d57600080fd5b90830190602082018581111561224257600080fd5b82518660208202830111600160201b8211171561225e57600080fd5b82525081516020918201928201910280838360005b8381101561228b578181015183820152602001612273565b5050505090500160405250505050600060108111156122a657fe5b965050505050505090565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610fef5780601f10610fc457610100808354040283529160200191610fef565b60008060006123178461398a565b9092509050600082600381111561232a57fe5b146118465760405162461bcd60e51b81526004018080602001828103825260378152602001806154296037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146123b45760405162461bcd60e51b81526004018080602001828103825260248152602001806153366024913960400191505060405180910390fd5b6009541580156123c45750600a54155b6123ff5760405162461bcd60e51b815260040180806020018281038252602381526020018061535a6023913960400191505060405180910390fd5b670de0b6b3a76400006007556000612416876116f8565b9050801561246b576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b612473613949565b600955670de0b6b3a7640000600a5561248b86613a3d565b905080156124ca5760405162461bcd60e51b81526004018080602001828103825260228152602001806153af6022913960400191505060405180910390fd5b83516124dd9060019060208701906152a2565b5082516124f19060029060208601906152a2565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b60008061106883613051565b60008061252f613949565b60095490915080821415612548576000925050506112c0565b60006125526135b9565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b1580156125c057600080fd5b505afa1580156125d4573d6000803e3d6000fd5b505050506040513d60208110156125ea57600080fd5b5051905065048c27395000811115612649576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6000806126568989613bb2565b9092509050600082600381111561266957fe5b146126bb576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b6126c3615251565b6000806000806126e160405180602001604052808a81525087613bd5565b909750945060008760038111156126f457fe5b146127215761270c60096006896003811115611cf357fe5b9e5050505050505050505050505050506112c0565b61272b858c613565565b9097509350600087600381111561273e57fe5b146127565761270c60096001896003811115611cf357fe5b612760848c613964565b9097509250600087600381111561277357fe5b1461278b5761270c60096004896003811115611cf357fe5b6127a66040518060200160405280600854815250858c613c3d565b909750915060008760038111156127b957fe5b146127d15761270c60096005896003811115611cf357fe5b6127dc858a8b613c3d565b909750905060008760038111156127ef57fe5b146128075761270c60096003896003811115611cf357fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff166128bc576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556128d233338686613242565b1490506000805460ff1916600117905592915050565b600a5481565b6006546000906001600160a01b031663b816881661290a6135b9565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b15801561295c57600080fd5b505afa158015612970573d6000803e3d6000fd5b505050506040513d602081101561298657600080fd5b5051905090565b6000805460ff166129d2576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191690556129e833858585613c99565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314612a245761171e600160456136d2565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611846565b6000805460ff16612acf576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612ae1612524565b14612b2c576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b612b34611260565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080612b718961398a565b935090506000816003811115612b8357fe5b14612ba15760095b6000806000975097509750975050505050612bd4565b612ba9613193565b925090506000816003811115612bbb57fe5b14612bc7576009612b8b565b5060009650919450925090505b9193509193565b6000610f64826135bf565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6004546000906001600160a01b031633141580612c2c575033155b15612c4457612c3d600160006136d2565b90506112c0565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b600080612d1f612524565b90508015612d4557612d3d816010811115612d3657fe5b60406136d2565b91505061106d565b61184683613a3d565b6006546001600160a01b031681565b33328114612da2576040805162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21037bbb732b960991b604482015290519081900360640190fd5b6001600160a01b0381166000908152601260205260408120805485908110612dc657fe5b6000918252602082200154601154604080516323b872dd60e01b81523060048201526001600160a01b0388811660248301526044820185905291519395509116926323b872dd9260648084019382900301818387803b158015612e2857600080fd5b505af1158015612e3c573d6000803e3d6000fd5b50505050826001600160a01b031663ddd60a5a83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612e9757600080fd5b505af1158015612eab573d6000803e3d6000fd5b5050601154604080516323b872dd60e01b81526001600160a01b0388811660048301523060248301526044820187905291519190921693506323b872dd9250606480830192600092919082900301818387803b158015612f0a57600080fd5b505af1158015612f1e573d6000803e3d6000fd5b5050505050505050565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f24053612f586135b9565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b15801561295c57600080fd5b60126020528160005260406000208181548110612fb957fe5b90600052602060002001600091509150505481565b6000805460ff16613013576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613025612524565b905080156130435761193781601081111561303c57fe5b60466136d2565b61194883613f32565b600181565b60008054819060ff16613098576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556130aa612524565b905080156130cd576130c1816010811115611a8157fe5b600092509250506130dd565b6130d73385613fda565b92509250505b6000805460ff191660011790559092909150565b60008054819060ff16613138576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561314a612524565b9050801561316d57613161816010811115611a8157fe5b6000925092505061317d565b6131778585613fda565b92509250505b6000805460ff1916600117905590939092509050565b600d546000908190806131ae5750506007546000915061323e565b60006131b86135b9565b905060006131c4615251565b60006131d584600b54600c5461443e565b9350905060008160038111156131e757fe5b146131fc5795506000945061323e9350505050565b613206838661447c565b92509050600081600381111561321857fe5b1461322d5795506000945061323e9350505050565b505160009550935061323e92505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526001606483015291516000938493169163bdcdc25891608480830192602092919082900301818787803b1580156132a757600080fd5b505af11580156132bb573d6000803e3d6000fd5b505050506040513d60208110156132d157600080fd5b5051905080156132f0576132e86003604a836138e3565b91505061112d565b836001600160a01b0316856001600160a01b03161415613316576132e86002604b6136d2565b6000856001600160a01b0316876001600160a01b0316141561333b5750600019613363565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b600080600080613374856001613bb2565b9094509250600084600381111561338757fe5b146133a5576133986009604b6136d2565b965050505050505061112d565b6001600160a01b038a166000908152600e60205260409020546133c9906001613bb2565b909450915060008460038111156133dc57fe5b146133ed576133986009604c6136d2565b6001600160a01b0389166000908152600e6020526040902054613411906001613964565b9094509050600084600381111561342457fe5b14613435576133986009604d6136d2565b6001600160a01b03808b166000908152600e6020526040808220859055918b16815220819055600019851461348d576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b6134988a8a8a61452d565b886001600160a01b03168a6001600160a01b031660008051602061546083398151915260016040518082815260200191505060405180910390a36005546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c811660448301526001606483015291519190921691636a56947e91608480830192600092919082900301818387803b15801561353557600080fd5b505af1158015613549573d6000803e3d6000fd5b5060009250613556915050565b9b9a5050505050505050505050565b6000806000613572615251565b61357c8686613bd5565b9092509050600082600381111561358f57fe5b146135a057509150600090506135b2565b60006135ab82614667565b9350935050505b9250929050565b600d5490565b6000805460ff16613604576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613616612524565b905080156136345761193781601081111561362d57fe5b60276136d2565b6119483384614676565b6000805460ff16613683576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613695612524565b905080156136b3576119378160108111156136ac57fe5b604e6136d2565b6136bc83614aa3565b509150506000805460ff19166001179055919050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561370157fe5b83605181111561370d57fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561184657fe5b600354600090819061010090046001600160a01b0316331461376057612d3d600160316136d2565b613768613949565b6009541461377c57612d3d600a60336136d2565b826137856135b9565b101561379757612d3d600e60326136d2565b600c548311156137ad57612d3d600260346136d2565b50600c54828103908111156137f35760405162461bcd60e51b81526004018080602001828103825260248152602001806154dd6024913960400191505060405180910390fd5b600c8190556003546138139061010090046001600160a01b031684614b8b565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611846565b6000805460ff166138b0576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556138c2612524565b905080156138d95761193781601081111561362d57fe5b6119483384614dda565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa084601081111561391257fe5b84605181111561391e57fe5b604080519283526020830191909152818101859052519081900360600190a183601081111561112d57fe5b4390565b600080600061395a615251565b61357c8686614f1f565b60008083830184811061397c576000925090506135b2565b6002600092509250506135b2565b6001600160a01b0381166000908152601060205260408120805482918291829182916139c0576000809550955050505050613a38565b6139d08160000154600a54614f7e565b909450925060008460038111156139e357fe5b146139f8578360009550955050505050613a38565b613a06838260010154614fbd565b90945091506000846003811115613a1957fe5b14613a2e578360009550955050505050613a38565b5060009450925050505b915091565b600354600090819061010090046001600160a01b03163314613a6557612d3d600160426136d2565b613a6d613949565b60095414613a8157612d3d600a60416136d2565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015613ad257600080fd5b505afa158015613ae6573d6000803e3d6000fd5b505050506040513d6020811015613afc57600080fd5b5051613b4f576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611846565b600080838311613bc95750600090508183036135b2565b506003905060006135b2565b6000613bdf615251565b600080613bf0866000015186614f7e565b90925090506000826003811115613c0357fe5b14613c22575060408051602081019091526000815290925090506135b2565b60408051602081019091529081526000969095509350505050565b6000806000613c4a615251565b613c548787613bd5565b90925090506000826003811115613c6757fe5b14613c785750915060009050613c91565b613c8a613c8482614667565b86613964565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015613d0657600080fd5b505af1158015613d1a573d6000803e3d6000fd5b505050506040513d6020811015613d3057600080fd5b505190508015613d47576132e86003601b836138e3565b846001600160a01b0316846001600160a01b03161415613d6d576132e86006601c6136d2565b6001600160a01b0384166000908152600e602052604081205481908190613d948188613bb2565b90945092506000846003811115613da757fe5b14613dcb57613dbf6009601a866003811115611cf357fe5b9550505050505061112d565b6001600160a01b0389166000908152600e6020526040902054613dee9088613964565b90945091506000846003811115613e0157fe5b14613e1957613dbf60096019866003811115611cf357fe5b6001600160a01b038089166000908152600e6020526040808220869055918b168152208290555b82811115613e5f57613e56888a6001840361452d565b60001901613e40565b886001600160a01b0316886001600160a01b0316600080516020615460833981519152896040518082815260200191505060405180910390a360055460408051636d35bf9160e01b81523060048201526001600160a01b038d811660248301528c811660448301528b81166064830152608482018b905291519190921691636d35bf919160a480830192600092919082900301818387803b158015613f0357600080fd5b505af1158015613f17573d6000803e3d6000fd5b5060009250613f24915050565b9a9950505050505050505050565b60035460009061010090046001600160a01b03163314613f585761171e600160476136d2565b613f60613949565b60095414613f745761171e600a60486136d2565b670de0b6b3a7640000821115613f905761171e600260496136d2565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611846565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b0385811660248301526001604483018190529251600094859493859390911691634ef4c3e19160648082019260209290919082900301818787803b15801561403f57600080fd5b505af1158015614053573d6000803e3d6000fd5b505050506040513d602081101561406957600080fd5b50519050801561408d576140806003601f836138e3565b60009350935050506135b2565b614095613949565b600954146140a957614080600a60226136d2565b6140b1615264565b6140b9613193565b60408301819052602083018260038111156140d057fe5b60038111156140db57fe5b90525060009050816020015160038111156140f257fe5b1461411c5761410e6009602183602001516003811115611cf357fe5b6000945094505050506135b2565b6141268787614fe8565b60c0820181905260408051602081018252908301518152614147919061394d565b606083018190526020830182600381111561415e57fe5b600381111561416957fe5b905250600090508160200151600381111561418057fe5b146141d2576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b6141e2600d548260600151613964565b60808301819052602083018260038111156141f957fe5b600381111561420457fe5b905250600090508160200151600381111561421b57fe5b146142575760405162461bcd60e51b81526004018080602001828103825260288152602001806154b56028913960400191505060405180910390fd5b6001600160a01b0387166000908152600e6020526040902054606082015161427f9190613964565b60a083018190526020830182600381111561429657fe5b60038111156142a157fe5b90525060009050816020015160038111156142b857fe5b146142f45760405162461bcd60e51b815260040180806020018281038252602b8152602001806153fe602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0388166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0389169130916000805160206154608339815191529181900360200190a360055460c08201516060830151604080516341c728b960e01b81523060048201526001600160a01b038c81166024830152604482019490945260648101929092525191909216916341c728b991608480830192600092919082900301818387803b15801561440a57600080fd5b505af115801561441e573d6000803e3d6000fd5b506000925061442b915050565b8160c00151945094505050509250929050565b60008060008061444e8787613964565b9092509050600082600381111561446157fe5b146144725750915060009050613c91565b613c8a8186613bb2565b6000614486615251565b60008061449b86670de0b6b3a7640000614f7e565b909250905060008260038111156144ae57fe5b146144cd575060408051602081019091526000815290925090506135b2565b6000806144da8388614fbd565b909250905060008260038111156144ed57fe5b1461451057816040518060200160405280600081525095509550505050506135b2565b604080516020810190915290815260009890975095505050505050565b6001600160a01b038316600090815260126020526040902054600019018082111561455757600080fd5b6001600160a01b038416600090815260126020526040812080548490811061457b57fe5b90600052602060002001549050818310156145fc576001600160a01b03851660009081526012602052604090208054839081106145b457fe5b906000526020600020015460126000876001600160a01b03166001600160a01b0316815260200190815260200160002084815481106145ef57fe5b6000918252602090912001555b6001600160a01b038516600090815260126020526040902080548061461d57fe5b6000828152602080822083016000199081018390559092019092556001600160a01b0390951681526012855260408120805460018101825590825294902090930192909255505050565b51670de0b6b3a7640000900490565b6000614680615264565b614688613193565b604083018190526020830182600381111561469f57fe5b60038111156146aa57fe5b90525060009050816020015160038111156146c157fe5b146146e5576146dd6009602b83602001516003811115611cf357fe5b915050610f64565b6001606082018190526040805160208101825290830151815261470791613565565b608083018190526020830182600381111561471e57fe5b600381111561472957fe5b905250600090508160200151600381111561474057fe5b1461475c576146dd6009602983602001516003811115611cf357fe5b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03888116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b1580156147c157600080fd5b505af11580156147d5573d6000803e3d6000fd5b505050506040513d60208110156147eb57600080fd5b50519050801561480b5761480260036028836138e3565b92505050610f64565b614813613949565b6009541461482757614802600a602c6136d2565b614837600d548360600151613bb2565b60a084018190526020840182600381111561484e57fe5b600381111561485957fe5b905250600090508260200151600381111561487057fe5b1461488c576148026009602e84602001516003811115611cf357fe5b6001600160a01b0385166000908152600e602052604090205460608301516148b49190613bb2565b60c08401819052602084018260038111156148cb57fe5b60038111156148d657fe5b90525060009050826020015160038111156148ed57fe5b14614909576148026009602d84602001516003811115611cf357fe5b81608001516149166135b9565b101561492857614802600e602f6136d2565b60a0820151600d90815560c08301516001600160a01b0387166000908152600e60205260409020555415801561496057506000600b54115b1561497857600b8054600c8054919091039055600090555b6149828585614b8b565b6060820151604080519182525130916001600160a01b038816916000805160206154608339815191529181900360200190a37fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a929858360800151846060015160405180846001600160a01b03168152602001838152602001828152602001935050505060405180910390a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038a81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015614a7957600080fd5b505af1158015614a8d573d6000803e3d6000fd5b5060009250614a9a915050565b95945050505050565b600080600080614ab1613949565b60095414614ad057614ac5600a604f6136d2565b93509150613a389050565b614ada3386614fe8565b905080600c54019150600c54821015614b3a576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6011546001600160a01b03838116600090815260126020526040812080549290931692909184908110614bba57fe5b60009182526020808320909101546001600160a01b038716835260129091526040909120805491925060001982019182908110614bf357fe5b906000526020600020015460126000876001600160a01b03166001600160a01b031681526020019081526020016000208581548110614c2e57fe5b60009182526020808320909101929092556001600160a01b0387168152601290915260409020805480614c5d57fe5b600190038181906000526020600020016000905590556000836001600160a01b0316634ca4fdf5846040518263ffffffff1660e01b81526004018082815260200191505060606040518083038186803b158015614cb957600080fd5b505afa158015614ccd573d6000803e3d6000fd5b505050506040513d6060811015614ce357600080fd5b505190508015614d625760408051631552cf0f60e31b81523060048201526001600160a01b0388811660248301526044820186905291519186169163aa9678789160648082019260009290919082900301818387803b158015614d4557600080fd5b505af1158015614d59573d6000803e3d6000fd5b5050505061149b565b604080516323b872dd60e01b81523060048201526001600160a01b038881166024830152604482018690529151918616916323b872dd9160648082019260009290919082900301818387803b158015614dba57600080fd5b505af1158015614dce573d6000803e3d6000fd5b50505050505050505050565b6000614de4615264565b614dec613193565b6040830181905260208301826003811115614e0357fe5b6003811115614e0e57fe5b9052506000905081602001516003811115614e2557fe5b14614e41576146dd6009602b83602001516003811115611cf357fe5b614e5e60016040518060200160405280846040015181525061394d565b6060830181905260208301826003811115614e7557fe5b6003811115614e8057fe5b9052506000905081602001516003811115614e9757fe5b14614eb3576146dd6009602a83602001516003811115611cf357fe5b6001608082015260055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03888116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b1580156147c157600080fd5b6000614f29615251565b600080614f3e670de0b6b3a764000087614f7e565b90925090506000826003811115614f5157fe5b14614f70575060408051602081019091526000815290925090506135b2565b6135ab81866000015161447c565b60008083614f91575060009050806135b2565b83830283858281614f9e57fe5b0414614fb2576002600092509250506135b2565b6000925090506135b2565b60008082614fd157506001905060006135b2565b6000838581614fdc57fe5b04915091509250929050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b15801561503757600080fd5b505afa15801561504b573d6000803e3d6000fd5b505050506040513d602081101561506157600080fd5b50516000858152601460205260409020549091506001600160a01b03166150f757604080516323b872dd60e01b81526001600160a01b038781166004830152306024830152604482018790529151918416916323b872dd9160648082019260009290919082900301818387803b1580156150da57600080fd5b505af11580156150ee573d6000803e3d6000fd5b5050505061515b565b6000848152601460205260409020546001600160a01b03868116911614615156576040805162461bcd60e51b815260206004820152600e60248201526d696e76616c696420737570706c7960901b604482015290519081900360640190fd5b600019015b6001600160a01b03808616600090815260126020908152604080832080546001810182559084528284200188905580516370a0823160e01b8152306004820152905192938616926370a0823192602480840193919291829003018186803b1580156151c557600080fd5b505afa1580156151d9573d6000803e3d6000fd5b505050506040513d60208110156151ef57600080fd5b5051905081811015615248576040805162461bcd60e51b815260206004820152601a60248201527f544f4b454e5f5452414e534645525f494e5f4f564552464c4f57000000000000604482015290519081900360640190fd5b03949350505050565b6040518060200160405280600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106152e357805160ff1916838001178555615310565b82800160010185558215615310579182015b828111156153105782518255916020019190600101906152f5565b5061531c929150615320565b5090565b5b8082111561531c576000815560010161532156fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e63654345726332303a3a7377656570546f6b656e3a2063616e206e6f7420737765657020756e6465726c79696e6720746f6b656e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65646f6e6c79207468652061646d696e206d61792063616c6c205f72657369676e496d706c656d656e746174696f6e4d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef65786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c454472656475636520726573657276657320756e657870656374656420756e646572666c6f776f6e6c79207468652061646d696e206d61792063616c6c205f6265636f6d65496d706c656d656e746174696f6ea264697066735822122075126b2efcd7df73cd542fcf5efc58530064f10a49b2c4e913cd382904c2379364736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103af5760003560e01c80636f307dc3116101f4578063b71d1a0c1161011a578063f3fdb15a116100ad578063f8f9da281161007c578063f8f9da2814610e78578063f9f411d814610e80578063fca7820b14610eac578063fe9c44ae14610ec9576103af565b8063f3fdb15a14610e06578063f5e3c46214610e0e578063f77bac0114610e44578063f851a44014610e70576103af565b8063db006a75116100e9578063db006a7514610d8d578063dd62ed3e14610daa578063e9c714f214610dd8578063f2b3abbd14610de0576103af565b8063b71d1a0c14610d13578063bd6d894d14610d39578063c37f68e214610d41578063c5ebeaec1461052f576103af565b806395dd919311610192578063a9059cbb11610161578063a9059cbb14610ca1578063aa5af0fd14610ccd578063ae9d70b014610cd5578063b2a02ff114610cdd576103af565b806395dd919314610b0857806399d8c1b414610b2e578063a0712d6814610c7c578063a6afed9514610c99576103af565b8063852a12e3116101ce578063852a12e314610ad35780638f840ddd14610af05780638fd3ab8014610af857806395d89b4114610b00576103af565b80636f307dc314610a9d57806370a0823114610aa557806373acee9814610acb576103af565b806326782247116102d95780634576b5db116102775780635fe3b567116102465780635fe3b56714610a68578063601a0bf114610a705780636752e70214610a8d5780636c540baf14610a95576103af565b80634576b5db1461098e57806347bd3718146109b457806356e67728146109bc5780635c60da1b14610a60576103af565b80633b1d21a2116102b35780633b1d21a2146108d55780633d298dda146108dd5780633d8b1a981461094b5780633e94101014610971576103af565b80632678224714610889578063313ce567146108915780633af9e669146108af576103af565b8063173b9904116103515780631a31d465116103205780631a31d465146106ab5780631be195601461080157806323b872dd146108275780632608f8181461085d576103af565b8063173b99041461066d57806317bfdfbc1461067557806318160ddd1461069b578063182df0f5146106a3576103af565b80630e7527021161038d5780630e7527021461052f578063150b7a021461055e578063153ab5051461063f5780631705a3bd14610649576103af565b8063059d51d8146103b457806306fdde0314610472578063095ea7b3146104ef575b600080fd5b610422600480360360208110156103ca57600080fd5b810190602081018135600160201b8111156103e457600080fd5b8201836020820111156103f657600080fd5b803590602001918460208302840111600160201b8311171561041757600080fd5b509092509050610ed1565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561045e578181015183820152602001610446565b505050509050019250505060405180910390f35b61047a610f6a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156104b457818101518382015260200161049c565b50505050905090810190601f1680156104e15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61051b6004803603604081101561050557600080fd5b506001600160a01b038135169060200135610ff7565b604080519115158252519081900360200190f35b61054c6004803603602081101561054557600080fd5b5035611062565b60408051918252519081900360200190f35b6106226004803603608081101561057457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156105ae57600080fd5b8201836020820111156105c057600080fd5b803590602001918460018302840111600160201b831117156105e157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611072945050505050565b604080516001600160e01b03199092168252519081900360200190f35b610647611135565b005b610651611185565b604080516001600160a01b039092168252519081900360200190f35b61054c611194565b61054c6004803603602081101561068b57600080fd5b50356001600160a01b031661119a565b61054c61125a565b61054c611260565b610647600480360360e08110156106c157600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b81111561070357600080fd5b82018360208201111561071557600080fd5b803590602001918460018302840111600160201b8311171561073657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561078857600080fd5b82018360208201111561079a57600080fd5b803590602001918460018302840111600160201b831117156107bb57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506112c39050565b6106476004803603602081101561081757600080fd5b50356001600160a01b0316611362565b61051b6004803603606081101561083d57600080fd5b506001600160a01b038135811691602081013590911690604001356114a3565b61054c6004803603604081101561087357600080fd5b506001600160a01b038135169060200135611062565b610651611515565b610899611524565b6040805160ff9092168252519081900360200190f35b61054c600480360360208110156108c557600080fd5b50356001600160a01b031661152d565b61054c6115db565b610422600480360360208110156108f357600080fd5b810190602081018135600160201b81111561090d57600080fd5b82018360208201111561091f57600080fd5b803590602001918460208302840111600160201b8311171561094057600080fd5b5090925090506115ea565b6106476004803603602081101561096157600080fd5b50356001600160a01b0316611677565b61054c6004803603602081101561098757600080fd5b50356116ed565b61054c600480360360208110156109a457600080fd5b50356001600160a01b03166116f8565b61054c61184d565b610647600480360360208110156109d257600080fd5b810190602081018135600160201b8111156109ec57600080fd5b8201836020820111156109fe57600080fd5b803590602001918460018302840111600160201b83111715610a1f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611853945050505050565b6106516118a4565b6106516118b3565b61054c60048036036020811015610a8657600080fd5b50356118c2565b61054c61195d565b61054c611968565b61065161196e565b61054c60048036036020811015610abb57600080fd5b50356001600160a01b031661197d565b61054c611998565b61054c60048036036020811015610ae957600080fd5b5035611a4e565b61054c611a59565b61054c611a5f565b61047a6122b1565b61054c60048036036020811015610b1e57600080fd5b50356001600160a01b0316612309565b610647600480360360c0811015610b4457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b811115610b7e57600080fd5b820183602082011115610b9057600080fd5b803590602001918460018302840111600160201b83111715610bb157600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610c0357600080fd5b820183602082011115610c1557600080fd5b803590602001918460018302840111600160201b83111715610c3657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506123669050565b61054c60048036036020811015610c9257600080fd5b5035612518565b61054c612524565b61051b60048036036040811015610cb757600080fd5b506001600160a01b038135169060200135612877565b61054c6128e8565b61054c6128ee565b61054c60048036036060811015610cf357600080fd5b506001600160a01b0381358116916020810135909116906040013561298d565b61054c60048036036020811015610d2957600080fd5b50356001600160a01b03166129fe565b61054c612a8a565b610d6760048036036020811015610d5757600080fd5b50356001600160a01b0316612b46565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61054c60048036036020811015610da357600080fd5b5035612bdb565b61054c60048036036040811015610dc057600080fd5b506001600160a01b0381358116916020013516612be6565b61054c612c11565b61054c60048036036020811015610df657600080fd5b50356001600160a01b0316612d14565b610651612d4e565b61054c60048036036060811015610e2457600080fd5b506001600160a01b03813581169160208101359160409091013516611062565b61064760048036036040811015610e5a57600080fd5b50803590602001356001600160a01b0316612d5d565b610651612f28565b61054c612f3c565b61054c60048036036040811015610e9657600080fd5b506001600160a01b038135169060200135612fa0565b61054c60048036036020811015610ec257600080fd5b5035612fce565b61051b61304c565b606081818167ffffffffffffffff81118015610eec57600080fd5b50604051908082528060200260200182016040528015610f16578160200160208202803683370190505b50905060005b82811015610f5f57610f3f868683818110610f3357fe5b90506020020135613051565b50828281518110610f4c57fe5b6020908102919091010152600101610f1c565b509150505b92915050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060019392505050565b60008080fd5b509150505b919050565b6011546000906001600160a01b031633141561112357600083815260146020526040812080546001600160a01b0319166001600160a01b0387161790556110b985856130f1565b5090508015611105576040805162461bcd60e51b81526020600482015260136024820152721b5a5b9d125b9d195c9b985b0819985a5b1959606a1b604482015290519081900360640190fd5b50600083815260146020526040902080546001600160a01b03191690555b50630a85bd0160e11b5b949350505050565b60035461010090046001600160a01b031633146111835760405162461bcd60e51b815260040180806020018281038252602d8152602001806153d1602d913960400191505060405180910390fd5b565b6013546001600160a01b031681565b60085481565b6000805460ff166111df576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556111f1612524565b1461123c576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b61124582612309565b90505b6000805460ff19166001179055919050565b600d5481565b600080600061126d613193565b9092509050600082600381111561128057fe5b146112bc5760405162461bcd60e51b81526004018080602001828103825260358152602001806154806035913960400191505060405180910390fd5b9150505b90565b6112d1868686868686612366565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b15801561132d57600080fd5b505afa158015611341573d6000803e3d6000fd5b505050506040513d602081101561135757600080fd5b505050505050505050565b6011546001600160a01b03828116911614156113af5760405162461bcd60e51b815260040180806020018281038252603281526020018061537d6032913960400191505060405180910390fd5b6000816001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156113fe57600080fd5b505afa158015611412573d6000803e3d6000fd5b505050506040513d602081101561142857600080fd5b50516003546040805163a9059cbb60e01b81526101009092046001600160a01b03908116600484015260248301849052905192935084169163a9059cbb9160448082019260009290919082900301818387803b15801561148757600080fd5b505af115801561149b573d6000803e3d6000fd5b505050505050565b6000805460ff166114e8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114fe33868686613242565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b6000611537615251565b604051806020016040528061154a612a8a565b90526001600160a01b0384166000908152600e6020526040812054919250908190611576908490613565565b9092509050600082600381111561158957fe5b1461112d576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b60006115e56135b9565b905090565b606081818167ffffffffffffffff8111801561160557600080fd5b5060405190808252806020026020018201604052801561162f578160200160208202803683370190505b50905060005b82811015610f5f5761165886868381811061164c57fe5b905060200201356135bf565b82828151811061166457fe5b6020908102919091010152600101611635565b60035461010090046001600160a01b031633146116cb576040805162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21030b236b4b760991b604482015290519081900360640190fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610f648261363e565b60035460009061010090046001600160a01b031633146117255761171e6001603f6136d2565b905061106d565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b15801561176a57600080fd5b505afa15801561177e573d6000803e3d6000fd5b505050506040513d602081101561179457600080fd5b50516117e7576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b60035461010090046001600160a01b031633146118a15760405162461bcd60e51b815260040180806020018281038252602d815260200180615501602d913960400191505060405180910390fd5b50565b6015546001600160a01b031681565b6005546001600160a01b031681565b6000805460ff16611907576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611919612524565b9050801561193f5761193781601081111561193057fe5b60306136d2565b915050611248565b61194883613738565b9150506000805460ff19166001179055919050565b66b1a2bc2ec5000081565b60095481565b6011546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166119dd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556119ef612524565b14611a3a576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610f648261386b565b600c5481565b600080611a6a612524565b90508015611a9057611a88816010811115611a8157fe5b601e6136d2565b9150506112c0565b601354604080516370a0823160e01b81523360048201819052915191926000926001600160a01b03909116916370a08231916024808301926020929190829003018186803b158015611ae157600080fd5b505afa158015611af5573d6000803e3d6000fd5b505050506040513d6020811015611b0b57600080fd5b5051905060005b81811015611bc6576001600160a01b038084166000818152601260209081526040918290206013548351631f3e823b60e31b815260048101959095526024850187905292519094929092169263f9f411d89260448083019392829003018186803b158015611b7f57600080fd5b505afa158015611b93573d6000803e3d6000fd5b505050506040513d6020811015611ba957600080fd5b505181546001818101845560009384526020909320015501611b12565b5060055460408051634ef4c3e160e01b81523060048201526001600160a01b0385811660248301526044820185905291516000939290921691634ef4c3e19160648082019260209290919082900301818787803b158015611c2657600080fd5b505af1158015611c3a573d6000803e3d6000fd5b505050506040513d6020811015611c5057600080fd5b505190508015611c7257611c676003601f836138e3565b9450505050506112c0565b611c7a613949565b60095414611c8e57611c67600a60226136d2565b611c96615264565b611c9e613193565b6040830181905260208301826003811115611cb557fe5b6003811115611cc057fe5b9052506000905081602001516003811115611cd757fe5b14611d0457611cf86009602183602001516003811115611cf357fe5b6138e3565b955050505050506112c0565b60c0810183905260408051602081018252908201518152611d2690849061394d565b6060830181905260208301826003811115611d3d57fe5b6003811115611d4857fe5b9052506000905081602001516003811115611d5f57fe5b14611db1576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b611dc1600d548260600151613964565b6080830181905260208301826003811115611dd857fe5b6003811115611de357fe5b9052506000905081602001516003811115611dfa57fe5b14611e365760405162461bcd60e51b81526004018080602001828103825260288152602001806154b56028913960400191505060405180910390fd5b6001600160a01b0384166000908152600e60205260409020546060820151611e5e9190613964565b60a0830181905260208301826003811115611e7557fe5b6003811115611e8057fe5b9052506000905081602001516003811115611e9757fe5b14611ed35760405162461bcd60e51b815260040180806020018281038252602b8152602001806153fe602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0385166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0386169130916000805160206154608339815191529181900360200190a360055460c08201516060830151604080516341c728b960e01b81523060048201526001600160a01b038981166024830152604482019490945260648101929092525191909216916341c728b991608480830192600092919082900301818387803b158015611fe957600080fd5b505af1158015611ffd573d6000803e3d6000fd5b5050505060608367ffffffffffffffff8111801561201a57600080fd5b50604051908082528060200260200182016040528015612044578160200160208202803683370190505b509050835b801561214a57601354604080516323b872dd60e01b81526001600160a01b03898116600483015230602483015260001985016044830152915191909216916323b872dd9160648083019260209291908290030181600087803b1580156120ae57600080fd5b505af11580156120c2573d6000803e3d6000fd5b505050506040513d60208110156120d857600080fd5b5051612124576040805162461bcd60e51b8152602060048201526016602482015275151c985b9cd9995c8819151bdad95b8819985a5b195960521b604482015290519081900360640190fd5b60018103828287038151811061213657fe5b602090810291909101015260001901612049565b50601354604051631e94c6ed60e11b81526020600482018181528451602484015284516001600160a01b0390941693633d298dda9386938392604490920191818601910280838360005b838110156121ac578181015183820152602001612194565b5050505090500192505050600060405180830381600087803b1580156121d157600080fd5b505af11580156121e5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561220e57600080fd5b8101908080516040519392919084600160201b82111561222d57600080fd5b90830190602082018581111561224257600080fd5b82518660208202830111600160201b8211171561225e57600080fd5b82525081516020918201928201910280838360005b8381101561228b578181015183820152602001612273565b5050505090500160405250505050600060108111156122a657fe5b965050505050505090565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610fef5780601f10610fc457610100808354040283529160200191610fef565b60008060006123178461398a565b9092509050600082600381111561232a57fe5b146118465760405162461bcd60e51b81526004018080602001828103825260378152602001806154296037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146123b45760405162461bcd60e51b81526004018080602001828103825260248152602001806153366024913960400191505060405180910390fd5b6009541580156123c45750600a54155b6123ff5760405162461bcd60e51b815260040180806020018281038252602381526020018061535a6023913960400191505060405180910390fd5b670de0b6b3a76400006007556000612416876116f8565b9050801561246b576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b612473613949565b600955670de0b6b3a7640000600a5561248b86613a3d565b905080156124ca5760405162461bcd60e51b81526004018080602001828103825260228152602001806153af6022913960400191505060405180910390fd5b83516124dd9060019060208701906152a2565b5082516124f19060029060208601906152a2565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b60008061106883613051565b60008061252f613949565b60095490915080821415612548576000925050506112c0565b60006125526135b9565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b1580156125c057600080fd5b505afa1580156125d4573d6000803e3d6000fd5b505050506040513d60208110156125ea57600080fd5b5051905065048c27395000811115612649576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b6000806126568989613bb2565b9092509050600082600381111561266957fe5b146126bb576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b6126c3615251565b6000806000806126e160405180602001604052808a81525087613bd5565b909750945060008760038111156126f457fe5b146127215761270c60096006896003811115611cf357fe5b9e5050505050505050505050505050506112c0565b61272b858c613565565b9097509350600087600381111561273e57fe5b146127565761270c60096001896003811115611cf357fe5b612760848c613964565b9097509250600087600381111561277357fe5b1461278b5761270c60096004896003811115611cf357fe5b6127a66040518060200160405280600854815250858c613c3d565b909750915060008760038111156127b957fe5b146127d15761270c60096005896003811115611cf357fe5b6127dc858a8b613c3d565b909750905060008760038111156127ef57fe5b146128075761270c60096003896003811115611cf357fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff166128bc576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556128d233338686613242565b1490506000805460ff1916600117905592915050565b600a5481565b6006546000906001600160a01b031663b816881661290a6135b9565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b15801561295c57600080fd5b505afa158015612970573d6000803e3d6000fd5b505050506040513d602081101561298657600080fd5b5051905090565b6000805460ff166129d2576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191690556129e833858585613c99565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314612a245761171e600160456136d2565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611846565b6000805460ff16612acf576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612ae1612524565b14612b2c576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b612b34611260565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080612b718961398a565b935090506000816003811115612b8357fe5b14612ba15760095b6000806000975097509750975050505050612bd4565b612ba9613193565b925090506000816003811115612bbb57fe5b14612bc7576009612b8b565b5060009650919450925090505b9193509193565b6000610f64826135bf565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6004546000906001600160a01b031633141580612c2c575033155b15612c4457612c3d600160006136d2565b90506112c0565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b600080612d1f612524565b90508015612d4557612d3d816010811115612d3657fe5b60406136d2565b91505061106d565b61184683613a3d565b6006546001600160a01b031681565b33328114612da2576040805162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b21037bbb732b960991b604482015290519081900360640190fd5b6001600160a01b0381166000908152601260205260408120805485908110612dc657fe5b6000918252602082200154601154604080516323b872dd60e01b81523060048201526001600160a01b0388811660248301526044820185905291519395509116926323b872dd9260648084019382900301818387803b158015612e2857600080fd5b505af1158015612e3c573d6000803e3d6000fd5b50505050826001600160a01b031663ddd60a5a83836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612e9757600080fd5b505af1158015612eab573d6000803e3d6000fd5b5050601154604080516323b872dd60e01b81526001600160a01b0388811660048301523060248301526044820187905291519190921693506323b872dd9250606480830192600092919082900301818387803b158015612f0a57600080fd5b505af1158015612f1e573d6000803e3d6000fd5b5050505050505050565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f24053612f586135b9565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b15801561295c57600080fd5b60126020528160005260406000208181548110612fb957fe5b90600052602060002001600091509150505481565b6000805460ff16613013576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613025612524565b905080156130435761193781601081111561303c57fe5b60466136d2565b61194883613f32565b600181565b60008054819060ff16613098576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556130aa612524565b905080156130cd576130c1816010811115611a8157fe5b600092509250506130dd565b6130d73385613fda565b92509250505b6000805460ff191660011790559092909150565b60008054819060ff16613138576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561314a612524565b9050801561316d57613161816010811115611a8157fe5b6000925092505061317d565b6131778585613fda565b92509250505b6000805460ff1916600117905590939092509050565b600d546000908190806131ae5750506007546000915061323e565b60006131b86135b9565b905060006131c4615251565b60006131d584600b54600c5461443e565b9350905060008160038111156131e757fe5b146131fc5795506000945061323e9350505050565b613206838661447c565b92509050600081600381111561321857fe5b1461322d5795506000945061323e9350505050565b505160009550935061323e92505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526001606483015291516000938493169163bdcdc25891608480830192602092919082900301818787803b1580156132a757600080fd5b505af11580156132bb573d6000803e3d6000fd5b505050506040513d60208110156132d157600080fd5b5051905080156132f0576132e86003604a836138e3565b91505061112d565b836001600160a01b0316856001600160a01b03161415613316576132e86002604b6136d2565b6000856001600160a01b0316876001600160a01b0316141561333b5750600019613363565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b600080600080613374856001613bb2565b9094509250600084600381111561338757fe5b146133a5576133986009604b6136d2565b965050505050505061112d565b6001600160a01b038a166000908152600e60205260409020546133c9906001613bb2565b909450915060008460038111156133dc57fe5b146133ed576133986009604c6136d2565b6001600160a01b0389166000908152600e6020526040902054613411906001613964565b9094509050600084600381111561342457fe5b14613435576133986009604d6136d2565b6001600160a01b03808b166000908152600e6020526040808220859055918b16815220819055600019851461348d576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b6134988a8a8a61452d565b886001600160a01b03168a6001600160a01b031660008051602061546083398151915260016040518082815260200191505060405180910390a36005546040805163352b4a3f60e11b81523060048201526001600160a01b038d811660248301528c811660448301526001606483015291519190921691636a56947e91608480830192600092919082900301818387803b15801561353557600080fd5b505af1158015613549573d6000803e3d6000fd5b5060009250613556915050565b9b9a5050505050505050505050565b6000806000613572615251565b61357c8686613bd5565b9092509050600082600381111561358f57fe5b146135a057509150600090506135b2565b60006135ab82614667565b9350935050505b9250929050565b600d5490565b6000805460ff16613604576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613616612524565b905080156136345761193781601081111561362d57fe5b60276136d2565b6119483384614676565b6000805460ff16613683576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613695612524565b905080156136b3576119378160108111156136ac57fe5b604e6136d2565b6136bc83614aa3565b509150506000805460ff19166001179055919050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561370157fe5b83605181111561370d57fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561184657fe5b600354600090819061010090046001600160a01b0316331461376057612d3d600160316136d2565b613768613949565b6009541461377c57612d3d600a60336136d2565b826137856135b9565b101561379757612d3d600e60326136d2565b600c548311156137ad57612d3d600260346136d2565b50600c54828103908111156137f35760405162461bcd60e51b81526004018080602001828103825260248152602001806154dd6024913960400191505060405180910390fd5b600c8190556003546138139061010090046001600160a01b031684614b8b565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611846565b6000805460ff166138b0576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556138c2612524565b905080156138d95761193781601081111561362d57fe5b6119483384614dda565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa084601081111561391257fe5b84605181111561391e57fe5b604080519283526020830191909152818101859052519081900360600190a183601081111561112d57fe5b4390565b600080600061395a615251565b61357c8686614f1f565b60008083830184811061397c576000925090506135b2565b6002600092509250506135b2565b6001600160a01b0381166000908152601060205260408120805482918291829182916139c0576000809550955050505050613a38565b6139d08160000154600a54614f7e565b909450925060008460038111156139e357fe5b146139f8578360009550955050505050613a38565b613a06838260010154614fbd565b90945091506000846003811115613a1957fe5b14613a2e578360009550955050505050613a38565b5060009450925050505b915091565b600354600090819061010090046001600160a01b03163314613a6557612d3d600160426136d2565b613a6d613949565b60095414613a8157612d3d600a60416136d2565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015613ad257600080fd5b505afa158015613ae6573d6000803e3d6000fd5b505050506040513d6020811015613afc57600080fd5b5051613b4f576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611846565b600080838311613bc95750600090508183036135b2565b506003905060006135b2565b6000613bdf615251565b600080613bf0866000015186614f7e565b90925090506000826003811115613c0357fe5b14613c22575060408051602081019091526000815290925090506135b2565b60408051602081019091529081526000969095509350505050565b6000806000613c4a615251565b613c548787613bd5565b90925090506000826003811115613c6757fe5b14613c785750915060009050613c91565b613c8a613c8482614667565b86613964565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015613d0657600080fd5b505af1158015613d1a573d6000803e3d6000fd5b505050506040513d6020811015613d3057600080fd5b505190508015613d47576132e86003601b836138e3565b846001600160a01b0316846001600160a01b03161415613d6d576132e86006601c6136d2565b6001600160a01b0384166000908152600e602052604081205481908190613d948188613bb2565b90945092506000846003811115613da757fe5b14613dcb57613dbf6009601a866003811115611cf357fe5b9550505050505061112d565b6001600160a01b0389166000908152600e6020526040902054613dee9088613964565b90945091506000846003811115613e0157fe5b14613e1957613dbf60096019866003811115611cf357fe5b6001600160a01b038089166000908152600e6020526040808220869055918b168152208290555b82811115613e5f57613e56888a6001840361452d565b60001901613e40565b886001600160a01b0316886001600160a01b0316600080516020615460833981519152896040518082815260200191505060405180910390a360055460408051636d35bf9160e01b81523060048201526001600160a01b038d811660248301528c811660448301528b81166064830152608482018b905291519190921691636d35bf919160a480830192600092919082900301818387803b158015613f0357600080fd5b505af1158015613f17573d6000803e3d6000fd5b5060009250613f24915050565b9a9950505050505050505050565b60035460009061010090046001600160a01b03163314613f585761171e600160476136d2565b613f60613949565b60095414613f745761171e600a60486136d2565b670de0b6b3a7640000821115613f905761171e600260496136d2565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611846565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b0385811660248301526001604483018190529251600094859493859390911691634ef4c3e19160648082019260209290919082900301818787803b15801561403f57600080fd5b505af1158015614053573d6000803e3d6000fd5b505050506040513d602081101561406957600080fd5b50519050801561408d576140806003601f836138e3565b60009350935050506135b2565b614095613949565b600954146140a957614080600a60226136d2565b6140b1615264565b6140b9613193565b60408301819052602083018260038111156140d057fe5b60038111156140db57fe5b90525060009050816020015160038111156140f257fe5b1461411c5761410e6009602183602001516003811115611cf357fe5b6000945094505050506135b2565b6141268787614fe8565b60c0820181905260408051602081018252908301518152614147919061394d565b606083018190526020830182600381111561415e57fe5b600381111561416957fe5b905250600090508160200151600381111561418057fe5b146141d2576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b6141e2600d548260600151613964565b60808301819052602083018260038111156141f957fe5b600381111561420457fe5b905250600090508160200151600381111561421b57fe5b146142575760405162461bcd60e51b81526004018080602001828103825260288152602001806154b56028913960400191505060405180910390fd5b6001600160a01b0387166000908152600e6020526040902054606082015161427f9190613964565b60a083018190526020830182600381111561429657fe5b60038111156142a157fe5b90525060009050816020015160038111156142b857fe5b146142f45760405162461bcd60e51b815260040180806020018281038252602b8152602001806153fe602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0388166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0389169130916000805160206154608339815191529181900360200190a360055460c08201516060830151604080516341c728b960e01b81523060048201526001600160a01b038c81166024830152604482019490945260648101929092525191909216916341c728b991608480830192600092919082900301818387803b15801561440a57600080fd5b505af115801561441e573d6000803e3d6000fd5b506000925061442b915050565b8160c00151945094505050509250929050565b60008060008061444e8787613964565b9092509050600082600381111561446157fe5b146144725750915060009050613c91565b613c8a8186613bb2565b6000614486615251565b60008061449b86670de0b6b3a7640000614f7e565b909250905060008260038111156144ae57fe5b146144cd575060408051602081019091526000815290925090506135b2565b6000806144da8388614fbd565b909250905060008260038111156144ed57fe5b1461451057816040518060200160405280600081525095509550505050506135b2565b604080516020810190915290815260009890975095505050505050565b6001600160a01b038316600090815260126020526040902054600019018082111561455757600080fd5b6001600160a01b038416600090815260126020526040812080548490811061457b57fe5b90600052602060002001549050818310156145fc576001600160a01b03851660009081526012602052604090208054839081106145b457fe5b906000526020600020015460126000876001600160a01b03166001600160a01b0316815260200190815260200160002084815481106145ef57fe5b6000918252602090912001555b6001600160a01b038516600090815260126020526040902080548061461d57fe5b6000828152602080822083016000199081018390559092019092556001600160a01b0390951681526012855260408120805460018101825590825294902090930192909255505050565b51670de0b6b3a7640000900490565b6000614680615264565b614688613193565b604083018190526020830182600381111561469f57fe5b60038111156146aa57fe5b90525060009050816020015160038111156146c157fe5b146146e5576146dd6009602b83602001516003811115611cf357fe5b915050610f64565b6001606082018190526040805160208101825290830151815261470791613565565b608083018190526020830182600381111561471e57fe5b600381111561472957fe5b905250600090508160200151600381111561474057fe5b1461475c576146dd6009602983602001516003811115611cf357fe5b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03888116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b1580156147c157600080fd5b505af11580156147d5573d6000803e3d6000fd5b505050506040513d60208110156147eb57600080fd5b50519050801561480b5761480260036028836138e3565b92505050610f64565b614813613949565b6009541461482757614802600a602c6136d2565b614837600d548360600151613bb2565b60a084018190526020840182600381111561484e57fe5b600381111561485957fe5b905250600090508260200151600381111561487057fe5b1461488c576148026009602e84602001516003811115611cf357fe5b6001600160a01b0385166000908152600e602052604090205460608301516148b49190613bb2565b60c08401819052602084018260038111156148cb57fe5b60038111156148d657fe5b90525060009050826020015160038111156148ed57fe5b14614909576148026009602d84602001516003811115611cf357fe5b81608001516149166135b9565b101561492857614802600e602f6136d2565b60a0820151600d90815560c08301516001600160a01b0387166000908152600e60205260409020555415801561496057506000600b54115b1561497857600b8054600c8054919091039055600090555b6149828585614b8b565b6060820151604080519182525130916001600160a01b038816916000805160206154608339815191529181900360200190a37fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a929858360800151846060015160405180846001600160a01b03168152602001838152602001828152602001935050505060405180910390a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038a81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015614a7957600080fd5b505af1158015614a8d573d6000803e3d6000fd5b5060009250614a9a915050565b95945050505050565b600080600080614ab1613949565b60095414614ad057614ac5600a604f6136d2565b93509150613a389050565b614ada3386614fe8565b905080600c54019150600c54821015614b3a576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6011546001600160a01b03838116600090815260126020526040812080549290931692909184908110614bba57fe5b60009182526020808320909101546001600160a01b038716835260129091526040909120805491925060001982019182908110614bf357fe5b906000526020600020015460126000876001600160a01b03166001600160a01b031681526020019081526020016000208581548110614c2e57fe5b60009182526020808320909101929092556001600160a01b0387168152601290915260409020805480614c5d57fe5b600190038181906000526020600020016000905590556000836001600160a01b0316634ca4fdf5846040518263ffffffff1660e01b81526004018082815260200191505060606040518083038186803b158015614cb957600080fd5b505afa158015614ccd573d6000803e3d6000fd5b505050506040513d6060811015614ce357600080fd5b505190508015614d625760408051631552cf0f60e31b81523060048201526001600160a01b0388811660248301526044820186905291519186169163aa9678789160648082019260009290919082900301818387803b158015614d4557600080fd5b505af1158015614d59573d6000803e3d6000fd5b5050505061149b565b604080516323b872dd60e01b81523060048201526001600160a01b038881166024830152604482018690529151918616916323b872dd9160648082019260009290919082900301818387803b158015614dba57600080fd5b505af1158015614dce573d6000803e3d6000fd5b50505050505050505050565b6000614de4615264565b614dec613193565b6040830181905260208301826003811115614e0357fe5b6003811115614e0e57fe5b9052506000905081602001516003811115614e2557fe5b14614e41576146dd6009602b83602001516003811115611cf357fe5b614e5e60016040518060200160405280846040015181525061394d565b6060830181905260208301826003811115614e7557fe5b6003811115614e8057fe5b9052506000905081602001516003811115614e9757fe5b14614eb3576146dd6009602a83602001516003811115611cf357fe5b6001608082015260055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03888116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b1580156147c157600080fd5b6000614f29615251565b600080614f3e670de0b6b3a764000087614f7e565b90925090506000826003811115614f5157fe5b14614f70575060408051602081019091526000815290925090506135b2565b6135ab81866000015161447c565b60008083614f91575060009050806135b2565b83830283858281614f9e57fe5b0414614fb2576002600092509250506135b2565b6000925090506135b2565b60008082614fd157506001905060006135b2565b6000838581614fdc57fe5b04915091509250929050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b15801561503757600080fd5b505afa15801561504b573d6000803e3d6000fd5b505050506040513d602081101561506157600080fd5b50516000858152601460205260409020549091506001600160a01b03166150f757604080516323b872dd60e01b81526001600160a01b038781166004830152306024830152604482018790529151918416916323b872dd9160648082019260009290919082900301818387803b1580156150da57600080fd5b505af11580156150ee573d6000803e3d6000fd5b5050505061515b565b6000848152601460205260409020546001600160a01b03868116911614615156576040805162461bcd60e51b815260206004820152600e60248201526d696e76616c696420737570706c7960901b604482015290519081900360640190fd5b600019015b6001600160a01b03808616600090815260126020908152604080832080546001810182559084528284200188905580516370a0823160e01b8152306004820152905192938616926370a0823192602480840193919291829003018186803b1580156151c557600080fd5b505afa1580156151d9573d6000803e3d6000fd5b505050506040513d60208110156151ef57600080fd5b5051905081811015615248576040805162461bcd60e51b815260206004820152601a60248201527f544f4b454e5f5452414e534645525f494e5f4f564552464c4f57000000000000604482015290519081900360640190fd5b03949350505050565b6040518060200160405280600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106152e357805160ff1916838001178555615310565b82800160010185558215615310579182015b828111156153105782518255916020019190600101906152f5565b5061531c929150615320565b5090565b5b8082111561531c576000815560010161532156fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e63654345726332303a3a7377656570546f6b656e3a2063616e206e6f7420737765657020756e6465726c79696e6720746f6b656e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65646f6e6c79207468652061646d696e206d61792063616c6c205f72657369676e496d706c656d656e746174696f6e4d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef65786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c454472656475636520726573657276657320756e657870656374656420756e646572666c6f776f6e6c79207468652061646d696e206d61792063616c6c205f6265636f6d65496d706c656d656e746174696f6ea264697066735822122075126b2efcd7df73cd542fcf5efc58530064f10a49b2c4e913cd382904c2379364736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.