Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 42,880 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Liquidate Overdu... | 20938011 | 24 days ago | IN | 0 ETH | 0.00109172 | ||||
Liquidate Overdu... | 20938011 | 24 days ago | IN | 0 ETH | 0.00109172 | ||||
Liquidate Overdu... | 20938011 | 24 days ago | IN | 0 ETH | 0.00109172 | ||||
Liquidate Overdu... | 20938011 | 24 days ago | IN | 0 ETH | 0.00118474 | ||||
Liquidate Overdu... | 20937730 | 25 days ago | IN | 0 ETH | 0.00284117 | ||||
Liquidate Overdu... | 20933509 | 25 days ago | IN | 0 ETH | 0.00119297 | ||||
Liquidate Overdu... | 20878834 | 33 days ago | IN | 0 ETH | 0.00304675 | ||||
Mint Obligation ... | 20766723 | 48 days ago | IN | 0 ETH | 0.00040826 | ||||
Liquidate Overdu... | 20712829 | 56 days ago | IN | 0 ETH | 0.0006602 | ||||
Liquidate Overdu... | 20701444 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00028586 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00026122 | ||||
Liquidate Overdu... | 20701443 | 57 days ago | IN | 0 ETH | 0.00026122 | ||||
Liquidate Overdu... | 20701442 | 57 days ago | IN | 0 ETH | 0.00026122 | ||||
Liquidate Overdu... | 20701442 | 57 days ago | IN | 0 ETH | 0.00026122 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
DirectLoanFixedOfferRedeploy
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 100 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; import "./DirectLoanFixedOffer.sol"; /** * @title DirectLoanFixedOfferRedeploy * @author NFTfi * @notice Same as DirectLoanFixedOffer, we have to duplicate it because we have to re-deploy, * but we need the old and the new simultaneously in the coordinator * * * Main contract for NFTfi Direct Loans Fixed Type. This contract manages the ability to create NFT-backed * peer-to-peer loans of type Fixed (agreed to be a fixed-repayment loan) where the borrower pays the * maximumRepaymentAmount regardless of whether they repay early or not. * * There are two ways to commence an NFT-backed loan: * * a. The borrower accepts a lender's offer by calling `acceptOffer`. * 1. the borrower calls nftContract.approveAll(NFTfi), approving the NFTfi contract to move their NFT's on their * be1alf. * 2. the lender calls erc20Contract.approve(NFTfi), allowing NFTfi to move the lender's ERC20 tokens on their * behalf. * 3. the lender signs an off-chain message, proposing its offer terms. * 4. the borrower calls `acceptOffer` to accept these terms and enter into the loan. The NFT is stored in * the contract, the borrower receives the loan principal in the specified ERC20 currency, the lender receives an * NFTfi promissory note (in ERC721 form) that represents the rights to either the principal-plus-interest, or the * underlying NFT collateral if the borrower does not pay back in time, and the borrower receives obligation receipt * (in ERC721 form) that gives them the right to pay back the loan and get the collateral back. * * b. The lender accepts a borrowe's binding terms by calling `acceptListing`. * 1. the borrower calls nftContract.approveAll(NFTfi), approving the NFTfi contract to move their NFT's on their * be1alf. * 2. the lender calls erc20Contract.approve(NFTfi), allowing NFTfi to move the lender's ERC20 tokens on their * behalf. * 3. the borrower signs an off-chain message, proposing its binding terms. * 4. the lender calls `acceptListing` with an offer matching the binding terms and enter into the loan. The NFT is * stored in the contract, the borrower receives the loan principal in the specified ERC20 currency, the lender * receives an NFTfi promissory note (in ERC721 form) that represents the rights to either the principal-plus-interest, * or the underlying NFT collateral if the borrower does not pay back in time, and the borrower receives obligation * receipt (in ERC721 form) that gives them the right to pay back the loan and get the collateral back. * * The lender can freely transfer and trade this ERC721 promissory note as they wish, with the knowledge that * transferring the ERC721 promissory note tranfsers the rights to principal-plus-interest and/or collateral, and that * they will no longer have a claim on the loan. The ERC721 promissory note itself represents that claim. * * The borrower can freely transfer and trade this ERC721 obligaiton receipt as they wish, with the knowledge that * transferring the ERC721 obligaiton receipt tranfsers the rights right to pay back the loan and get the collateral * back. * * * A loan may end in one of two ways: * - First, a borrower may call NFTfi.payBackLoan() and pay back the loan plus interest at any time, in which case they * receive their NFT back in the same transaction. * - Second, if the loan's duration has passed and the loan has not been paid back yet, a lender can call * NFTfi.liquidateOverdueLoan(), in which case they receive the underlying NFT collateral and forfeit the rights to the * principal-plus-interest, which the borrower now keeps. */ contract DirectLoanFixedOfferRedeploy is DirectLoanFixedOffer { /* *********** */ /* CONSTRUCTOR */ /* *********** */ /** * @dev Sets `hub` and permitted erc20-s * * @param _admin - Initial admin of this contract. * @param _nftfiHub - NFTfiHub address * @param _permittedErc20s - list of permitted ERC20 token contract addresses */ constructor( address _admin, address _nftfiHub, address[] memory _permittedErc20s ) DirectLoanFixedOffer(_admin, _nftfiHub, _permittedErc20s) { // solhint-disable-previous-line no-empty-blocks } /* ******************* */ /* READ-ONLY FUNCTIONS */ /* ******************* */ /** * @notice This function returns a bytes32 value identifying the loan type for the coordinator */ // all caps, because used to be a constant storage and the interface should be the same // solhint-disable-next-line func-name-mixedcase function LOAN_TYPE() public pure override returns (bytes32) { return bytes32("DIRECT_LOAN_FIXED_REDEPLOY"); } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; import "./DirectLoanBaseMinimal.sol"; import "../../../utils/ContractKeys.sol"; /** * @title DirectLoanFixedOffer * @author NFTfi * @notice Main contract for NFTfi Direct Loans Fixed Type. This contract manages the ability to create NFT-backed * peer-to-peer loans of type Fixed (agreed to be a fixed-repayment loan) where the borrower pays the * maximumRepaymentAmount regardless of whether they repay early or not. * * There are two ways to commence an NFT-backed loan: * * a. The borrower accepts a lender's offer by calling `acceptOffer`. * 1. the borrower calls nftContract.approveAll(NFTfi), approving the NFTfi contract to move their NFT's on their * be1alf. * 2. the lender calls erc20Contract.approve(NFTfi), allowing NFTfi to move the lender's ERC20 tokens on their * behalf. * 3. the lender signs an off-chain message, proposing its offer terms. * 4. the borrower calls `acceptOffer` to accept these terms and enter into the loan. The NFT is stored in * the contract, the borrower receives the loan principal in the specified ERC20 currency, the lender receives an * NFTfi promissory note (in ERC721 form) that represents the rights to either the principal-plus-interest, or the * underlying NFT collateral if the borrower does not pay back in time, and the borrower receives obligation receipt * (in ERC721 form) that gives them the right to pay back the loan and get the collateral back. * * b. The lender accepts a borrowe's binding terms by calling `acceptListing`. * 1. the borrower calls nftContract.approveAll(NFTfi), approving the NFTfi contract to move their NFT's on their * be1alf. * 2. the lender calls erc20Contract.approve(NFTfi), allowing NFTfi to move the lender's ERC20 tokens on their * behalf. * 3. the borrower signs an off-chain message, proposing its binding terms. * 4. the lender calls `acceptListing` with an offer matching the binding terms and enter into the loan. The NFT is * stored in the contract, the borrower receives the loan principal in the specified ERC20 currency, the lender * receives an NFTfi promissory note (in ERC721 form) that represents the rights to either the principal-plus-interest, * or the underlying NFT collateral if the borrower does not pay back in time, and the borrower receives obligation * receipt (in ERC721 form) that gives them the right to pay back the loan and get the collateral back. * * The lender can freely transfer and trade this ERC721 promissory note as they wish, with the knowledge that * transferring the ERC721 promissory note tranfsers the rights to principal-plus-interest and/or collateral, and that * they will no longer have a claim on the loan. The ERC721 promissory note itself represents that claim. * * The borrower can freely transfer and trade this ERC721 obligaiton receipt as they wish, with the knowledge that * transferring the ERC721 obligaiton receipt tranfsers the rights right to pay back the loan and get the collateral * back. * * * A loan may end in one of two ways: * - First, a borrower may call NFTfi.payBackLoan() and pay back the loan plus interest at any time, in which case they * receive their NFT back in the same transaction. * - Second, if the loan's duration has passed and the loan has not been paid back yet, a lender can call * NFTfi.liquidateOverdueLoan(), in which case they receive the underlying NFT collateral and forfeit the rights to the * principal-plus-interest, which the borrower now keeps. */ contract DirectLoanFixedOffer is DirectLoanBaseMinimal { /* *********** */ /* CONSTRUCTOR */ /* *********** */ /** * @dev Sets `hub` and permitted erc20-s * * @param _admin - Initial admin of this contract. * @param _nftfiHub - NFTfiHub address * @param _permittedErc20s - list of permitted ERC20 token contract addresses */ constructor( address _admin, address _nftfiHub, address[] memory _permittedErc20s ) DirectLoanBaseMinimal( _admin, _nftfiHub, ContractKeys.getIdFromStringKey("DIRECT_LOAN_COORDINATOR"), _permittedErc20s ) { // solhint-disable-previous-line no-empty-blocks } /* ********* */ /* FUNCTIONS */ /* ********* */ /** * @notice This function is called by the borrower when accepting a lender's offer to begin a loan. * * @param _offer - The offer made by the lender. * @param _signature - The components of the lender's signature. * @param _borrowerSettings - Some extra parameters that the borrower needs to set when accepting an offer. */ function acceptOffer( Offer memory _offer, Signature memory _signature, BorrowerSettings memory _borrowerSettings ) external whenNotPaused nonReentrant { address nftWrapper = _getWrapper(_offer.nftCollateralContract); _loanSanityChecks(_offer, nftWrapper); _loanSanityChecksOffer(_offer); _acceptOffer( _setupLoanTerms(_offer, nftWrapper), _setupLoanExtras(_borrowerSettings.revenueSharePartner, _borrowerSettings.referralFeeInBasisPoints), _offer, _signature ); } /* ******************* */ /* READ-ONLY FUNCTIONS */ /* ******************* */ /** * @notice This function returns a bytes32 value identifying the loan type for the coordinator */ // all caps, because used to be a constant storage and the interface should be the same // solhint-disable-next-line func-name-mixedcase function LOAN_TYPE() public pure virtual returns (bytes32) { return bytes32("DIRECT_LOAN_FIXED_OFFER"); } /** * @notice This function can be used to view the current quantity of the ERC20 currency used in the specified loan * required by the borrower to repay their loan, measured in the smallest unit of the ERC20 currency. * * @param _loanId A unique identifier for this particular loan, sourced from the Loan Coordinator. * * @return The amount of the specified ERC20 currency required to pay back this loan, measured in the smallest unit * of the specified ERC20 currency. */ function getPayoffAmount(uint32 _loanId) external view override returns (uint256) { LoanTerms storage loan = loanIdToLoan[_loanId]; return loan.maximumRepaymentAmount; } /* ****************** */ /* INTERNAL FUNCTIONS */ /* ****************** */ /** * @notice This function is called by the borrower when accepting a lender's offer to begin a loan. * * @param _loanTerms - The main Loan Terms struct. This data is saved upon loan creation on loanIdToLoan. * @param _loanExtras - The main Loan Terms struct. This data is saved upon loan creation on loanIdToLoanExtras. * @param _offer - The offer made by the lender. * @param _signature - The components of the lender's signature. */ function _acceptOffer( LoanTerms memory _loanTerms, LoanExtras memory _loanExtras, Offer memory _offer, Signature memory _signature ) internal virtual { // Check loan nonces. These are different from Ethereum account nonces. // Here, these are uint256 numbers that should uniquely identify // each signature for each user (i.e. each user should only create one // off-chain signature for each nonce, with a nonce being any arbitrary // uint256 value that they have not used yet for an off-chain NFTfi // signature). require(!_nonceHasBeenUsedForUser[_signature.signer][_signature.nonce], "Lender nonce invalid"); _nonceHasBeenUsedForUser[_signature.signer][_signature.nonce] = true; require(NFTfiSigningUtils.isValidLenderSignature(_offer, _signature), "Lender signature is invalid"); address bundle = hub.getContract(ContractKeys.NFTFI_BUNDLER); require(_loanTerms.nftCollateralContract != bundle, "Collateral cannot be bundle"); uint32 loanId = _createLoan( LOAN_TYPE(), _loanTerms, _loanExtras, msg.sender, _signature.signer, _offer.referrer ); // Emit an event with all relevant details from this transaction. emit LoanStarted(loanId, msg.sender, _signature.signer, _loanTerms, _loanExtras); } /** * @dev Creates a `LoanTerms` struct using data sent as the lender's `_offer` on `acceptOffer`. * This is needed in order to avoid stack too deep issues. * Since this is a Fixed loan type loanInterestRateForDurationInBasisPoints is ignored. */ function _setupLoanTerms(Offer memory _offer, address _nftWrapper) internal view returns (LoanTerms memory) { return LoanTerms({ loanERC20Denomination: _offer.loanERC20Denomination, loanPrincipalAmount: _offer.loanPrincipalAmount, maximumRepaymentAmount: _offer.maximumRepaymentAmount, nftCollateralContract: _offer.nftCollateralContract, nftCollateralWrapper: _nftWrapper, nftCollateralId: _offer.nftCollateralId, loanStartTime: uint64(block.timestamp), loanDuration: _offer.loanDuration, loanInterestRateForDurationInBasisPoints: uint16(0), loanAdminFeeInBasisPoints: _offer.loanAdminFeeInBasisPoints, borrower: msg.sender }); } /** * @dev Calculates the payoff amount and admin fee * * @param _loanTerms - Struct containing all the loan's parameters */ function _payoffAndFee(LoanTerms memory _loanTerms) internal pure override returns (uint256 adminFee, uint256 payoffAmount) { // Calculate amounts to send to lender and admins uint256 interestDue = _loanTerms.maximumRepaymentAmount - _loanTerms.loanPrincipalAmount; adminFee = LoanChecksAndCalculations.computeAdminFee( interestDue, uint256(_loanTerms.loanAdminFeeInBasisPoints) ); payoffAmount = _loanTerms.maximumRepaymentAmount - adminFee; } /** * @dev Function that performs some validation checks over loan parameters when accepting an offer * */ function _loanSanityChecksOffer(LoanData.Offer memory _offer) internal pure { require( _offer.maximumRepaymentAmount >= _offer.loanPrincipalAmount, "Negative interest rate loans are not allowed." ); } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; import "./IDirectLoanBase.sol"; import "./LoanData.sol"; import "./LoanChecksAndCalculations.sol"; import "./LoanAirdropUtils.sol"; import "../../BaseLoan.sol"; import "../../../utils/NftReceiver.sol"; import "../../../utils/NFTfiSigningUtils.sol"; import "../../../interfaces/INftfiHub.sol"; import "../../../utils/ContractKeys.sol"; import "../../../interfaces/IDirectLoanCoordinator.sol"; import "../../../interfaces/INftWrapper.sol"; import "../../../interfaces/IPermittedPartners.sol"; import "../../../interfaces/IPermittedERC20s.sol"; import "../../../interfaces/IPermittedNFTs.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; /** * @title DirectLoanBase * @author NFTfi * @notice Main contract for NFTfi Direct Loans Type. This contract manages the ability to create NFT-backed * peer-to-peer loans. * * There are two ways to commence an NFT-backed loan: * * a. The borrower accepts a lender's offer by calling `acceptOffer`. * 1. the borrower calls nftContract.approveAll(NFTfi), approving the NFTfi contract to move their NFT's on their * be1alf. * 2. the lender calls erc20Contract.approve(NFTfi), allowing NFTfi to move the lender's ERC20 tokens on their * behalf. * 3. the lender signs an off-chain message, proposing its offer terms. * 4. the borrower calls `acceptOffer` to accept these terms and enter into the loan. The NFT is stored in * the contract, the borrower receives the loan principal in the specified ERC20 currency, the lender receives an * NFTfi promissory note (in ERC721 form) that represents the rights to either the principal-plus-interest, or the * underlying NFT collateral if the borrower does not pay back in time, and the borrower receives obligation receipt * (in ERC721 form) that gives them the right to pay back the loan and get the collateral back. * * b. The lender accepts a borrowe's binding terms by calling `acceptListing`. * 1. the borrower calls nftContract.approveAll(NFTfi), approving the NFTfi contract to move their NFT's on their * be1alf. * 2. the lender calls erc20Contract.approve(NFTfi), allowing NFTfi to move the lender's ERC20 tokens on their * behalf. * 3. the borrower signs an off-chain message, proposing its binding terms. * 4. the lender calls `acceptListing` with an offer matching the binding terms and enter into the loan. The NFT is * stored in the contract, the borrower receives the loan principal in the specified ERC20 currency, the lender * receives an NFTfi promissory note (in ERC721 form) that represents the rights to either the principal-plus-interest, * or the underlying NFT collateral if the borrower does not pay back in time, and the borrower receives obligation * receipt (in ERC721 form) that gives them the right to pay back the loan and get the collateral back. * * The lender can freely transfer and trade this ERC721 promissory note as they wish, with the knowledge that * transferring the ERC721 promissory note tranfsers the rights to principal-plus-interest and/or collateral, and that * they will no longer have a claim on the loan. The ERC721 promissory note itself represents that claim. * * The borrower can freely transfer and trade this ERC721 obligaiton receipt as they wish, with the knowledge that * transferring the ERC721 obligaiton receipt tranfsers the rights right to pay back the loan and get the collateral * back. * * A loan may end in one of two ways: * - First, a borrower may call NFTfi.payBackLoan() and pay back the loan plus interest at any time, in which case they * receive their NFT back in the same transaction. * - Second, if the loan's duration has passed and the loan has not been paid back yet, a lender can call * NFTfi.liquidateOverdueLoan(), in which case they receive the underlying NFT collateral and forfeit the rights to the * principal-plus-interest, which the borrower now keeps. * * * If the loan was created as a ProRated type loan (pro-rata interest loan), then the user only pays the principal plus * pro-rata interest if repaid early. * However, if the loan was was created as a Fixed type loan (agreed to be a fixed-repayment loan), then the borrower * pays the maximumRepaymentAmount regardless of whether they repay early or not. * */ abstract contract DirectLoanBaseMinimal is IDirectLoanBase, IPermittedERC20s, BaseLoan, NftReceiver, LoanData { using SafeERC20 for IERC20; /* ******* */ /* STORAGE */ /* ******* */ uint16 public constant HUNDRED_PERCENT = 10000; bytes32 public immutable override LOAN_COORDINATOR; /** * @notice The maximum duration of any loan started for this loan type, measured in seconds. This is both a * sanity-check for borrowers and an upper limit on how long admins will have to support v1 of this contract if they * eventually deprecate it, as well as a check to ensure that the loan duration never exceeds the space alotted for * it in the loan struct. */ uint256 public override maximumLoanDuration = 53 weeks; /** * @notice The percentage of interest earned by lenders on this platform that is taken by the contract admin's as a * fee, measured in basis points (hundreths of a percent). The max allowed value is 10000. */ uint16 public override adminFeeInBasisPoints = 500; /** * @notice A mapping from a loan's identifier to the loan's details, represted by the loan struct. */ mapping(uint32 => LoanTerms) public override loanIdToLoan; mapping(uint32 => LoanExtras) public loanIdToLoanExtras; /** * @notice A mapping tracking whether a loan has either been repaid or liquidated. This prevents an attacker trying * to repay or liquidate the same loan twice. */ mapping(uint32 => bool) public override loanRepaidOrLiquidated; /** * @dev keeps track of tokens being held as loan collateral, so we dont allow these * to be transferred with the aridrop draining functions */ mapping(address => mapping(uint256 => uint256)) private _escrowTokens; /** * @notice A mapping that takes both a user's address and a loan nonce that was first used when signing an off-chain * order and checks whether that nonce has previously either been used for a loan, or has been pre-emptively * cancelled. The nonce referred to here is not the same as an Ethereum account's nonce. We are referring instead to * nonces that are used by both the lender and the borrower when they are first signing off-chain NFTfi orders. * * These nonces can be any uint256 value that the user has not previously used to sign an off-chain order. Each * nonce can be used at most once per user within NFTfi, regardless of whether they are the lender or the borrower * in that situation. This serves two purposes. First, it prevents replay attacks where an attacker would submit a * user's off-chain order more than once. Second, it allows a user to cancel an off-chain order by calling * NFTfi.cancelLoanCommitmentBeforeLoanHasBegun(), which marks the nonce as used and prevents any future loan from * using the user's off-chain order that contains that nonce. */ mapping(address => mapping(uint256 => bool)) internal _nonceHasBeenUsedForUser; /** * @notice A mapping from an ERC20 currency address to whether that currency * is permitted to be used by this contract. */ mapping(address => bool) private erc20Permits; INftfiHub public immutable hub; /* ****** */ /* EVENTS */ /* ****** */ /** * @notice This event is fired whenever the admins change the percent of interest rates earned that they charge as a * fee. Note that newAdminFee can never exceed 10,000, since the fee is measured in basis points. * * @param newAdminFee - The new admin fee measured in basis points. This is a percent of the interest paid upon a * loan's completion that go to the contract admins. */ event AdminFeeUpdated(uint16 newAdminFee); /** * @notice This event is fired whenever the admins change the maximum duration of any loan started for this loan * type. * * @param newMaximumLoanDuration - The new maximum duration. */ event MaximumLoanDurationUpdated(uint256 newMaximumLoanDuration); /** * @notice This event is fired whenever a borrower begins a loan by calling NFTfi.beginLoan(), which can only occur * after both the lender and borrower have approved their ERC721 and ERC20 contracts to use NFTfi, and when they * both have signed off-chain messages that agree on the terms of the loan. * * @param loanId - A unique identifier for this particular loan, sourced from the Loan Coordinator. * @param borrower - The address of the borrower. * @param lender - The address of the lender. The lender can change their address by transferring the NFTfi ERC721 * token that they received when the loan began. */ event LoanStarted( uint32 indexed loanId, address indexed borrower, address indexed lender, LoanTerms loanTerms, LoanExtras loanExtras ); /** * @notice This event is fired whenever a borrower successfully repays their loan, paying * principal-plus-interest-minus-fee to the lender in loanERC20Denomination, paying fee to owner in * loanERC20Denomination, and receiving their NFT collateral back. * * @param loanId - A unique identifier for this particular loan, sourced from the Loan Coordinator. * @param borrower - The address of the borrower. * @param lender - The address of the lender. The lender can change their address by transferring the NFTfi ERC721 * token that they received when the loan began. * @param loanPrincipalAmount - The original sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * @param nftCollateralId - The ID within the NFTCollateralContract for the NFT being used as collateral for this * loan. The NFT is stored within this contract during the duration of the loan. * @param amountPaidToLender The amount of ERC20 that the borrower paid to the lender, measured in the smalled * units of loanERC20Denomination. * @param adminFee The amount of interest paid to the contract admins, measured in the smalled units of * loanERC20Denomination and determined by adminFeeInBasisPoints. This amount never exceeds the amount of interest * earned. * @param revenueShare The amount taken from admin fee amount shared with the partner. * @param revenueSharePartner - The address of the partner that will receive the revenue share. * @param nftCollateralContract - The ERC721 contract of the NFT collateral * @param loanERC20Denomination - The ERC20 contract of the currency being used as principal/interest for this * loan. */ event LoanRepaid( uint32 indexed loanId, address indexed borrower, address indexed lender, uint256 loanPrincipalAmount, uint256 nftCollateralId, uint256 amountPaidToLender, uint256 adminFee, uint256 revenueShare, address revenueSharePartner, address nftCollateralContract, address loanERC20Denomination ); /** * @notice This event is fired whenever a lender liquidates an outstanding loan that is owned to them that has * exceeded its duration. The lender receives the underlying NFT collateral, and the borrower no longer needs to * repay the loan principal-plus-interest. * * @param loanId - A unique identifier for this particular loan, sourced from the Loan Coordinator. * @param borrower - The address of the borrower. * @param lender - The address of the lender. The lender can change their address by transferring the NFTfi ERC721 * token that they received when the loan began. * @param loanPrincipalAmount - The original sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * @param nftCollateralId - The ID within the NFTCollateralContract for the NFT being used as collateral for this * loan. The NFT is stored within this contract during the duration of the loan. * @param loanMaturityDate - The unix time (measured in seconds) that the loan became due and was eligible for * liquidation. * @param loanLiquidationDate - The unix time (measured in seconds) that liquidation occurred. * @param nftCollateralContract - The ERC721 contract of the NFT collateral */ event LoanLiquidated( uint32 indexed loanId, address indexed borrower, address indexed lender, uint256 loanPrincipalAmount, uint256 nftCollateralId, uint256 loanMaturityDate, uint256 loanLiquidationDate, address nftCollateralContract ); /** * @notice This event is fired when some of the terms of a loan are being renegotiated. * * @param loanId - The unique identifier for the loan to be renegotiated * @param newLoanDuration - The new amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * @param newMaximumRepaymentAmount - The new maximum amount of money that the borrower would be required to * retrieve their collateral, measured in the smallest units of the ERC20 currency used for the loan. The * borrower will always have to pay this amount to retrieve their collateral, regardless of whether they repay * early. * @param renegotiationFee Agreed upon fee in loan denomination that borrower pays for the lender for the * renegotiation, has to be paid with an ERC20 transfer loanERC20Denomination token, uses transfer from, * frontend will have to propmt an erc20 approve for this from the borrower to the lender * @param renegotiationAdminFee renegotiationFee admin portion based on determined by adminFeeInBasisPoints */ event LoanRenegotiated( uint32 indexed loanId, address indexed borrower, address indexed lender, uint32 newLoanDuration, uint256 newMaximumRepaymentAmount, uint256 renegotiationFee, uint256 renegotiationAdminFee ); /** * @notice This event is fired whenever the admin sets a ERC20 permit. * * @param erc20Contract - Address of the ERC20 contract. * @param isPermitted - Signals ERC20 permit. */ event ERC20Permit(address indexed erc20Contract, bool isPermitted); /* *********** */ /* CONSTRUCTOR */ /* *********** */ /** * @dev Sets `hub` * * @param _admin - Initial admin of this contract. * @param _nftfiHub - NFTfiHub address * @param _loanCoordinatorKey - * @param _permittedErc20s - */ constructor( address _admin, address _nftfiHub, bytes32 _loanCoordinatorKey, address[] memory _permittedErc20s ) BaseLoan(_admin) { hub = INftfiHub(_nftfiHub); LOAN_COORDINATOR = _loanCoordinatorKey; for (uint256 i = 0; i < _permittedErc20s.length; i++) { _setERC20Permit(_permittedErc20s[i], true); } } /* *************** */ /* ADMIN FUNCTIONS */ /* *************** */ /** * @notice This function can be called by admins to change the maximumLoanDuration. Note that they can never change * maximumLoanDuration to be greater than UINT32_MAX, since that's the maximum space alotted for the duration in the * loan struct. * * @param _newMaximumLoanDuration - The new maximum loan duration, measured in seconds. */ function updateMaximumLoanDuration(uint256 _newMaximumLoanDuration) external onlyOwner { require(_newMaximumLoanDuration <= uint256(type(uint32).max), "Loan duration overflow"); maximumLoanDuration = _newMaximumLoanDuration; emit MaximumLoanDurationUpdated(_newMaximumLoanDuration); } /** * @notice This function can be called by admins to change the percent of interest rates earned that they charge as * a fee. Note that newAdminFee can never exceed 10,000, since the fee is measured in basis points. * * @param _newAdminFeeInBasisPoints - The new admin fee measured in basis points. This is a percent of the interest * paid upon a loan's completion that go to the contract admins. */ function updateAdminFee(uint16 _newAdminFeeInBasisPoints) external onlyOwner { require(_newAdminFeeInBasisPoints <= HUNDRED_PERCENT, "basis points > 10000"); adminFeeInBasisPoints = _newAdminFeeInBasisPoints; emit AdminFeeUpdated(_newAdminFeeInBasisPoints); } /** * @notice used by the owner account to be able to drain ERC20 tokens received as airdrops * for the locked collateral NFT-s * @param _tokenAddress - address of the token contract for the token to be sent out * @param _receiver - receiver of the token */ function drainERC20Airdrop(address _tokenAddress, address _receiver) external onlyOwner { IERC20 tokenContract = IERC20(_tokenAddress); uint256 amount = tokenContract.balanceOf(address(this)); require(amount > 0, "no tokens owned"); tokenContract.safeTransfer(_receiver, amount); } /** * @notice This function can be called by admins to change the permitted status of an ERC20 currency. This includes * both adding an ERC20 currency to the permitted list and removing it. * * @param _erc20 - The address of the ERC20 currency whose permit list status changed. * @param _permit - The new status of whether the currency is permitted or not. */ function setERC20Permit(address _erc20, bool _permit) external onlyOwner { _setERC20Permit(_erc20, _permit); } /** * @notice This function can be called by admins to change the permitted status of a batch of ERC20 currency. This * includes both adding an ERC20 currency to the permitted list and removing it. * * @param _erc20s - The addresses of the ERC20 currencies whose permit list status changed. * @param _permits - The new statuses of whether the currency is permitted or not. */ function setERC20Permits(address[] memory _erc20s, bool[] memory _permits) external onlyOwner { require(_erc20s.length == _permits.length, "setERC20Permits function information arity mismatch"); for (uint256 i = 0; i < _erc20s.length; i++) { _setERC20Permit(_erc20s[i], _permits[i]); } } /** * @notice used by the owner account to be able to drain ERC721 tokens received as airdrops * for the locked collateral NFT-s * @param _tokenAddress - address of the token contract for the token to be sent out * @param _tokenId - id token to be sent out * @param _receiver - receiver of the token */ function drainERC721Airdrop( address _tokenAddress, uint256 _tokenId, address _receiver ) external onlyOwner { IERC721 tokenContract = IERC721(_tokenAddress); require(_escrowTokens[_tokenAddress][_tokenId] == 0, "token is collateral"); require(tokenContract.ownerOf(_tokenId) == address(this), "nft not owned"); tokenContract.safeTransferFrom(address(this), _receiver, _tokenId); } /** * @notice used by the owner account to be able to drain ERC1155 tokens received as airdrops * for the locked collateral NFT-s * @param _tokenAddress - address of the token contract for the token to be sent out * @param _tokenId - id token to be sent out * @param _receiver - receiver of the token */ function drainERC1155Airdrop( address _tokenAddress, uint256 _tokenId, address _receiver ) external onlyOwner { IERC1155 tokenContract = IERC1155(_tokenAddress); uint256 amount = tokenContract.balanceOf(address(this), _tokenId); require(_escrowTokens[_tokenAddress][_tokenId] == 0, "token is collateral"); require(amount > 0, "no nfts owned"); tokenContract.safeTransferFrom(address(this), _receiver, _tokenId, amount, ""); } function mintObligationReceipt(uint32 _loanId) external nonReentrant { address borrower = loanIdToLoan[_loanId].borrower; require(msg.sender == borrower, "sender has to be borrower"); IDirectLoanCoordinator loanCoordinator = IDirectLoanCoordinator(hub.getContract(LOAN_COORDINATOR)); loanCoordinator.mintObligationReceipt(_loanId, borrower); delete loanIdToLoan[_loanId].borrower; } /** * @dev makes possible to change loan duration and max repayment amount, loan duration even can be extended if * loan was expired but not liquidated. * * @param _loanId - The unique identifier for the loan to be renegotiated * @param _newLoanDuration - The new amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * @param _newMaximumRepaymentAmount - The new maximum amount of money that the borrower would be required to * retrieve their collateral, measured in the smallest units of the ERC20 currency used for the loan. The * borrower will always have to pay this amount to retrieve their collateral, regardless of whether they repay * early. * @param _renegotiationFee Agreed upon fee in ether that borrower pays for the lender for the renegitiation * @param _lenderNonce - The nonce referred to here is not the same as an Ethereum account's nonce. We are * referring instead to nonces that are used by both the lender and the borrower when they are first signing * off-chain NFTfi orders. These nonces can be any uint256 value that the user has not previously used to sign an * off-chain order. Each nonce can be used at most once per user within NFTfi, regardless of whether they are the * lender or the borrower in that situation. This serves two purposes: * - First, it prevents replay attacks where an attacker would submit a user's off-chain order more than once. * - Second, it allows a user to cancel an off-chain order by calling NFTfi.cancelLoanCommitmentBeforeLoanHasBegun() * , which marks the nonce as used and prevents any future loan from using the user's off-chain order that contains * that nonce. * @param _expiry - The date when the renegotiation offer expires * @param _lenderSignature - The ECDSA signature of the lender, obtained off-chain ahead of time, signing the * following combination of parameters: * - _loanId * - _newLoanDuration * - _newMaximumRepaymentAmount * - _lender * - _expiry * - address of this contract * - chainId */ function renegotiateLoan( uint32 _loanId, uint32 _newLoanDuration, uint256 _newMaximumRepaymentAmount, uint256 _renegotiationFee, uint256 _lenderNonce, uint256 _expiry, bytes memory _lenderSignature ) external whenNotPaused nonReentrant { _renegotiateLoan( _loanId, _newLoanDuration, _newMaximumRepaymentAmount, _renegotiationFee, _lenderNonce, _expiry, _lenderSignature ); } /** * @notice This function is called by a anyone to repay a loan. It can be called at any time after the loan has * begun and before loan expiry.. The caller will pay a pro-rata portion of their interest if the loan is paid off * early and the loan is pro-rated type, but the complete repayment amount if it is fixed type. * The the borrower (current owner of the obligation note) will get the collaterl NFT back. * * This function is purposefully not pausable in order to prevent an attack where the contract admin's pause the * contract and hold hostage the NFT's that are still within it. * * @param _loanId A unique identifier for this particular loan, sourced from the Loan Coordinator. */ function payBackLoan(uint32 _loanId) external nonReentrant { LoanChecksAndCalculations.payBackChecks(_loanId, hub); ( address borrower, address lender, LoanTerms memory loan, IDirectLoanCoordinator loanCoordinator ) = _getPartiesAndData(_loanId); _payBackLoan(_loanId, borrower, lender, loan); _resolveLoan(_loanId, borrower, loan, loanCoordinator); // Delete the loan from storage in order to achieve a substantial gas savings and to lessen the burden of // storage on Ethereum nodes, since we will never access this loan's details again, and the details are still // available through event data. delete loanIdToLoan[_loanId]; delete loanIdToLoanExtras[_loanId]; } /** * @notice This function is called by a lender once a loan has finished its duration and the borrower still has not * repaid. The lender can call this function to seize the underlying NFT collateral, although the lender gives up * all rights to the principal-plus-collateral by doing so. * * This function is purposefully not pausable in order to prevent an attack where the contract admin's pause * the contract and hold hostage the NFT's that are still within it. * * We intentionally allow anybody to call this function, although only the lender will end up receiving the seized * collateral. We are exploring the possbility of incentivizing users to call this function by using some of the * admin funds. * * @param _loanId A unique identifier for this particular loan, sourced from the Loan Coordinator. */ function liquidateOverdueLoan(uint32 _loanId) external nonReentrant { LoanChecksAndCalculations.checkLoanIdValidity(_loanId, hub); // Sanity check that payBackLoan() and liquidateOverdueLoan() have never been called on this loanId. // Depending on how the rest of the code turns out, this check may be unnecessary. require(!loanRepaidOrLiquidated[_loanId], "Loan already repaid/liquidated"); ( address borrower, address lender, LoanTerms memory loan, IDirectLoanCoordinator loanCoordinator ) = _getPartiesAndData(_loanId); // Ensure that the loan is indeed overdue, since we can only liquidate overdue loans. uint256 loanMaturityDate = uint256(loan.loanStartTime) + uint256(loan.loanDuration); require(block.timestamp > loanMaturityDate, "Loan is not overdue yet"); require(msg.sender == lender, "Only lender can liquidate"); _resolveLoan(_loanId, lender, loan, loanCoordinator); // Emit an event with all relevant details from this transaction. emit LoanLiquidated( _loanId, borrower, lender, loan.loanPrincipalAmount, loan.nftCollateralId, loanMaturityDate, block.timestamp, loan.nftCollateralContract ); // Delete the loan from storage in order to achieve a substantial gas savings and to lessen the burden of // storage on Ethereum nodes, since we will never access this loan's details again, and the details are still // available through event data. delete loanIdToLoan[_loanId]; delete loanIdToLoanExtras[_loanId]; } /** * @notice this function initiates a flashloan to pull an airdrop from a tartget contract * * @param _loanId - * @param _target - address of the airdropping contract * @param _data - function selector to be called on the airdropping contract * @param _nftAirdrop - address of the used claiming nft in the drop * @param _nftAirdropId - id of the used claiming nft in the drop * @param _is1155 - * @param _nftAirdropAmount - amount in case of 1155 */ function pullAirdrop( uint32 _loanId, address _target, bytes calldata _data, address _nftAirdrop, uint256 _nftAirdropId, bool _is1155, uint256 _nftAirdropAmount ) external nonReentrant { LoanChecksAndCalculations.checkLoanIdValidity(_loanId, hub); require(!loanRepaidOrLiquidated[_loanId], "Loan already repaid/liquidated"); LoanTerms memory loan = loanIdToLoan[_loanId]; LoanAirdropUtils.pullAirdrop( _loanId, loan, _target, _data, _nftAirdrop, _nftAirdropId, _is1155, _nftAirdropAmount, hub ); } /** * @notice this function creates a proxy contract wrapping the collateral to be able to catch an expected airdrop * * @param _loanId - */ function wrapCollateral(uint32 _loanId) external nonReentrant { LoanChecksAndCalculations.checkLoanIdValidity(_loanId, hub); require(!loanRepaidOrLiquidated[_loanId], "Loan already repaid/liquidated"); LoanTerms storage loan = loanIdToLoan[_loanId]; _escrowTokens[loan.nftCollateralContract][loan.nftCollateralId] -= 1; (address instance, uint256 receiverId) = LoanAirdropUtils.wrapCollateral(_loanId, loan, hub); _escrowTokens[instance][receiverId] += 1; } /** * @notice This function can be called by either a lender or a borrower to cancel all off-chain orders that they * have signed that contain this nonce. If the off-chain orders were created correctly, there should only be one * off-chain order that contains this nonce at all. * * The nonce referred to here is not the same as an Ethereum account's nonce. We are referring * instead to nonces that are used by both the lender and the borrower when they are first signing off-chain NFTfi * orders. These nonces can be any uint256 value that the user has not previously used to sign an off-chain order. * Each nonce can be used at most once per user within NFTfi, regardless of whether they are the lender or the * borrower in that situation. This serves two purposes. First, it prevents replay attacks where an attacker would * submit a user's off-chain order more than once. Second, it allows a user to cancel an off-chain order by calling * NFTfi.cancelLoanCommitmentBeforeLoanHasBegun(), which marks the nonce as used and prevents any future loan from * using the user's off-chain order that contains that nonce. * * @param _nonce - User nonce */ function cancelLoanCommitmentBeforeLoanHasBegun(uint256 _nonce) external { require(!_nonceHasBeenUsedForUser[msg.sender][_nonce], "Invalid nonce"); _nonceHasBeenUsedForUser[msg.sender][_nonce] = true; } /* ******************* */ /* READ-ONLY FUNCTIONS */ /* ******************* */ /** * @notice This function can be used to view the current quantity of the ERC20 currency used in the specified loan * required by the borrower to repay their loan, measured in the smallest unit of the ERC20 currency. * * @param _loanId A unique identifier for this particular loan, sourced from the Loan Coordinator. * * @return The amount of the specified ERC20 currency required to pay back this loan, measured in the smallest unit * of the specified ERC20 currency. */ function getPayoffAmount(uint32 _loanId) external view virtual returns (uint256); /** * @notice This function can be used to view whether a particular nonce for a particular user has already been used, * either from a successful loan or a cancelled off-chain order. * * @param _user - The address of the user. This function works for both lenders and borrowers alike. * @param _nonce - The nonce referred to here is not the same as an Ethereum account's nonce. We are referring * instead to nonces that are used by both the lender and the borrower when they are first signing off-chain * NFTfi orders. These nonces can be any uint256 value that the user has not previously used to sign an off-chain * order. Each nonce can be used at most once per user within NFTfi, regardless of whether they are the lender or * the borrower in that situation. This serves two purposes: * - First, it prevents replay attacks where an attacker would submit a user's off-chain order more than once. * - Second, it allows a user to cancel an off-chain order by calling NFTfi.cancelLoanCommitmentBeforeLoanHasBegun() * , which marks the nonce as used and prevents any future loan from using the user's off-chain order that contains * that nonce. * * @return A bool representing whether or not this nonce has been used for this user. */ function getWhetherNonceHasBeenUsedForUser(address _user, uint256 _nonce) external view override returns (bool) { return _nonceHasBeenUsedForUser[_user][_nonce]; } /** * @notice This function can be called by anyone to get the permit associated with the erc20 contract. * * @param _erc20 - The address of the erc20 contract. * * @return Returns whether the erc20 is permitted */ function getERC20Permit(address _erc20) public view override returns (bool) { return erc20Permits[_erc20]; } /* ****************** */ /* INTERNAL FUNCTIONS */ /* ****************** */ /** * @dev makes possible to change loan duration and max repayment amount, loan duration even can be extended if * loan was expired but not liquidated. IMPORTANT: Frontend will have to propt the caller to do an ERC20 approve for * the fee amount from themselves (borrower/obligation reciept holder) to the lender (promissory note holder) * * @param _loanId - The unique identifier for the loan to be renegotiated * @param _newLoanDuration - The new amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * @param _newMaximumRepaymentAmount - The new maximum amount of money that the borrower would be required to * retrieve their collateral, measured in the smallest units of the ERC20 currency used for the loan. The * borrower will always have to pay this amount to retrieve their collateral, regardless of whether they repay * early. * @param _renegotiationFee Agreed upon fee in loan denomination that borrower pays for the lender and * the admin for the renegotiation, has to be paid with an ERC20 transfer loanERC20Denomination token, * uses transfer from, frontend will have to propmt an erc20 approve for this from the borrower to the lender, * admin fee is calculated by the loan's loanAdminFeeInBasisPoints value * @param _lenderNonce - The nonce referred to here is not the same as an Ethereum account's nonce. We are * referring instead to nonces that are used by both the lender and the borrower when they are first signing * off-chain NFTfi orders. These nonces can be any uint256 value that the user has not previously used to sign an * off-chain order. Each nonce can be used at most once per user within NFTfi, regardless of whether they are the * lender or the borrower in that situation. This serves two purposes: * - First, it prevents replay attacks where an attacker would submit a user's off-chain order more than once. * - Second, it allows a user to cancel an off-chain order by calling NFTfi.cancelLoanCommitmentBeforeLoanHasBegun() , which marks the nonce as used and prevents any future loan from using the user's off-chain order that contains * that nonce. * @param _expiry - The date when the renegotiation offer expires * @param _lenderSignature - The ECDSA signature of the lender, obtained off-chain ahead of time, signing the * following combination of parameters: * - _loanId * - _newLoanDuration * - _newMaximumRepaymentAmount * - _lender * - _expiry * - address of this contract * - chainId */ function _renegotiateLoan( uint32 _loanId, uint32 _newLoanDuration, uint256 _newMaximumRepaymentAmount, uint256 _renegotiationFee, uint256 _lenderNonce, uint256 _expiry, bytes memory _lenderSignature ) internal { LoanTerms storage loan = loanIdToLoan[_loanId]; (address borrower, address lender) = LoanChecksAndCalculations.renegotiationChecks( loan, _loanId, _newLoanDuration, _newMaximumRepaymentAmount, _lenderNonce, hub ); _nonceHasBeenUsedForUser[lender][_lenderNonce] = true; require( NFTfiSigningUtils.isValidLenderRenegotiationSignature( _loanId, _newLoanDuration, _newMaximumRepaymentAmount, _renegotiationFee, Signature({signer: lender, nonce: _lenderNonce, expiry: _expiry, signature: _lenderSignature}) ), "Renegotiation signature is invalid" ); uint256 renegotiationAdminFee; /** * @notice Transfers fee to the lender immediately * @dev implements Checks-Effects-Interactions pattern by modifying state only after * the transfer happened successfully, we also add the nonReentrant modifier to * the pbulic versions */ if (_renegotiationFee > 0) { renegotiationAdminFee = LoanChecksAndCalculations.computeAdminFee( _renegotiationFee, loan.loanAdminFeeInBasisPoints ); // Transfer principal-plus-interest-minus-fees from the caller (always has to be borrower) to lender IERC20(loan.loanERC20Denomination).safeTransferFrom( borrower, lender, _renegotiationFee - renegotiationAdminFee ); // Transfer fees from the caller (always has to be borrower) to admins IERC20(loan.loanERC20Denomination).safeTransferFrom(borrower, owner(), renegotiationAdminFee); } loan.loanDuration = _newLoanDuration; loan.maximumRepaymentAmount = _newMaximumRepaymentAmount; emit LoanRenegotiated( _loanId, borrower, lender, _newLoanDuration, _newMaximumRepaymentAmount, _renegotiationFee, renegotiationAdminFee ); } /** * @dev Transfer collateral NFT from borrower to this contract and principal from lender to the borrower and * registers the new loan through the loan coordinator. * * @param _loanType - The type of loan it is being created * @param _loanTerms - Struct containing the loan's settings * @param _loanExtras - Struct containing some loan's extra settings, needed to avoid stack too deep * @param _lender - The address of the lender. * @param _referrer - The address of the referrer who found the lender matching the listing, Zero address to signal * that there is no referrer. */ function _createLoan( bytes32 _loanType, LoanTerms memory _loanTerms, LoanExtras memory _loanExtras, address _borrower, address _lender, address _referrer ) internal returns (uint32) { // Transfer collateral from borrower to this contract to be held until // loan completion. _transferNFT(_loanTerms, _borrower, address(this)); return _createLoanNoNftTransfer(_loanType, _loanTerms, _loanExtras, _borrower, _lender, _referrer); } /** * @dev Transfer principal from lender to the borrower and * registers the new loan through the loan coordinator. * * @param _loanType - The type of loan it is being created * @param _loanTerms - Struct containing the loan's settings * @param _loanExtras - Struct containing some loan's extra settings, needed to avoid stack too deep * @param _lender - The address of the lender. * @param _referrer - The address of the referrer who found the lender matching the listing, Zero address to signal * that there is no referrer. */ function _createLoanNoNftTransfer( bytes32 _loanType, LoanTerms memory _loanTerms, LoanExtras memory _loanExtras, address _borrower, address _lender, address _referrer ) internal returns (uint32 loanId) { _escrowTokens[_loanTerms.nftCollateralContract][_loanTerms.nftCollateralId] += 1; uint256 referralfee = LoanChecksAndCalculations.computeReferralFee( _loanTerms.loanPrincipalAmount, _loanExtras.referralFeeInBasisPoints, _referrer ); uint256 principalAmount = _loanTerms.loanPrincipalAmount - referralfee; if (referralfee > 0) { // Transfer the referral fee from lender to referrer. IERC20(_loanTerms.loanERC20Denomination).safeTransferFrom(_lender, _referrer, referralfee); } // Transfer principal from lender to borrower. IERC20(_loanTerms.loanERC20Denomination).safeTransferFrom(_lender, _borrower, principalAmount); // Issue an ERC721 promissory note to the lender that gives them the // right to either the principal-plus-interest or the collateral, // and an obligation note to the borrower that gives them the // right to pay back the loan and get the collateral back. IDirectLoanCoordinator loanCoordinator = IDirectLoanCoordinator(hub.getContract(LOAN_COORDINATOR)); loanId = loanCoordinator.registerLoan(_lender, _loanType); // Add the loan to storage before moving collateral/principal to follow // the Checks-Effects-Interactions pattern. loanIdToLoan[loanId] = _loanTerms; loanIdToLoanExtras[loanId] = _loanExtras; return loanId; } /** * @dev Transfers several types of NFTs using a wrapper that knows how to handle each case. * * @param _loanTerms - Struct containing all the loan's parameters * @param _sender - Current owner of the NFT * @param _recipient - Recipient of the transfer */ function _transferNFT( LoanTerms memory _loanTerms, address _sender, address _recipient ) internal { Address.functionDelegateCall( _loanTerms.nftCollateralWrapper, abi.encodeWithSelector( INftWrapper(_loanTerms.nftCollateralWrapper).transferNFT.selector, _sender, _recipient, _loanTerms.nftCollateralContract, _loanTerms.nftCollateralId ), "NFT not successfully transferred" ); } /** * @notice This function is called by a anyone to repay a loan. It can be called at any time after the loan has * begun and before loan expiry.. The caller will pay a pro-rata portion of their interest if the loan is paid off * early and the loan is pro-rated type, but the complete repayment amount if it is fixed type. * The the borrower (current owner of the obligation note) will get the collaterl NFT back. * * This function is purposefully not pausable in order to prevent an attack where the contract admin's pause the * contract and hold hostage the NFT's that are still within it. * * @param _loanId A unique identifier for this particular loan, sourced from the Loan Coordinator. */ function _payBackLoan( uint32 _loanId, address _borrower, address _lender, LoanTerms memory _loan ) internal { // Fetch loan details from storage, but store them in memory for the sake of saving gas. LoanExtras memory loanExtras = loanIdToLoanExtras[_loanId]; (uint256 adminFee, uint256 payoffAmount) = _payoffAndFee(_loan); // Transfer principal-plus-interest-minus-fees from the caller to lender IERC20(_loan.loanERC20Denomination).safeTransferFrom(msg.sender, _lender, payoffAmount); uint256 revenueShare = LoanChecksAndCalculations.computeRevenueShare( adminFee, loanExtras.revenueShareInBasisPoints ); // PermittedPartners contract doesn't allow to set a revenueShareInBasisPoints for address zero so revenuShare // > 0 implies that revenueSharePartner ~= address(0), BUT revenueShare can be zero for a partener when the // adminFee is low if (revenueShare > 0 && loanExtras.revenueSharePartner != address(0)) { adminFee -= revenueShare; // Transfer revenue share from the caller to permitted partner IERC20(_loan.loanERC20Denomination).safeTransferFrom( msg.sender, loanExtras.revenueSharePartner, revenueShare ); } // Transfer fees from the caller to admins IERC20(_loan.loanERC20Denomination).safeTransferFrom(msg.sender, owner(), adminFee); // Emit an event with all relevant details from this transaction. emit LoanRepaid( _loanId, _borrower, _lender, _loan.loanPrincipalAmount, _loan.nftCollateralId, payoffAmount, adminFee, revenueShare, loanExtras.revenueSharePartner, // this could be a non address zero even if revenueShare is 0 _loan.nftCollateralContract, _loan.loanERC20Denomination ); } /** * @notice A convenience function with shared functionality between `payBackLoan` and `liquidateOverdueLoan`. * * @param _loanId A unique identifier for this particular loan, sourced from the Loan Coordinator. * @param _nftReceiver - The receiver of the collateral nft. The borrower when `payBackLoan` or the lender when * `liquidateOverdueLoan`. * @param _loanTerms - The main Loan Terms struct. This data is saved upon loan creation on loanIdToLoan. * @param _loanCoordinator - The loan coordinator used when creating the loan. */ function _resolveLoan( uint32 _loanId, address _nftReceiver, LoanTerms memory _loanTerms, IDirectLoanCoordinator _loanCoordinator ) internal { _resolveLoanNoNftTransfer(_loanId, _loanTerms, _loanCoordinator); // Transfer collateral from this contract to the lender, since the lender is seizing collateral for an overdue // loan _transferNFT(_loanTerms, address(this), _nftReceiver); } /** * @notice Resolving the loan without trasferring the nft to provide a base for the bundle * break up of the bundled loans * * @param _loanId A unique identifier for this particular loan, sourced from the Loan Coordinator. * @param _loanTerms - The main Loan Terms struct. This data is saved upon loan creation on loanIdToLoan. * @param _loanCoordinator - The loan coordinator used when creating the loan. */ function _resolveLoanNoNftTransfer( uint32 _loanId, LoanTerms memory _loanTerms, IDirectLoanCoordinator _loanCoordinator ) internal { // Mark loan as liquidated before doing any external transfers to follow the Checks-Effects-Interactions design // pattern loanRepaidOrLiquidated[_loanId] = true; _escrowTokens[_loanTerms.nftCollateralContract][_loanTerms.nftCollateralId] -= 1; // Destroy the lender's promissory note for this loan and borrower obligation receipt _loanCoordinator.resolveLoan(_loanId); } /** * @notice This function can be called by admins to change the permitted status of an ERC20 currency. This includes * both adding an ERC20 currency to the permitted list and removing it. * * @param _erc20 - The address of the ERC20 currency whose permit list status changed. * @param _permit - The new status of whether the currency is permitted or not. */ function _setERC20Permit(address _erc20, bool _permit) internal { require(_erc20 != address(0), "erc20 is zero address"); erc20Permits[_erc20] = _permit; emit ERC20Permit(_erc20, _permit); } /** * @dev Performs some validation checks over loan parameters * */ function _loanSanityChecks(LoanData.Offer memory _offer, address _nftWrapper) internal view { require(getERC20Permit(_offer.loanERC20Denomination), "Currency denomination is not permitted"); require(_nftWrapper != address(0), "NFT collateral contract is not permitted"); require(uint256(_offer.loanDuration) <= maximumLoanDuration, "Loan duration exceeds maximum loan duration"); require(uint256(_offer.loanDuration) != 0, "Loan duration cannot be zero"); require( _offer.loanAdminFeeInBasisPoints == adminFeeInBasisPoints, "The admin fee has changed since this order was signed." ); } /** * @dev reads some variable values of a loan for payback functions, created to reduce code repetition */ function _getPartiesAndData(uint32 _loanId) internal view returns ( address borrower, address lender, LoanTerms memory loan, IDirectLoanCoordinator loanCoordinator ) { loanCoordinator = IDirectLoanCoordinator(hub.getContract(LOAN_COORDINATOR)); IDirectLoanCoordinator.Loan memory loanCoordinatorData = loanCoordinator.getLoanData(_loanId); uint256 smartNftId = loanCoordinatorData.smartNftId; // Fetch loan details from storage, but store them in memory for the sake of saving gas. loan = loanIdToLoan[_loanId]; if (loan.borrower != address(0)) { borrower = loan.borrower; } else { // Fetch current owner of loan obligation note. borrower = IERC721(loanCoordinator.obligationReceiptToken()).ownerOf(smartNftId); } lender = IERC721(loanCoordinator.promissoryNoteToken()).ownerOf(smartNftId); } /** * @dev Creates a `LoanExtras` struct using data sent as the borrower's extra settings. * This is needed in order to avoid stack too deep issues. */ function _setupLoanExtras(address _revenueSharePartner, uint16 _referralFeeInBasisPoints) internal view returns (LoanExtras memory) { // Save loan details to a struct in memory first, to save on gas if any // of the below checks fail, and to avoid the "Stack Too Deep" error by // clumping the parameters together into one struct held in memory. return LoanExtras({ revenueSharePartner: _revenueSharePartner, revenueShareInBasisPoints: LoanChecksAndCalculations.getRevenueSharePercent(_revenueSharePartner, hub), referralFeeInBasisPoints: _referralFeeInBasisPoints }); } /** * @dev Calculates the payoff amount and admin fee */ function _payoffAndFee(LoanTerms memory _loanTerms) internal view virtual returns (uint256, uint256); /** * @dev Checks that the collateral is a supported contracts and returns what wrapper to use for the loan's NFT * collateral contract. * * @param _nftCollateralContract - The address of the the NFT collateral contract. * * @return Address of the NftWrapper to use for the loan's NFT collateral. */ function _getWrapper(address _nftCollateralContract) internal view returns (address) { return IPermittedNFTs(hub.getContract(ContractKeys.PERMITTED_NFTS)).getNFTWrapper(_nftCollateralContract); } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; /** * @title ContractKeys * @author NFTfi * @dev Common library for contract keys */ library ContractKeys { bytes32 public constant PERMITTED_ERC20S = bytes32("PERMITTED_ERC20S"); bytes32 public constant PERMITTED_NFTS = bytes32("PERMITTED_NFTS"); bytes32 public constant PERMITTED_PARTNERS = bytes32("PERMITTED_PARTNERS"); bytes32 public constant NFT_TYPE_REGISTRY = bytes32("NFT_TYPE_REGISTRY"); bytes32 public constant LOAN_REGISTRY = bytes32("LOAN_REGISTRY"); bytes32 public constant PERMITTED_SNFT_RECEIVER = bytes32("PERMITTED_SNFT_RECEIVER"); bytes32 public constant PERMITTED_BUNDLE_ERC20S = bytes32("PERMITTED_BUNDLE_ERC20S"); bytes32 public constant PERMITTED_AIRDROPS = bytes32("PERMITTED_AIRDROPS"); bytes32 public constant AIRDROP_RECEIVER = bytes32("AIRDROP_RECEIVER"); bytes32 public constant AIRDROP_FACTORY = bytes32("AIRDROP_FACTORY"); bytes32 public constant AIRDROP_FLASH_LOAN = bytes32("AIRDROP_FLASH_LOAN"); bytes32 public constant NFTFI_BUNDLER = bytes32("NFTFI_BUNDLER"); string public constant AIRDROP_WRAPPER_STRING = "AirdropWrapper"; /** * @notice Returns the bytes32 representation of a string * @param _key the string key * @return id bytes32 representation */ function getIdFromStringKey(string memory _key) external pure returns (bytes32 id) { require(bytes(_key).length <= 32, "invalid key"); // solhint-disable-next-line no-inline-assembly assembly { id := mload(add(_key, 32)) } } }
// SPDX-License-Identifier: BUSL-1.1 import "./LoanData.sol"; pragma solidity 0.8.4; interface IDirectLoanBase { function maximumLoanDuration() external view returns (uint256); function adminFeeInBasisPoints() external view returns (uint16); // solhint-disable-next-line func-name-mixedcase function LOAN_COORDINATOR() external view returns (bytes32); function loanIdToLoan(uint32) external view returns ( uint256, uint256, uint256, address, uint32, uint16, uint16, address, uint64, address, address ); function loanRepaidOrLiquidated(uint32) external view returns (bool); function getWhetherNonceHasBeenUsedForUser(address _user, uint256 _nonce) external view returns (bool); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; /** * @title LoanData * @author NFTfi * @notice An interface containg the main Loan struct shared by Direct Loans types. */ interface LoanData { /* ********** */ /* DATA TYPES */ /* ********** */ /** * @notice The main Loan Terms struct. This data is saved upon loan creation. * * @param loanERC20Denomination - The address of the ERC20 contract of the currency being used as principal/interest * for this loan. * @param loanPrincipalAmount - The original sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * @param maximumRepaymentAmount - The maximum amount of money that the borrower would be required to retrieve their * collateral, measured in the smallest units of the ERC20 currency used for the loan. The borrower will always have * to pay this amount to retrieve their collateral, regardless of whether they repay early. * @param nftCollateralContract - The address of the the NFT collateral contract. * @param nftCollateralWrapper - The NFTfi wrapper of the NFT collateral contract. * @param nftCollateralId - The ID within the NFTCollateralContract for the NFT being used as collateral for this * loan. The NFT is stored within this contract during the duration of the loan. * @param loanStartTime - The block.timestamp when the loan first began (measured in seconds). * @param loanDuration - The amount of time (measured in seconds) that can elapse before the lender can liquidate * the loan and seize the underlying collateral NFT. * @param loanInterestRateForDurationInBasisPoints - This is the interest rate (measured in basis points, e.g. * hundreths of a percent) for the loan, that must be repaid pro-rata by the borrower at the conclusion of the loan * or risk seizure of their nft collateral. Note if the type of the loan is fixed then this value is not used and * is irrelevant so it should be set to 0. * @param loanAdminFeeInBasisPoints - The percent (measured in basis points) of the interest earned that will be * taken as a fee by the contract admins when the loan is repaid. The fee is stored in the loan struct to prevent an * attack where the contract admins could adjust the fee right before a loan is repaid, and take all of the interest * earned. * @param borrower */ struct LoanTerms { uint256 loanPrincipalAmount; uint256 maximumRepaymentAmount; uint256 nftCollateralId; address loanERC20Denomination; uint32 loanDuration; uint16 loanInterestRateForDurationInBasisPoints; uint16 loanAdminFeeInBasisPoints; address nftCollateralWrapper; uint64 loanStartTime; address nftCollateralContract; address borrower; } /** * @notice Some extra Loan's settings struct. This data is saved upon loan creation. * We need this to avoid stack too deep errors. * * @param revenueSharePartner - The address of the partner that will receive the revenue share. * @param revenueShareInBasisPoints - The percent (measured in basis points) of the admin fee amount that will be * taken as a revenue share for a t * @param referralFeeInBasisPoints - The percent (measured in basis points) of the loan principal amount that will * be taken as a fee to pay to the referrer, 0 if the lender is not paying referral fee.he partner, at the moment * the loan is begun. */ struct LoanExtras { address revenueSharePartner; uint16 revenueShareInBasisPoints; uint16 referralFeeInBasisPoints; } /** * @notice The offer made by the lender. Used as parameter on both acceptOffer (initiated by the borrower) and * acceptListing (initiated by the lender). * * @param loanERC20Denomination - The address of the ERC20 contract of the currency being used as principal/interest * for this loan. * @param loanPrincipalAmount - The original sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * @param maximumRepaymentAmount - The maximum amount of money that the borrower would be required to retrieve their * collateral, measured in the smallest units of the ERC20 currency used for the loan. The borrower will always * have to pay this amount to retrieve their collateral, regardless of whether they repay early. * @param nftCollateralContract - The address of the ERC721 contract of the NFT collateral. * @param nftCollateralId - The ID within the NFTCollateralContract for the NFT being used as collateral for this * loan. The NFT is stored within this contract during the duration of the loan. * @param referrer - The address of the referrer who found the lender matching the listing, Zero address to signal * this there is no referrer. * @param loanDuration - The amount of time (measured in seconds) that can elapse before the lender can liquidate * the loan and seize the underlying collateral NFT. * @param loanAdminFeeInBasisPoints - The percent (measured in basis points) of the interest earned that will be * taken as a fee by the contract admins when the loan is repaid. The fee is stored in the loan struct to prevent an * attack where the contract admins could adjust the fee right before a loan is repaid, and take all of the interest * earned. */ struct Offer { uint256 loanPrincipalAmount; uint256 maximumRepaymentAmount; uint256 nftCollateralId; address nftCollateralContract; uint32 loanDuration; uint16 loanAdminFeeInBasisPoints; address loanERC20Denomination; address referrer; } /** * @notice Signature related params. Used as parameter on both acceptOffer (containing borrower signature) and * acceptListing (containing lender signature). * * @param signer - The address of the signer. The borrower for `acceptOffer` the lender for `acceptListing`. * @param nonce - The nonce referred here is not the same as an Ethereum account's nonce. * We are referring instead to a nonce that is used by the lender or the borrower when they are first signing * off-chain NFTfi orders. These nonce can be any uint256 value that the user has not previously used to sign an * off-chain order. Each nonce can be used at most once per user within NFTfi, regardless of whether they are the * lender or the borrower in that situation. This serves two purposes: * - First, it prevents replay attacks where an attacker would submit a user's off-chain order more than once. * - Second, it allows a user to cancel an off-chain order by calling NFTfi.cancelLoanCommitmentBeforeLoanHasBegun() * , which marks the nonce as used and prevents any future loan from using the user's off-chain order that contains * that nonce. * @param expiry - Date when the signature expires * @param signature - The ECDSA signature of the borrower or the lender, obtained off-chain ahead of time, signing * the following combination of parameters: * - Borrower * - ListingTerms.loanERC20Denomination, * - ListingTerms.minLoanPrincipalAmount, * - ListingTerms.maxLoanPrincipalAmount, * - ListingTerms.nftCollateralContract, * - ListingTerms.nftCollateralId, * - ListingTerms.revenueSharePartner, * - ListingTerms.minLoanDuration, * - ListingTerms.maxLoanDuration, * - ListingTerms.maxInterestRateForDurationInBasisPoints, * - ListingTerms.referralFeeInBasisPoints, * - Signature.signer, * - Signature.nonce, * - Signature.expiry, * - address of the loan type contract * - chainId * - Lender: * - Offer.loanERC20Denomination * - Offer.loanPrincipalAmount * - Offer.maximumRepaymentAmount * - Offer.nftCollateralContract * - Offer.nftCollateralId * - Offer.referrer * - Offer.loanDuration * - Offer.loanAdminFeeInBasisPoints * - Signature.signer, * - Signature.nonce, * - Signature.expiry, * - address of the loan type contract * - chainId */ struct Signature { uint256 nonce; uint256 expiry; address signer; bytes signature; } /** * @notice Some extra parameters that the borrower needs to set when accepting an offer. * * @param revenueSharePartner - The address of the partner that will receive the revenue share. * @param referralFeeInBasisPoints - The percent (measured in basis points) of the loan principal amount that will * be taken as a fee to pay to the referrer, 0 if the lender is not paying referral fee. */ struct BorrowerSettings { address revenueSharePartner; uint16 referralFeeInBasisPoints; } /** * @notice Terms the borrower set off-chain and is willing to accept automatically when fulfiled by a lender's * offer. * * @param loanERC20Denomination - The address of the ERC20 contract of the currency being used as principal/interest * for this loan. * @param minLoanPrincipalAmount - The minumum sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * @param maxLoanPrincipalAmount - The sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * @param maximumRepaymentAmount - The maximum amount of money that the borrower would be required to retrieve their * collateral, measured in the smallest units of the ERC20 currency used for the loan. The borrower will always have * to pay this amount to retrieve their collateral, regardless of whether they repay early. * @param nftCollateralContract - The address of the ERC721 contract of the NFT collateral. * @param nftCollateralId - The ID within the NFTCollateralContract for the NFT being used as collateral for this * loan. The NFT is stored within this contract during the duration of the loan. * @param revenueSharePartner - The address of the partner that will receive the revenue share. * @param minLoanDuration - The minumum amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * @param maxLoanDuration - The maximum amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * @param maxInterestRateForDurationInBasisPoints - This is maximum the interest rate (measured in basis points, * e.g. hundreths of a percent) for the loan. * @param referralFeeInBasisPoints - The percent (measured in basis points) of the loan principal amount that will * be taken as a fee to pay to the referrer, 0 if the lender is not paying referral fee. */ struct ListingTerms { uint256 minLoanPrincipalAmount; uint256 maxLoanPrincipalAmount; uint256 nftCollateralId; address nftCollateralContract; uint32 minLoanDuration; uint32 maxLoanDuration; uint16 maxInterestRateForDurationInBasisPoints; uint16 referralFeeInBasisPoints; address revenueSharePartner; address loanERC20Denomination; } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; import "./IDirectLoanBase.sol"; import "./LoanData.sol"; import "../../../interfaces/IDirectLoanCoordinator.sol"; import "../../../utils/ContractKeys.sol"; import "../../../interfaces/INftfiHub.sol"; import "../../../interfaces/IPermittedPartners.sol"; import "../../../interfaces/IPermittedERC20s.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; /** * @title LoanChecksAndCalculations * @author NFTfi * @notice Helper library for LoanBase */ library LoanChecksAndCalculations { uint16 private constant HUNDRED_PERCENT = 10000; /** * @dev Function that performs some validation checks before trying to repay a loan * * @param _loanId - The id of the loan being repaid */ function payBackChecks(uint32 _loanId, INftfiHub _hub) external view { checkLoanIdValidity(_loanId, _hub); // Sanity check that payBackLoan() and liquidateOverdueLoan() have never been called on this loanId. // Depending on how the rest of the code turns out, this check may be unnecessary. require(!IDirectLoanBase(address(this)).loanRepaidOrLiquidated(_loanId), "Loan already repaid/liquidated"); // Fetch loan details from storage, but store them in memory for the sake of saving gas. (, , , , uint32 loanDuration, , , , uint64 loanStartTime, , ) = IDirectLoanBase(address(this)).loanIdToLoan( _loanId ); // When a loan exceeds the loan term, it is expired. At this stage the Lender can call Liquidate Loan to resolve // the loan. require(block.timestamp <= (uint256(loanStartTime) + uint256(loanDuration)), "Loan is expired"); } function checkLoanIdValidity(uint32 _loanId, INftfiHub _hub) public view { require( IDirectLoanCoordinator(_hub.getContract(IDirectLoanBase(address(this)).LOAN_COORDINATOR())).isValidLoanId( _loanId, address(this) ), "invalid loanId" ); } /** * @dev Function that the partner is permitted and returns its shared percent. * * @param _revenueSharePartner - Partner's address * * @return The revenue share percent for the partner. */ function getRevenueSharePercent(address _revenueSharePartner, INftfiHub _hub) external view returns (uint16) { // return soon if no partner is set to avoid a public call if (_revenueSharePartner == address(0)) { return 0; } uint16 revenueSharePercent = IPermittedPartners(_hub.getContract(ContractKeys.PERMITTED_PARTNERS)) .getPartnerPermit(_revenueSharePartner); return revenueSharePercent; } /** * @dev Performs some validation checks before trying to renegotiate a loan. * Needed to avoid stack too deep. * * @param _loan - The main Loan Terms struct. * @param _loanId - The unique identifier for the loan to be renegotiated * @param _newLoanDuration - The new amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * @param _newMaximumRepaymentAmount - The new maximum amount of money that the borrower would be required to * retrieve their collateral, measured in the smallest units of the ERC20 currency used for the loan. The * borrower will always have to pay this amount to retrieve their collateral, regardless of whether they repay * early. * @param _lenderNonce - The nonce referred to here is not the same as an Ethereum account's nonce. We are * referring instead to nonces that are used by both the lender and the borrower when they are first signing * off-chain NFTfi orders. These nonces can be any uint256 value that the user has not previously used to sign an * off-chain order. Each nonce can be used at most once per user within NFTfi, regardless of whether they are the * lender or the borrower in that situation. This serves two purposes: * - First, it prevents replay attacks where an attacker would submit a user's off-chain order more than once. * - Second, it allows a user to cancel an off-chain order by calling NFTfi.cancelLoanCommitmentBeforeLoanHasBegun() , which marks the nonce as used and prevents any future loan from using the user's off-chain order that contains * that nonce. * @return Borrower and Lender addresses */ function renegotiationChecks( LoanData.LoanTerms memory _loan, uint32 _loanId, uint32 _newLoanDuration, uint256 _newMaximumRepaymentAmount, uint256 _lenderNonce, INftfiHub _hub ) external view returns (address, address) { checkLoanIdValidity(_loanId, _hub); IDirectLoanCoordinator loanCoordinator = IDirectLoanCoordinator( _hub.getContract(IDirectLoanBase(address(this)).LOAN_COORDINATOR()) ); uint256 smartNftId = loanCoordinator.getLoanData(_loanId).smartNftId; address borrower; if (_loan.borrower != address(0)) { borrower = _loan.borrower; } else { borrower = IERC721(loanCoordinator.obligationReceiptToken()).ownerOf(smartNftId); } require(msg.sender == borrower, "Only borrower can initiate"); require(block.timestamp <= (uint256(_loan.loanStartTime) + _newLoanDuration), "New duration already expired"); require( uint256(_newLoanDuration) <= IDirectLoanBase(address(this)).maximumLoanDuration(), "New duration exceeds maximum loan duration" ); require(!IDirectLoanBase(address(this)).loanRepaidOrLiquidated(_loanId), "Loan already repaid/liquidated"); require( _newMaximumRepaymentAmount >= _loan.loanPrincipalAmount, "Negative interest rate loans are not allowed." ); // Fetch current owner of loan promissory note. address lender = IERC721(loanCoordinator.promissoryNoteToken()).ownerOf(smartNftId); require( !IDirectLoanBase(address(this)).getWhetherNonceHasBeenUsedForUser(lender, _lenderNonce), "Lender nonce invalid" ); return (borrower, lender); } /** * @notice A convenience function computing the revenue share taken from the admin fee to transferr to the permitted * partner. * * @param _adminFee - The quantity of ERC20 currency (measured in smalled units of that ERC20 currency) that is due * as an admin fee. * @param _revenueShareInBasisPoints - The percent (measured in basis points) of the admin fee amount that will be * taken as a revenue share for a the partner, at the moment the loan is begun. * * @return The quantity of ERC20 currency (measured in smalled units of that ERC20 currency) that should be sent to * the `revenueSharePartner`. */ function computeRevenueShare(uint256 _adminFee, uint256 _revenueShareInBasisPoints) external pure returns (uint256) { return (_adminFee * _revenueShareInBasisPoints) / HUNDRED_PERCENT; } /** * @notice A convenience function computing the adminFee taken from a specified quantity of interest. * * @param _interestDue - The amount of interest due, measured in the smallest quantity of the ERC20 currency being * used to pay the interest. * @param _adminFeeInBasisPoints - The percent (measured in basis points) of the interest earned that will be taken * as a fee by the contract admins when the loan is repaid. The fee is stored in the loan struct to prevent an * attack where the contract admins could adjust the fee right before a loan is repaid, and take all of the interest * earned. * * @return The quantity of ERC20 currency (measured in smalled units of that ERC20 currency) that is due as an admin * fee. */ function computeAdminFee(uint256 _interestDue, uint256 _adminFeeInBasisPoints) external pure returns (uint256) { return (_interestDue * _adminFeeInBasisPoints) / HUNDRED_PERCENT; } /** * @notice A convenience function computing the referral fee taken from the loan principal amount to transferr to * the referrer. * * @param _loanPrincipalAmount - The original sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * @param _referralFeeInBasisPoints - The percent (measured in basis points) of the loan principal amount that will * be taken as a fee to pay to the referrer, 0 if the lender is not paying referral fee. * @param _referrer - The address of the referrer who found the lender matching the listing, Zero address to signal * that there is no referrer. * * @return The quantity of ERC20 currency (measured in smalled units of that ERC20 currency) that should be sent to * the referrer. */ function computeReferralFee( uint256 _loanPrincipalAmount, uint256 _referralFeeInBasisPoints, address _referrer ) external pure returns (uint256) { if (_referralFeeInBasisPoints == 0 || _referrer == address(0)) { return 0; } return (_loanPrincipalAmount * _referralFeeInBasisPoints) / HUNDRED_PERCENT; } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; import "./IDirectLoanBase.sol"; import "./LoanData.sol"; import "../../../interfaces/IDirectLoanCoordinator.sol"; import "../../../utils/ContractKeys.sol"; import "../../../interfaces/INftfiHub.sol"; import "../../../interfaces/IPermittedPartners.sol"; import "../../../interfaces/IPermittedERC20s.sol"; import "../../../interfaces/IAirdropFlashLoan.sol"; import "../../../interfaces/INftWrapper.sol"; import "../../../airdrop/IAirdropReceiverFactory.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/utils/Address.sol"; /** * @title LoanAirdropUtils * @author NFTfi * @notice Helper library for LoanBase */ library LoanAirdropUtils { /** * @notice This event is fired whenever a flashloan is initiated to pull an airdrop * * @param loanId - A unique identifier for this particular loan, sourced from the Loan Coordinator. * @param borrower - The address of the borrower. * @param nftCollateralId - The ID within the AirdropReceiver for the NFT being used as collateral for this * loan. * @param nftCollateralContract - The ERC721 contract of the NFT collateral * @param target - address of the airdropping contract * @param data - function selector to be called */ event AirdropPulledFlashloan( uint256 indexed loanId, address indexed borrower, uint256 nftCollateralId, address nftCollateralContract, address target, bytes data ); /** * @notice This event is fired whenever the collateral gets wrapped in an airdrop receiver * * @param loanId - A unique identifier for this particular loan, sourced from the Loan Coordinator. * @param borrower - The address of the borrower. * @param nftCollateralId - The ID within the AirdropReceiver for the NFT being used as collateral for this * loan. * @param nftCollateralContract - The contract of the NFT collateral * @param receiverId - id of the created AirdropReceiver, takes the place of nftCollateralId on the loan * @param receiverInstance - address of the created AirdropReceiver */ event CollateralWrapped( uint256 indexed loanId, address indexed borrower, uint256 nftCollateralId, address nftCollateralContract, uint256 receiverId, address receiverInstance ); function pullAirdrop( uint32 _loanId, LoanData.LoanTerms memory _loan, address _target, bytes calldata _data, address _nftAirdrop, uint256 _nftAirdropId, bool _is1155, uint256 _nftAirdropAmount, INftfiHub _hub ) external { IDirectLoanCoordinator loanCoordinator = IDirectLoanCoordinator( _hub.getContract(IDirectLoanBase(address(this)).LOAN_COORDINATOR()) ); address borrower; // scoped to aviod stack too deep { IDirectLoanCoordinator.Loan memory loanCoordinatorData = loanCoordinator.getLoanData(_loanId); uint256 smartNftId = loanCoordinatorData.smartNftId; if (_loan.borrower != address(0)) { borrower = _loan.borrower; } else { borrower = IERC721(loanCoordinator.obligationReceiptToken()).ownerOf(smartNftId); } } require(msg.sender == borrower, "Only borrower can airdrop"); { IAirdropFlashLoan airdropFlashLoan = IAirdropFlashLoan(_hub.getContract(ContractKeys.AIRDROP_FLASH_LOAN)); _transferNFT(_loan, address(this), address(airdropFlashLoan)); airdropFlashLoan.pullAirdrop( _loan.nftCollateralContract, _loan.nftCollateralId, _loan.nftCollateralWrapper, _target, _data, _nftAirdrop, _nftAirdropId, _is1155, _nftAirdropAmount, borrower ); } // revert if the collateral hasn't been transferred back before it ends require( INftWrapper(_loan.nftCollateralWrapper).isOwner( address(this), _loan.nftCollateralContract, _loan.nftCollateralId ), "Collateral should be returned" ); emit AirdropPulledFlashloan( _loanId, borrower, _loan.nftCollateralId, _loan.nftCollateralContract, _target, _data ); } function wrapCollateral( uint32 _loanId, LoanData.LoanTerms storage _loan, INftfiHub _hub ) external returns (address instance, uint256 receiverId) { IDirectLoanCoordinator loanCoordinator = IDirectLoanCoordinator( _hub.getContract(IDirectLoanBase(address(this)).LOAN_COORDINATOR()) ); // Fetch the current lender of the promissory note corresponding to this overdue loan. IDirectLoanCoordinator.Loan memory loanCoordinatorData = loanCoordinator.getLoanData(_loanId); uint256 smartNftId = loanCoordinatorData.smartNftId; address borrower; if (_loan.borrower != address(0)) { borrower = _loan.borrower; } else { borrower = IERC721(loanCoordinator.obligationReceiptToken()).ownerOf(smartNftId); } require(msg.sender == borrower, "Only borrower can wrapp"); IAirdropReceiverFactory factory = IAirdropReceiverFactory(_hub.getContract(ContractKeys.AIRDROP_FACTORY)); (instance, receiverId) = factory.createAirdropReceiver(address(this)); // transfer collateral to airdrop receiver wrapper _transferNFTtoAirdropReceiver(_loan, instance, borrower); emit CollateralWrapped( _loanId, borrower, _loan.nftCollateralId, _loan.nftCollateralContract, receiverId, instance ); // set the receiver as the new collateral _loan.nftCollateralContract = instance; _loan.nftCollateralId = receiverId; } /** * @dev Transfers several types of NFTs using a wrapper that knows how to handle each case. * * @param _loan - * @param _sender - Current owner of the NFT * @param _recipient - Recipient of the transfer */ function _transferNFT( LoanData.LoanTerms memory _loan, address _sender, address _recipient ) internal { Address.functionDelegateCall( _loan.nftCollateralWrapper, abi.encodeWithSelector( INftWrapper(_loan.nftCollateralWrapper).transferNFT.selector, _sender, _recipient, _loan.nftCollateralContract, _loan.nftCollateralId ), "NFT not successfully transferred" ); } /** * @dev Transfers several types of NFTs to an airdrop receiver with an airdrop beneficiary * address attached as supplementing data using a wrapper that knows how to handle each case. * * @param _loan - * @param _airdropReceiverInstance - Recipient of the transfer * @param _airdropBeneficiary - Beneficiary of the future airdops */ function _transferNFTtoAirdropReceiver( LoanData.LoanTerms memory _loan, address _airdropReceiverInstance, address _airdropBeneficiary ) internal { Address.functionDelegateCall( _loan.nftCollateralWrapper, abi.encodeWithSelector( INftWrapper(_loan.nftCollateralWrapper).wrapAirdropReceiver.selector, _airdropReceiverInstance, _loan.nftCollateralContract, _loan.nftCollateralId, _airdropBeneficiary ), "NFT was not successfully migrated" ); } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; import "../utils/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; /** * @title BaseLoan * @author NFTfi * @dev Implements base functionalities common to all Loan types. * Mostly related to governance and security. */ abstract contract BaseLoan is Ownable, Pausable, ReentrancyGuard { /* *********** */ /* CONSTRUCTOR */ /* *********** */ /** * @notice Sets the admin of the contract. * * @param _admin - Initial admin of this contract. */ constructor(address _admin) Ownable(_admin) { // solhint-disable-previous-line no-empty-blocks } /* ********* */ /* FUNCTIONS */ /* ********* */ /** * @dev Triggers stopped state. * * Requirements: * * - Only the owner can call this method. * - The contract must not be paused. */ function pause() external onlyOwner { _pause(); } /** * @dev Returns to normal state. * * Requirements: * * - Only the owner can call this method. * - The contract must be paused. */ function unpause() external onlyOwner { _unpause(); } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; /** * @title NftReceiver * @author NFTfi * @dev Base contract with capabilities for receiving ERC1155 and ERC721 tokens */ abstract contract NftReceiver is IERC1155Receiver, ERC721Holder { /** * @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a * `safeTransferFrom` after the balance has been updated. * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if allowed */ function onERC1155Received( address, address, uint256, uint256, bytes calldata ) external virtual override returns (bytes4) { return this.onERC1155Received.selector; } /** * @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a * `safeBatchTransferFrom` after the balances have been updated. * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if allowed */ function onERC1155BatchReceived( address, address, uint256[] calldata, uint256[] calldata, bytes calldata ) external virtual override returns (bytes4) { revert("ERC1155 batch not supported"); } /** * @dev Checks whether this contract implements the interface defined by `interfaceId`. * @param _interfaceId Id of the interface * @return true if this contract implements the interface */ function supportsInterface(bytes4 _interfaceId) public view virtual override returns (bool) { return _interfaceId == type(IERC1155Receiver).interfaceId || _interfaceId == type(IERC721Receiver).interfaceId || _interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; import "../interfaces/IBundleBuilder.sol"; import "../loans/direct/loanTypes/LoanData.sol"; import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; /** * @title NFTfiSigningUtils * @author NFTfi * @notice Helper contract for NFTfi. This contract manages verifying signatures from off-chain NFTfi orders. * Based on the version of this same contract used on NFTfi V1 */ library NFTfiSigningUtils { /* ********* */ /* FUNCTIONS */ /* ********* */ /** * @dev This function gets the current chain ID. */ function getChainID() public view returns (uint256) { uint256 id; // solhint-disable-next-line no-inline-assembly assembly { id := chainid() } return id; } /** * @notice This function is when the lender accepts a borrower's binding listing terms, to validate the lender's * signature that the borrower provided off-chain to verify that it did indeed made such listing. * * @param _listingTerms - The listing terms struct containing: * - loanERC20Denomination: The address of the ERC20 contract of the currency being used as principal/interest * for this loan. * - minLoanPrincipalAmount: The minumum sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * - maxLoanPrincipalAmount: The sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * - maximumRepaymentAmount: The maximum amount of money that the borrower would be required to retrieve their * collateral, measured in the smallest units of the ERC20 currency used for the loan. The borrower will always have * to pay this amount to retrieve their collateral, regardless of whether they repay early. * - nftCollateralContract: The address of the ERC721 contract of the NFT collateral. * - nftCollateralId: The ID within the NFTCollateralContract for the NFT being used as collateral for this * loan. The NFT is stored within this contract during the duration of the loan. * - revenueSharePartner: The address of the partner that will receive the revenue share. * - minLoanDuration: The minumum amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * - maxLoanDuration: The maximum amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * - maxInterestRateForDurationInBasisPoints: This is maximum the interest rate (measured in basis points, e.g. * hundreths of a percent) for the loan, that must be repaid pro-rata by the borrower at the conclusion of the loan * or risk seizure of their nft collateral. Note if the type of the loan is fixed then this value is not used and * is irrelevant so it should be set to 0. * - referralFeeInBasisPoints: The percent (measured in basis points) of the loan principal amount that will be * taken as a fee to pay to the referrer, 0 if the lender is not paying referral fee. * @param _signature - The offer struct containing: * - signer: The address of the signer. The borrower for `acceptOffer` the lender for `acceptListing`. * - nonce: The nonce referred here is not the same as an Ethereum account's nonce. * We are referring instead to a nonce that is used by the lender or the borrower when they are first signing * off-chain NFTfi orders. These nonce can be any uint256 value that the user has not previously used to sign an * off-chain order. Each nonce can be used at most once per user within NFTfi, regardless of whether they are the * lender or the borrower in that situation. This serves two purposes: * - First, it prevents replay attacks where an attacker would submit a user's off-chain order more than once. * - Second, it allows a user to cancel an off-chain order by calling * NFTfi.cancelLoanCommitmentBeforeLoanHasBegun(), which marks the nonce as used and prevents any future loan from * using the user's off-chain order that contains that nonce. * - expiry: Date when the signature expires * - signature: The ECDSA signature of the borrower, obtained off-chain ahead of time, signing the following * combination of parameters: * - listingTerms.loanERC20Denomination, * - listingTerms.minLoanPrincipalAmount, * - listingTerms.maxLoanPrincipalAmount, * - listingTerms.nftCollateralContract, * - listingTerms.nftCollateralId, * - listingTerms.revenueSharePartner, * - listingTerms.minLoanDuration, * - listingTerms.maxLoanDuration, * - listingTerms.maxInterestRateForDurationInBasisPoints, * - listingTerms.referralFeeInBasisPoints, * - signature.signer, * - signature.nonce, * - signature.expiry, * - address of this contract * - chainId */ function isValidBorrowerSignature(LoanData.ListingTerms memory _listingTerms, LoanData.Signature memory _signature) external view returns (bool) { return isValidBorrowerSignature(_listingTerms, _signature, address(this)); } /** * @dev This function overload the previous function to allow the caller to specify the address of the contract * */ function isValidBorrowerSignature( LoanData.ListingTerms memory _listingTerms, LoanData.Signature memory _signature, address _loanContract ) public view returns (bool) { require(block.timestamp <= _signature.expiry, "Borrower Signature has expired"); require(_loanContract != address(0), "Loan is zero address"); if (_signature.signer == address(0)) { return false; } else { bytes32 message = keccak256( abi.encodePacked( getEncodedListing(_listingTerms), getEncodedSignature(_signature), _loanContract, getChainID() ) ); return SignatureChecker.isValidSignatureNow( _signature.signer, ECDSA.toEthSignedMessageHash(message), _signature.signature ); } } /** * @notice This function is when the lender accepts a borrower's binding listing terms, to validate the lender's * signature that the borrower provided off-chain to verify that it did indeed made such listing. * * @param _listingTerms - The listing terms struct containing: * - loanERC20Denomination: The address of the ERC20 contract of the currency being used as principal/interest * for this loan. * - minLoanPrincipalAmount: The minumum sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * - maxLoanPrincipalAmount: The sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * - maximumRepaymentAmount: The maximum amount of money that the borrower would be required to retrieve their * collateral, measured in the smallest units of the ERC20 currency used for the loan. The borrower will always have * to pay this amount to retrieve their collateral, regardless of whether they repay early. * - nftCollateralContract: The address of the ERC721 contract of the NFT collateral. * - nftCollateralId: The ID within the NFTCollateralContract for the NFT being used as collateral for this * loan. The NFT is stored within this contract during the duration of the loan. * - revenueSharePartner: The address of the partner that will receive the revenue share. * - minLoanDuration: The minumum amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * - maxLoanDuration: The maximum amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * - maxInterestRateForDurationInBasisPoints: This is maximum the interest rate (measured in basis points, e.g. * hundreths of a percent) for the loan, that must be repaid pro-rata by the borrower at the conclusion of the loan * or risk seizure of their nft collateral. Note if the type of the loan is fixed then this value is not used and * is irrelevant so it should be set to 0. * - referralFeeInBasisPoints: The percent (measured in basis points) of the loan principal amount that will be * taken as a fee to pay to the referrer, 0 if the lender is not paying referral fee. * @param _bundleElements - the lists of erc721-20-1155 tokens that are to be bundled * @param _signature - The offer struct containing: * - signer: The address of the signer. The borrower for `acceptOffer` the lender for `acceptListing`. * - nonce: The nonce referred here is not the same as an Ethereum account's nonce. * We are referring instead to a nonce that is used by the lender or the borrower when they are first signing * off-chain NFTfi orders. These nonce can be any uint256 value that the user has not previously used to sign an * off-chain order. Each nonce can be used at most once per user within NFTfi, regardless of whether they are the * lender or the borrower in that situation. This serves two purposes: * - First, it prevents replay attacks where an attacker would submit a user's off-chain order more than once. * - Second, it allows a user to cancel an off-chain order by calling * NFTfi.cancelLoanCommitmentBeforeLoanHasBegun(), which marks the nonce as used and prevents any future loan from * using the user's off-chain order that contains that nonce. * - expiry: Date when the signature expires * - signature: The ECDSA signature of the borrower, obtained off-chain ahead of time, signing the following * combination of parameters: * - listingTerms.loanERC20Denomination, * - listingTerms.minLoanPrincipalAmount, * - listingTerms.maxLoanPrincipalAmount, * - listingTerms.nftCollateralContract, * - listingTerms.nftCollateralId, * - listingTerms.revenueSharePartner, * - listingTerms.minLoanDuration, * - listingTerms.maxLoanDuration, * - listingTerms.maxInterestRateForDurationInBasisPoints, * - listingTerms.referralFeeInBasisPoints, * - bundleElements * - signature.signer, * - signature.nonce, * - signature.expiry, * - address of this contract * - chainId */ function isValidBorrowerSignatureBundle( LoanData.ListingTerms memory _listingTerms, IBundleBuilder.BundleElements memory _bundleElements, LoanData.Signature memory _signature ) external view returns (bool) { return isValidBorrowerSignatureBundle(_listingTerms, _bundleElements, _signature, address(this)); } /** * @dev This function overload the previous function to allow the caller to specify the address of the contract * */ function isValidBorrowerSignatureBundle( LoanData.ListingTerms memory _listingTerms, IBundleBuilder.BundleElements memory _bundleElements, LoanData.Signature memory _signature, address _loanContract ) public view returns (bool) { require(block.timestamp <= _signature.expiry, "Borrower Signature has expired"); require(_loanContract != address(0), "Loan is zero address"); if (_signature.signer == address(0)) { return false; } else { bytes32 message = keccak256( abi.encodePacked( getEncodedListing(_listingTerms), abi.encode(_bundleElements), getEncodedSignature(_signature), _loanContract, getChainID() ) ); return SignatureChecker.isValidSignatureNow( _signature.signer, ECDSA.toEthSignedMessageHash(message), _signature.signature ); } } /** * @notice This function is when the borrower accepts a lender's offer, to validate the lender's signature that the * lender provided off-chain to verify that it did indeed made such offer. * * @param _offer - The offer struct containing: * - loanERC20Denomination: The address of the ERC20 contract of the currency being used as principal/interest * for this loan. * - loanPrincipalAmount: The original sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * - maximumRepaymentAmount: The maximum amount of money that the borrower would be required to retrieve their * collateral, measured in the smallest units of the ERC20 currency used for the loan. The borrower will always have * to pay this amount to retrieve their collateral, regardless of whether they repay early. * - nftCollateralContract: The address of the ERC721 contract of the NFT collateral. * - nftCollateralId: The ID within the NFTCollateralContract for the NFT being used as collateral for this * loan. The NFT is stored within this contract during the duration of the loan. * - referrer: The address of the referrer who found the lender matching the listing, Zero address to signal * this there is no referrer. * - loanDuration: The amount of time (measured in seconds) that can elapse before the lender can liquidate the * loan and seize the underlying collateral NFT. * - loanInterestRateForDurationInBasisPoints: This is the interest rate (measured in basis points, e.g. * hundreths of a percent) for the loan, that must be repaid pro-rata by the borrower at the conclusion of the loan * or risk seizure of their nft collateral. Note if the type of the loan is fixed then this value is not used and * is irrelevant so it should be set to 0. * - loanAdminFeeInBasisPoints: The percent (measured in basis points) of the interest earned that will be * taken as a fee by the contract admins when the loan is repaid. The fee is stored in the loan struct to prevent an * attack where the contract admins could adjust the fee right before a loan is repaid, and take all of the interest * earned. * @param _signature - The signature structure containing: * - signer: The address of the signer. The borrower for `acceptOffer` the lender for `acceptListing`. * - nonce: The nonce referred here is not the same as an Ethereum account's nonce. * We are referring instead to a nonce that is used by the lender or the borrower when they are first signing * off-chain NFTfi orders. These nonce can be any uint256 value that the user has not previously used to sign an * off-chain order. Each nonce can be used at most once per user within NFTfi, regardless of whether they are the * lender or the borrower in that situation. This serves two purposes: * - First, it prevents replay attacks where an attacker would submit a user's off-chain order more than once. * - Second, it allows a user to cancel an off-chain order by calling * NFTfi.cancelLoanCommitmentBeforeLoanHasBegun(), which marks the nonce as used and prevents any future loan from * using the user's off-chain order that contains that nonce. * - expiry: Date when the signature expires * - signature: The ECDSA signature of the lender, obtained off-chain ahead of time, signing the following * combination of parameters: * - offer.loanERC20Denomination * - offer.loanPrincipalAmount * - offer.maximumRepaymentAmount * - offer.nftCollateralContract * - offer.nftCollateralId * - offer.referrer * - offer.loanDuration * - offer.loanAdminFeeInBasisPoints * - signature.signer, * - signature.nonce, * - signature.expiry, * - address of this contract * - chainId */ function isValidLenderSignature(LoanData.Offer memory _offer, LoanData.Signature memory _signature) external view returns (bool) { return isValidLenderSignature(_offer, _signature, address(this)); } /** * @dev This function overload the previous function to allow the caller to specify the address of the contract * */ function isValidLenderSignature( LoanData.Offer memory _offer, LoanData.Signature memory _signature, address _loanContract ) public view returns (bool) { require(block.timestamp <= _signature.expiry, "Lender Signature has expired"); require(_loanContract != address(0), "Loan is zero address"); if (_signature.signer == address(0)) { return false; } else { bytes32 message = keccak256( abi.encodePacked(getEncodedOffer(_offer), getEncodedSignature(_signature), _loanContract, getChainID()) ); return SignatureChecker.isValidSignatureNow( _signature.signer, ECDSA.toEthSignedMessageHash(message), _signature.signature ); } } /** * @notice This function is when the borrower accepts a lender's offer, to validate the lender's signature that the * lender provided off-chain to verify that it did indeed made such offer. * * @param _offer - The offer struct containing: * - loanERC20Denomination: The address of the ERC20 contract of the currency being used as principal/interest * for this loan. * - loanPrincipalAmount: The original sum of money transferred from lender to borrower at the beginning of * the loan, measured in loanERC20Denomination's smallest units. * - maximumRepaymentAmount: The maximum amount of money that the borrower would be required to retrieve their * collateral, measured in the smallest units of the ERC20 currency used for the loan. The borrower will always have * to pay this amount to retrieve their collateral, regardless of whether they repay early. * - nftCollateralContract: The address of the ERC721 contract of the NFT collateral. * - nftCollateralId: The ID within the NFTCollateralContract for the NFT being used as collateral for this * loan. The NFT is stored within this contract during the duration of the loan. * - referrer: The address of the referrer who found the lender matching the listing, Zero address to signal * this there is no referrer. * - loanDuration: The amount of time (measured in seconds) that can elapse before the lender can liquidate the * loan and seize the underlying collateral NFT. * - loanInterestRateForDurationInBasisPoints: This is the interest rate (measured in basis points, e.g. * hundreths of a percent) for the loan, that must be repaid pro-rata by the borrower at the conclusion of the loan * or risk seizure of their nft collateral. Note if the type of the loan is fixed then this value is not used and * is irrelevant so it should be set to 0. * - loanAdminFeeInBasisPoints: The percent (measured in basis points) of the interest earned that will be * taken as a fee by the contract admins when the loan is repaid. The fee is stored in the loan struct to prevent an * attack where the contract admins could adjust the fee right before a loan is repaid, and take all of the interest * earned. * @param _bundleElements - the lists of erc721-20-1155 tokens that are to be bundled * @param _signature - The signature structure containing: * - signer: The address of the signer. The borrower for `acceptOffer` the lender for `acceptListing`. * - nonce: The nonce referred here is not the same as an Ethereum account's nonce. * We are referring instead to a nonce that is used by the lender or the borrower when they are first signing * off-chain NFTfi orders. These nonce can be any uint256 value that the user has not previously used to sign an * off-chain order. Each nonce can be used at most once per user within NFTfi, regardless of whether they are the * lender or the borrower in that situation. This serves two purposes: * - First, it prevents replay attacks where an attacker would submit a user's off-chain order more than once. * - Second, it allows a user to cancel an off-chain order by calling * NFTfi.cancelLoanCommitmentBeforeLoanHasBegun(), which marks the nonce as used and prevents any future loan from * using the user's off-chain order that contains that nonce. * - expiry: Date when the signature expires * - signature: The ECDSA signature of the lender, obtained off-chain ahead of time, signing the following * combination of parameters: * - offer.loanERC20Denomination * - offer.loanPrincipalAmount * - offer.maximumRepaymentAmount * - offer.nftCollateralContract * - offer.nftCollateralId * - offer.referrer * - offer.loanDuration * - offer.loanAdminFeeInBasisPoints * - bundleElements * - signature.signer, * - signature.nonce, * - signature.expiry, * - address of this contract * - chainId */ function isValidLenderSignatureBundle( LoanData.Offer memory _offer, IBundleBuilder.BundleElements memory _bundleElements, LoanData.Signature memory _signature ) external view returns (bool) { return isValidLenderSignatureBundle(_offer, _bundleElements, _signature, address(this)); } /** * @dev This function overload the previous function to allow the caller to specify the address of the contract * */ function isValidLenderSignatureBundle( LoanData.Offer memory _offer, IBundleBuilder.BundleElements memory _bundleElements, LoanData.Signature memory _signature, address _loanContract ) public view returns (bool) { require(block.timestamp <= _signature.expiry, "Lender Signature has expired"); require(_loanContract != address(0), "Loan is zero address"); if (_signature.signer == address(0)) { return false; } else { bytes32 message = keccak256( abi.encodePacked( getEncodedOffer(_offer), abi.encode(_bundleElements), getEncodedSignature(_signature), _loanContract, getChainID() ) ); return SignatureChecker.isValidSignatureNow( _signature.signer, ECDSA.toEthSignedMessageHash(message), _signature.signature ); } } /** * @notice This function is called in renegotiateLoan() to validate the lender's signature that the lender provided * off-chain to verify that they did indeed want to agree to this loan renegotiation according to these terms. * * @param _loanId - The unique identifier for the loan to be renegotiated * @param _newLoanDuration - The new amount of time (measured in seconds) that can elapse before the lender can * liquidate the loan and seize the underlying collateral NFT. * @param _newMaximumRepaymentAmount - The new maximum amount of money that the borrower would be required to * retrieve their collateral, measured in the smallest units of the ERC20 currency used for the loan. The * borrower will always have to pay this amount to retrieve their collateral, regardless of whether they repay * early. * @param _renegotiationFee Agreed upon fee in ether that borrower pays for the lender for the renegitiation * @param _signature - The signature structure containing: * - signer: The address of the signer. The borrower for `acceptOffer` the lender for `acceptListing`. * - nonce: The nonce referred here is not the same as an Ethereum account's nonce. * We are referring instead to a nonce that is used by the lender or the borrower when they are first signing * off-chain NFTfi orders. These nonce can be any uint256 value that the user has not previously used to sign an * off-chain order. Each nonce can be used at most once per user within NFTfi, regardless of whether they are the * lender or the borrower in that situation. This serves two purposes: * - First, it prevents replay attacks where an attacker would submit a user's off-chain order more than once. * - Second, it allows a user to cancel an off-chain order by calling NFTfi.cancelLoanCommitmentBeforeLoanHasBegun() * , which marks the nonce as used and prevents any future loan from using the user's off-chain order that contains * that nonce. * - expiry - The date when the renegotiation offer expires * - lenderSignature - The ECDSA signature of the lender, obtained off-chain ahead of time, signing the * following combination of parameters: * - _loanId * - _newLoanDuration * - _newMaximumRepaymentAmount * - _lender * - _lenderNonce * - _expiry * - address of this contract * - chainId */ function isValidLenderRenegotiationSignature( uint256 _loanId, uint32 _newLoanDuration, uint256 _newMaximumRepaymentAmount, uint256 _renegotiationFee, LoanData.Signature memory _signature ) external view returns (bool) { return isValidLenderRenegotiationSignature( _loanId, _newLoanDuration, _newMaximumRepaymentAmount, _renegotiationFee, _signature, address(this) ); } /** * @dev This function overload the previous function to allow the caller to specify the address of the contract * */ function isValidLenderRenegotiationSignature( uint256 _loanId, uint32 _newLoanDuration, uint256 _newMaximumRepaymentAmount, uint256 _renegotiationFee, LoanData.Signature memory _signature, address _loanContract ) public view returns (bool) { require(block.timestamp <= _signature.expiry, "Renegotiation Signature has expired"); require(_loanContract != address(0), "Loan is zero address"); if (_signature.signer == address(0)) { return false; } else { bytes32 message = keccak256( abi.encodePacked( _loanId, _newLoanDuration, _newMaximumRepaymentAmount, _renegotiationFee, getEncodedSignature(_signature), _loanContract, getChainID() ) ); return SignatureChecker.isValidSignatureNow( _signature.signer, ECDSA.toEthSignedMessageHash(message), _signature.signature ); } } /** * @dev We need this to avoid stack too deep errors. */ function getEncodedListing(LoanData.ListingTerms memory _listingTerms) internal pure returns (bytes memory) { return abi.encodePacked( _listingTerms.loanERC20Denomination, _listingTerms.minLoanPrincipalAmount, _listingTerms.maxLoanPrincipalAmount, _listingTerms.nftCollateralContract, _listingTerms.nftCollateralId, _listingTerms.revenueSharePartner, _listingTerms.minLoanDuration, _listingTerms.maxLoanDuration, _listingTerms.maxInterestRateForDurationInBasisPoints, _listingTerms.referralFeeInBasisPoints ); } /** * @dev We need this to avoid stack too deep errors. */ function getEncodedOffer(LoanData.Offer memory _offer) internal pure returns (bytes memory) { return abi.encodePacked( _offer.loanERC20Denomination, _offer.loanPrincipalAmount, _offer.maximumRepaymentAmount, _offer.nftCollateralContract, _offer.nftCollateralId, _offer.referrer, _offer.loanDuration, _offer.loanAdminFeeInBasisPoints ); } /** * @dev We need this to avoid stack too deep errors. */ function getEncodedSignature(LoanData.Signature memory _signature) internal pure returns (bytes memory) { return abi.encodePacked(_signature.signer, _signature.nonce, _signature.expiry); } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; /** * @title INftfiHub * @author NFTfi * @dev NftfiHub interface */ interface INftfiHub { function setContract(string calldata _contractKey, address _contractAddress) external; function getContract(bytes32 _contractKey) external view returns (address); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; /** * @title IDirectLoanCoordinator * @author NFTfi * @dev DirectLoanCoordinator interface. */ interface IDirectLoanCoordinator { enum StatusType { NOT_EXISTS, NEW, RESOLVED } /** * @notice This struct contains data related to a loan * * @param smartNftId - The id of both the promissory note and obligation receipt. * @param status - The status in which the loan currently is. * @param loanContract - Address of the LoanType contract that created the loan. */ struct Loan { address loanContract; uint64 smartNftId; StatusType status; } function registerLoan(address _lender, bytes32 _loanType) external returns (uint32); function mintObligationReceipt(uint32 _loanId, address _borrower) external; function resolveLoan(uint32 _loanId) external; function promissoryNoteToken() external view returns (address); function obligationReceiptToken() external view returns (address); function getLoanData(uint32 _loanId) external view returns (Loan memory); function isValidLoanId(uint32 _loanId, address _loanContract) external view returns (bool); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; /** * @title INftTypeRegistry * @author NFTfi * @dev Interface for NFT Wrappers. */ interface INftWrapper { function transferNFT( address from, address to, address nftContract, uint256 tokenId ) external returns (bool); function isOwner( address owner, address nftContract, uint256 tokenId ) external view returns (bool); function wrapAirdropReceiver( address _recipient, address _nftContract, uint256 _nftId, address _beneficiary ) external returns (bool); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; interface IPermittedPartners { function getPartnerPermit(address _partner) external view returns (uint16); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; interface IPermittedERC20s { function getERC20Permit(address _erc20) external view returns (bool); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; interface IPermittedNFTs { function setNFTPermit(address _nftContract, string memory _nftType) external; function getNFTPermit(address _nftContract) external view returns (bytes32); function getNFTWrapper(address _nftContract) external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; interface IAirdropFlashLoan { function pullAirdrop( address _nftCollateralContract, uint256 _nftCollateralId, address _nftWrapper, address _target, bytes calldata _data, address _nftAirdrop, uint256 _nftAirdropId, bool _is1155, uint256 _nftAirdropAmount, address _beneficiary ) external; }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; /** * @title IAirdropReceiver * @author NFTfi * @dev */ interface IAirdropReceiverFactory { function createAirdropReceiver(address _to) external returns (address, uint256); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. * * Modified version from openzeppelin/contracts/access/Ownable.sol that allows to * initialize the owner using a parameter in the constructor */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor(address _initialOwner) { _setOwner(_initialOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address _newOwner) public virtual onlyOwner { require(_newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(_newOwner); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Sets the owner. */ function _setOwner(address _newOwner) private { address oldOwner = _owner; _owner = _newOwner; emit OwnershipTransferred(oldOwner, _newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/utils/ERC721Holder.sol) pragma solidity ^0.8.0; import "../IERC721Receiver.sol"; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}. */ contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address, address, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC721Received.selector; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; interface IBundleBuilder { /** * @notice data of a erc721 bundle element * * @param tokenContract - address of the token contract * @param id - id of the token * @param safeTransferable - wether the implementing token contract has a safeTransfer function or not */ struct BundleElementERC721 { address tokenContract; uint256 id; bool safeTransferable; } /** * @notice data of a erc20 bundle element * * @param tokenContract - address of the token contract * @param amount - amount of the token */ struct BundleElementERC20 { address tokenContract; uint256 amount; } /** * @notice data of a erc20 bundle element * * @param tokenContract - address of the token contract * @param ids - list of ids of the tokens * @param amounts - list amounts of the tokens */ struct BundleElementERC1155 { address tokenContract; uint256[] ids; uint256[] amounts; } /** * @notice the lists of erc721-20-1155 tokens that are to be bundled * * @param erc721s list of erc721 tokens * @param erc20s list of erc20 tokens * @param erc1155s list of erc1155 tokens */ struct BundleElements { BundleElementERC721[] erc721s; BundleElementERC20[] erc20s; BundleElementERC1155[] erc1155s; } /** * @notice used by the loan contract to build a bundle from the BundleElements struct at the beginning of a loan, * returns the id of the created bundle * * @param _bundleElements - the lists of erc721-20-1155 tokens that are to be bundled * @param _sender sender of the tokens in the bundle - the borrower * @param _receiver receiver of the created bundle, normally the loan contract */ function buildBundle( BundleElements memory _bundleElements, address _sender, address _receiver ) external returns (uint256); /** * @notice Remove all the children from the bundle * @dev This method may run out of gas if the list of children is too big. In that case, children can be removed * individually. * @param _tokenId the id of the bundle * @param _receiver address of the receiver of the children */ function decomposeBundle(uint256 _tokenId, address _receiver) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/SignatureChecker.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; import "../Address.sol"; import "../../interfaces/IERC1271.sol"; /** * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like * Argent and Gnosis Safe. * * _Available since v4.1._ */ library SignatureChecker { /** * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`. * * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus * change through time. It could return true at block N and false at block N+1 (or the opposite). */ function isValidSignatureNow( address signer, bytes32 hash, bytes memory signature ) internal view returns (bool) { (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature); if (error == ECDSA.RecoverError.NoError && recovered == signer) { return true; } (bool success, bytes memory result) = signer.staticcall( abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature) ); return (success && result.length == 32 && abi.decode(result, (bytes4)) == IERC1271.isValidSignature.selector); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC1271 standard signature validation method for * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271]. * * _Available since v4.1._ */ interface IERC1271 { /** * @dev Should return whether the signature provided is valid for the provided data * @param hash Hash of the data to be signed * @param signature Signature byte array associated with _data */ function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
{ "metadata": { "bytecodeHash": "none", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 100 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": { "contracts/utils/NFTfiSigningUtils.sol": { "NFTfiSigningUtils": "0x60da568b88037d0735715819a37714d28bd56347" }, "contracts/loans/direct/loanTypes/LoanChecksAndCalculations.sol": { "LoanChecksAndCalculations": "0x6048c06d97ba978a203519a0d079aeaff2b4ade2" }, "contracts/loans/direct/loanTypes/LoanAirdropUtils.sol": { "LoanAirdropUtils": "0xa1d4fd6c256d6ef5661f7c01dd2b95e90c02d357" }, "contracts/utils/ContractKeys.sol": { "ContractKeys": "0xC0691b4bb84f05ec8E2255a50487C8d67BAc7539" } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_admin","type":"address"},{"internalType":"address","name":"_nftfiHub","type":"address"},{"internalType":"address[]","name":"_permittedErc20s","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"newAdminFee","type":"uint16"}],"name":"AdminFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"erc20Contract","type":"address"},{"indexed":false,"internalType":"bool","name":"isPermitted","type":"bool"}],"name":"ERC20Permit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"loanId","type":"uint32"},{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":true,"internalType":"address","name":"lender","type":"address"},{"indexed":false,"internalType":"uint256","name":"loanPrincipalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nftCollateralId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"loanMaturityDate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"loanLiquidationDate","type":"uint256"},{"indexed":false,"internalType":"address","name":"nftCollateralContract","type":"address"}],"name":"LoanLiquidated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"loanId","type":"uint32"},{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":true,"internalType":"address","name":"lender","type":"address"},{"indexed":false,"internalType":"uint32","name":"newLoanDuration","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"newMaximumRepaymentAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"renegotiationFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"renegotiationAdminFee","type":"uint256"}],"name":"LoanRenegotiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"loanId","type":"uint32"},{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":true,"internalType":"address","name":"lender","type":"address"},{"indexed":false,"internalType":"uint256","name":"loanPrincipalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nftCollateralId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountPaidToLender","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"adminFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"revenueShare","type":"uint256"},{"indexed":false,"internalType":"address","name":"revenueSharePartner","type":"address"},{"indexed":false,"internalType":"address","name":"nftCollateralContract","type":"address"},{"indexed":false,"internalType":"address","name":"loanERC20Denomination","type":"address"}],"name":"LoanRepaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"loanId","type":"uint32"},{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":true,"internalType":"address","name":"lender","type":"address"},{"components":[{"internalType":"uint256","name":"loanPrincipalAmount","type":"uint256"},{"internalType":"uint256","name":"maximumRepaymentAmount","type":"uint256"},{"internalType":"uint256","name":"nftCollateralId","type":"uint256"},{"internalType":"address","name":"loanERC20Denomination","type":"address"},{"internalType":"uint32","name":"loanDuration","type":"uint32"},{"internalType":"uint16","name":"loanInterestRateForDurationInBasisPoints","type":"uint16"},{"internalType":"uint16","name":"loanAdminFeeInBasisPoints","type":"uint16"},{"internalType":"address","name":"nftCollateralWrapper","type":"address"},{"internalType":"uint64","name":"loanStartTime","type":"uint64"},{"internalType":"address","name":"nftCollateralContract","type":"address"},{"internalType":"address","name":"borrower","type":"address"}],"indexed":false,"internalType":"struct LoanData.LoanTerms","name":"loanTerms","type":"tuple"},{"components":[{"internalType":"address","name":"revenueSharePartner","type":"address"},{"internalType":"uint16","name":"revenueShareInBasisPoints","type":"uint16"},{"internalType":"uint16","name":"referralFeeInBasisPoints","type":"uint16"}],"indexed":false,"internalType":"struct LoanData.LoanExtras","name":"loanExtras","type":"tuple"}],"name":"LoanStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaximumLoanDuration","type":"uint256"}],"name":"MaximumLoanDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"HUNDRED_PERCENT","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOAN_COORDINATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOAN_TYPE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"loanPrincipalAmount","type":"uint256"},{"internalType":"uint256","name":"maximumRepaymentAmount","type":"uint256"},{"internalType":"uint256","name":"nftCollateralId","type":"uint256"},{"internalType":"address","name":"nftCollateralContract","type":"address"},{"internalType":"uint32","name":"loanDuration","type":"uint32"},{"internalType":"uint16","name":"loanAdminFeeInBasisPoints","type":"uint16"},{"internalType":"address","name":"loanERC20Denomination","type":"address"},{"internalType":"address","name":"referrer","type":"address"}],"internalType":"struct LoanData.Offer","name":"_offer","type":"tuple"},{"components":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct LoanData.Signature","name":"_signature","type":"tuple"},{"components":[{"internalType":"address","name":"revenueSharePartner","type":"address"},{"internalType":"uint16","name":"referralFeeInBasisPoints","type":"uint16"}],"internalType":"struct LoanData.BorrowerSettings","name":"_borrowerSettings","type":"tuple"}],"name":"acceptOffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"adminFeeInBasisPoints","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"cancelLoanCommitmentBeforeLoanHasBegun","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"drainERC1155Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"drainERC20Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"drainERC721Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20","type":"address"}],"name":"getERC20Permit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_loanId","type":"uint32"}],"name":"getPayoffAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"getWhetherNonceHasBeenUsedForUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hub","outputs":[{"internalType":"contract INftfiHub","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_loanId","type":"uint32"}],"name":"liquidateOverdueLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"}],"name":"loanIdToLoan","outputs":[{"internalType":"uint256","name":"loanPrincipalAmount","type":"uint256"},{"internalType":"uint256","name":"maximumRepaymentAmount","type":"uint256"},{"internalType":"uint256","name":"nftCollateralId","type":"uint256"},{"internalType":"address","name":"loanERC20Denomination","type":"address"},{"internalType":"uint32","name":"loanDuration","type":"uint32"},{"internalType":"uint16","name":"loanInterestRateForDurationInBasisPoints","type":"uint16"},{"internalType":"uint16","name":"loanAdminFeeInBasisPoints","type":"uint16"},{"internalType":"address","name":"nftCollateralWrapper","type":"address"},{"internalType":"uint64","name":"loanStartTime","type":"uint64"},{"internalType":"address","name":"nftCollateralContract","type":"address"},{"internalType":"address","name":"borrower","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"}],"name":"loanIdToLoanExtras","outputs":[{"internalType":"address","name":"revenueSharePartner","type":"address"},{"internalType":"uint16","name":"revenueShareInBasisPoints","type":"uint16"},{"internalType":"uint16","name":"referralFeeInBasisPoints","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"}],"name":"loanRepaidOrLiquidated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumLoanDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_loanId","type":"uint32"}],"name":"mintObligationReceipt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_loanId","type":"uint32"}],"name":"payBackLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_loanId","type":"uint32"},{"internalType":"address","name":"_target","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"address","name":"_nftAirdrop","type":"address"},{"internalType":"uint256","name":"_nftAirdropId","type":"uint256"},{"internalType":"bool","name":"_is1155","type":"bool"},{"internalType":"uint256","name":"_nftAirdropAmount","type":"uint256"}],"name":"pullAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_loanId","type":"uint32"},{"internalType":"uint32","name":"_newLoanDuration","type":"uint32"},{"internalType":"uint256","name":"_newMaximumRepaymentAmount","type":"uint256"},{"internalType":"uint256","name":"_renegotiationFee","type":"uint256"},{"internalType":"uint256","name":"_lenderNonce","type":"uint256"},{"internalType":"uint256","name":"_expiry","type":"uint256"},{"internalType":"bytes","name":"_lenderSignature","type":"bytes"}],"name":"renegotiateLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20","type":"address"},{"internalType":"bool","name":"_permit","type":"bool"}],"name":"setERC20Permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_erc20s","type":"address[]"},{"internalType":"bool[]","name":"_permits","type":"bool[]"}],"name":"setERC20Permits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newAdminFeeInBasisPoints","type":"uint16"}],"name":"updateAdminFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaximumLoanDuration","type":"uint256"}],"name":"updateMaximumLoanDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_loanId","type":"uint32"}],"name":"wrapCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526301e91c806002556003805461ffff19166101f41790553480156200002857600080fd5b5060405162005053380380620050538339810160408190526200004b91620002d7565b828282828273c0691b4bb84f05ec8e2255a50487c8d67bac753963f99a8ffb6040518163ffffffff1660e01b8152600401620000b89060208082526017908201527f4449524543545f4c4f414e5f434f4f5244494e41544f52000000000000000000604082015260600190565b60206040518083038186803b158015620000d157600080fd5b505af4158015620000e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200010c9190620003d3565b8383806200011a81620001b0565b50506000805460ff60a01b19168155600180556001600160601b0319606085901b1660a05260808390525b81518110156200019f576200018a8282815181106200017457634e487b7160e01b600052603260045260246000fd5b602002602001015160016200020060201b60201c565b806200019681620003ec565b91505062000145565b50505050505050505050506200042a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200025b5760405162461bcd60e51b815260206004820152601560248201527f6572633230206973207a65726f20616464726573730000000000000000000000604482015260640160405180910390fd5b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527ff100355be652ecc881568750e6a98c0713e4316f75d5314ebc9039e0acb52f24910160405180910390a25050565b80516001600160a01b0381168114620002d257600080fd5b919050565b600080600060608486031215620002ec578283fd5b620002f784620002ba565b9250602062000308818601620002ba565b60408601519093506001600160401b038082111562000325578384fd5b818701915087601f83011262000339578384fd5b8151818111156200034e576200034e62000414565b8060051b604051601f19603f8301168101818110858211171562000376576200037662000414565b604052828152858101935084860182860187018c101562000395578788fd5b8795505b83861015620003c257620003ad81620002ba565b85526001959095019493860193860162000399565b508096505050505050509250925092565b600060208284031215620003e5578081fd5b5051919050565b60006000198214156200040d57634e487b7160e01b81526011600452602481fd5b5060010190565b634e487b7160e01b600052604160045260246000fd5b60805160a05160601c614b90620004c3600039600081816104760152818161092e01528181610a9601528181610c20015281816110050152818161110f0152818161169401528181611a2101528181611c6e01528181612326015281816127b2015281816129ff01528181612ce3015261360c015260008181610545015281816119f801528181611c4501526135e30152614b906000f3fe608060405234801561001057600080fd5b50600436106101dc5760003560e01c8063616693d811610105578063a4441a6f1161009d578063a4441a6f146105dc578063ab3b1280146105ea578063ac4e35ea14610613578063b18e777214610626578063b31ec1d414610639578063bc197c811461064c578063bce42e421461065f578063f23a6e6114610672578063f2fde38b1461069257600080fd5b8063616693d8146105015780636ed93dd01461052457806377cfa991146105405780637836baf11461056757806379b640401461057a5780638456cb591461058d578063872873be146105955780638da5cb5b146105c15780639658e405146105c957600080fd5b8063318dacd311610178578063318dacd314610425578063328404b014610438578063365a86fc146104715780633f4ba83a146104a557806347948d92146104ad5780635163a1c3146104c057806356efe98c146104d357806359a72734146104e65780635c975abb146104f957600080fd5b806301ffc9a7146101e157806305b406cf146102095780630717f3aa1461021e5780630ff81c3f14610241578063150b7a02146102ab578063192b355d146102e25780631c6caf41146102f9578063227cda181461030c5780632b21802214610412575b600080fd5b6101f46101ef36600461415b565b6106a5565b60405190151581526020015b60405180910390f35b61021c610217366004613db5565b6106f7565b005b6101f461022c366004614344565b60066020526000908152604090205460ff1681565b61028161024f366004614344565b6005602052600090815260409020546001600160a01b0381169061ffff600160a01b8204811691600160b01b90041683565b604080516001600160a01b03909416845261ffff9283166020850152911690820152606001610200565b6102c96102b9366004613ed5565b630a85bd0160e11b949350505050565b6040516001600160e01b03199091168152602001610200565b6102eb60025481565b604051908152602001610200565b61021c6103073660046142dc565b61080e565b61039e61031a366004614344565b600460208190526000918252604090912080546001820154600283015460038401549484015460058501546006909501549395929491936001600160a01b0380851694600160a01b80820463ffffffff1695600160c01b830461ffff90811696600160d01b909404169484841694929093046001600160401b03169290821691168b565b604080519b8c5260208c019a909a52988a01979097526001600160a01b0395861660608a015263ffffffff909416608089015261ffff92831660a0890152911660c0870152821660e08601526001600160401b03166101008501529081166101208401521661014082015261016001610200565b61021c610420366004614344565b6108d5565b61021c61043336600461437c565b610a3d565b6101f4610446366004613fe4565b6001600160a01b03919091166000908152600860209081526040808320938352929052205460ff1690565b6104987f000000000000000000000000000000000000000000000000000000000000000081565b60405161020091906145f7565b61021c610c85565b61021c6104bb366004614314565b610cbe565b61021c6104ce36600461403c565b610d6f565b61021c6104e1366004614201565b610f09565b61021c6104f4366004614344565b610fac565b6101f46111ef565b794449524543545f4c4f414e5f46495845445f52454445504c4f5960301b6102eb565b61052d61271081565b60405161ffff9091168152602001610200565b6102eb7f000000000000000000000000000000000000000000000000000000000000000081565b61021c610575366004613fb7565b6111ff565b61021c61058836600461407d565b61123c565b61021c611353565b6101f46105a3366004613d7d565b6001600160a01b031660009081526009602052604090205460ff1690565b61049861138a565b61021c6105d7366004614314565b611399565b60035461052d9061ffff1681565b6102eb6105f8366004614344565b63ffffffff1660009081526004602052604090206001015490565b61021c61062136600461403c565b61141a565b61021c61063436600461441b565b6115d2565b61021c610647366004614344565b61163b565b6102c961065a366004613e1b565b611909565b61021c61066d366004614344565b611954565b6102c9610680366004613f3e565b63f23a6e6160e01b9695505050505050565b61021c6106a0366004613d7d565b611b35565b60006001600160e01b03198216630271189760e51b14806106d657506001600160e01b03198216630a85bd0160e11b145b806106f157506001600160e01b031982166301ffc9a760e01b145b92915050565b3361070061138a565b6001600160a01b03161461072f5760405162461bcd60e51b8152600401610726906146bc565b60405180910390fd5b6040516370a0823160e01b815282906000906001600160a01b038316906370a08231906107609030906004016145f7565b60206040518083038186803b15801561077857600080fd5b505afa15801561078c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b0919061432c565b9050600081116107f45760405162461bcd60e51b815260206004820152600f60248201526e1b9bc81d1bdad95b9cc81bdddb9959608a1b6044820152606401610726565b6108086001600160a01b0383168483611bd5565b50505050565b3361081761138a565b6001600160a01b03161461083d5760405162461bcd60e51b8152600401610726906146bc565b61271061ffff8216111561088a5760405162461bcd60e51b81526020600482015260146024820152730626173697320706f696e7473203e2031303030360641b6044820152606401610726565b6003805461ffff191661ffff83169081179091556040519081527f03017365bbe16943b524030df07e7689168ab63e854d27417498e6f9dc584dab906020015b60405180910390a150565b600260015414156108f85760405162461bcd60e51b81526004016107269061471e565b600260015560405163364d0abb60e11b8152736048c06d97ba978a203519a0d079aeaff2b4ade290636c9a1576906109569084907f000000000000000000000000000000000000000000000000000000000000000090600401614935565b60006040518083038186803b15801561096e57600080fd5b505af4158015610982573d6000803e3d6000fd5b5050505060008060008061099585611c2b565b93509350935093506109a98585858561203f565b6109b585858484612255565b5050505063ffffffff1660009081526004602081815260408084208481556001808201869055600282018690556003820180546001600160e01b03199081169091559482018054909516909455600580820180546001600160a01b03199081169091556006909201805490921690915590915290912080546001600160c01b03191690558055565b60026001541415610a605760405162461bcd60e51b81526004016107269061471e565b6002600155604051635bfd0fb160e11b8152736048c06d97ba978a203519a0d079aeaff2b4ade29063b7fa1f6290610abe908b907f000000000000000000000000000000000000000000000000000000000000000090600401614935565b60006040518083038186803b158015610ad657600080fd5b505af4158015610aea573d6000803e3d6000fd5b5050505063ffffffff881660009081526006602052604090205460ff1615610b245760405162461bcd60e51b81526004016107269061465b565b63ffffffff8881166000908152600460208181526040928390208351610160810185528154815260018201549281019290925260028101548285015260038101546001600160a01b038082166060850152600160a01b8083049097166080850152600160c01b820461ffff90811660a0860152600160d01b90920490911660c08401528184015480821660e0850152959095046001600160401b03166101008301526005810154851661012083015260060154909316610140840152905163491bd44160e11b815273a1d4fd6c256d6ef5661f7c01dd2b95e90c02d35791639237a88291610c46918d9186918e918e918e918e918e918e918e917f00000000000000000000000000000000000000000000000000000000000000009101614954565b60006040518083038186803b158015610c5e57600080fd5b505af4158015610c72573d6000803e3d6000fd5b5050600180555050505050505050505050565b33610c8e61138a565b6001600160a01b031614610cb45760405162461bcd60e51b8152600401610726906146bc565b610cbc61226b565b565b33610cc761138a565b6001600160a01b031614610ced5760405162461bcd60e51b8152600401610726906146bc565b63ffffffff811115610d3a5760405162461bcd60e51b81526020600482015260166024820152754c6f616e206475726174696f6e206f766572666c6f7760501b6044820152606401610726565b60028190556040518181527f64f65a4a1a932867ad599da36210fc47c698b3abb2413cfdfd36bf59697a69cb906020016108ca565b33610d7861138a565b6001600160a01b031614610d9e5760405162461bcd60e51b8152600401610726906146bc565b6001600160a01b0383166000908152600760209081526040808320858452909152902054839015610de15760405162461bcd60e51b8152600401610726906146f1565b6040516331a9108f60e11b81526004810184905230906001600160a01b03831690636352211e9060240160206040518083038186803b158015610e2357600080fd5b505afa158015610e37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5b9190613d99565b6001600160a01b031614610ea15760405162461bcd60e51b815260206004820152600d60248201526c1b999d081b9bdd081bdddb9959609a1b6044820152606401610726565b604051632142170760e11b81526001600160a01b038216906342842e0e90610ed19030908690889060040161460b565b600060405180830381600087803b158015610eeb57600080fd5b505af1158015610eff573d6000803e3d6000fd5b5050505050505050565b610f116111ef565b15610f2e5760405162461bcd60e51b815260040161072690614692565b60026001541415610f515760405162461bcd60e51b81526004016107269061471e565b60026001556060830151600090610f67906122fd565b9050610f738482612423565b610f7c84612648565b610fa2610f8985836126b3565b610f9b84600001518560200151612767565b8686612865565b5050600180555050565b60026001541415610fcf5760405162461bcd60e51b81526004016107269061471e565b6002600155604051635bfd0fb160e11b8152736048c06d97ba978a203519a0d079aeaff2b4ade29063b7fa1f629061102d9084907f000000000000000000000000000000000000000000000000000000000000000090600401614935565b60006040518083038186803b15801561104557600080fd5b505af4158015611059573d6000803e3d6000fd5b5050505063ffffffff811660009081526006602052604090205460ff16156110935760405162461bcd60e51b81526004016107269061465b565b63ffffffff8116600090815260046020908152604080832060058101546001600160a01b0316845260078352818420600282015485529092528220805491926001926110e0908490614ab4565b9091555050604051631276b77d60e11b815263ffffffff83166004820152602481018290526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166044820152600090819073a1d4fd6c256d6ef5661f7c01dd2b95e90c02d357906324ed6efa90606401604080518083038186803b15801561116f57600080fd5b505af4158015611183573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a7919061400f565b6001600160a01b0382166000908152600760209081526040808320848452909152812080549395509193506001926111e0908490614a9c565b90915550506001805550505050565b600054600160a01b900460ff1690565b3361120861138a565b6001600160a01b03161461122e5760405162461bcd60e51b8152600401610726906146bc565b6112388282612b81565b5050565b3361124561138a565b6001600160a01b03161461126b5760405162461bcd60e51b8152600401610726906146bc565b80518251146112d85760405162461bcd60e51b815260206004820152603360248201527f73657445524332305065726d6974732066756e6374696f6e20696e666f726d616044820152720e8d2dedc40c2e4d2e8f240dad2e6dac2e8c6d606b1b6064820152608401610726565b60005b825181101561134e5761133c83828151811061130757634e487b7160e01b600052603260045260246000fd5b602002602001015183838151811061132f57634e487b7160e01b600052603260045260246000fd5b6020026020010151612b81565b8061134681614af7565b9150506112db565b505050565b3361135c61138a565b6001600160a01b0316146113825760405162461bcd60e51b8152600401610726906146bc565b610cbc612c2e565b6000546001600160a01b031690565b33600090815260086020908152604080832084845290915290205460ff16156113f45760405162461bcd60e51b815260206004820152600d60248201526c496e76616c6964206e6f6e636560981b6044820152606401610726565b33600090815260086020908152604080832093835292905220805460ff19166001179055565b3361142361138a565b6001600160a01b0316146114495760405162461bcd60e51b8152600401610726906146bc565b604051627eeac760e11b815283906000906001600160a01b0383169062fdd58e9061147a903090889060040161462f565b60206040518083038186803b15801561149257600080fd5b505afa1580156114a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ca919061432c565b6001600160a01b03861660009081526007602090815260408083208884529091529020549091501561150e5760405162461bcd60e51b8152600401610726906146f1565b6000811161154e5760405162461bcd60e51b815260206004820152600d60248201526c1b9bc81b999d1cc81bdddb9959609a1b6044820152606401610726565b604051637921219560e11b81523060048201526001600160a01b038481166024830152604482018690526064820183905260a06084830152600060a483015283169063f242432a9060c401600060405180830381600087803b1580156115b357600080fd5b505af11580156115c7573d6000803e3d6000fd5b505050505050505050565b6115da6111ef565b156115f75760405162461bcd60e51b815260040161072690614692565b6002600154141561161a5760405162461bcd60e51b81526004016107269061471e565b600260015561162e87878787878787612c8e565b5050600180555050505050565b6002600154141561165e5760405162461bcd60e51b81526004016107269061471e565b6002600155604051635bfd0fb160e11b8152736048c06d97ba978a203519a0d079aeaff2b4ade29063b7fa1f62906116bc9084907f000000000000000000000000000000000000000000000000000000000000000090600401614935565b60006040518083038186803b1580156116d457600080fd5b505af41580156116e8573d6000803e3d6000fd5b5050505063ffffffff811660009081526006602052604090205460ff16156117225760405162461bcd60e51b81526004016107269061465b565b60008060008061173185611c2b565b93509350935093506000826080015163ffffffff168361010001516001600160401b031661175f9190614a9c565b90508042116117aa5760405162461bcd60e51b8152602060048201526017602482015276131bd85b881a5cc81b9bdd081bdd995c991d59481e595d604a1b6044820152606401610726565b336001600160a01b038516146117fe5760405162461bcd60e51b81526020600482015260196024820152784f6e6c79206c656e6465722063616e206c697175696461746560381b6044820152606401610726565b61180a86858585612255565b8251604080850151610120860151825193845260208401919091529082018390524260608301526001600160a01b039081166080830152808616919087169063ffffffff8916907f4fac0ff43299a330bce57d0579985305af580acf256a6d7977083ede81be13269060a00160405180910390a450505063ffffffff90921660009081526004602081815260408084208481556001808201869055600282018690556003820180546001600160e01b03199081169091559482018054909516909455600580820180546001600160a01b03199081169091556006909201805490921690915590915290912080546001600160c01b031916905580555050565b60405162461bcd60e51b815260206004820152601b60248201527f45524331313535206261746368206e6f7420737570706f7274656400000000006044820152600090606401610726565b600260015414156119775760405162461bcd60e51b81526004016107269061471e565b600260015563ffffffff81166000908152600460205260409020600601546001600160a01b03163381146119e95760405162461bcd60e51b815260206004820152601960248201527839b2b73232b9103430b9903a37903132903137b93937bbb2b960391b6044820152606401610726565b604051631c2d8fb360e31b81527f000000000000000000000000000000000000000000000000000000000000000060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e16c7d989060240160206040518083038186803b158015611a6b57600080fd5b505afa158015611a7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa39190613d99565b604051631b982cf160e01b81529091506001600160a01b03821690631b982cf190611ad49086908690600401614935565b600060405180830381600087803b158015611aee57600080fd5b505af1158015611b02573d6000803e3d6000fd5b50505063ffffffff909316600090815260046020526040902060060180546001600160a01b031916905550506001805550565b33611b3e61138a565b6001600160a01b031614611b645760405162461bcd60e51b8152600401610726906146bc565b6001600160a01b038116611bc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610726565b611bd28161300d565b50565b61134e8363a9059cbb60e01b8484604051602401611bf492919061462f565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261305d565b600080611c36613aa3565b604051631c2d8fb360e31b81527f000000000000000000000000000000000000000000000000000000000000000060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e16c7d989060240160206040518083038186803b158015611cb857600080fd5b505afa158015611ccc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf09190613d99565b60405163e6c5a54160e01b815263ffffffff871660048201529091506000906001600160a01b0383169063e6c5a5419060240160606040518083038186803b158015611d3b57600080fd5b505afa158015611d4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d739190614183565b60208181015163ffffffff898116600090815260048085526040918290208251610160810184528154815260018201549681019690965260028101549286019290925260038201546001600160a01b038082166060880152600160a01b8083049095166080880152600160c01b820461ffff90811660a0890152600160d01b90920490911660c08701529082015480821660e08701526001600160401b03939004831661010086015260058201548116610120860152600690910154166101408401819052929650929350919091169015611e55578361014001519550611f46565b826001600160a01b0316638208e76c6040518163ffffffff1660e01b815260040160206040518083038186803b158015611e8e57600080fd5b505afa158015611ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec69190613d99565b6001600160a01b0316636352211e826040518263ffffffff1660e01b8152600401611ef391815260200190565b60206040518083038186803b158015611f0b57600080fd5b505afa158015611f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f439190613d99565b95505b826001600160a01b0316634fbe68a06040518163ffffffff1660e01b815260040160206040518083038186803b158015611f7f57600080fd5b505afa158015611f93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb79190613d99565b6001600160a01b0316636352211e826040518263ffffffff1660e01b8152600401611fe491815260200190565b60206040518083038186803b158015611ffc57600080fd5b505afa158015612010573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120349190613d99565b945050509193509193565b63ffffffff84166000908152600560209081526040808320815160608101835290546001600160a01b038116825261ffff600160a01b8204811694830194909452600160b01b90049092169082015290806120998461312f565b606086015191935091506120b8906001600160a01b03163387846131f8565b6020830151604051637f5e0ed360e01b81526004810184905261ffff9091166024820152600090736048c06d97ba978a203519a0d079aeaff2b4ade290637f5e0ed39060440160206040518083038186803b15801561211657600080fd5b505af415801561212a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214e919061432c565b9050600081118015612169575083516001600160a01b031615155b15612198576121788184614ab4565b84516060870151919450612198916001600160a01b0316903390846131f8565b6121ba336121a461138a565b60608801516001600160a01b03169190866131f8565b845160408087015186516101208901516060808b0151855196875260208701949094528585018890528501889052608085018690526001600160a01b0391821660a0860152811660c085015290811660e0840152905188821692918a169163ffffffff8c16917f3687d64f40b11dd1c102a76882ac1735891c546a96ae27935eb5c7865b9d86fa918190036101000190a45050505050505050565b612260848383613219565b6108088230856132dc565b6122736111ef565b6122b65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610726565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516122f391906145f7565b60405180910390a1565b604051631c2d8fb360e31b81526d5045524d49545445445f4e46545360901b60048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e16c7d989060240160206040518083038186803b15801561237057600080fd5b505afa158015612384573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123a89190613d99565b6001600160a01b031663b8c8aff8836040518263ffffffff1660e01b81526004016123d391906145f7565b60206040518083038186803b1580156123eb57600080fd5b505afa1580156123ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f19190613d99565b60c08201516001600160a01b031660009081526009602052604090205460ff1661249e5760405162461bcd60e51b815260206004820152602660248201527f43757272656e63792064656e6f6d696e6174696f6e206973206e6f74207065726044820152651b5a5d1d195960d21b6064820152608401610726565b6001600160a01b0381166125055760405162461bcd60e51b815260206004820152602860248201527f4e465420636f6c6c61746572616c20636f6e7472616374206973206e6f742070604482015267195c9b5a5d1d195960c21b6064820152608401610726565b600254826080015163ffffffff1611156125755760405162461bcd60e51b815260206004820152602b60248201527f4c6f616e206475726174696f6e2065786365656473206d6178696d756d206c6f60448201526a30b710323ab930ba34b7b760a91b6064820152608401610726565b608082015163ffffffff166125cc5760405162461bcd60e51b815260206004820152601c60248201527f4c6f616e206475726174696f6e2063616e6e6f74206265207a65726f000000006044820152606401610726565b60035460a083015161ffff9081169116146112385760405162461bcd60e51b815260206004820152603660248201527f5468652061646d696e2066656520686173206368616e6765642073696e6365206044820152753a3434b99037b93232b9103bb0b99039b4b3b732b21760511b6064820152608401610726565b805160208201511015611bd25760405162461bcd60e51b815260206004820152602d60248201527f4e6567617469766520696e7465726573742072617465206c6f616e732061726560448201526c103737ba1030b63637bbb2b21760991b6064820152608401610726565b6126bb613aa3565b6040518061016001604052808460000151815260200184602001518152602001846040015181526020018460c001516001600160a01b03168152602001846080015163ffffffff168152602001600061ffff1681526020018460a0015161ffff168152602001836001600160a01b03168152602001426001600160401b0316815260200184606001516001600160a01b03168152602001336001600160a01b0316815250905092915050565b6040805160608101825260008082526020820181905291810191909152604080516060810182526001600160a01b0380861680835292516347e332df60e11b815260048101939093527f0000000000000000000000000000000000000000000000000000000000000000166024830152906020820190736048c06d97ba978a203519a0d079aeaff2b4ade290638fc665be9060440160206040518083038186803b15801561281457600080fd5b505af4158015612828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061284c91906142f8565b61ffff1681526020018361ffff16815250905092915050565b6040808201516001600160a01b0316600090815260086020908152828220845183529052205460ff16156128d25760405162461bcd60e51b815260206004820152601460248201527313195b99195c881b9bdb98d9481a5b9d985b1a5960621b6044820152606401610726565b6040808201516001600160a01b0316600090815260086020908152828220845183529052819020805460ff191660011790555163eb2ac63f60e01b81527360da568b88037d0735715819a37714d28bd563479063eb2ac63f9061293b90859085906004016148a6565b60206040518083038186803b15801561295357600080fd5b505af4158015612967573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298b919061413f565b6129d75760405162461bcd60e51b815260206004820152601b60248201527f4c656e646572207369676e617475726520697320696e76616c696400000000006044820152606401610726565b604051631c2d8fb360e31b81526c27232a2324afa12aa7222622a960991b60048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e16c7d989060240160206040518083038186803b158015612a4957600080fd5b505afa158015612a5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a819190613d99565b9050806001600160a01b03168561012001516001600160a01b03161415612aea5760405162461bcd60e51b815260206004820152601b60248201527f436f6c6c61746572616c2063616e6e6f742062652062756e646c6500000000006044820152606401610726565b6000612b1f794449524543545f4c4f414e5f46495845445f52454445504c4f5960301b87873387604001518960e0015161337f565b905082604001516001600160a01b0316336001600160a01b03168263ffffffff167f42cc7f53ef7b494c5dd6f0095175f7d07b5d3d7b2a03f34389fea445ba4a3a8b8989604051612b71929190614755565b60405180910390a4505050505050565b6001600160a01b038216612bcf5760405162461bcd60e51b81526020600482015260156024820152746572633230206973207a65726f206164647265737360581b6044820152606401610726565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527ff100355be652ecc881568750e6a98c0713e4316f75d5314ebc9039e0acb52f24910160405180910390a25050565b612c366111ef565b15612c535760405162461bcd60e51b815260040161072690614692565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122e63390565b63ffffffff87166000908152600460208190526040808320905163b5ec526360e01b81529092918291736048c06d97ba978a203519a0d079aeaff2b4ade29163b5ec526391612d099187918f918f918f918e917f0000000000000000000000000000000000000000000000000000000000000000910161479b565b604080518083038186803b158015612d2057600080fd5b505af4158015612d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d589190613ded565b6001600160a01b03811660008181526008602090815260408083208c8452825291829020805460ff1916600117905581516080810183528b81529081018a905280820192909252606082018890525163d06ff74160e01b81529294509092507360da568b88037d0735715819a37714d28bd563479163d06ff74191612de7918e918e918e918e916004016149eb565b60206040518083038186803b158015612dff57600080fd5b505af4158015612e13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e37919061413f565b612e8e5760405162461bcd60e51b815260206004820152602260248201527f52656e65676f74696174696f6e207369676e617475726520697320696e76616c6044820152611a5960f21b6064820152608401610726565b60008715612f78576003840154604051632ad659af60e01b8152600481018a9052600160d01b90910461ffff166024820152736048c06d97ba978a203519a0d079aeaff2b4ade290632ad659af9060440160206040518083038186803b158015612ef757600080fd5b505af4158015612f0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f2f919061432c565b9050612f568383612f40848c614ab4565b60038801546001600160a01b03169291906131f8565b612f7883612f6261138a565b60038701546001600160a01b03169190846131f8565b60038401805463ffffffff60a01b1916600160a01b63ffffffff8d811691820292909217909255600186018b905560408051928352602083018c905282018a9052606082018390526001600160a01b0384811692908616918e16907f37357bed780fda5aed28c32fe9cd762cb2f2f8a70c0d9b342aba59c945943ca09060800160405180910390a45050505050505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006130b2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166133a59092919063ffffffff16565b80519091501561134e57808060200190518101906130d0919061413f565b61134e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610726565b6000806000836000015184602001516131489190614ab4565b60c0850151604051632ad659af60e01b81526004810183905261ffff9091166024820152909150736048c06d97ba978a203519a0d079aeaff2b4ade290632ad659af9060440160206040518083038186803b1580156131a657600080fd5b505af41580156131ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131de919061432c565b92508284602001516131f09190614ab4565b915050915091565b610808846323b872dd60e01b858585604051602401611bf49392919061460b565b63ffffffff83166000908152600660209081526040808320805460ff191660019081179091556101208601516001600160a01b03168452600783528184208683015185529092528220805491929091613273908490614ab4565b909155505060405163490b1f5360e11b815263ffffffff841660048201526001600160a01b038216906392163ea690602401600060405180830381600087803b1580156132bf57600080fd5b505af11580156132d3573d6000803e3d6000fd5b50505050505050565b60e083015161012084015160408086015181516001600160a01b038781166024830152868116604483015290931660648401526084808401919091528151808403909101815260a49092018152602080830180516001600160e01b031663b030667160e01b17905281518083019092528082527f4e4654206e6f74207375636365737366756c6c79207472616e73666572726564908201526108089291906133be565b600061338c8685306132dc565b61339a87878787878761349b565b979650505050505050565b60606133b48484600085613948565b90505b9392505050565b60606001600160a01b0384163b6134265760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610726565b600080856001600160a01b03168560405161344191906145db565b600060405180830381855af49150503d806000811461347c576040519150601f19603f3d011682016040523d82523d6000602084013e613481565b606091505b5091509150613491828286613a6a565b9695505050505050565b6101208501516001600160a01b03166000908152600760209081526040808320818901518452909152812080546001919083906134d9908490614a9c565b909155505085516040868101519051637b2392f160e01b8152600481019290925261ffff1660248201526001600160a01b0383166044820152600090736048c06d97ba978a203519a0d079aeaff2b4ade290637b2392f19060640160206040518083038186803b15801561354c57600080fd5b505af4158015613560573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613584919061432c565b905060008188600001516135989190614ab4565b905081156135ba5760608801516135ba906001600160a01b03168686856131f8565b60608801516135d4906001600160a01b03168688846131f8565b604051631c2d8fb360e31b81527f000000000000000000000000000000000000000000000000000000000000000060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e16c7d989060240160206040518083038186803b15801561365657600080fd5b505afa15801561366a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061368e9190613d99565b60405163d1f7659560e01b81529091506001600160a01b0382169063d1f76595906136bf9089908e9060040161462f565b602060405180830381600087803b1580156136d957600080fd5b505af11580156136ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137119190614360565b935088600460008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060808201518160030160146101000a81548163ffffffff021916908363ffffffff16021790555060a08201518160030160186101000a81548161ffff021916908361ffff16021790555060c082015181600301601a6101000a81548161ffff021916908361ffff16021790555060e08201518160040160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506101008201518160040160146101000a8154816001600160401b0302191690836001600160401b031602179055506101208201518160050160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506101408201518160060160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555090505087600560008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548161ffff021916908361ffff16021790555060408201518160000160166101000a81548161ffff021916908361ffff1602179055509050505050509695505050505050565b6060824710156139a95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610726565b6001600160a01b0385163b613a005760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610726565b600080866001600160a01b03168587604051613a1c91906145db565b60006040518083038185875af1925050503d8060008114613a59576040519150601f19603f3d011682016040523d82523d6000602084013e613a5e565b606091505b509150915061339a8282865b60608315613a795750816133b7565b825115613a895782518084602001fd5b8160405162461bcd60e51b81526004016107269190614648565b6040805161016081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081019190915290565b8035613b0a81614b3e565b919050565b600082601f830112613b1f578081fd5b81356020613b34613b2f83614a79565b614a49565b80838252828201915082860187848660051b8901011115613b53578586fd5b855b85811015613b7a578135613b6881614b53565b84529284019290840190600101613b55565b5090979650505050505050565b60008083601f840112613b98578182fd5b5081356001600160401b03811115613bae578182fd5b6020830191508360208260051b8501011115613bc957600080fd5b9250929050565b60008083601f840112613be1578182fd5b5081356001600160401b03811115613bf7578182fd5b602083019150836020828501011115613bc957600080fd5b600082601f830112613c1f578081fd5b81356001600160401b03811115613c3857613c38614b28565b613c4b601f8201601f1916602001614a49565b818152846020838601011115613c5f578283fd5b816020850160208301379081016020019190915292915050565b600060408284031215613c8a578081fd5b604051604081018181106001600160401b0382111715613cac57613cac614b28565b6040529050808235613cbd81614b3e565b81526020830135613ccd81614b61565b6020919091015292915050565b600060808284031215613ceb578081fd5b604051608081016001600160401b038282108183111715613d0e57613d0e614b28565b81604052829350843583526020850135602084015260408501359150613d3382614b3e565b8160408401526060850135915080821115613d4d57600080fd5b50613d5a85828601613c0f565b6060830152505092915050565b8035613b0a81614b61565b8035613b0a81614b71565b600060208284031215613d8e578081fd5b81356133b781614b3e565b600060208284031215613daa578081fd5b81516133b781614b3e565b60008060408385031215613dc7578081fd5b8235613dd281614b3e565b91506020830135613de281614b3e565b809150509250929050565b60008060408385031215613dff578182fd5b8251613e0a81614b3e565b6020840151909250613de281614b3e565b60008060008060008060008060a0898b031215613e36578384fd5b8835613e4181614b3e565b97506020890135613e5181614b3e565b965060408901356001600160401b0380821115613e6c578586fd5b613e788c838d01613b87565b909850965060608b0135915080821115613e90578586fd5b613e9c8c838d01613b87565b909650945060808b0135915080821115613eb4578384fd5b50613ec18b828c01613bd0565b999c989b5096995094979396929594505050565b60008060008060808587031215613eea578182fd5b8435613ef581614b3e565b93506020850135613f0581614b3e565b92506040850135915060608501356001600160401b03811115613f26578182fd5b613f3287828801613c0f565b91505092959194509250565b60008060008060008060a08789031215613f56578384fd5b8635613f6181614b3e565b95506020870135613f7181614b3e565b9450604087013593506060870135925060808701356001600160401b03811115613f99578283fd5b613fa589828a01613bd0565b979a9699509497509295939492505050565b60008060408385031215613fc9578182fd5b8235613fd481614b3e565b91506020830135613de281614b53565b60008060408385031215613ff6578182fd5b823561400181614b3e565b946020939093013593505050565b60008060408385031215614021578182fd5b825161402c81614b3e565b6020939093015192949293505050565b600080600060608486031215614050578081fd5b833561405b81614b3e565b925060208401359150604084013561407281614b3e565b809150509250925092565b6000806040838503121561408f578182fd5b82356001600160401b03808211156140a5578384fd5b818501915085601f8301126140b8578384fd5b813560206140c8613b2f83614a79565b8083825282820191508286018a848660051b89010111156140e7578889fd5b8896505b848710156141125780356140fe81614b3e565b8352600196909601959183019183016140eb565b5096505086013592505080821115614128578283fd5b5061413585828601613b0f565b9150509250929050565b600060208284031215614150578081fd5b81516133b781614b53565b60006020828403121561416c578081fd5b81356001600160e01b0319811681146133b7578182fd5b600060608284031215614194578081fd5b604051606081016001600160401b0382821081831117156141b7576141b7614b28565b81604052845191506141c882614b3e565b90825260208401519080821682146141de578384fd5b5060208201526040830151600381106141f5578283fd5b60408201529392505050565b6000806000838503610160811215614217578182fd5b61010080821215614226578283fd5b61422e614a20565b915085358252602086013560208301526040860135604083015261425460608701613aff565b606083015261426560808701613d72565b608083015261427660a08701613d67565b60a083015261428760c08701613aff565b60c083015261429860e08701613aff565b60e08301529093508401356001600160401b038111156142b6578182fd5b6142c286828701613cda565b9250506142d3856101208601613c79565b90509250925092565b6000602082840312156142ed578081fd5b81356133b781614b61565b600060208284031215614309578081fd5b81516133b781614b61565b600060208284031215614325578081fd5b5035919050565b60006020828403121561433d578081fd5b5051919050565b600060208284031215614355578081fd5b81356133b781614b71565b600060208284031215614371578081fd5b81516133b781614b71565b60008060008060008060008060e0898b031215614397578182fd5b88356143a281614b71565b975060208901356143b281614b3e565b965060408901356001600160401b038111156143cc578283fd5b6143d88b828c01613bd0565b90975095505060608901356143ec81614b3e565b93506080890135925060a089013561440381614b53565b8092505060c089013590509295985092959890939650565b600080600080600080600060e0888a031215614435578081fd5b873561444081614b71565b9650602088013561445081614b71565b955060408801359450606088013593506080880135925060a0880135915060c08801356001600160401b03811115614486578182fd5b6144928a828b01613c0f565b91505092959891949750929550565b6001600160a01b03169052565b600081518084526144c6816020860160208601614acb565b601f01601f19169290920160200192915050565b805182526020810151602083015260408101516040830152606081015161450460608401826144a1565b50608081015161451c608084018263ffffffff169052565b5060a081015161453260a084018261ffff169052565b5060c081015161454860c084018261ffff169052565b5060e081015161455b60e08401826144a1565b50610100818101516001600160401b03169083015261012080820151614583828501826144a1565b505061014080820151610808828501826144a1565b805182526020810151602083015260018060a01b03604082015116604083015260006060820151608060608501526145d360808501826144ae565b949350505050565b600082516145ed818460208701614acb565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6020815260006133b760208301846144ae565b6020808252601e908201527f4c6f616e20616c7265616479207265706169642f6c6971756964617465640000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601390820152721d1bdad95b881a5cc818dbdb1b185d195c985b606a1b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6101c0810161476482856144da565b82516001600160a01b0316610160830152602083015161ffff9081166101808401526040909301519092166101a090910152919050565b86548152600187015460208201526002870154604082015260038701546102008201906001600160a01b036147d5606085018284166144a1565b60a082901c63ffffffff16608085015261ffff60c083901c811660a086015261480960c08601828560d01c1661ffff169052565b5060048a0154915061482060e085018284166144a1565b5060a081901c6001600160401b03166101008401525060058801546001600160a01b03166148526101208401826144a1565b5060068801546001600160a01b031661486f6101408401826144a1565b5063ffffffff871661016083015263ffffffff8616610180830152846101a0830152836101c083015261339a6101e08301846144a1565b600061012084518352602085015160208401526040850151604084015260018060a01b03606086015116606084015263ffffffff608086015116608084015261ffff60a08601511660a084015260c085015161490560c08501826144a1565b5060e085015161491860e08501826144a1565b508061010084015261492c81840185614598565b95945050505050565b63ffffffff9290921682526001600160a01b0316602082015260400190565b600061026063ffffffff8d16835261496f602084018d6144da565b6001600160a01b038b81166101808501526101a0840182905290830189905261028090898b83860137838a018201929092529087166101c08301526101e082018690528415156102008301526102208201849052601f8801601f19168201016149dc6102408301846144a1565b9b9a5050505050505050505050565b600063ffffffff808816835280871660208401525084604083015283606083015260a0608083015261339a60a0830184614598565b60405161010081016001600160401b0381118282101715614a4357614a43614b28565b60405290565b604051601f8201601f191681016001600160401b0381118282101715614a7157614a71614b28565b604052919050565b60006001600160401b03821115614a9257614a92614b28565b5060051b60200190565b60008219821115614aaf57614aaf614b12565b500190565b600082821015614ac657614ac6614b12565b500390565b60005b83811015614ae6578181015183820152602001614ace565b838111156108085750506000910152565b6000600019821415614b0b57614b0b614b12565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611bd257600080fd5b8015158114611bd257600080fd5b61ffff81168114611bd257600080fd5b63ffffffff81168114611bd257600080fdfea164736f6c6343000804000a000000000000000000000000057144b6207a284ea3ff601a632926bfda2b1bb6000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a57800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006b175474e89094c44da98b954eedeac495271d0f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101dc5760003560e01c8063616693d811610105578063a4441a6f1161009d578063a4441a6f146105dc578063ab3b1280146105ea578063ac4e35ea14610613578063b18e777214610626578063b31ec1d414610639578063bc197c811461064c578063bce42e421461065f578063f23a6e6114610672578063f2fde38b1461069257600080fd5b8063616693d8146105015780636ed93dd01461052457806377cfa991146105405780637836baf11461056757806379b640401461057a5780638456cb591461058d578063872873be146105955780638da5cb5b146105c15780639658e405146105c957600080fd5b8063318dacd311610178578063318dacd314610425578063328404b014610438578063365a86fc146104715780633f4ba83a146104a557806347948d92146104ad5780635163a1c3146104c057806356efe98c146104d357806359a72734146104e65780635c975abb146104f957600080fd5b806301ffc9a7146101e157806305b406cf146102095780630717f3aa1461021e5780630ff81c3f14610241578063150b7a02146102ab578063192b355d146102e25780631c6caf41146102f9578063227cda181461030c5780632b21802214610412575b600080fd5b6101f46101ef36600461415b565b6106a5565b60405190151581526020015b60405180910390f35b61021c610217366004613db5565b6106f7565b005b6101f461022c366004614344565b60066020526000908152604090205460ff1681565b61028161024f366004614344565b6005602052600090815260409020546001600160a01b0381169061ffff600160a01b8204811691600160b01b90041683565b604080516001600160a01b03909416845261ffff9283166020850152911690820152606001610200565b6102c96102b9366004613ed5565b630a85bd0160e11b949350505050565b6040516001600160e01b03199091168152602001610200565b6102eb60025481565b604051908152602001610200565b61021c6103073660046142dc565b61080e565b61039e61031a366004614344565b600460208190526000918252604090912080546001820154600283015460038401549484015460058501546006909501549395929491936001600160a01b0380851694600160a01b80820463ffffffff1695600160c01b830461ffff90811696600160d01b909404169484841694929093046001600160401b03169290821691168b565b604080519b8c5260208c019a909a52988a01979097526001600160a01b0395861660608a015263ffffffff909416608089015261ffff92831660a0890152911660c0870152821660e08601526001600160401b03166101008501529081166101208401521661014082015261016001610200565b61021c610420366004614344565b6108d5565b61021c61043336600461437c565b610a3d565b6101f4610446366004613fe4565b6001600160a01b03919091166000908152600860209081526040808320938352929052205460ff1690565b6104987f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a57881565b60405161020091906145f7565b61021c610c85565b61021c6104bb366004614314565b610cbe565b61021c6104ce36600461403c565b610d6f565b61021c6104e1366004614201565b610f09565b61021c6104f4366004614344565b610fac565b6101f46111ef565b794449524543545f4c4f414e5f46495845445f52454445504c4f5960301b6102eb565b61052d61271081565b60405161ffff9091168152602001610200565b6102eb7f4449524543545f4c4f414e5f434f4f5244494e41544f5200000000000000000081565b61021c610575366004613fb7565b6111ff565b61021c61058836600461407d565b61123c565b61021c611353565b6101f46105a3366004613d7d565b6001600160a01b031660009081526009602052604090205460ff1690565b61049861138a565b61021c6105d7366004614314565b611399565b60035461052d9061ffff1681565b6102eb6105f8366004614344565b63ffffffff1660009081526004602052604090206001015490565b61021c61062136600461403c565b61141a565b61021c61063436600461441b565b6115d2565b61021c610647366004614344565b61163b565b6102c961065a366004613e1b565b611909565b61021c61066d366004614344565b611954565b6102c9610680366004613f3e565b63f23a6e6160e01b9695505050505050565b61021c6106a0366004613d7d565b611b35565b60006001600160e01b03198216630271189760e51b14806106d657506001600160e01b03198216630a85bd0160e11b145b806106f157506001600160e01b031982166301ffc9a760e01b145b92915050565b3361070061138a565b6001600160a01b03161461072f5760405162461bcd60e51b8152600401610726906146bc565b60405180910390fd5b6040516370a0823160e01b815282906000906001600160a01b038316906370a08231906107609030906004016145f7565b60206040518083038186803b15801561077857600080fd5b505afa15801561078c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b0919061432c565b9050600081116107f45760405162461bcd60e51b815260206004820152600f60248201526e1b9bc81d1bdad95b9cc81bdddb9959608a1b6044820152606401610726565b6108086001600160a01b0383168483611bd5565b50505050565b3361081761138a565b6001600160a01b03161461083d5760405162461bcd60e51b8152600401610726906146bc565b61271061ffff8216111561088a5760405162461bcd60e51b81526020600482015260146024820152730626173697320706f696e7473203e2031303030360641b6044820152606401610726565b6003805461ffff191661ffff83169081179091556040519081527f03017365bbe16943b524030df07e7689168ab63e854d27417498e6f9dc584dab906020015b60405180910390a150565b600260015414156108f85760405162461bcd60e51b81526004016107269061471e565b600260015560405163364d0abb60e11b8152736048c06d97ba978a203519a0d079aeaff2b4ade290636c9a1576906109569084907f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a57890600401614935565b60006040518083038186803b15801561096e57600080fd5b505af4158015610982573d6000803e3d6000fd5b5050505060008060008061099585611c2b565b93509350935093506109a98585858561203f565b6109b585858484612255565b5050505063ffffffff1660009081526004602081815260408084208481556001808201869055600282018690556003820180546001600160e01b03199081169091559482018054909516909455600580820180546001600160a01b03199081169091556006909201805490921690915590915290912080546001600160c01b03191690558055565b60026001541415610a605760405162461bcd60e51b81526004016107269061471e565b6002600155604051635bfd0fb160e11b8152736048c06d97ba978a203519a0d079aeaff2b4ade29063b7fa1f6290610abe908b907f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a57890600401614935565b60006040518083038186803b158015610ad657600080fd5b505af4158015610aea573d6000803e3d6000fd5b5050505063ffffffff881660009081526006602052604090205460ff1615610b245760405162461bcd60e51b81526004016107269061465b565b63ffffffff8881166000908152600460208181526040928390208351610160810185528154815260018201549281019290925260028101548285015260038101546001600160a01b038082166060850152600160a01b8083049097166080850152600160c01b820461ffff90811660a0860152600160d01b90920490911660c08401528184015480821660e0850152959095046001600160401b03166101008301526005810154851661012083015260060154909316610140840152905163491bd44160e11b815273a1d4fd6c256d6ef5661f7c01dd2b95e90c02d35791639237a88291610c46918d9186918e918e918e918e918e918e918e917f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a5789101614954565b60006040518083038186803b158015610c5e57600080fd5b505af4158015610c72573d6000803e3d6000fd5b5050600180555050505050505050505050565b33610c8e61138a565b6001600160a01b031614610cb45760405162461bcd60e51b8152600401610726906146bc565b610cbc61226b565b565b33610cc761138a565b6001600160a01b031614610ced5760405162461bcd60e51b8152600401610726906146bc565b63ffffffff811115610d3a5760405162461bcd60e51b81526020600482015260166024820152754c6f616e206475726174696f6e206f766572666c6f7760501b6044820152606401610726565b60028190556040518181527f64f65a4a1a932867ad599da36210fc47c698b3abb2413cfdfd36bf59697a69cb906020016108ca565b33610d7861138a565b6001600160a01b031614610d9e5760405162461bcd60e51b8152600401610726906146bc565b6001600160a01b0383166000908152600760209081526040808320858452909152902054839015610de15760405162461bcd60e51b8152600401610726906146f1565b6040516331a9108f60e11b81526004810184905230906001600160a01b03831690636352211e9060240160206040518083038186803b158015610e2357600080fd5b505afa158015610e37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5b9190613d99565b6001600160a01b031614610ea15760405162461bcd60e51b815260206004820152600d60248201526c1b999d081b9bdd081bdddb9959609a1b6044820152606401610726565b604051632142170760e11b81526001600160a01b038216906342842e0e90610ed19030908690889060040161460b565b600060405180830381600087803b158015610eeb57600080fd5b505af1158015610eff573d6000803e3d6000fd5b5050505050505050565b610f116111ef565b15610f2e5760405162461bcd60e51b815260040161072690614692565b60026001541415610f515760405162461bcd60e51b81526004016107269061471e565b60026001556060830151600090610f67906122fd565b9050610f738482612423565b610f7c84612648565b610fa2610f8985836126b3565b610f9b84600001518560200151612767565b8686612865565b5050600180555050565b60026001541415610fcf5760405162461bcd60e51b81526004016107269061471e565b6002600155604051635bfd0fb160e11b8152736048c06d97ba978a203519a0d079aeaff2b4ade29063b7fa1f629061102d9084907f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a57890600401614935565b60006040518083038186803b15801561104557600080fd5b505af4158015611059573d6000803e3d6000fd5b5050505063ffffffff811660009081526006602052604090205460ff16156110935760405162461bcd60e51b81526004016107269061465b565b63ffffffff8116600090815260046020908152604080832060058101546001600160a01b0316845260078352818420600282015485529092528220805491926001926110e0908490614ab4565b9091555050604051631276b77d60e11b815263ffffffff83166004820152602481018290526001600160a01b037f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a578166044820152600090819073a1d4fd6c256d6ef5661f7c01dd2b95e90c02d357906324ed6efa90606401604080518083038186803b15801561116f57600080fd5b505af4158015611183573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a7919061400f565b6001600160a01b0382166000908152600760209081526040808320848452909152812080549395509193506001926111e0908490614a9c565b90915550506001805550505050565b600054600160a01b900460ff1690565b3361120861138a565b6001600160a01b03161461122e5760405162461bcd60e51b8152600401610726906146bc565b6112388282612b81565b5050565b3361124561138a565b6001600160a01b03161461126b5760405162461bcd60e51b8152600401610726906146bc565b80518251146112d85760405162461bcd60e51b815260206004820152603360248201527f73657445524332305065726d6974732066756e6374696f6e20696e666f726d616044820152720e8d2dedc40c2e4d2e8f240dad2e6dac2e8c6d606b1b6064820152608401610726565b60005b825181101561134e5761133c83828151811061130757634e487b7160e01b600052603260045260246000fd5b602002602001015183838151811061132f57634e487b7160e01b600052603260045260246000fd5b6020026020010151612b81565b8061134681614af7565b9150506112db565b505050565b3361135c61138a565b6001600160a01b0316146113825760405162461bcd60e51b8152600401610726906146bc565b610cbc612c2e565b6000546001600160a01b031690565b33600090815260086020908152604080832084845290915290205460ff16156113f45760405162461bcd60e51b815260206004820152600d60248201526c496e76616c6964206e6f6e636560981b6044820152606401610726565b33600090815260086020908152604080832093835292905220805460ff19166001179055565b3361142361138a565b6001600160a01b0316146114495760405162461bcd60e51b8152600401610726906146bc565b604051627eeac760e11b815283906000906001600160a01b0383169062fdd58e9061147a903090889060040161462f565b60206040518083038186803b15801561149257600080fd5b505afa1580156114a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ca919061432c565b6001600160a01b03861660009081526007602090815260408083208884529091529020549091501561150e5760405162461bcd60e51b8152600401610726906146f1565b6000811161154e5760405162461bcd60e51b815260206004820152600d60248201526c1b9bc81b999d1cc81bdddb9959609a1b6044820152606401610726565b604051637921219560e11b81523060048201526001600160a01b038481166024830152604482018690526064820183905260a06084830152600060a483015283169063f242432a9060c401600060405180830381600087803b1580156115b357600080fd5b505af11580156115c7573d6000803e3d6000fd5b505050505050505050565b6115da6111ef565b156115f75760405162461bcd60e51b815260040161072690614692565b6002600154141561161a5760405162461bcd60e51b81526004016107269061471e565b600260015561162e87878787878787612c8e565b5050600180555050505050565b6002600154141561165e5760405162461bcd60e51b81526004016107269061471e565b6002600155604051635bfd0fb160e11b8152736048c06d97ba978a203519a0d079aeaff2b4ade29063b7fa1f62906116bc9084907f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a57890600401614935565b60006040518083038186803b1580156116d457600080fd5b505af41580156116e8573d6000803e3d6000fd5b5050505063ffffffff811660009081526006602052604090205460ff16156117225760405162461bcd60e51b81526004016107269061465b565b60008060008061173185611c2b565b93509350935093506000826080015163ffffffff168361010001516001600160401b031661175f9190614a9c565b90508042116117aa5760405162461bcd60e51b8152602060048201526017602482015276131bd85b881a5cc81b9bdd081bdd995c991d59481e595d604a1b6044820152606401610726565b336001600160a01b038516146117fe5760405162461bcd60e51b81526020600482015260196024820152784f6e6c79206c656e6465722063616e206c697175696461746560381b6044820152606401610726565b61180a86858585612255565b8251604080850151610120860151825193845260208401919091529082018390524260608301526001600160a01b039081166080830152808616919087169063ffffffff8916907f4fac0ff43299a330bce57d0579985305af580acf256a6d7977083ede81be13269060a00160405180910390a450505063ffffffff90921660009081526004602081815260408084208481556001808201869055600282018690556003820180546001600160e01b03199081169091559482018054909516909455600580820180546001600160a01b03199081169091556006909201805490921690915590915290912080546001600160c01b031916905580555050565b60405162461bcd60e51b815260206004820152601b60248201527f45524331313535206261746368206e6f7420737570706f7274656400000000006044820152600090606401610726565b600260015414156119775760405162461bcd60e51b81526004016107269061471e565b600260015563ffffffff81166000908152600460205260409020600601546001600160a01b03163381146119e95760405162461bcd60e51b815260206004820152601960248201527839b2b73232b9103430b9903a37903132903137b93937bbb2b960391b6044820152606401610726565b604051631c2d8fb360e31b81527f4449524543545f4c4f414e5f434f4f5244494e41544f5200000000000000000060048201526000907f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a5786001600160a01b03169063e16c7d989060240160206040518083038186803b158015611a6b57600080fd5b505afa158015611a7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa39190613d99565b604051631b982cf160e01b81529091506001600160a01b03821690631b982cf190611ad49086908690600401614935565b600060405180830381600087803b158015611aee57600080fd5b505af1158015611b02573d6000803e3d6000fd5b50505063ffffffff909316600090815260046020526040902060060180546001600160a01b031916905550506001805550565b33611b3e61138a565b6001600160a01b031614611b645760405162461bcd60e51b8152600401610726906146bc565b6001600160a01b038116611bc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610726565b611bd28161300d565b50565b61134e8363a9059cbb60e01b8484604051602401611bf492919061462f565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261305d565b600080611c36613aa3565b604051631c2d8fb360e31b81527f4449524543545f4c4f414e5f434f4f5244494e41544f5200000000000000000060048201526000907f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a5786001600160a01b03169063e16c7d989060240160206040518083038186803b158015611cb857600080fd5b505afa158015611ccc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf09190613d99565b60405163e6c5a54160e01b815263ffffffff871660048201529091506000906001600160a01b0383169063e6c5a5419060240160606040518083038186803b158015611d3b57600080fd5b505afa158015611d4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d739190614183565b60208181015163ffffffff898116600090815260048085526040918290208251610160810184528154815260018201549681019690965260028101549286019290925260038201546001600160a01b038082166060880152600160a01b8083049095166080880152600160c01b820461ffff90811660a0890152600160d01b90920490911660c08701529082015480821660e08701526001600160401b03939004831661010086015260058201548116610120860152600690910154166101408401819052929650929350919091169015611e55578361014001519550611f46565b826001600160a01b0316638208e76c6040518163ffffffff1660e01b815260040160206040518083038186803b158015611e8e57600080fd5b505afa158015611ea2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec69190613d99565b6001600160a01b0316636352211e826040518263ffffffff1660e01b8152600401611ef391815260200190565b60206040518083038186803b158015611f0b57600080fd5b505afa158015611f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f439190613d99565b95505b826001600160a01b0316634fbe68a06040518163ffffffff1660e01b815260040160206040518083038186803b158015611f7f57600080fd5b505afa158015611f93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb79190613d99565b6001600160a01b0316636352211e826040518263ffffffff1660e01b8152600401611fe491815260200190565b60206040518083038186803b158015611ffc57600080fd5b505afa158015612010573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120349190613d99565b945050509193509193565b63ffffffff84166000908152600560209081526040808320815160608101835290546001600160a01b038116825261ffff600160a01b8204811694830194909452600160b01b90049092169082015290806120998461312f565b606086015191935091506120b8906001600160a01b03163387846131f8565b6020830151604051637f5e0ed360e01b81526004810184905261ffff9091166024820152600090736048c06d97ba978a203519a0d079aeaff2b4ade290637f5e0ed39060440160206040518083038186803b15801561211657600080fd5b505af415801561212a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214e919061432c565b9050600081118015612169575083516001600160a01b031615155b15612198576121788184614ab4565b84516060870151919450612198916001600160a01b0316903390846131f8565b6121ba336121a461138a565b60608801516001600160a01b03169190866131f8565b845160408087015186516101208901516060808b0151855196875260208701949094528585018890528501889052608085018690526001600160a01b0391821660a0860152811660c085015290811660e0840152905188821692918a169163ffffffff8c16917f3687d64f40b11dd1c102a76882ac1735891c546a96ae27935eb5c7865b9d86fa918190036101000190a45050505050505050565b612260848383613219565b6108088230856132dc565b6122736111ef565b6122b65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610726565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516122f391906145f7565b60405180910390a1565b604051631c2d8fb360e31b81526d5045524d49545445445f4e46545360901b60048201526000907f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a5786001600160a01b03169063e16c7d989060240160206040518083038186803b15801561237057600080fd5b505afa158015612384573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123a89190613d99565b6001600160a01b031663b8c8aff8836040518263ffffffff1660e01b81526004016123d391906145f7565b60206040518083038186803b1580156123eb57600080fd5b505afa1580156123ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f19190613d99565b60c08201516001600160a01b031660009081526009602052604090205460ff1661249e5760405162461bcd60e51b815260206004820152602660248201527f43757272656e63792064656e6f6d696e6174696f6e206973206e6f74207065726044820152651b5a5d1d195960d21b6064820152608401610726565b6001600160a01b0381166125055760405162461bcd60e51b815260206004820152602860248201527f4e465420636f6c6c61746572616c20636f6e7472616374206973206e6f742070604482015267195c9b5a5d1d195960c21b6064820152608401610726565b600254826080015163ffffffff1611156125755760405162461bcd60e51b815260206004820152602b60248201527f4c6f616e206475726174696f6e2065786365656473206d6178696d756d206c6f60448201526a30b710323ab930ba34b7b760a91b6064820152608401610726565b608082015163ffffffff166125cc5760405162461bcd60e51b815260206004820152601c60248201527f4c6f616e206475726174696f6e2063616e6e6f74206265207a65726f000000006044820152606401610726565b60035460a083015161ffff9081169116146112385760405162461bcd60e51b815260206004820152603660248201527f5468652061646d696e2066656520686173206368616e6765642073696e6365206044820152753a3434b99037b93232b9103bb0b99039b4b3b732b21760511b6064820152608401610726565b805160208201511015611bd25760405162461bcd60e51b815260206004820152602d60248201527f4e6567617469766520696e7465726573742072617465206c6f616e732061726560448201526c103737ba1030b63637bbb2b21760991b6064820152608401610726565b6126bb613aa3565b6040518061016001604052808460000151815260200184602001518152602001846040015181526020018460c001516001600160a01b03168152602001846080015163ffffffff168152602001600061ffff1681526020018460a0015161ffff168152602001836001600160a01b03168152602001426001600160401b0316815260200184606001516001600160a01b03168152602001336001600160a01b0316815250905092915050565b6040805160608101825260008082526020820181905291810191909152604080516060810182526001600160a01b0380861680835292516347e332df60e11b815260048101939093527f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a578166024830152906020820190736048c06d97ba978a203519a0d079aeaff2b4ade290638fc665be9060440160206040518083038186803b15801561281457600080fd5b505af4158015612828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061284c91906142f8565b61ffff1681526020018361ffff16815250905092915050565b6040808201516001600160a01b0316600090815260086020908152828220845183529052205460ff16156128d25760405162461bcd60e51b815260206004820152601460248201527313195b99195c881b9bdb98d9481a5b9d985b1a5960621b6044820152606401610726565b6040808201516001600160a01b0316600090815260086020908152828220845183529052819020805460ff191660011790555163eb2ac63f60e01b81527360da568b88037d0735715819a37714d28bd563479063eb2ac63f9061293b90859085906004016148a6565b60206040518083038186803b15801561295357600080fd5b505af4158015612967573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061298b919061413f565b6129d75760405162461bcd60e51b815260206004820152601b60248201527f4c656e646572207369676e617475726520697320696e76616c696400000000006044820152606401610726565b604051631c2d8fb360e31b81526c27232a2324afa12aa7222622a960991b60048201526000907f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a5786001600160a01b03169063e16c7d989060240160206040518083038186803b158015612a4957600080fd5b505afa158015612a5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a819190613d99565b9050806001600160a01b03168561012001516001600160a01b03161415612aea5760405162461bcd60e51b815260206004820152601b60248201527f436f6c6c61746572616c2063616e6e6f742062652062756e646c6500000000006044820152606401610726565b6000612b1f794449524543545f4c4f414e5f46495845445f52454445504c4f5960301b87873387604001518960e0015161337f565b905082604001516001600160a01b0316336001600160a01b03168263ffffffff167f42cc7f53ef7b494c5dd6f0095175f7d07b5d3d7b2a03f34389fea445ba4a3a8b8989604051612b71929190614755565b60405180910390a4505050505050565b6001600160a01b038216612bcf5760405162461bcd60e51b81526020600482015260156024820152746572633230206973207a65726f206164647265737360581b6044820152606401610726565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527ff100355be652ecc881568750e6a98c0713e4316f75d5314ebc9039e0acb52f24910160405180910390a25050565b612c366111ef565b15612c535760405162461bcd60e51b815260040161072690614692565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122e63390565b63ffffffff87166000908152600460208190526040808320905163b5ec526360e01b81529092918291736048c06d97ba978a203519a0d079aeaff2b4ade29163b5ec526391612d099187918f918f918f918e917f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a578910161479b565b604080518083038186803b158015612d2057600080fd5b505af4158015612d34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d589190613ded565b6001600160a01b03811660008181526008602090815260408083208c8452825291829020805460ff1916600117905581516080810183528b81529081018a905280820192909252606082018890525163d06ff74160e01b81529294509092507360da568b88037d0735715819a37714d28bd563479163d06ff74191612de7918e918e918e918e916004016149eb565b60206040518083038186803b158015612dff57600080fd5b505af4158015612e13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e37919061413f565b612e8e5760405162461bcd60e51b815260206004820152602260248201527f52656e65676f74696174696f6e207369676e617475726520697320696e76616c6044820152611a5960f21b6064820152608401610726565b60008715612f78576003840154604051632ad659af60e01b8152600481018a9052600160d01b90910461ffff166024820152736048c06d97ba978a203519a0d079aeaff2b4ade290632ad659af9060440160206040518083038186803b158015612ef757600080fd5b505af4158015612f0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f2f919061432c565b9050612f568383612f40848c614ab4565b60038801546001600160a01b03169291906131f8565b612f7883612f6261138a565b60038701546001600160a01b03169190846131f8565b60038401805463ffffffff60a01b1916600160a01b63ffffffff8d811691820292909217909255600186018b905560408051928352602083018c905282018a9052606082018390526001600160a01b0384811692908616918e16907f37357bed780fda5aed28c32fe9cd762cb2f2f8a70c0d9b342aba59c945943ca09060800160405180910390a45050505050505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006130b2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166133a59092919063ffffffff16565b80519091501561134e57808060200190518101906130d0919061413f565b61134e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610726565b6000806000836000015184602001516131489190614ab4565b60c0850151604051632ad659af60e01b81526004810183905261ffff9091166024820152909150736048c06d97ba978a203519a0d079aeaff2b4ade290632ad659af9060440160206040518083038186803b1580156131a657600080fd5b505af41580156131ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131de919061432c565b92508284602001516131f09190614ab4565b915050915091565b610808846323b872dd60e01b858585604051602401611bf49392919061460b565b63ffffffff83166000908152600660209081526040808320805460ff191660019081179091556101208601516001600160a01b03168452600783528184208683015185529092528220805491929091613273908490614ab4565b909155505060405163490b1f5360e11b815263ffffffff841660048201526001600160a01b038216906392163ea690602401600060405180830381600087803b1580156132bf57600080fd5b505af11580156132d3573d6000803e3d6000fd5b50505050505050565b60e083015161012084015160408086015181516001600160a01b038781166024830152868116604483015290931660648401526084808401919091528151808403909101815260a49092018152602080830180516001600160e01b031663b030667160e01b17905281518083019092528082527f4e4654206e6f74207375636365737366756c6c79207472616e73666572726564908201526108089291906133be565b600061338c8685306132dc565b61339a87878787878761349b565b979650505050505050565b60606133b48484600085613948565b90505b9392505050565b60606001600160a01b0384163b6134265760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610726565b600080856001600160a01b03168560405161344191906145db565b600060405180830381855af49150503d806000811461347c576040519150601f19603f3d011682016040523d82523d6000602084013e613481565b606091505b5091509150613491828286613a6a565b9695505050505050565b6101208501516001600160a01b03166000908152600760209081526040808320818901518452909152812080546001919083906134d9908490614a9c565b909155505085516040868101519051637b2392f160e01b8152600481019290925261ffff1660248201526001600160a01b0383166044820152600090736048c06d97ba978a203519a0d079aeaff2b4ade290637b2392f19060640160206040518083038186803b15801561354c57600080fd5b505af4158015613560573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613584919061432c565b905060008188600001516135989190614ab4565b905081156135ba5760608801516135ba906001600160a01b03168686856131f8565b60608801516135d4906001600160a01b03168688846131f8565b604051631c2d8fb360e31b81527f4449524543545f4c4f414e5f434f4f5244494e41544f5200000000000000000060048201526000907f000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a5786001600160a01b03169063e16c7d989060240160206040518083038186803b15801561365657600080fd5b505afa15801561366a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061368e9190613d99565b60405163d1f7659560e01b81529091506001600160a01b0382169063d1f76595906136bf9089908e9060040161462f565b602060405180830381600087803b1580156136d957600080fd5b505af11580156136ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137119190614360565b935088600460008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060808201518160030160146101000a81548163ffffffff021916908363ffffffff16021790555060a08201518160030160186101000a81548161ffff021916908361ffff16021790555060c082015181600301601a6101000a81548161ffff021916908361ffff16021790555060e08201518160040160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506101008201518160040160146101000a8154816001600160401b0302191690836001600160401b031602179055506101208201518160050160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506101408201518160060160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555090505087600560008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548161ffff021916908361ffff16021790555060408201518160000160166101000a81548161ffff021916908361ffff1602179055509050505050509695505050505050565b6060824710156139a95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610726565b6001600160a01b0385163b613a005760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610726565b600080866001600160a01b03168587604051613a1c91906145db565b60006040518083038185875af1925050503d8060008114613a59576040519150601f19603f3d011682016040523d82523d6000602084013e613a5e565b606091505b509150915061339a8282865b60608315613a795750816133b7565b825115613a895782518084602001fd5b8160405162461bcd60e51b81526004016107269190614648565b6040805161016081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081018290526101008101829052610120810182905261014081019190915290565b8035613b0a81614b3e565b919050565b600082601f830112613b1f578081fd5b81356020613b34613b2f83614a79565b614a49565b80838252828201915082860187848660051b8901011115613b53578586fd5b855b85811015613b7a578135613b6881614b53565b84529284019290840190600101613b55565b5090979650505050505050565b60008083601f840112613b98578182fd5b5081356001600160401b03811115613bae578182fd5b6020830191508360208260051b8501011115613bc957600080fd5b9250929050565b60008083601f840112613be1578182fd5b5081356001600160401b03811115613bf7578182fd5b602083019150836020828501011115613bc957600080fd5b600082601f830112613c1f578081fd5b81356001600160401b03811115613c3857613c38614b28565b613c4b601f8201601f1916602001614a49565b818152846020838601011115613c5f578283fd5b816020850160208301379081016020019190915292915050565b600060408284031215613c8a578081fd5b604051604081018181106001600160401b0382111715613cac57613cac614b28565b6040529050808235613cbd81614b3e565b81526020830135613ccd81614b61565b6020919091015292915050565b600060808284031215613ceb578081fd5b604051608081016001600160401b038282108183111715613d0e57613d0e614b28565b81604052829350843583526020850135602084015260408501359150613d3382614b3e565b8160408401526060850135915080821115613d4d57600080fd5b50613d5a85828601613c0f565b6060830152505092915050565b8035613b0a81614b61565b8035613b0a81614b71565b600060208284031215613d8e578081fd5b81356133b781614b3e565b600060208284031215613daa578081fd5b81516133b781614b3e565b60008060408385031215613dc7578081fd5b8235613dd281614b3e565b91506020830135613de281614b3e565b809150509250929050565b60008060408385031215613dff578182fd5b8251613e0a81614b3e565b6020840151909250613de281614b3e565b60008060008060008060008060a0898b031215613e36578384fd5b8835613e4181614b3e565b97506020890135613e5181614b3e565b965060408901356001600160401b0380821115613e6c578586fd5b613e788c838d01613b87565b909850965060608b0135915080821115613e90578586fd5b613e9c8c838d01613b87565b909650945060808b0135915080821115613eb4578384fd5b50613ec18b828c01613bd0565b999c989b5096995094979396929594505050565b60008060008060808587031215613eea578182fd5b8435613ef581614b3e565b93506020850135613f0581614b3e565b92506040850135915060608501356001600160401b03811115613f26578182fd5b613f3287828801613c0f565b91505092959194509250565b60008060008060008060a08789031215613f56578384fd5b8635613f6181614b3e565b95506020870135613f7181614b3e565b9450604087013593506060870135925060808701356001600160401b03811115613f99578283fd5b613fa589828a01613bd0565b979a9699509497509295939492505050565b60008060408385031215613fc9578182fd5b8235613fd481614b3e565b91506020830135613de281614b53565b60008060408385031215613ff6578182fd5b823561400181614b3e565b946020939093013593505050565b60008060408385031215614021578182fd5b825161402c81614b3e565b6020939093015192949293505050565b600080600060608486031215614050578081fd5b833561405b81614b3e565b925060208401359150604084013561407281614b3e565b809150509250925092565b6000806040838503121561408f578182fd5b82356001600160401b03808211156140a5578384fd5b818501915085601f8301126140b8578384fd5b813560206140c8613b2f83614a79565b8083825282820191508286018a848660051b89010111156140e7578889fd5b8896505b848710156141125780356140fe81614b3e565b8352600196909601959183019183016140eb565b5096505086013592505080821115614128578283fd5b5061413585828601613b0f565b9150509250929050565b600060208284031215614150578081fd5b81516133b781614b53565b60006020828403121561416c578081fd5b81356001600160e01b0319811681146133b7578182fd5b600060608284031215614194578081fd5b604051606081016001600160401b0382821081831117156141b7576141b7614b28565b81604052845191506141c882614b3e565b90825260208401519080821682146141de578384fd5b5060208201526040830151600381106141f5578283fd5b60408201529392505050565b6000806000838503610160811215614217578182fd5b61010080821215614226578283fd5b61422e614a20565b915085358252602086013560208301526040860135604083015261425460608701613aff565b606083015261426560808701613d72565b608083015261427660a08701613d67565b60a083015261428760c08701613aff565b60c083015261429860e08701613aff565b60e08301529093508401356001600160401b038111156142b6578182fd5b6142c286828701613cda565b9250506142d3856101208601613c79565b90509250925092565b6000602082840312156142ed578081fd5b81356133b781614b61565b600060208284031215614309578081fd5b81516133b781614b61565b600060208284031215614325578081fd5b5035919050565b60006020828403121561433d578081fd5b5051919050565b600060208284031215614355578081fd5b81356133b781614b71565b600060208284031215614371578081fd5b81516133b781614b71565b60008060008060008060008060e0898b031215614397578182fd5b88356143a281614b71565b975060208901356143b281614b3e565b965060408901356001600160401b038111156143cc578283fd5b6143d88b828c01613bd0565b90975095505060608901356143ec81614b3e565b93506080890135925060a089013561440381614b53565b8092505060c089013590509295985092959890939650565b600080600080600080600060e0888a031215614435578081fd5b873561444081614b71565b9650602088013561445081614b71565b955060408801359450606088013593506080880135925060a0880135915060c08801356001600160401b03811115614486578182fd5b6144928a828b01613c0f565b91505092959891949750929550565b6001600160a01b03169052565b600081518084526144c6816020860160208601614acb565b601f01601f19169290920160200192915050565b805182526020810151602083015260408101516040830152606081015161450460608401826144a1565b50608081015161451c608084018263ffffffff169052565b5060a081015161453260a084018261ffff169052565b5060c081015161454860c084018261ffff169052565b5060e081015161455b60e08401826144a1565b50610100818101516001600160401b03169083015261012080820151614583828501826144a1565b505061014080820151610808828501826144a1565b805182526020810151602083015260018060a01b03604082015116604083015260006060820151608060608501526145d360808501826144ae565b949350505050565b600082516145ed818460208701614acb565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6020815260006133b760208301846144ae565b6020808252601e908201527f4c6f616e20616c7265616479207265706169642f6c6971756964617465640000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601390820152721d1bdad95b881a5cc818dbdb1b185d195c985b606a1b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6101c0810161476482856144da565b82516001600160a01b0316610160830152602083015161ffff9081166101808401526040909301519092166101a090910152919050565b86548152600187015460208201526002870154604082015260038701546102008201906001600160a01b036147d5606085018284166144a1565b60a082901c63ffffffff16608085015261ffff60c083901c811660a086015261480960c08601828560d01c1661ffff169052565b5060048a0154915061482060e085018284166144a1565b5060a081901c6001600160401b03166101008401525060058801546001600160a01b03166148526101208401826144a1565b5060068801546001600160a01b031661486f6101408401826144a1565b5063ffffffff871661016083015263ffffffff8616610180830152846101a0830152836101c083015261339a6101e08301846144a1565b600061012084518352602085015160208401526040850151604084015260018060a01b03606086015116606084015263ffffffff608086015116608084015261ffff60a08601511660a084015260c085015161490560c08501826144a1565b5060e085015161491860e08501826144a1565b508061010084015261492c81840185614598565b95945050505050565b63ffffffff9290921682526001600160a01b0316602082015260400190565b600061026063ffffffff8d16835261496f602084018d6144da565b6001600160a01b038b81166101808501526101a0840182905290830189905261028090898b83860137838a018201929092529087166101c08301526101e082018690528415156102008301526102208201849052601f8801601f19168201016149dc6102408301846144a1565b9b9a5050505050505050505050565b600063ffffffff808816835280871660208401525084604083015283606083015260a0608083015261339a60a0830184614598565b60405161010081016001600160401b0381118282101715614a4357614a43614b28565b60405290565b604051601f8201601f191681016001600160401b0381118282101715614a7157614a71614b28565b604052919050565b60006001600160401b03821115614a9257614a92614b28565b5060051b60200190565b60008219821115614aaf57614aaf614b12565b500190565b600082821015614ac657614ac6614b12565b500390565b60005b83811015614ae6578181015183820152602001614ace565b838111156108085750506000910152565b6000600019821415614b0b57614b0b614b12565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611bd257600080fd5b8015158114611bd257600080fd5b61ffff81168114611bd257600080fd5b63ffffffff81168114611bd257600080fdfea164736f6c6343000804000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000057144b6207a284ea3ff601a632926bfda2b1bb6000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a57800000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000002000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000006b175474e89094c44da98b954eedeac495271d0f
-----Decoded View---------------
Arg [0] : _admin (address): 0x057144b6207A284ea3fF601a632926bFda2b1Bb6
Arg [1] : _nftfiHub (address): 0xd99b8075Cb583FdE8F60A2C3aC84eE37c701a578
Arg [2] : _permittedErc20s (address[]): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2,0x6B175474E89094C44Da98b954EedeAC495271d0F
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000057144b6207a284ea3ff601a632926bfda2b1bb6
Arg [1] : 000000000000000000000000d99b8075cb583fde8f60a2c3ac84ee37c701a578
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [5] : 0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 71.81% | $0.900497 | 869.8781 | $783.32 | |
ETH | 2.72% | $0.000119 | 250,000 | $29.7 | |
ETH | 0.63% | $0.032255 | 213 | $6.87 | |
ETH | 0.09% | $0.191523 | 5 | $0.9576 | |
BASE | 17.17% | $0.018732 | 10,000 | $187.32 | |
BASE | 7.36% | $0.008028 | 10,000 | $80.28 | |
BASE | 0.08% | $0.000231 | 4,000 | $0.922 | |
BASE | 0.07% | <$0.000001 | 29,577,464 | $0.763 | |
BASE | 0.03% | <$0.000001 | 36,411,640.8 | $0.3568 | |
BASE | 0.03% | $0.000174 | 1,761.4937 | $0.3063 | |
GLMR | <0.01% | $0.149363 | 0.01 | $0.001494 |
Loading...
Loading
[ Download: CSV Export ]
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.