Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 591 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw FNFT | 14465197 | 1113 days ago | IN | 0 ETH | 0.01501898 | ||||
Withdraw FNFT | 14463416 | 1113 days ago | IN | 0 ETH | 0.02242728 | ||||
Withdraw FNFT | 14462455 | 1113 days ago | IN | 0 ETH | 0.0058522 | ||||
Withdraw FNFT | 14462363 | 1113 days ago | IN | 0 ETH | 0.00436682 | ||||
Withdraw FNFT | 14462179 | 1113 days ago | IN | 0 ETH | 0.00360266 | ||||
Withdraw FNFT | 14462170 | 1113 days ago | IN | 0 ETH | 0.00305511 | ||||
Withdraw FNFT | 14462141 | 1113 days ago | IN | 0 ETH | 0.00299545 | ||||
Withdraw FNFT | 14462132 | 1113 days ago | IN | 0 ETH | 0.00349786 | ||||
Withdraw FNFT | 14462127 | 1113 days ago | IN | 0 ETH | 0.00353528 | ||||
Withdraw FNFT | 14462120 | 1113 days ago | IN | 0 ETH | 0.0037245 | ||||
Withdraw FNFT | 14462110 | 1113 days ago | IN | 0 ETH | 0.00300127 | ||||
Withdraw FNFT | 14462059 | 1113 days ago | IN | 0 ETH | 0.00779273 | ||||
Withdraw FNFT | 14461563 | 1114 days ago | IN | 0 ETH | 0.00940177 | ||||
Withdraw FNFT | 14461420 | 1114 days ago | IN | 0 ETH | 0.00323577 | ||||
Withdraw FNFT | 14461116 | 1114 days ago | IN | 0 ETH | 0.00490672 | ||||
Withdraw FNFT | 14460964 | 1114 days ago | IN | 0 ETH | 0.00893304 | ||||
Withdraw FNFT | 14460810 | 1114 days ago | IN | 0 ETH | 0.01015762 | ||||
Withdraw FNFT | 14460099 | 1114 days ago | IN | 0 ETH | 0.00887806 | ||||
Withdraw FNFT | 14460028 | 1114 days ago | IN | 0 ETH | 0.00702383 | ||||
Withdraw FNFT | 14458422 | 1114 days ago | IN | 0 ETH | 0.0145113 | ||||
Withdraw FNFT | 14457446 | 1114 days ago | IN | 0 ETH | 0.0116449 | ||||
Withdraw FNFT | 14457306 | 1114 days ago | IN | 0 ETH | 0.01192772 | ||||
Withdraw FNFT | 14457162 | 1114 days ago | IN | 0 ETH | 0.01098881 | ||||
Mint Time Lock | 14455720 | 1114 days ago | IN | 0 ETH | 0.00971118 | ||||
Withdraw FNFT | 14455272 | 1115 days ago | IN | 0 ETH | 0.00548934 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Revest
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import '@openzeppelin/contracts/utils/introspection/ERC165Checker.sol'; import "./interfaces/IRevest.sol"; import "./interfaces/IAddressRegistry.sol"; import "./interfaces/ILockManager.sol"; import "./interfaces/IInterestHandler.sol"; import "./interfaces/ITokenVault.sol"; import "./interfaces/IRewardsHandler.sol"; import "./interfaces/IOracleDispatch.sol"; import "./interfaces/IOutputReceiver.sol"; import "./interfaces/IAddressLock.sol"; import "./utils/RevestAccessControl.sol"; import "./utils/RevestReentrancyGuard.sol"; import "./lib/IUnicryptV2Locker.sol"; import "./lib/IWETH.sol"; import "./FNFTHandler.sol"; /** * This is the entrypoint for the frontend, as well as third-party Revest integrations. * Solidity style guide ordering: receive, fallback, external, public, internal, private - within a grouping, view and pure go last - https://docs.soliditylang.org/en/latest/style-guide.html */ contract Revest is IRevest, AccessControlEnumerable, RevestAccessControl, RevestReentrancyGuard { using SafeERC20 for IERC20; using ERC165Checker for address; bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes4 public constant ADDRESS_LOCK_INTERFACE_ID = type(IAddressLock).interfaceId; address immutable WETH; uint public erc20Fee = 0; // out of 1000 uint private constant erc20multiplierPrecision = 1000; uint public flatWeiFee = 0; uint private constant MAX_INT = 2**256 - 1; mapping(address => bool) private approved; /** * @dev Primary constructor to create the Revest controller contract * Grants ADMIN and MINTER_ROLE to whoever creates the contract * */ constructor(address provider, address weth) RevestAccessControl(provider) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); WETH = weth; } // PUBLIC FUNCTIONS /** * @dev creates a single time-locked NFT with <quantity> number of copies with <amount> of <asset> stored for each copy * asset - the address of the underlying ERC20 token for this bond * amount - the amount to store per NFT if multiple NFTs of this variety are being created * unlockTime - the timestamp at which this will unlock * quantity – the number of FNFTs to create with this operation */ function mintTimeLock( uint endTime, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable override returns (uint) { // Get the next id uint fnftId = getFNFTHandler().getNextId(); // Get or create lock based on time, assign lock to ID { IRevest.LockParam memory timeLock; timeLock.lockType = IRevest.LockType.TimeLock; timeLock.timeLockExpiry = endTime; getLockManager().createLock(fnftId, timeLock); } doMint(recipients, quantities, fnftId, fnftConfig, msg.value); emit FNFTTimeLockMinted(fnftConfig.asset, _msgSender(), fnftId, endTime, quantities, fnftConfig); return fnftId; } function mintValueLock( address primaryAsset, address compareTo, uint unlockValue, bool unlockRisingEdge, address oracleDispatch, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable override returns (uint) { // copy the fnftId uint fnftId = getFNFTHandler().getNextId(); // Initialize the lock structure { IRevest.LockParam memory valueLock; valueLock.lockType = IRevest.LockType.ValueLock; valueLock.valueLock.unlockRisingEdge = unlockRisingEdge; valueLock.valueLock.unlockValue = unlockValue; valueLock.valueLock.asset = primaryAsset; valueLock.valueLock.compareTo = compareTo; valueLock.valueLock.oracle = oracleDispatch; getLockManager().createLock(fnftId, valueLock); } doMint(recipients, quantities, fnftId, fnftConfig, msg.value); emit FNFTValueLockMinted(primaryAsset, _msgSender(), fnftId, compareTo, oracleDispatch, quantities, fnftConfig); return fnftId; } function mintAddressLock( address trigger, bytes memory arguments, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable override returns (uint) { uint fnftId = getFNFTHandler().getNextId(); { IRevest.LockParam memory addressLock; addressLock.addressLock = trigger; addressLock.lockType = IRevest.LockType.AddressLock; // Get or create lock based on address which can trigger unlock, assign lock to ID uint lockId = getLockManager().createLock(fnftId, addressLock); if(trigger.supportsInterface(ADDRESS_LOCK_INTERFACE_ID)) { IAddressLock(trigger).createLock(fnftId, lockId, arguments); } } // This is a public call to a third-party contract. Must be done after everything else. // Safe for reentry doMint(recipients, quantities, fnftId, fnftConfig, msg.value); emit FNFTAddressLockMinted(fnftConfig.asset, _msgSender(), fnftId, trigger, quantities, fnftConfig); return fnftId; } function withdrawFNFT(uint fnftId, uint quantity) external override revestNonReentrant(fnftId) { address fnftHandler = addressesProvider.getRevestFNFT(); // Check if this many FNFTs exist in the first place for the given ID require(quantity <= IFNFTHandler(fnftHandler).getSupply(fnftId), "E022"); // Check if the user making this call has this many FNFTs to cash in require(quantity <= IFNFTHandler(fnftHandler).getBalance(_msgSender(), fnftId), "E006"); // Check if the user making this call has any FNFT's require(IFNFTHandler(fnftHandler).getBalance(_msgSender(), fnftId) > 0, "E032"); IRevest.LockType lockType = getLockManager().lockTypes(fnftId); require(lockType != IRevest.LockType.DoesNotExist, "E007"); require(getLockManager().unlockFNFT(fnftId, _msgSender()), lockType == IRevest.LockType.TimeLock ? "E010" : lockType == IRevest.LockType.ValueLock ? "E018" : "E019"); // Burn the FNFTs being exchanged burn(_msgSender(), fnftId, quantity); getTokenVault().withdrawToken(fnftId, quantity, _msgSender()); emit FNFTWithdrawn(_msgSender(), fnftId, quantity); } function unlockFNFT(uint fnftId) external override { // Works for value locks or time locks IRevest.LockType lock = getLockManager().lockTypes(fnftId); require(lock == IRevest.LockType.AddressLock || lock == IRevest.LockType.ValueLock, "E008"); require(getLockManager().unlockFNFT(fnftId, _msgSender()), "E056"); emit FNFTUnlocked(_msgSender(), fnftId); } function splitFNFT( uint fnftId, uint[] memory proportions, uint quantity ) external override returns (uint[] memory) { // Check if the user making this call has ANY FNFT's require(getFNFTHandler().getBalance(_msgSender(), fnftId) > 0, "E032"); // Checking if the FNFT is allowing splitting require(getTokenVault().getSplitsRemaining(fnftId) > 0, "E023"); uint[] memory newFNFTIds = new uint[](proportions.length); uint start = getFNFTHandler().getNextId(); uint lockId = getLockManager().fnftIdToLockId(fnftId); getFNFTHandler().burn(_msgSender(), fnftId, quantity); for(uint i = 0; i < proportions.length; i++) { newFNFTIds[i] = start + i; getFNFTHandler().mint(_msgSender(), newFNFTIds[i], quantity, ""); getLockManager().pointFNFTToLock(newFNFTIds[i], lockId); } getTokenVault().splitFNFT(fnftId, newFNFTIds, proportions, quantity); emit FNFTSplit(_msgSender(), newFNFTIds, proportions, quantity); return newFNFTIds; } /// @return the new (or reused) ID function extendFNFTMaturity( uint fnftId, uint endTime ) external returns (uint) { uint supply = getFNFTHandler().getSupply(fnftId); uint balance = getFNFTHandler().getBalance(_msgSender(), fnftId); require(fnftId < getFNFTHandler().getNextId(), "E007"); require(balance == supply, "E022"); // If it can't have its maturity extended, revert // Will also return false on non-time lock locks require(getTokenVault().getFNFT(fnftId).maturityExtension && getLockManager().lockTypes(fnftId) == IRevest.LockType.TimeLock, "E029"); // If desired maturity is below existing date, reject operation require(getLockManager().fnftIdToLock(fnftId).timeLockExpiry < endTime, "E030"); // Update the lock IRevest.LockParam memory lock; lock.lockType = IRevest.LockType.TimeLock; lock.timeLockExpiry = endTime; getLockManager().createLock(fnftId, lock); emit FNFTMaturityExtended(_msgSender(), fnftId, endTime); // Need to handle fracture into multiple FNFTs with same value as original but different locks return fnftId; } /** * Amount will be per FNFT. So total ERC20s needed is amount * quantity. * We don't charge an ETH fee on depositAdditional, but do take the erc20 percentage. * Users can deposit additional into their own * Otherwise, if not an owner, they must distribute to all FNFTs equally */ function depositAdditionalToFNFT( uint fnftId, uint amount, uint quantity ) external override returns (uint) { IRevest.FNFTConfig memory fnft = getTokenVault().getFNFT(fnftId); require(fnftId < getFNFTHandler().getNextId(), "E007"); require(fnft.isMulti, "E034"); require(fnft.depositStopTime < block.timestamp || fnft.depositStopTime == 0, "E035"); require(quantity > 0, "E070"); address vault = addressesProvider.getTokenVault(); address handler = addressesProvider.getRevestFNFT(); address lockHandler = addressesProvider.getLockManager(); bool createNewSeries = false; { uint supply = IFNFTHandler(handler).getSupply(fnftId); uint balance = IFNFTHandler(handler).getBalance(_msgSender(), fnftId); if (quantity > balance) { require(quantity == supply, "E069"); } else if (quantity < balance || balance < supply) { createNewSeries = true; } } // Transfer the ERC20 fee to the admin address, leave it at that uint totalERC20Fee = erc20Fee * quantity * amount / erc20multiplierPrecision; if(totalERC20Fee > 0) { IERC20(fnft.asset).safeTransferFrom(_msgSender(), addressesProvider.getAdmin(), totalERC20Fee); } uint lockId = ILockManager(lockHandler).fnftIdToLockId(fnftId); // Whether to split the new deposits into their own series, or to simply add to an existing series uint newFNFTId; if(createNewSeries) { // Split into a new series newFNFTId = IFNFTHandler(handler).getNextId(); ILockManager(lockHandler).pointFNFTToLock(newFNFTId, lockId); burn(_msgSender(), fnftId, quantity); IFNFTHandler(handler).mint(_msgSender(), newFNFTId, quantity, ""); } else { // Stay the same newFNFTId = 0; // Signals to handleMultipleDeposits() } // Will call updateBalance ITokenVault(vault).depositToken(fnftId, amount, quantity); // Now, we transfer to the token vault if(fnft.asset != address(0)){ IERC20(fnft.asset).safeTransferFrom(_msgSender(), vault, quantity * amount); } ITokenVault(vault).handleMultipleDeposits(fnftId, newFNFTId, fnft.depositAmount + amount); emit FNFTAddionalDeposited(_msgSender(), newFNFTId, quantity, amount); return newFNFTId; } /** * @dev Returns the cached IAddressRegistry connected to this contract **/ function getAddressesProvider() external view returns (IAddressRegistry) { return addressesProvider; } // // INTERNAL FUNCTIONS // function doMint( address[] memory recipients, uint[] memory quantities, uint fnftId, IRevest.FNFTConfig memory fnftConfig, uint weiValue ) internal { bool isSingular; uint totalQuantity = quantities[0]; { uint rec = recipients.length; uint quant = quantities.length; require(rec == quant, "recipients and quantities arrays must match"); // Calculate total quantity isSingular = rec == 1; if(!isSingular) { for(uint i = 1; i < quant; i++) { totalQuantity += quantities[i]; } } require(totalQuantity > 0, "E003"); } // Gas optimization address vault = addressesProvider.getTokenVault(); // Take fees if(weiValue > 0) { // Immediately convert all ETH to WETH IWETH(WETH).deposit{value: weiValue}(); } if(flatWeiFee > 0) { require(weiValue >= flatWeiFee, "E005"); address reward = addressesProvider.getRewardsHandler(); if(!approved[reward]) { IERC20(WETH).approve(reward, MAX_INT); approved[reward] = true; } IRewardsHandler(reward).receiveFee(WETH, flatWeiFee); } { uint totalERC20Fee = erc20Fee * totalQuantity * fnftConfig.depositAmount / erc20multiplierPrecision; if(totalERC20Fee > 0) { IERC20(fnftConfig.asset).safeTransferFrom(_msgSender(), addressesProvider.getAdmin(), totalERC20Fee); } } // If there's any leftover ETH after the flat fee, convert it to WETH weiValue -= flatWeiFee; // Convert ETH to WETH if necessary if(weiValue > 0) { // If the asset is WETH, we also enable sending ETH to pay for the tx fee. Not required though require(fnftConfig.asset == WETH, "E053"); require(weiValue >= fnftConfig.depositAmount, "E015"); } // Create the FNFT and update accounting within TokenVault ITokenVault(vault).createFNFT(fnftId, fnftConfig, totalQuantity, _msgSender()); // Now, we move the funds to token vault from the message sender if(fnftConfig.asset != address(0)){ IERC20(fnftConfig.asset).safeTransferFrom(_msgSender(), vault, totalQuantity * fnftConfig.depositAmount); } // Mint NFT // Gas optimization if(!isSingular) { getFNFTHandler().mintBatchRec(recipients, quantities, fnftId, totalQuantity, ''); } else { getFNFTHandler().mint(recipients[0], fnftId, quantities[0], ''); } } function burn( address account, uint id, uint amount ) internal { address fnftHandler = addressesProvider.getRevestFNFT(); require(IFNFTHandler(fnftHandler).getSupply(id) - amount >= 0, "E025"); IFNFTHandler(fnftHandler).burn(account, id, amount); } function setFlatWeiFee(uint wethFee) external override onlyOwner { flatWeiFee = wethFee; } function setERC20Fee(uint erc20) external override onlyOwner { erc20Fee = erc20; } function getFlatWeiFee() external view override returns (uint) { return flatWeiFee; } function getERC20Fee() external view override returns (uint) { return erc20Fee; } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable { function getRoleMember(bytes32 role, uint256 index) external view returns (address); function getRoleMemberCount(bytes32 role) external view returns (uint256); } /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Library used to query support of an interface declared via {IERC165}. * * Note that these functions return the actual result of the query: they do not * `revert` if an interface is not supported. It is up to the caller to decide * what to do in these cases. */ library ERC165Checker { // As per the EIP-165 spec, no interface should ever match 0xffffffff bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff; /** * @dev Returns true if `account` supports the {IERC165} interface, */ function supportsERC165(address account) internal view returns (bool) { // Any contract that implements ERC165 must explicitly indicate support of // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid return _supportsERC165Interface(account, type(IERC165).interfaceId) && !_supportsERC165Interface(account, _INTERFACE_ID_INVALID); } /** * @dev Returns true if `account` supports the interface defined by * `interfaceId`. Support for {IERC165} itself is queried automatically. * * See {IERC165-supportsInterface}. */ function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) { // query support of both ERC165 as per the spec and support of _interfaceId return supportsERC165(account) && _supportsERC165Interface(account, interfaceId); } /** * @dev Returns a boolean array where each value corresponds to the * interfaces passed in and whether they're supported or not. This allows * you to batch check interfaces for a contract where your expectation * is that some interfaces may not be supported. * * See {IERC165-supportsInterface}. * * _Available since v3.4._ */ function getSupportedInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool[] memory) { // an array of booleans corresponding to interfaceIds and whether they're supported or not bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length); // query support of ERC165 itself if (supportsERC165(account)) { // query support of each interface in interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]); } } return interfaceIdsSupported; } /** * @dev Returns true if `account` supports all the interfaces defined in * `interfaceIds`. Support for {IERC165} itself is queried automatically. * * Batch-querying can lead to gas savings by skipping repeated checks for * {IERC165} support. * * See {IERC165-supportsInterface}. */ function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) { // query support of ERC165 itself if (!supportsERC165(account)) { return false; } // query support of each interface in _interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { if (!_supportsERC165Interface(account, interfaceIds[i])) { return false; } } // all interfaces supported return true; } /** * @notice Query if a contract implements an interface, does not check ERC165 support * @param account The address of the contract to query for support of an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @return true if the contract at account indicates support of the interface with * identifier interfaceId, false otherwise * @dev Assumes that account contains a contract that supports ERC165, otherwise * the behavior of this method is undefined. This precondition can be checked * with {supportsERC165}. * Interface identification is specified in ERC-165. */ function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) { bytes memory encodedParams = abi.encodeWithSelector(IERC165(account).supportsInterface.selector, interfaceId); (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams); if (result.length < 32) return false; return success && abi.decode(result, (bool)); } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; interface IRevest { event FNFTTimeLockMinted( address indexed asset, address indexed from, uint indexed fnftId, uint endTime, uint[] quantities, FNFTConfig fnftConfig ); event FNFTValueLockMinted( address indexed primaryAsset, address indexed from, uint indexed fnftId, address compareTo, address oracleDispatch, uint[] quantities, FNFTConfig fnftConfig ); event FNFTAddressLockMinted( address indexed asset, address indexed from, uint indexed fnftId, address trigger, uint[] quantities, FNFTConfig fnftConfig ); event FNFTWithdrawn( address indexed from, uint indexed fnftId, uint indexed quantity ); event FNFTSplit( address indexed from, uint[] indexed newFNFTId, uint[] indexed proportions, uint quantity ); event FNFTUnlocked( address indexed from, uint indexed fnftId ); event FNFTMaturityExtended( address indexed from, uint indexed fnftId, uint indexed newExtendedTime ); event FNFTAddionalDeposited( address indexed from, uint indexed newFNFTId, uint indexed quantity, uint amount ); struct FNFTConfig { address asset; // The token being stored address pipeToContract; // Indicates if FNFT will pipe to another contract uint depositAmount; // How many tokens uint depositMul; // Deposit multiplier uint split; // Number of splits remaining uint depositStopTime; // bool maturityExtension; // Maturity extensions remaining bool isMulti; // bool nontransferrable; // False by default (transferrable) // } // Refers to the global balance for an ERC20, encompassing possibly many FNFTs struct TokenTracker { uint lastBalance; uint lastMul; } enum LockType { DoesNotExist, TimeLock, ValueLock, AddressLock } struct LockParam { address addressLock; uint timeLockExpiry; LockType lockType; ValueLock valueLock; } struct Lock { address addressLock; LockType lockType; ValueLock valueLock; uint timeLockExpiry; uint creationTime; bool unlocked; } struct ValueLock { address asset; address compareTo; address oracle; uint unlockValue; bool unlockRisingEdge; } function mintTimeLock( uint endTime, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable returns (uint); function mintValueLock( address primaryAsset, address compareTo, uint unlockValue, bool unlockRisingEdge, address oracleDispatch, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable returns (uint); function mintAddressLock( address trigger, bytes memory arguments, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable returns (uint); function withdrawFNFT(uint tokenUID, uint quantity) external; function unlockFNFT(uint tokenUID) external; function splitFNFT( uint fnftId, uint[] memory proportions, uint quantity ) external returns (uint[] memory newFNFTIds); function depositAdditionalToFNFT( uint fnftId, uint amount, uint quantity ) external returns (uint); function setFlatWeiFee(uint wethFee) external; function setERC20Fee(uint erc20) external; function getFlatWeiFee() external returns (uint); function getERC20Fee() external returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; /** * @title Provider interface for Revest FNFTs * @dev * */ interface IAddressRegistry { function initialize( address lock_manager_, address liquidity_, address revest_token_, address token_vault_, address revest_, address fnft_, address metadata_, address admin_, address rewards_ ) external; function getAdmin() external view returns (address); function setAdmin(address admin) external; function getLockManager() external view returns (address); function setLockManager(address manager) external; function getTokenVault() external view returns (address); function setTokenVault(address vault) external; function getRevestFNFT() external view returns (address); function setRevestFNFT(address fnft) external; function getMetadataHandler() external view returns (address); function setMetadataHandler(address metadata) external; function getRevest() external view returns (address); function setRevest(address revest) external; function getDEX(uint index) external view returns (address); function setDex(address dex) external; function getRevestToken() external view returns (address); function setRevestToken(address token) external; function getRewardsHandler() external view returns(address); function setRewardsHandler(address esc) external; function getAddress(bytes32 id) external view returns (address); function getLPs() external view returns (address); function setLPs(address liquidToken) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRevest.sol"; interface ILockManager { function createLock(uint fnftId, IRevest.LockParam memory lock) external returns (uint); function getLock(uint lockId) external view returns (IRevest.Lock memory); function fnftIdToLockId(uint fnftId) external view returns (uint); function fnftIdToLock(uint fnftId) external view returns (IRevest.Lock memory); function pointFNFTToLock(uint fnftId, uint lockId) external; function lockTypes(uint tokenId) external view returns (IRevest.LockType); function unlockFNFT(uint fnftId, address sender) external returns (bool); function getLockMaturity(uint fnftId) external view returns (bool); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; interface IInterestHandler { function registerDeposit(uint fnftId) external; function getPrincipal(uint fnftId) external view returns (uint); function getInterest(uint fnftId) external view returns (uint); function getAmountToWithdraw(uint fnftId) external view returns (uint); function getUnderlyingToken(uint fnftId) external view returns (address); function getUnderlyingValue(uint fnftId) external view returns (uint); //These methods exist for external operations function getPrincipalDetail(uint historic, uint amount, address asset) external view returns (uint); function getInterestDetail(uint historic, uint amount, address asset) external view returns (uint); function getUnderlyingTokenDetail(address asset) external view returns (address); function getInterestRate(address asset) external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRevest.sol"; interface ITokenVault { function createFNFT( uint fnftId, IRevest.FNFTConfig memory fnftConfig, uint quantity, address from ) external; function withdrawToken( uint fnftId, uint quantity, address user ) external; function depositToken( uint fnftId, uint amount, uint quantity ) external; function cloneFNFTConfig(IRevest.FNFTConfig memory old) external returns (IRevest.FNFTConfig memory); function mapFNFTToToken( uint fnftId, IRevest.FNFTConfig memory fnftConfig ) external; function handleMultipleDeposits( uint fnftId, uint newFNFTId, uint amount ) external; function splitFNFT( uint fnftId, uint[] memory newFNFTIds, uint[] memory proportions, uint quantity ) external; function getFNFT(uint fnftId) external view returns (IRevest.FNFTConfig memory); function getFNFTCurrentValue(uint fnftId) external view returns (uint); function getNontransferable(uint fnftId) external view returns (bool); function getSplitsRemaining(uint fnftId) external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; interface IRewardsHandler { struct UserBalance { uint allocPoint; // Allocation points uint lastMul; } function receiveFee(address token, uint amount) external; function updateLPShares(uint fnftId, uint newShares) external; function updateBasicShares(uint fnftId, uint newShares) external; function getAllocPoint(uint fnftId, address token, bool isBasic) external view returns (uint); function claimRewards(uint fnftId, address caller) external returns (uint); function setStakingContract(address stake) external; function getRewards(uint fnftId, address token) external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; interface IOracleDispatch { // Attempts to update oracle and returns true if successful. Returns true if update unnecessary function updateOracle(address asset, address compareTo) external returns (bool); // Will return true if oracle does not need to be poked or if poke was successful function pokeOracle(address asset, address compareTo) external returns (bool); // Will return true if oracle already initialized, if oracle has successfully been initialized by this call, // or if oracle does not need to be initialized function initializeOracle(address asset, address compareTo) external returns (bool); // Gets the value of the asset // Oracle = the oracle address in specific. Optional parameter // Inverted pair = whether or not this call represents an inversion of typical type (ERC20 underlying, USDC compareTo) to (USDC underlying, ERC20 compareTo) // Must take inverse of value in this case to get REAL value function getValueOfAsset( address asset, address compareTo, bool risingEdge ) external view returns (uint); // Does this oracle need to be updated prior to our reading the price? // Return false if we are within desired time period // Or if this type of oracle does not require updates function oracleNeedsUpdates(address asset, address compareTo) external view returns (bool); // Does this oracle need to be poked prior to update and withdrawal? function oracleNeedsPoking(address asset, address compareTo) external view returns (bool); function oracleNeedsInitialization(address asset, address compareTo) external view returns (bool); //Only ever called if oracle needs initialization function canOracleBeCreatedForRoute(address asset, address compareTo) external view returns (bool); // How long to wait after poking the oracle before you can update it again and withdraw function getTimePeriodAfterPoke(address asset, address compareTo) external view returns (uint); // Returns a direct reference to the address that the specific contract for this pair is registered at function getOracleForPair(address asset, address compareTo) external view returns (address); // Returns a boolean if this oracle can provide data for the requested pair, used during FNFT creation function getPairHasOracle(address asset, address compareTo) external view returns (bool); //Returns the instantaneous price of asset and the decimals for that price function getInstantPrice(address asset, address compareTo) external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRegistryProvider.sol"; import '@openzeppelin/contracts/utils/introspection/IERC165.sol'; /** * @title Provider interface for Revest FNFTs */ interface IOutputReceiver is IRegistryProvider, IERC165 { function receiveRevestOutput( uint fnftId, address asset, address payable owner, uint quantity ) external; function getCustomMetadata(uint fnftId) external view returns (string memory); function getValue(uint fnftId) external view returns (uint); function getAsset(uint fnftId) external view returns (address); function getOutputDisplayValues(uint fnftId) external view returns (bytes memory); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRegistryProvider.sol"; import '@openzeppelin/contracts/utils/introspection/IERC165.sol'; /** * @title Provider interface for Revest FNFTs * @dev Address locks MUST be non-upgradeable to be considered for trusted status * @author Revest */ interface IAddressLock is IRegistryProvider, IERC165{ /// Creates a lock to the specified lockID /// @param fnftId the fnftId to map this lock to. Not recommended for typical locks, as it will break on splitting /// @param lockId the lockId to map this lock to. Recommended uint for storing references to lock configurations /// @param arguments an abi.encode() bytes array. Allows frontend to encode and pass in an arbitrary set of parameters /// @dev creates a lock for the specified lockId. Will be called during the creation process for address locks when the address /// of a contract implementing this interface is passed in as the "trigger" address for minting an address lock. The bytes /// representing any parameters this lock requires are passed through to this method, where abi.decode must be call on them function createLock(uint fnftId, uint lockId, bytes memory arguments) external; /// Updates a lock at the specified lockId /// @param fnftId the fnftId that can map to a lock config stored in implementing contracts. Not recommended, as it will break on splitting /// @param lockId the lockId that maps to the lock config which should be updated. Recommended for retrieving references to lock configurations /// @param arguments an abi.encode() bytes array. Allows frontend to encode and pass in an arbitrary set of parameters /// @dev updates a lock for the specified lockId. Will be called by the frontend from the information section if an update is requested /// can further accept and decode parameters to use in modifying the lock's config or triggering other actions /// such as triggering an on-chain oracle to update function updateLock(uint fnftId, uint lockId, bytes memory arguments) external; /// Whether or not the lock can be unlocked /// @param fnftId the fnftId that can map to a lock config stored in implementing contracts. Not recommended, as it will break on splitting /// @param lockId the lockId that maps to the lock config which should be updated. Recommended for retrieving references to lock configurations /// @dev this method is called during the unlocking and withdrawal processes by the Revest contract - it is also used by the frontend /// if this method is returning true and someone attempts to unlock or withdraw from an FNFT attached to the requested lock, the request will succeed /// @return whether or not this lock may be unlocked function isUnlockable(uint fnftId, uint lockId) external view returns (bool); /// Provides an encoded bytes arary that represents values this lock wants to display on the info screen /// Info to decode these values is provided in the metadata file /// @param fnftId the fnftId that can map to a lock config stored in implementing contracts. Not recommended, as it will break on splitting /// @param lockId the lockId that maps to the lock config which should be updated. Recommended for retrieving references to lock configurations /// @dev used by the frontend to fetch on-chain data on the state of any given lock /// @return a bytes array that represents the result of calling abi.encode on values which the developer wants to appear on the frontend function getDisplayValues(uint fnftId, uint lockId) external view returns (bytes memory); /// Maps to a URL, typically IPFS-based, that contains information on how to encode and decode paramters sent to and from this lock /// Please see additional documentation for JSON config info /// @dev this method will be called by the frontend only but is crucial to properly implement for proper minting and information workflows /// @return a URL to the JSON file containing this lock's metadata schema function getMetadata() external view returns (string memory); /// Whether or not this lock will need updates and should display the option for them /// @dev this will be called by the frontend to determine if update inputs and buttons should be displayed /// @return whether or not the locks created by this contract will need updates function needsUpdate() external view returns (bool); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/IAddressRegistry.sol"; import "../interfaces/ILockManager.sol"; import "../interfaces/IRewardsHandler.sol"; import "../interfaces/ITokenVault.sol"; import "../interfaces/IRevestToken.sol"; import "../interfaces/IFNFTHandler.sol"; import "../lib/uniswap/IUniswapV2Factory.sol"; import "../interfaces/IInterestHandler.sol"; contract RevestAccessControl is Ownable { IAddressRegistry internal addressesProvider; address addressProvider; constructor(address provider) Ownable() { addressesProvider = IAddressRegistry(provider); addressProvider = provider; } modifier onlyRevest() { require(_msgSender() != address(0), "E004"); require( _msgSender() == addressesProvider.getLockManager() || _msgSender() == addressesProvider.getRewardsHandler() || _msgSender() == addressesProvider.getTokenVault() || _msgSender() == addressesProvider.getRevest() || _msgSender() == addressesProvider.getRevestToken(), "E016" ); _; } modifier onlyRevestController() { require(_msgSender() != address(0), "E004"); require(_msgSender() == addressesProvider.getRevest(), "E017"); _; } modifier onlyTokenVault() { require(_msgSender() != address(0), "E004"); require(_msgSender() == addressesProvider.getTokenVault(), "E017"); _; } function setAddressRegistry(address registry) external onlyOwner { addressesProvider = IAddressRegistry(registry); } function getAdmin() internal view returns (address) { return addressesProvider.getAdmin(); } function getRevest() internal view returns (IRevest) { return IRevest(addressesProvider.getRevest()); } function getRevestToken() internal view returns (IRevestToken) { return IRevestToken(addressesProvider.getRevestToken()); } function getLockManager() internal view returns (ILockManager) { return ILockManager(addressesProvider.getLockManager()); } function getTokenVault() internal view returns (ITokenVault) { return ITokenVault(addressesProvider.getTokenVault()); } function getUniswapV2() internal view returns (IUniswapV2Factory) { return IUniswapV2Factory(addressesProvider.getDEX(0)); } function getFNFTHandler() internal view returns (IFNFTHandler) { return IFNFTHandler(addressesProvider.getRevestFNFT()); } function getRewardsHandler() internal view returns (IRewardsHandler) { return IRewardsHandler(addressesProvider.getRewardsHandler()); } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract RevestReentrancyGuard is ReentrancyGuard { // Used to avoid reentrancy uint private constant MAX_INT = 0xFFFFFFFFFFFFFFFF; uint private currentId = MAX_INT; modifier revestNonReentrant(uint fnftId) { // On the first call to nonReentrant, _notEntered will be true require(fnftId != currentId, "E052"); // Any calls to nonReentrant after this point will fail currentId = fnftId; _; currentId = MAX_INT; } }
// SPDX-License-Identifier: UNLICENSED // This contract locks uniswap v2 liquidity tokens. Used to give investors peace of mind a token team has locked liquidity // and that the univ2 tokens cannot be removed from uniswap until the specified unlock date has been reached. pragma solidity ^0.8.0; interface IUnicryptV2Locker { event onDeposit(address lpToken, address user, uint amount, uint lockDate, uint unlockDate); event onWithdraw(address lpToken, uint amount); /** * @notice Creates a new lock * @param _lpToken the univ2 token address * @param _amount amount of LP tokens to lock * @param _unlock_date the unix timestamp (in seconds) until unlock * @param _referral the referrer address if any or address(0) for none * @param _fee_in_eth fees can be paid in eth or in a secondary token such as UNCX with a discount on univ2 tokens * @param _withdrawer the user who can withdraw liquidity once the lock expires. */ function lockLPToken( address _lpToken, uint _amount, uint _unlock_date, address payable _referral, bool _fee_in_eth, address payable _withdrawer ) external payable; /** * @notice extend a lock with a new unlock date, _index and _lockID ensure the correct lock is changed * this prevents errors when a user performs multiple tx per block possibly with varying gas prices */ function relock( address _lpToken, uint _index, uint _lockID, uint _unlock_date ) external; /** * @notice withdraw a specified amount from a lock. _index and _lockID ensure the correct lock is changed * this prevents errors when a user performs multiple tx per block possibly with varying gas prices */ function withdraw( address _lpToken, uint _index, uint _lockID, uint _amount ) external; /** * @notice increase the amount of tokens per a specific lock, this is preferable to creating a new lock, less fees, and faster loading on our live block explorer */ function incrementLock( address _lpToken, uint _index, uint _lockID, uint _amount ) external; /** * @notice split a lock into two seperate locks, useful when a lock is about to expire and youd like to relock a portion * and withdraw a smaller portion */ function splitLock( address _lpToken, uint _index, uint _lockID, uint _amount ) external payable; /** * @notice transfer a lock to a new owner, e.g. presale project -> project owner * CAN USE TO MIGRATE UNICRYPT LOCKS TO OUR PLATFORM * Must be called by the owner of the token */ function transferLockOwnership( address _lpToken, uint _index, uint _lockID, address payable _newOwner ) external; /** * @notice migrates liquidity to uniswap v3 */ function migrate( address _lpToken, uint _index, uint _lockID, uint _amount ) external; function getNumLocksForToken(address _lpToken) external view returns (uint); function getNumLockedTokens() external view returns (uint); function getLockedTokenAtIndex(uint _index) external view returns (address); // user functions function getUserNumLockedTokens(address _user) external view returns (uint); function getUserLockedTokenAtIndex(address _user, uint _index) external view returns (address); function getUserNumLocksForToken(address _user, address _lpToken) external view returns (uint); function getUserLockForTokenAtIndex( address _user, address _lpToken, uint _index ) external view returns ( uint, uint, uint, uint, uint, address ); function tokenLocks(address asset, uint _lockID) external returns ( uint lockDate, uint amount, uint initialAmount, uint unlockDate, uint lockID, address owner ); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; interface IWETH { function deposit() external payable; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "./interfaces/IRevest.sol"; import "./interfaces/IAddressRegistry.sol"; import "./interfaces/ILockManager.sol"; import "./interfaces/ITokenVault.sol"; import "./interfaces/IAddressLock.sol"; import "./utils/RevestAccessControl.sol"; import "./interfaces/IFNFTHandler.sol"; import "./interfaces/IMetadataHandler.sol"; contract FNFTHandler is ERC1155, AccessControl, RevestAccessControl, IFNFTHandler { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); mapping(uint => uint) public supply; uint public fnftsCreated = 0; /** * @dev Primary constructor to create an instance of NegativeEntropy * Grants ADMIN and MINTER_ROLE to whoever creates the contract */ constructor(address provider) ERC1155("") RevestAccessControl(provider) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override (AccessControl, ERC1155) returns (bool) { return super.supportsInterface(interfaceId); } function mint(address account, uint id, uint amount, bytes memory data) external override onlyRevestController { supply[id] += amount; _mint(account, id, amount, data); fnftsCreated += 1; } function mintBatchRec(address[] calldata recipients, uint[] calldata quantities, uint id, uint newSupply, bytes memory data) external override onlyRevestController { supply[id] += newSupply; for(uint i = 0; i < quantities.length; i++) { _mint(recipients[i], id, quantities[i], data); } fnftsCreated += 1; } function mintBatch(address to, uint[] memory ids, uint[] memory amounts, bytes memory data) external override onlyRevestController { _mintBatch(to, ids, amounts, data); } function setURI(string memory newuri) external override onlyRevestController { _setURI(newuri); } function burn(address account, uint id, uint amount) external override onlyRevestController { supply[id] -= amount; _burn(account, id, amount); } function burnBatch(address account, uint[] memory ids, uint[] memory amounts) external override onlyRevestController { _burnBatch(account, ids, amounts); } function getBalance(address account, uint id) external view override returns (uint) { return balanceOf(account, id); } function getSupply(uint fnftId) public view override returns (uint) { return supply[fnftId]; } function getNextId() public view override returns (uint) { return fnftsCreated; } // OVERIDDEN ERC-1155 METHODS function _beforeTokenTransfer( address operator, address from, address to, uint[] memory ids, uint[] memory amounts, bytes memory data ) internal override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); // Loop because all batch transfers must be checked // Will only execute once on singular transfer if (from != address(0) && to != address(0)) { address vault = addressesProvider.getTokenVault(); bool canTransfer = !ITokenVault(vault).getNontransferable(ids[0]); // Only check if not from minter // And not being burned if(ids.length > 1) { uint iterator = 0; while (canTransfer && iterator < ids.length) { canTransfer = !ITokenVault(vault).getNontransferable(ids[iterator]); iterator += 1; } } require(canTransfer, "E046"); } } function uri(uint fnftId) public view override returns (string memory) { return IMetadataHandler(addressesProvider.getMetadataHandler()).getTokenURI(fnftId); } function renderTokenURI( uint tokenId, address owner ) public view returns ( string memory baseRenderURI, string[] memory parameters ) { return IMetadataHandler(addressesProvider.getMetadataHandler()).getRenderTokenURI(tokenId, owner); } }
// SPDX-License-Identifier: MIT 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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @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 pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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 pragma solidity ^0.8.0; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT 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 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT 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: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "../interfaces/IAddressRegistry.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/ILockManager.sol"; import "../interfaces/ITokenVault.sol"; import "../lib/uniswap/IUniswapV2Factory.sol"; interface IRegistryProvider { function setAddressRegistry(address revest) external; function getAddressRegistry() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../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. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @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); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IRevestToken is IERC20 { }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; interface IFNFTHandler { function mint(address account, uint id, uint amount, bytes memory data) external; function mintBatchRec(address[] memory recipients, uint[] memory quantities, uint id, uint newSupply, bytes memory data) external; function mintBatch(address to, uint[] memory ids, uint[] memory amounts, bytes memory data) external; function setURI(string memory newuri) external; function burn(address account, uint id, uint amount) external; function burnBatch(address account, uint[] memory ids, uint[] memory amounts) external; function getBalance(address tokenHolder, uint id) external view returns (uint); function getSupply(uint fnftId) external view returns (uint); function getNextId() external view returns (uint); }
// SPDX-License-Identifier: MIT 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 make 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 pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `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 memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - 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[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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 _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver(to).onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; interface IMetadataHandler { function getTokenURI(uint fnftId) external view returns (string memory ); function setTokenURI(uint fnftId, string memory _uri) external; function getRenderTokenURI( uint tokenId, address owner ) external view returns ( string memory baseRenderURI, string[] memory parameters ); function setRenderTokenURI( uint tokenID, string memory baseRenderURI ) external; }
// SPDX-License-Identifier: MIT 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 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. 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. 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 pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
{ "optimizer": { "enabled": true, "runs": 10000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"address","name":"weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"newFNFTId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"quantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FNFTAddionalDeposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"},{"indexed":false,"internalType":"address","name":"trigger","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"indexed":false,"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"FNFTAddressLockMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newExtendedTime","type":"uint256"}],"name":"FNFTMaturityExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256[]","name":"newFNFTId","type":"uint256[]"},{"indexed":true,"internalType":"uint256[]","name":"proportions","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"FNFTSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"indexed":false,"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"FNFTTimeLockMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"}],"name":"FNFTUnlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"primaryAsset","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"},{"indexed":false,"internalType":"address","name":"compareTo","type":"address"},{"indexed":false,"internalType":"address","name":"oracleDispatch","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"indexed":false,"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"FNFTValueLockMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"fnftId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"FNFTWithdrawn","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":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"ADDRESS_LOCK_INTERFACE_ID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"depositAdditionalToFNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"erc20Fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"extendFNFTMaturity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flatWeiFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAddressesProvider","outputs":[{"internalType":"contract IAddressRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getERC20Fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFlatWeiFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"trigger","type":"address"},{"internalType":"bytes","name":"arguments","type":"bytes"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"mintAddressLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"mintTimeLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"primaryAsset","type":"address"},{"internalType":"address","name":"compareTo","type":"address"},{"internalType":"uint256","name":"unlockValue","type":"uint256"},{"internalType":"bool","name":"unlockRisingEdge","type":"bool"},{"internalType":"address","name":"oracleDispatch","type":"address"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"components":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"address","name":"pipeToContract","type":"address"},{"internalType":"uint256","name":"depositAmount","type":"uint256"},{"internalType":"uint256","name":"depositMul","type":"uint256"},{"internalType":"uint256","name":"split","type":"uint256"},{"internalType":"uint256","name":"depositStopTime","type":"uint256"},{"internalType":"bool","name":"maturityExtension","type":"bool"},{"internalType":"bool","name":"isMulti","type":"bool"},{"internalType":"bool","name":"nontransferrable","type":"bool"}],"internalType":"struct IRevest.FNFTConfig","name":"fnftConfig","type":"tuple"}],"name":"mintValueLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"registry","type":"address"}],"name":"setAddressRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"erc20","type":"uint256"}],"name":"setERC20Fee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"wethFee","type":"uint256"}],"name":"setFlatWeiFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"},{"internalType":"uint256[]","name":"proportions","type":"uint256[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"splitFNFT","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":[{"internalType":"uint256","name":"fnftId","type":"uint256"}],"name":"unlockFNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"withdrawFNFT","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526001600160401b03600655600060075560006008553480156200002657600080fd5b50604051620059a7380380620059a78339810160408190526200004991620002af565b816200005533620000db565b600380546001600160a01b039092166001600160a01b03199283168117909155600480549092161790556001600555620000986000620000923390565b6200012d565b620000c47f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200012d565b60601b6001600160601b03191660805250620002e6565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200014482826200017060201b6200304e1760201c565b60008281526001602090815260409091206200016b9183906200305c62000180821b17901c565b505050565b6200017c8282620001a0565b5050565b600062000197836001600160a01b03841662000240565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200017c576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001fc3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205462000289575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200019a565b5060006200019a565b80516001600160a01b0381168114620002aa57600080fd5b919050565b60008060408385031215620002c2578182fd5b620002cd8362000292565b9150620002dd6020840162000292565b90509250929050565b60805160601c61568d6200031a6000396000818161341f01528181613605015281816136f701526137bb015261568d6000f3fe6080604052600436106101cd5760003560e01c806391d14854116100f7578063ca15c87311610095578063f2465f0911610064578063f2465f091461056f578063f2fde38b1461058f578063fccc19d0146105af578063fe65acfe146105dc57600080fd5b8063ca15c873146104e6578063d547741f14610506578063e63ab1e914610526578063ecea07d81461055a57600080fd5b8063a217fddf116100d1578063a217fddf14610439578063b3f9ff191461044e578063bc2ab8ce146104b3578063bdb132d5146104d357600080fd5b806391d14854146103bf57806393a9003c14610403578063974ffdf71461042357600080fd5b806336568abe1161016f5780635dcb7ab21161013e5780635dcb7ab214610338578063715018a6146103585780638da5cb5b1461036d5780639010d07c1461039f57600080fd5b806336568abe146102d057806342de99fe146102f057806358efe201146103055780635a7c08f01461032557600080fd5b806322caa234116101ab57806322caa2341461023e578063248a9ca31461026057806327c7812c146102905780632f2ff15d146102b057600080fd5b806301ffc9a7146101d257806302e236bc1461020757806307d7fb9a14610228575b600080fd5b3480156101de57600080fd5b506101f26101ed366004614ce1565b6105fa565b60405190151581526020015b60405180910390f35b61021a610215366004614b44565b610656565b6040519081526020016101fe565b34801561023457600080fd5b5061021a60075481565b34801561024a57600080fd5b5061025e610259366004614c79565b6108e3565b005b34801561026c57600080fd5b5061021a61027b366004614c79565b60009081526020819052604090206001015490565b34801561029c57600080fd5b5061025e6102ab366004614a45565b610b3e565b3480156102bc57600080fd5b5061025e6102cb366004614c91565b610bd2565b3480156102dc57600080fd5b5061025e6102eb366004614c91565b610bf9565b3480156102fc57600080fd5b5060085461021a565b34801561031157600080fd5b5061025e610320366004614c79565b610c1b565b61021a610333366004614ee8565b610c7a565b34801561034457600080fd5b5061021a610353366004614fb3565b610e49565b34801561036457600080fd5b5061025e6118ac565b34801561037957600080fd5b506002546001600160a01b03165b6040516001600160a01b0390911681526020016101fe565b3480156103ab57600080fd5b506103876103ba366004614cc0565b611912565b3480156103cb57600080fd5b506101f26103da366004614c91565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561040f57600080fd5b5061021a61041e366004614cc0565b61192a565b34801561042f57600080fd5b5061021a60085481565b34801561044557600080fd5b5061021a600081565b34801561045a57600080fd5b506104827f3f8f47e80000000000000000000000000000000000000000000000000000000081565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101fe565b3480156104bf57600080fd5b5061025e6104ce366004614c79565b611efd565b61021a6104e1366004614a7d565b611f5c565b3480156104f257600080fd5b5061021a610501366004614c79565b612164565b34801561051257600080fd5b5061025e610521366004614c91565b61217b565b34801561053257600080fd5b5061021a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b34801561056657600080fd5b5060075461021a565b34801561057b57600080fd5b5061025e61058a366004614cc0565b612185565b34801561059b57600080fd5b5061025e6105aa366004614a45565b612900565b3480156105bb57600080fd5b506105cf6105ca366004614f65565b6129e2565b6040516101fe9190615297565b3480156105e857600080fd5b506003546001600160a01b0316610387565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f000000000000000000000000000000000000000000000000000000001480610650575061065082613071565b92915050565b600080610661613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b15801561069957600080fd5b505afa1580156106ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d19190614ed0565b905061072260408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001600160a01b038816815260036040820152600061073f6131a3565b6001600160a01b031663dd6aa4cf84846040518363ffffffff1660e01b815260040161076c929190615349565b602060405180830381600087803b15801561078657600080fd5b505af115801561079a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107be9190614ed0565b90506107f36001600160a01b038a167f3f8f47e800000000000000000000000000000000000000000000000000000000613201565b15610874576040517f1c8478160000000000000000000000000000000000000000000000000000000081526001600160a01b038a1690631c8478169061084190869085908d906004016153e0565b600060405180830381600087803b15801561085b57600080fd5b505af115801561086f573d6000803e3d6000fd5b505050505b5050610883858583863461321d565b80336001600160a01b031684600001516001600160a01b03167f4ae21494ad3e589ccc04df1bff8f9eb5dc6b6e11ad0ebd2dba2cf5e76eaf99e68a88886040516108cf939291906151e8565b60405180910390a490505b95945050505050565b60006108ed6131a3565b6001600160a01b031663fc9ec25d836040518263ffffffff1660e01b815260040161091a91815260200190565b60206040518083038186803b15801561093257600080fd5b505afa158015610946573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096a9190614d21565b9050600381600381111561098e57634e487b7160e01b600052602160045260246000fd5b14806109b9575060028160038111156109b757634e487b7160e01b600052602160045260246000fd5b145b610a105760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303800000000000000000000000000000000000000000000000000000000604082015260600190565b60405180910390fd5b610a186131a3565b6001600160a01b031663fb68480583336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526001600160a01b03166024820152604401602060405180830381600087803b158015610a8757600080fd5b505af1158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf9190614c5d565b610b0d5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530353600000000000000000000000000000000000000000000000000000000604082015260600190565b604051829033907f11a58cb8f90fd3e7ea138c2320c5a4ccd5a9317f2599991807e69647c00c3c3b90600090a35050565b6002546001600160a01b03163314610b985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a07565b600380547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610bdc8282613ac5565b6000828152600160205260409020610bf4908261305c565b505050565b610c038282613aeb565b6000828152600160205260409020610bf49082613b73565b6002546001600160a01b03163314610c755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a07565b600855565b600080610c85613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b158015610cbd57600080fd5b505afa158015610cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf59190614ed0565b9050610d4660408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001604082015260208101879052610d5c6131a3565b6001600160a01b031663dd6aa4cf83836040518363ffffffff1660e01b8152600401610d89929190615349565b602060405180830381600087803b158015610da357600080fd5b505af1158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb9190614ed0565b5050610dea858583863461321d565b80336001600160a01b031684600001516001600160a01b03167f17cd459969a386aa6bf71b546af420a11ab0c72b7cd33a2186c67ab60467e7ce898888604051610e36939291906152fa565b60405180910390a490505b949350505050565b600080610e54613b88565b6001600160a01b031663522f9b37866040518263ffffffff1660e01b8152600401610e8191815260200190565b6101206040518083038186803b158015610e9a57600080fd5b505afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed29190614d3b565b9050610edc613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b158015610f1457600080fd5b505afa158015610f28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4c9190614ed0565b8510610f9c5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b8060e00151610fef5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530333400000000000000000000000000000000000000000000000000000000604082015260600190565b428160a001511080611003575060a0810151155b6110515760405162461bcd60e51b8152600401610a079060208082526004908201527f4530333500000000000000000000000000000000000000000000000000000000604082015260600190565b600083116110a35760405162461bcd60e51b8152600401610a079060208082526004908201527f4530373000000000000000000000000000000000000000000000000000000000604082015260600190565b600354604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af916004808301926020929190829003018186803b15801561110157600080fd5b505afa158015611115573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111399190614a61565b90506000600360009054906101000a90046001600160a01b03166001600160a01b031663d59e296e6040518163ffffffff1660e01b815260040160206040518083038186803b15801561118b57600080fd5b505afa15801561119f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c39190614a61565b90506000600360009054906101000a90046001600160a01b03166001600160a01b031663035d0c696040518163ffffffff1660e01b815260040160206040518083038186803b15801561121557600080fd5b505afa158015611229573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124d9190614a61565b9050600080836001600160a01b031663f77ee79d8b6040518263ffffffff1660e01b815260040161128091815260200190565b60206040518083038186803b15801561129857600080fd5b505afa1580156112ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d09190614ed0565b905060006001600160a01b038516632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018e905260440160206040518083038186803b15801561134257600080fd5b505afa158015611356573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137a9190614ed0565b9050808911156113da578189146113d55760405162461bcd60e51b8152600401610a079060208082526004908201527f4530363900000000000000000000000000000000000000000000000000000000604082015260600190565b6113f1565b808910806113e757508181105b156113f157600192505b505060006103e88989600754611407919061551a565b611411919061551a565b61141b91906154fa565b905080156114c1576114c1335b600360009054906101000a90046001600160a01b03166001600160a01b0316636e9960c36040518163ffffffff1660e01b815260040160206040518083038186803b15801561147657600080fd5b505afa15801561148a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ae9190614a61565b88516001600160a01b0316919084613be6565b6040517f29029c16000000000000000000000000000000000000000000000000000000008152600481018b90526000906001600160a01b038516906329029c169060240160206040518083038186803b15801561151d57600080fd5b505afa158015611531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115559190614ed0565b90506000831561170057856001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b15801561159857600080fd5b505afa1580156115ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d09190614ed0565b6040517fd7f9220500000000000000000000000000000000000000000000000000000000815260048101829052602481018490529091506001600160a01b0386169063d7f9220590604401600060405180830381600087803b15801561163557600080fd5b505af1158015611649573d6000803e3d6000fd5b5050505061165e6116573390565b8d8c613c74565b6001600160a01b03861663731133e9336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b03909116600482015260248101849052604481018d9052608060648201526000608482015260a401600060405180830381600087803b1580156116e357600080fd5b505af11580156116f7573d6000803e3d6000fd5b50505050611704565b5060005b6040517fa3606b90000000000000000000000000000000000000000000000000000000008152600481018d9052602481018c9052604481018b90526001600160a01b0388169063a3606b9090606401600060405180830381600087803b15801561176d57600080fd5b505af1158015611781573d6000803e3d6000fd5b505089516001600160a01b03161591506117b99050576117b933886117a68e8e61551a565b8b516001600160a01b0316929190613be6565b866001600160a01b031663375d59ba8d838e8c604001516117da91906154e2565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526044820152606401600060405180830381600087803b15801561183857600080fd5b505af115801561184c573d6000803e3d6000fd5b5050505089816118593390565b6001600160a01b03167f7079dc4a34ecf4aa63066fe944ac528604e4b89afbf0ceb16dae7f7ad611bfec8e60405161189391815260200190565b60405180910390a49750505050505050505b9392505050565b6002546001600160a01b031633146119065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a07565b6119106000613e65565b565b60008281526001602052604081206118a59083613ecf565b600080611935613108565b6001600160a01b031663f77ee79d856040518263ffffffff1660e01b815260040161196291815260200190565b60206040518083038186803b15801561197a57600080fd5b505afa15801561198e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b29190614ed0565b905060006119be613108565b6001600160a01b0316632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810188905260440160206040518083038186803b158015611a2b57600080fd5b505afa158015611a3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a639190614ed0565b9050611a6d613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b158015611aa557600080fd5b505afa158015611ab9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611add9190614ed0565b8510611b2d5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b818114611b7e5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530323200000000000000000000000000000000000000000000000000000000604082015260600190565b611b86613b88565b6001600160a01b031663522f9b37866040518263ffffffff1660e01b8152600401611bb391815260200190565b6101206040518083038186803b158015611bcc57600080fd5b505afa158015611be0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c049190614d3b565b60c001518015611cb757506001611c196131a3565b6001600160a01b031663fc9ec25d876040518263ffffffff1660e01b8152600401611c4691815260200190565b60206040518083038186803b158015611c5e57600080fd5b505afa158015611c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c969190614d21565b6003811115611cb557634e487b7160e01b600052602160045260246000fd5b145b611d055760405162461bcd60e51b8152600401610a079060208082526004908201527f4530323900000000000000000000000000000000000000000000000000000000604082015260600190565b83611d0e6131a3565b6001600160a01b0316633fe8ca06876040518263ffffffff1660e01b8152600401611d3b91815260200190565b6101406040518083038186803b158015611d5457600080fd5b505afa158015611d68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8c9190614dd4565b6060015110611ddf5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530333000000000000000000000000000000000000000000000000000000000604082015260600190565b611e2e60408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001604082015260208101859052611e446131a3565b6001600160a01b031663dd6aa4cf87836040518363ffffffff1660e01b8152600401611e71929190615349565b602060405180830381600087803b158015611e8b57600080fd5b505af1158015611e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec39190614ed0565b506040518590879033907fa4cbdeb0d65455aa896613c3372efe5b38b40a1e76ff76b00f14a789019a969990600090a45093949350505050565b6002546001600160a01b03163314611f575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a07565b600755565b600080611f67613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b158015611f9f57600080fd5b505afa158015611fb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd79190614ed0565b905061202860408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6002604082810191909152606080830180518b151560809091015280519091018b905280516001600160a01b038e811690915281518d82166020919091015290519089169101526120776131a3565b6001600160a01b031663dd6aa4cf83836040518363ffffffff1660e01b81526004016120a4929190615349565b602060405180830381600087803b1580156120be57600080fd5b505af11580156120d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f69190614ed0565b5050612105858583863461321d565b80336001600160a01b03168b6001600160a01b03167f80ed7d5bf65bfce0365fdac589476923914d111260d5736d9bef132bdb037b8f8c8a898960405161214f94939291906151ab565b60405180910390a49998505050505050505050565b600081815260016020526040812061065090613edb565b610c038282613ee5565b816006548114156121da5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530353200000000000000000000000000000000000000000000000000000000604082015260600190565b6006819055600354604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e916004808301926020929190829003018186803b15801561223d57600080fd5b505afa158015612251573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122759190614a61565b6040517ff77ee79d000000000000000000000000000000000000000000000000000000008152600481018690529091506001600160a01b0382169063f77ee79d9060240160206040518083038186803b1580156122d157600080fd5b505afa1580156122e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123099190614ed0565b83111561235a5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530323200000000000000000000000000000000000000000000000000000000604082015260600190565b6001600160a01b038116632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810187905260440160206040518083038186803b1580156123c857600080fd5b505afa1580156123dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124009190614ed0565b8311156124515760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303600000000000000000000000000000000000000000000000000000000604082015260600190565b60006001600160a01b038216632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810188905260440160206040518083038186803b1580156124c157600080fd5b505afa1580156124d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124f99190614ed0565b116125485760405162461bcd60e51b8152600401610a079060208082526004908201527f4530333200000000000000000000000000000000000000000000000000000000604082015260600190565b60006125526131a3565b6001600160a01b031663fc9ec25d866040518263ffffffff1660e01b815260040161257f91815260200190565b60206040518083038186803b15801561259757600080fd5b505afa1580156125ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cf9190614d21565b905060008160038111156125f357634e487b7160e01b600052602160045260246000fd5b14156126435760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b61264b6131a3565b6001600160a01b031663fb68480586336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526001600160a01b03166024820152604401602060405180830381600087803b1580156126ba57600080fd5b505af11580156126ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126f29190614c5d565b600182600381111561271457634e487b7160e01b600052602160045260246000fd5b146127b657600282600381111561273b57634e487b7160e01b600052602160045260246000fd5b1461277b576040518060400160405280600481526020017f45303139000000000000000000000000000000000000000000000000000000008152506127ed565b6040518060400160405280600481526020017f45303138000000000000000000000000000000000000000000000000000000008152506127ed565b6040518060400160405280600481526020017f45303130000000000000000000000000000000000000000000000000000000008152505b9061280b5760405162461bcd60e51b8152600401610a0791906152aa565b50612817338686613c74565b61281f613b88565b6001600160a01b0316635d61210d8686336040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526001600160a01b03166044820152606401600060405180830381600087803b15801561289757600080fd5b505af11580156128ab573d6000803e3d6000fd5b5050505083856128b83390565b6001600160a01b03167fbdf03104edebd5ecb0debd1ecd122dc6b2b8069b2c2618146c0afe468f53ee7160405160405180910390a4505067ffffffffffffffff600655505050565b6002546001600160a01b0316331461295a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a07565b6001600160a01b0381166129d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a07565b6129df81613e65565b50565b606060006129ee613108565b6001600160a01b0316632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810188905260440160206040518083038186803b158015612a5b57600080fd5b505afa158015612a6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a939190614ed0565b11612ae25760405162461bcd60e51b8152600401610a079060208082526004908201527f4530333200000000000000000000000000000000000000000000000000000000604082015260600190565b6000612aec613b88565b6001600160a01b03166314f487fa866040518263ffffffff1660e01b8152600401612b1991815260200190565b60206040518083038186803b158015612b3157600080fd5b505afa158015612b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b699190614ed0565b11612bb85760405162461bcd60e51b8152600401610a079060208082526004908201527f4530323300000000000000000000000000000000000000000000000000000000604082015260600190565b6000835167ffffffffffffffff811115612be257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015612c0b578160200160208202803683370190505b5090506000612c18613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b158015612c5057600080fd5b505afa158015612c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c889190614ed0565b90506000612c946131a3565b6001600160a01b03166329029c16886040518263ffffffff1660e01b8152600401612cc191815260200190565b60206040518083038186803b158015612cd957600080fd5b505afa158015612ced573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d119190614ed0565b9050612d1b613108565b6001600160a01b031663f5298aca336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018a905260448101889052606401600060405180830381600087803b158015612d9157600080fd5b505af1158015612da5573d6000803e3d6000fd5b5050505060005b8651811015612f6257612dbf81846154e2565b848281518110612ddf57634e487b7160e01b600052603260045260246000fd5b602002602001018181525050612df3613108565b6001600160a01b031663731133e933868481518110612e2257634e487b7160e01b600052603260045260246000fd5b60209081029190910101516040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039092166004830152602482015260448101899052608060648201526000608482015260a401600060405180830381600087803b158015612ea057600080fd5b505af1158015612eb4573d6000803e3d6000fd5b50505050612ec06131a3565b6001600160a01b031663d7f92205858381518110612eee57634e487b7160e01b600052603260045260246000fd5b6020026020010151846040518363ffffffff1660e01b8152600401612f1d929190918252602082015260400190565b600060405180830381600087803b158015612f3757600080fd5b505af1158015612f4b573d6000803e3d6000fd5b505050508080612f5a906155cf565b915050612dac565b50612f6b613b88565b6001600160a01b031663fbe42921888589896040518563ffffffff1660e01b8152600401612f9c94939291906152bd565b600060405180830381600087803b158015612fb657600080fd5b505af1158015612fca573d6000803e3d6000fd5b5050505085604051612fdc91906150d8565b604051809103902083604051612ff291906150d8565b60405180910390206130013390565b6001600160a01b03167fd70346cabe6f9759b2931abc6812201a51dd620ef8e80ae11efd0f50f43ced2f8860405161303b91815260200190565b60405180910390a4509095945050505050565b6130588282613f0b565b5050565b60006118a5836001600160a01b038416613fc7565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061065057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610650565b600354604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e916004808301926020929190829003018186803b15801561316657600080fd5b505afa15801561317a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061319e9190614a61565b905090565b600354604080517f035d0c6900000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163035d0c69916004808301926020929190829003018186803b15801561316657600080fd5b600061320c83614016565b80156118a557506118a5838361407a565b6000808560008151811061324157634e487b7160e01b600052603260045260246000fd5b602002602001015190506000875190506000875190508082146132cc5760405162461bcd60e51b815260206004820152602b60248201527f726563697069656e747320616e64207175616e7469746965732061727261797360448201527f206d757374206d617463680000000000000000000000000000000000000000006064820152608401610a07565b8160011493508361332b5760015b818110156133295788818151811061330257634e487b7160e01b600052603260045260246000fd5b60200260200101518461331591906154e2565b935080613321816155cf565b9150506132da565b505b6000831161337d5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303300000000000000000000000000000000000000000000000000000000604082015260600190565b5050600354604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af916004808301926020929190829003018186803b1580156133dd57600080fd5b505afa1580156133f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134159190614a61565b90508315613492577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561347857600080fd5b505af115801561348c573d6000803e3d6000fd5b50505050505b60085415613766576008548410156134ee5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303500000000000000000000000000000000000000000000000000000000604082015260600190565b600354604080517ff9f5e1dd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163f9f5e1dd916004808301926020929190829003018186803b15801561354c57600080fd5b505afa158015613560573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135849190614a61565b6001600160a01b03811660009081526009602052604090205490915060ff166136c4576040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b390604401602060405180830381600087803b15801561364957600080fd5b505af115801561365d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136819190614c5d565b506001600160a01b038116600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b6008546040517f2316ad320000000000000000000000000000000000000000000000000000000081526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482019290925290821690632316ad3290604401600060405180830381600087803b15801561374c57600080fd5b505af1158015613760573d6000803e3d6000fd5b50505050505b60006103e886604001518460075461377e919061551a565b613788919061551a565b61379291906154fa565b905080156137a3576137a333611428565b506008546137b19085615557565b93508315613896577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031685600001516001600160a01b0316146138405760405162461bcd60e51b8152600401610a079060208082526004908201527f4530353300000000000000000000000000000000000000000000000000000000604082015260600190565b84604001518410156138965760405162461bcd60e51b8152600401610a079060208082526004908201527f4530313500000000000000000000000000000000000000000000000000000000604082015260600190565b6040517f8717293d0000000000000000000000000000000000000000000000000000000081526001600160a01b03821690638717293d906138e1908990899087903390600401615314565b600060405180830381600087803b1580156138fb57600080fd5b505af115801561390f573d6000803e3d6000fd5b505086516001600160a01b031615915061394d90505761394d338287604001518561393a919061551a565b88516001600160a01b0316929190613be6565b826139c25761395a613108565b6001600160a01b0316639a46cd5d898989866040518563ffffffff1660e01b815260040161398b949392919061521b565b600060405180830381600087803b1580156139a557600080fd5b505af11580156139b9573d6000803e3d6000fd5b50505050613abb565b6139ca613108565b6001600160a01b031663731133e9896000815181106139f957634e487b7160e01b600052603260045260246000fd5b6020026020010151888a600081518110613a2357634e487b7160e01b600052603260045260246000fd5b60209081029190910101516040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b03909316600484015260248301919091526044820152608060648201526000608482015260a401600060405180830381600087803b158015613aa257600080fd5b505af1158015613ab6573d6000803e3d6000fd5b505050505b5050505050505050565b600082815260208190526040902060010154613ae181336141a9565b610bf48383613f0b565b6001600160a01b0381163314613b695760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610a07565b6130588282614245565b60006118a5836001600160a01b0384166142e2565b600354604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af916004808301926020929190829003018186803b15801561316657600080fd5b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052613c6e9085906143ff565b50505050565b600354604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e916004808301926020929190829003018186803b158015613cd257600080fd5b505afa158015613ce6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d0a9190614a61565b9050600082826001600160a01b031663f77ee79d866040518263ffffffff1660e01b8152600401613d3d91815260200190565b60206040518083038186803b158015613d5557600080fd5b505afa158015613d69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d8d9190614ed0565b613d979190615557565b1015613de75760405162461bcd60e51b8152600401610a079060208082526004908201527f4530323500000000000000000000000000000000000000000000000000000000604082015260600190565b6040517ff5298aca0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018590526044820184905282169063f5298aca90606401600060405180830381600087803b158015613e5157600080fd5b505af1158015613abb573d6000803e3d6000fd5b600280546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006118a583836144e4565b6000610650825490565b600082815260208190526040902060010154613f0181336141a9565b610bf48383614245565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16613058576000828152602081815260408083206001600160a01b0385168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055613f833390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461400e57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610650565b506000610650565b6000614042827f01ffc9a70000000000000000000000000000000000000000000000000000000061407a565b80156106505750614073827fffffffff0000000000000000000000000000000000000000000000000000000061407a565b1592915050565b604080517fffffffff00000000000000000000000000000000000000000000000000000000831660248083019190915282518083039091018152604490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f01ffc9a700000000000000000000000000000000000000000000000000000000179052905160009190829081906001600160a01b038716906175309061412790869061510e565b6000604051808303818686fa925050503d8060008114614163576040519150601f19603f3d011682016040523d82523d6000602084013e614168565b606091505b50915091506020815110156141835760009350505050610650565b81801561419f57508080602001905181019061419f9190614c5d565b9695505050505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16613058576141e5816001600160a01b0316601461451c565b6141f083602061451c565b60405160200161420192919061512a565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b8252610a07916004016152aa565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615613058576000828152602081815260408083206001600160a01b038516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156143f5576000614306600183615557565b855490915060009061431a90600190615557565b905081811461439b57600086600001828154811061434857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061437957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b85548690806143ba57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610650565b6000915050610650565b6000614454826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661478b9092919063ffffffff16565b805190915015610bf457808060200190518101906144729190614c5d565b610bf45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610a07565b600082600001828154811061450957634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6060600061452b83600261551a565b6145369060026154e2565b67ffffffffffffffff81111561455c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015614586576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106145cb57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061463c57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600061467884600261551a565b6146839060016154e2565b90505b600181111561473c577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106146d257634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106146f657634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c936147358161559a565b9050614686565b5083156118a55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a07565b6060610e41848460008585843b6147e45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a07565b600080866001600160a01b03168587604051614800919061510e565b60006040518083038185875af1925050503d806000811461483d576040519150601f19603f3d011682016040523d82523d6000602084013e614842565b606091505b509150915061485282828661485d565b979650505050505050565b6060831561486c5750816118a5565b82511561487c5782518084602001fd5b8160405162461bcd60e51b8152600401610a0791906152aa565b80356148a181615634565b919050565b80516148a181615634565b600082601f8301126148c1578081fd5b813560206148d66148d1836154be565b61546f565b80838252828201915082860187848660051b89010111156148f5578586fd5b855b8581101561491c57813561490a81615634565b845292840192908401906001016148f7565b5090979650505050505050565b600082601f830112614939578081fd5b813560206149496148d1836154be565b80838252828201915082860187848660051b8901011115614968578586fd5b855b8581101561491c5781358452928401929084019060010161496a565b80356148a181615649565b80516148a181615649565b8051600481106148a157600080fd5b600061012082840312156149bd578081fd5b6149c56153ff565b90506149d082614896565b81526149de60208301614896565b602082015260408201356040820152606082013560608201526080820135608082015260a082013560a0820152614a1760c08301614986565b60c0820152614a2860e08301614986565b60e0820152610100614a3b818401614986565b9082015292915050565b600060208284031215614a56578081fd5b81356118a581615634565b600060208284031215614a72578081fd5b81516118a581615634565b600080600080600080600080610200898b031215614a99578384fd5b8835614aa481615634565b97506020890135614ab481615634565b9650604089013595506060890135614acb81615649565b94506080890135614adb81615634565b935060a089013567ffffffffffffffff80821115614af7578485fd5b614b038c838d016148b1565b945060c08b0135915080821115614b18578384fd5b50614b258b828c01614929565b925050614b358a60e08b016149ab565b90509295985092959890939650565b60008060008060006101a08688031215614b5c578283fd5b8535614b6781615634565b945060208681013567ffffffffffffffff80821115614b84578586fd5b818901915089601f830112614b97578586fd5b813581811115614ba957614ba961561e565b614bd9847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160161546f565b8181528b85838601011115614bec578788fd5b818585018683013790810190930186905291955060408801359180831115614c12578586fd5b614c1e8a848b016148b1565b95506060890135925080831115614c33578384fd5b5050614c4188828901614929565b925050614c5187608088016149ab565b90509295509295909350565b600060208284031215614c6e578081fd5b81516118a581615649565b600060208284031215614c8a578081fd5b5035919050565b60008060408385031215614ca3578182fd5b823591506020830135614cb581615634565b809150509250929050565b60008060408385031215614cd2578182fd5b50508035926020909101359150565b600060208284031215614cf2578081fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146118a5578182fd5b600060208284031215614d32578081fd5b6118a58261499c565b60006101208284031215614d4d578081fd5b614d556153ff565b614d5e836148a6565b8152614d6c602084016148a6565b602082015260408301516040820152606083015160608201526080830151608082015260a083015160a0820152614da560c08401614991565b60c0820152614db660e08401614991565b60e0820152610100614dc9818501614991565b908201529392505050565b6000818303610140811215614de7578182fd5b614def615429565b8351614dfa81615634565b8152614e086020850161499c565b602082015260a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc083011215614e3c578283fd5b614e4461544c565b91506040840151614e5481615634565b82526060840151614e6481615634565b60208301526080840151614e7781615634565b604083015260a0840151606083015260c0840151614e9481615649565b8060808401525081604082015260e084015160608201526101008401516080820152614ec36101208501614991565b60a0820152949350505050565b600060208284031215614ee1578081fd5b5051919050565b6000806000806101808587031215614efe578182fd5b84359350602085013567ffffffffffffffff80821115614f1c578384fd5b614f28888389016148b1565b94506040870135915080821115614f3d578384fd5b50614f4a87828801614929565b925050614f5a86606087016149ab565b905092959194509250565b600080600060608486031215614f79578081fd5b83359250602084013567ffffffffffffffff811115614f96578182fd5b614fa286828701614929565b925050604084013590509250925092565b600080600060608486031215614fc7578081fd5b505081359360208301359350604090920135919050565b6000815180845260208085019450808401835b8381101561500d57815187529582019590820190600101614ff1565b509495945050505050565b6000815180845261503081602086016020860161556e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6001600160a01b038082511683528060208301511660208401525060408101516040830152606081015160608301526080810151608083015260a081015160a083015260c0810151151560c083015260e08101516150c460e084018215159052565b506101008181015180151584830152613c6e565b815160009082906020808601845b83811015615102578151855293820193908201906001016150e6565b50929695505050505050565b6000825161512081846020870161556e565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161516281601785016020880161556e565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161519f81602884016020880161556e565b01602801949350505050565b60006101806001600160a01b0380881684528087166020850152508060408401526151d881840186614fde565b9150506108da6060830184615062565b60006101606001600160a01b038616835280602084015261520b81840186614fde565b915050610e416040830184615062565b60a0808252855190820181905260009060209060c0840190828901845b8281101561525d5781516001600160a01b031684529284019290840190600101615238565b505050838103828501526152718188614fde565b604085019690965250606083019390935281840360809092019190915282520192915050565b6020815260006118a56020830184614fde565b6020815260006118a56020830184615018565b8481526080602082015260006152d66080830186614fde565b82810360408401526152e88186614fde565b91505082606083015295945050505050565b600061016085835280602084015261520b81840186614fde565b84815261018081016153296020830186615062565b836101408301526001600160a01b03831661016083015295945050505050565b6000610120820190508382526001600160a01b038084511660208401526020840151604084015260408401516004811061539357634e487b7160e01b600052602160045260246000fd5b8060608501525060608401518181511660808501528160208201511660a08501528160408201511660c0850152606081015160e08501526080810151151561010085015250509392505050565b8381528260208201526060604082015260006108da6060830184615018565b604051610120810167ffffffffffffffff811182821017156154235761542361561e565b60405290565b60405160c0810167ffffffffffffffff811182821017156154235761542361561e565b60405160a0810167ffffffffffffffff811182821017156154235761542361561e565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156154b6576154b661561e565b604052919050565b600067ffffffffffffffff8211156154d8576154d861561e565b5060051b60200190565b600082198211156154f5576154f5615608565b500190565b60008261551557634e487b7160e01b81526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561555257615552615608565b500290565b60008282101561556957615569615608565b500390565b60005b83811015615589578181015183820152602001615571565b83811115613c6e5750506000910152565b6000816155a9576155a9615608565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561560157615601615608565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146129df57600080fd5b80151581146129df57600080fdfea264697066735822122052fbaafee698a17bcee52a343ce32435c704483b216b5da2122bb1e540391db764736f6c63430008040033000000000000000000000000d721a90dd7e010c8c5e022cc0100c55ac78e0fc4000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806391d14854116100f7578063ca15c87311610095578063f2465f0911610064578063f2465f091461056f578063f2fde38b1461058f578063fccc19d0146105af578063fe65acfe146105dc57600080fd5b8063ca15c873146104e6578063d547741f14610506578063e63ab1e914610526578063ecea07d81461055a57600080fd5b8063a217fddf116100d1578063a217fddf14610439578063b3f9ff191461044e578063bc2ab8ce146104b3578063bdb132d5146104d357600080fd5b806391d14854146103bf57806393a9003c14610403578063974ffdf71461042357600080fd5b806336568abe1161016f5780635dcb7ab21161013e5780635dcb7ab214610338578063715018a6146103585780638da5cb5b1461036d5780639010d07c1461039f57600080fd5b806336568abe146102d057806342de99fe146102f057806358efe201146103055780635a7c08f01461032557600080fd5b806322caa234116101ab57806322caa2341461023e578063248a9ca31461026057806327c7812c146102905780632f2ff15d146102b057600080fd5b806301ffc9a7146101d257806302e236bc1461020757806307d7fb9a14610228575b600080fd5b3480156101de57600080fd5b506101f26101ed366004614ce1565b6105fa565b60405190151581526020015b60405180910390f35b61021a610215366004614b44565b610656565b6040519081526020016101fe565b34801561023457600080fd5b5061021a60075481565b34801561024a57600080fd5b5061025e610259366004614c79565b6108e3565b005b34801561026c57600080fd5b5061021a61027b366004614c79565b60009081526020819052604090206001015490565b34801561029c57600080fd5b5061025e6102ab366004614a45565b610b3e565b3480156102bc57600080fd5b5061025e6102cb366004614c91565b610bd2565b3480156102dc57600080fd5b5061025e6102eb366004614c91565b610bf9565b3480156102fc57600080fd5b5060085461021a565b34801561031157600080fd5b5061025e610320366004614c79565b610c1b565b61021a610333366004614ee8565b610c7a565b34801561034457600080fd5b5061021a610353366004614fb3565b610e49565b34801561036457600080fd5b5061025e6118ac565b34801561037957600080fd5b506002546001600160a01b03165b6040516001600160a01b0390911681526020016101fe565b3480156103ab57600080fd5b506103876103ba366004614cc0565b611912565b3480156103cb57600080fd5b506101f26103da366004614c91565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561040f57600080fd5b5061021a61041e366004614cc0565b61192a565b34801561042f57600080fd5b5061021a60085481565b34801561044557600080fd5b5061021a600081565b34801561045a57600080fd5b506104827f3f8f47e80000000000000000000000000000000000000000000000000000000081565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101fe565b3480156104bf57600080fd5b5061025e6104ce366004614c79565b611efd565b61021a6104e1366004614a7d565b611f5c565b3480156104f257600080fd5b5061021a610501366004614c79565b612164565b34801561051257600080fd5b5061025e610521366004614c91565b61217b565b34801561053257600080fd5b5061021a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b34801561056657600080fd5b5060075461021a565b34801561057b57600080fd5b5061025e61058a366004614cc0565b612185565b34801561059b57600080fd5b5061025e6105aa366004614a45565b612900565b3480156105bb57600080fd5b506105cf6105ca366004614f65565b6129e2565b6040516101fe9190615297565b3480156105e857600080fd5b506003546001600160a01b0316610387565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f000000000000000000000000000000000000000000000000000000001480610650575061065082613071565b92915050565b600080610661613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b15801561069957600080fd5b505afa1580156106ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d19190614ed0565b905061072260408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001600160a01b038816815260036040820152600061073f6131a3565b6001600160a01b031663dd6aa4cf84846040518363ffffffff1660e01b815260040161076c929190615349565b602060405180830381600087803b15801561078657600080fd5b505af115801561079a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107be9190614ed0565b90506107f36001600160a01b038a167f3f8f47e800000000000000000000000000000000000000000000000000000000613201565b15610874576040517f1c8478160000000000000000000000000000000000000000000000000000000081526001600160a01b038a1690631c8478169061084190869085908d906004016153e0565b600060405180830381600087803b15801561085b57600080fd5b505af115801561086f573d6000803e3d6000fd5b505050505b5050610883858583863461321d565b80336001600160a01b031684600001516001600160a01b03167f4ae21494ad3e589ccc04df1bff8f9eb5dc6b6e11ad0ebd2dba2cf5e76eaf99e68a88886040516108cf939291906151e8565b60405180910390a490505b95945050505050565b60006108ed6131a3565b6001600160a01b031663fc9ec25d836040518263ffffffff1660e01b815260040161091a91815260200190565b60206040518083038186803b15801561093257600080fd5b505afa158015610946573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096a9190614d21565b9050600381600381111561098e57634e487b7160e01b600052602160045260246000fd5b14806109b9575060028160038111156109b757634e487b7160e01b600052602160045260246000fd5b145b610a105760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303800000000000000000000000000000000000000000000000000000000604082015260600190565b60405180910390fd5b610a186131a3565b6001600160a01b031663fb68480583336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526001600160a01b03166024820152604401602060405180830381600087803b158015610a8757600080fd5b505af1158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf9190614c5d565b610b0d5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530353600000000000000000000000000000000000000000000000000000000604082015260600190565b604051829033907f11a58cb8f90fd3e7ea138c2320c5a4ccd5a9317f2599991807e69647c00c3c3b90600090a35050565b6002546001600160a01b03163314610b985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a07565b600380547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b610bdc8282613ac5565b6000828152600160205260409020610bf4908261305c565b505050565b610c038282613aeb565b6000828152600160205260409020610bf49082613b73565b6002546001600160a01b03163314610c755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a07565b600855565b600080610c85613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b158015610cbd57600080fd5b505afa158015610cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf59190614ed0565b9050610d4660408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001604082015260208101879052610d5c6131a3565b6001600160a01b031663dd6aa4cf83836040518363ffffffff1660e01b8152600401610d89929190615349565b602060405180830381600087803b158015610da357600080fd5b505af1158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb9190614ed0565b5050610dea858583863461321d565b80336001600160a01b031684600001516001600160a01b03167f17cd459969a386aa6bf71b546af420a11ab0c72b7cd33a2186c67ab60467e7ce898888604051610e36939291906152fa565b60405180910390a490505b949350505050565b600080610e54613b88565b6001600160a01b031663522f9b37866040518263ffffffff1660e01b8152600401610e8191815260200190565b6101206040518083038186803b158015610e9a57600080fd5b505afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed29190614d3b565b9050610edc613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b158015610f1457600080fd5b505afa158015610f28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4c9190614ed0565b8510610f9c5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b8060e00151610fef5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530333400000000000000000000000000000000000000000000000000000000604082015260600190565b428160a001511080611003575060a0810151155b6110515760405162461bcd60e51b8152600401610a079060208082526004908201527f4530333500000000000000000000000000000000000000000000000000000000604082015260600190565b600083116110a35760405162461bcd60e51b8152600401610a079060208082526004908201527f4530373000000000000000000000000000000000000000000000000000000000604082015260600190565b600354604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af916004808301926020929190829003018186803b15801561110157600080fd5b505afa158015611115573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111399190614a61565b90506000600360009054906101000a90046001600160a01b03166001600160a01b031663d59e296e6040518163ffffffff1660e01b815260040160206040518083038186803b15801561118b57600080fd5b505afa15801561119f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c39190614a61565b90506000600360009054906101000a90046001600160a01b03166001600160a01b031663035d0c696040518163ffffffff1660e01b815260040160206040518083038186803b15801561121557600080fd5b505afa158015611229573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124d9190614a61565b9050600080836001600160a01b031663f77ee79d8b6040518263ffffffff1660e01b815260040161128091815260200190565b60206040518083038186803b15801561129857600080fd5b505afa1580156112ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d09190614ed0565b905060006001600160a01b038516632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018e905260440160206040518083038186803b15801561134257600080fd5b505afa158015611356573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137a9190614ed0565b9050808911156113da578189146113d55760405162461bcd60e51b8152600401610a079060208082526004908201527f4530363900000000000000000000000000000000000000000000000000000000604082015260600190565b6113f1565b808910806113e757508181105b156113f157600192505b505060006103e88989600754611407919061551a565b611411919061551a565b61141b91906154fa565b905080156114c1576114c1335b600360009054906101000a90046001600160a01b03166001600160a01b0316636e9960c36040518163ffffffff1660e01b815260040160206040518083038186803b15801561147657600080fd5b505afa15801561148a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ae9190614a61565b88516001600160a01b0316919084613be6565b6040517f29029c16000000000000000000000000000000000000000000000000000000008152600481018b90526000906001600160a01b038516906329029c169060240160206040518083038186803b15801561151d57600080fd5b505afa158015611531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115559190614ed0565b90506000831561170057856001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b15801561159857600080fd5b505afa1580156115ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d09190614ed0565b6040517fd7f9220500000000000000000000000000000000000000000000000000000000815260048101829052602481018490529091506001600160a01b0386169063d7f9220590604401600060405180830381600087803b15801561163557600080fd5b505af1158015611649573d6000803e3d6000fd5b5050505061165e6116573390565b8d8c613c74565b6001600160a01b03861663731133e9336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b03909116600482015260248101849052604481018d9052608060648201526000608482015260a401600060405180830381600087803b1580156116e357600080fd5b505af11580156116f7573d6000803e3d6000fd5b50505050611704565b5060005b6040517fa3606b90000000000000000000000000000000000000000000000000000000008152600481018d9052602481018c9052604481018b90526001600160a01b0388169063a3606b9090606401600060405180830381600087803b15801561176d57600080fd5b505af1158015611781573d6000803e3d6000fd5b505089516001600160a01b03161591506117b99050576117b933886117a68e8e61551a565b8b516001600160a01b0316929190613be6565b866001600160a01b031663375d59ba8d838e8c604001516117da91906154e2565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526044820152606401600060405180830381600087803b15801561183857600080fd5b505af115801561184c573d6000803e3d6000fd5b5050505089816118593390565b6001600160a01b03167f7079dc4a34ecf4aa63066fe944ac528604e4b89afbf0ceb16dae7f7ad611bfec8e60405161189391815260200190565b60405180910390a49750505050505050505b9392505050565b6002546001600160a01b031633146119065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a07565b6119106000613e65565b565b60008281526001602052604081206118a59083613ecf565b600080611935613108565b6001600160a01b031663f77ee79d856040518263ffffffff1660e01b815260040161196291815260200190565b60206040518083038186803b15801561197a57600080fd5b505afa15801561198e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b29190614ed0565b905060006119be613108565b6001600160a01b0316632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810188905260440160206040518083038186803b158015611a2b57600080fd5b505afa158015611a3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a639190614ed0565b9050611a6d613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b158015611aa557600080fd5b505afa158015611ab9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611add9190614ed0565b8510611b2d5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b818114611b7e5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530323200000000000000000000000000000000000000000000000000000000604082015260600190565b611b86613b88565b6001600160a01b031663522f9b37866040518263ffffffff1660e01b8152600401611bb391815260200190565b6101206040518083038186803b158015611bcc57600080fd5b505afa158015611be0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c049190614d3b565b60c001518015611cb757506001611c196131a3565b6001600160a01b031663fc9ec25d876040518263ffffffff1660e01b8152600401611c4691815260200190565b60206040518083038186803b158015611c5e57600080fd5b505afa158015611c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c969190614d21565b6003811115611cb557634e487b7160e01b600052602160045260246000fd5b145b611d055760405162461bcd60e51b8152600401610a079060208082526004908201527f4530323900000000000000000000000000000000000000000000000000000000604082015260600190565b83611d0e6131a3565b6001600160a01b0316633fe8ca06876040518263ffffffff1660e01b8152600401611d3b91815260200190565b6101406040518083038186803b158015611d5457600080fd5b505afa158015611d68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8c9190614dd4565b6060015110611ddf5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530333000000000000000000000000000000000000000000000000000000000604082015260600190565b611e2e60408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6001604082015260208101859052611e446131a3565b6001600160a01b031663dd6aa4cf87836040518363ffffffff1660e01b8152600401611e71929190615349565b602060405180830381600087803b158015611e8b57600080fd5b505af1158015611e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec39190614ed0565b506040518590879033907fa4cbdeb0d65455aa896613c3372efe5b38b40a1e76ff76b00f14a789019a969990600090a45093949350505050565b6002546001600160a01b03163314611f575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a07565b600755565b600080611f67613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b158015611f9f57600080fd5b505afa158015611fb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fd79190614ed0565b905061202860408051608081018252600080825260208201819052909182019081526040805160a0810182526000808252602082810182905292820181905260608201819052608082015291015290565b6002604082810191909152606080830180518b151560809091015280519091018b905280516001600160a01b038e811690915281518d82166020919091015290519089169101526120776131a3565b6001600160a01b031663dd6aa4cf83836040518363ffffffff1660e01b81526004016120a4929190615349565b602060405180830381600087803b1580156120be57600080fd5b505af11580156120d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120f69190614ed0565b5050612105858583863461321d565b80336001600160a01b03168b6001600160a01b03167f80ed7d5bf65bfce0365fdac589476923914d111260d5736d9bef132bdb037b8f8c8a898960405161214f94939291906151ab565b60405180910390a49998505050505050505050565b600081815260016020526040812061065090613edb565b610c038282613ee5565b816006548114156121da5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530353200000000000000000000000000000000000000000000000000000000604082015260600190565b6006819055600354604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e916004808301926020929190829003018186803b15801561223d57600080fd5b505afa158015612251573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122759190614a61565b6040517ff77ee79d000000000000000000000000000000000000000000000000000000008152600481018690529091506001600160a01b0382169063f77ee79d9060240160206040518083038186803b1580156122d157600080fd5b505afa1580156122e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123099190614ed0565b83111561235a5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530323200000000000000000000000000000000000000000000000000000000604082015260600190565b6001600160a01b038116632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810187905260440160206040518083038186803b1580156123c857600080fd5b505afa1580156123dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124009190614ed0565b8311156124515760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303600000000000000000000000000000000000000000000000000000000604082015260600190565b60006001600160a01b038216632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810188905260440160206040518083038186803b1580156124c157600080fd5b505afa1580156124d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124f99190614ed0565b116125485760405162461bcd60e51b8152600401610a079060208082526004908201527f4530333200000000000000000000000000000000000000000000000000000000604082015260600190565b60006125526131a3565b6001600160a01b031663fc9ec25d866040518263ffffffff1660e01b815260040161257f91815260200190565b60206040518083038186803b15801561259757600080fd5b505afa1580156125ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cf9190614d21565b905060008160038111156125f357634e487b7160e01b600052602160045260246000fd5b14156126435760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303700000000000000000000000000000000000000000000000000000000604082015260600190565b61264b6131a3565b6001600160a01b031663fb68480586336040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815260048101929092526001600160a01b03166024820152604401602060405180830381600087803b1580156126ba57600080fd5b505af11580156126ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126f29190614c5d565b600182600381111561271457634e487b7160e01b600052602160045260246000fd5b146127b657600282600381111561273b57634e487b7160e01b600052602160045260246000fd5b1461277b576040518060400160405280600481526020017f45303139000000000000000000000000000000000000000000000000000000008152506127ed565b6040518060400160405280600481526020017f45303138000000000000000000000000000000000000000000000000000000008152506127ed565b6040518060400160405280600481526020017f45303130000000000000000000000000000000000000000000000000000000008152505b9061280b5760405162461bcd60e51b8152600401610a0791906152aa565b50612817338686613c74565b61281f613b88565b6001600160a01b0316635d61210d8686336040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526001600160a01b03166044820152606401600060405180830381600087803b15801561289757600080fd5b505af11580156128ab573d6000803e3d6000fd5b5050505083856128b83390565b6001600160a01b03167fbdf03104edebd5ecb0debd1ecd122dc6b2b8069b2c2618146c0afe468f53ee7160405160405180910390a4505067ffffffffffffffff600655505050565b6002546001600160a01b0316331461295a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a07565b6001600160a01b0381166129d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a07565b6129df81613e65565b50565b606060006129ee613108565b6001600160a01b0316632b04e840336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0390911660048201526024810188905260440160206040518083038186803b158015612a5b57600080fd5b505afa158015612a6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a939190614ed0565b11612ae25760405162461bcd60e51b8152600401610a079060208082526004908201527f4530333200000000000000000000000000000000000000000000000000000000604082015260600190565b6000612aec613b88565b6001600160a01b03166314f487fa866040518263ffffffff1660e01b8152600401612b1991815260200190565b60206040518083038186803b158015612b3157600080fd5b505afa158015612b45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b699190614ed0565b11612bb85760405162461bcd60e51b8152600401610a079060208082526004908201527f4530323300000000000000000000000000000000000000000000000000000000604082015260600190565b6000835167ffffffffffffffff811115612be257634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015612c0b578160200160208202803683370190505b5090506000612c18613108565b6001600160a01b031663bc9683266040518163ffffffff1660e01b815260040160206040518083038186803b158015612c5057600080fd5b505afa158015612c64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c889190614ed0565b90506000612c946131a3565b6001600160a01b03166329029c16886040518263ffffffff1660e01b8152600401612cc191815260200190565b60206040518083038186803b158015612cd957600080fd5b505afa158015612ced573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d119190614ed0565b9050612d1b613108565b6001600160a01b031663f5298aca336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602481018a905260448101889052606401600060405180830381600087803b158015612d9157600080fd5b505af1158015612da5573d6000803e3d6000fd5b5050505060005b8651811015612f6257612dbf81846154e2565b848281518110612ddf57634e487b7160e01b600052603260045260246000fd5b602002602001018181525050612df3613108565b6001600160a01b031663731133e933868481518110612e2257634e487b7160e01b600052603260045260246000fd5b60209081029190910101516040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b039092166004830152602482015260448101899052608060648201526000608482015260a401600060405180830381600087803b158015612ea057600080fd5b505af1158015612eb4573d6000803e3d6000fd5b50505050612ec06131a3565b6001600160a01b031663d7f92205858381518110612eee57634e487b7160e01b600052603260045260246000fd5b6020026020010151846040518363ffffffff1660e01b8152600401612f1d929190918252602082015260400190565b600060405180830381600087803b158015612f3757600080fd5b505af1158015612f4b573d6000803e3d6000fd5b505050508080612f5a906155cf565b915050612dac565b50612f6b613b88565b6001600160a01b031663fbe42921888589896040518563ffffffff1660e01b8152600401612f9c94939291906152bd565b600060405180830381600087803b158015612fb657600080fd5b505af1158015612fca573d6000803e3d6000fd5b5050505085604051612fdc91906150d8565b604051809103902083604051612ff291906150d8565b60405180910390206130013390565b6001600160a01b03167fd70346cabe6f9759b2931abc6812201a51dd620ef8e80ae11efd0f50f43ced2f8860405161303b91815260200190565b60405180910390a4509095945050505050565b6130588282613f0b565b5050565b60006118a5836001600160a01b038416613fc7565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061065057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610650565b600354604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e916004808301926020929190829003018186803b15801561316657600080fd5b505afa15801561317a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061319e9190614a61565b905090565b600354604080517f035d0c6900000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163035d0c69916004808301926020929190829003018186803b15801561316657600080fd5b600061320c83614016565b80156118a557506118a5838361407a565b6000808560008151811061324157634e487b7160e01b600052603260045260246000fd5b602002602001015190506000875190506000875190508082146132cc5760405162461bcd60e51b815260206004820152602b60248201527f726563697069656e747320616e64207175616e7469746965732061727261797360448201527f206d757374206d617463680000000000000000000000000000000000000000006064820152608401610a07565b8160011493508361332b5760015b818110156133295788818151811061330257634e487b7160e01b600052603260045260246000fd5b60200260200101518461331591906154e2565b935080613321816155cf565b9150506132da565b505b6000831161337d5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303300000000000000000000000000000000000000000000000000000000604082015260600190565b5050600354604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af916004808301926020929190829003018186803b1580156133dd57600080fd5b505afa1580156133f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134159190614a61565b90508315613492577f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561347857600080fd5b505af115801561348c573d6000803e3d6000fd5b50505050505b60085415613766576008548410156134ee5760405162461bcd60e51b8152600401610a079060208082526004908201527f4530303500000000000000000000000000000000000000000000000000000000604082015260600190565b600354604080517ff9f5e1dd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163f9f5e1dd916004808301926020929190829003018186803b15801561354c57600080fd5b505afa158015613560573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135849190614a61565b6001600160a01b03811660009081526009602052604090205490915060ff166136c4576040517f095ea7b30000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248301527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2169063095ea7b390604401602060405180830381600087803b15801561364957600080fd5b505af115801561365d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136819190614c5d565b506001600160a01b038116600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b6008546040517f2316ad320000000000000000000000000000000000000000000000000000000081526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281166004830152602482019290925290821690632316ad3290604401600060405180830381600087803b15801561374c57600080fd5b505af1158015613760573d6000803e3d6000fd5b50505050505b60006103e886604001518460075461377e919061551a565b613788919061551a565b61379291906154fa565b905080156137a3576137a333611428565b506008546137b19085615557565b93508315613896577f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031685600001516001600160a01b0316146138405760405162461bcd60e51b8152600401610a079060208082526004908201527f4530353300000000000000000000000000000000000000000000000000000000604082015260600190565b84604001518410156138965760405162461bcd60e51b8152600401610a079060208082526004908201527f4530313500000000000000000000000000000000000000000000000000000000604082015260600190565b6040517f8717293d0000000000000000000000000000000000000000000000000000000081526001600160a01b03821690638717293d906138e1908990899087903390600401615314565b600060405180830381600087803b1580156138fb57600080fd5b505af115801561390f573d6000803e3d6000fd5b505086516001600160a01b031615915061394d90505761394d338287604001518561393a919061551a565b88516001600160a01b0316929190613be6565b826139c25761395a613108565b6001600160a01b0316639a46cd5d898989866040518563ffffffff1660e01b815260040161398b949392919061521b565b600060405180830381600087803b1580156139a557600080fd5b505af11580156139b9573d6000803e3d6000fd5b50505050613abb565b6139ca613108565b6001600160a01b031663731133e9896000815181106139f957634e487b7160e01b600052603260045260246000fd5b6020026020010151888a600081518110613a2357634e487b7160e01b600052603260045260246000fd5b60209081029190910101516040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b1681526001600160a01b03909316600484015260248301919091526044820152608060648201526000608482015260a401600060405180830381600087803b158015613aa257600080fd5b505af1158015613ab6573d6000803e3d6000fd5b505050505b5050505050505050565b600082815260208190526040902060010154613ae181336141a9565b610bf48383613f0b565b6001600160a01b0381163314613b695760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610a07565b6130588282614245565b60006118a5836001600160a01b0384166142e2565b600354604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af916004808301926020929190829003018186803b15801561316657600080fd5b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052613c6e9085906143ff565b50505050565b600354604080517fd59e296e00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163d59e296e916004808301926020929190829003018186803b158015613cd257600080fd5b505afa158015613ce6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d0a9190614a61565b9050600082826001600160a01b031663f77ee79d866040518263ffffffff1660e01b8152600401613d3d91815260200190565b60206040518083038186803b158015613d5557600080fd5b505afa158015613d69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d8d9190614ed0565b613d979190615557565b1015613de75760405162461bcd60e51b8152600401610a079060208082526004908201527f4530323500000000000000000000000000000000000000000000000000000000604082015260600190565b6040517ff5298aca0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018590526044820184905282169063f5298aca90606401600060405180830381600087803b158015613e5157600080fd5b505af1158015613abb573d6000803e3d6000fd5b600280546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006118a583836144e4565b6000610650825490565b600082815260208190526040902060010154613f0181336141a9565b610bf48383614245565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16613058576000828152602081815260408083206001600160a01b0385168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055613f833390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461400e57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610650565b506000610650565b6000614042827f01ffc9a70000000000000000000000000000000000000000000000000000000061407a565b80156106505750614073827fffffffff0000000000000000000000000000000000000000000000000000000061407a565b1592915050565b604080517fffffffff00000000000000000000000000000000000000000000000000000000831660248083019190915282518083039091018152604490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f01ffc9a700000000000000000000000000000000000000000000000000000000179052905160009190829081906001600160a01b038716906175309061412790869061510e565b6000604051808303818686fa925050503d8060008114614163576040519150601f19603f3d011682016040523d82523d6000602084013e614168565b606091505b50915091506020815110156141835760009350505050610650565b81801561419f57508080602001905181019061419f9190614c5d565b9695505050505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16613058576141e5816001600160a01b0316601461451c565b6141f083602061451c565b60405160200161420192919061512a565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b8252610a07916004016152aa565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615613058576000828152602081815260408083206001600160a01b038516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156143f5576000614306600183615557565b855490915060009061431a90600190615557565b905081811461439b57600086600001828154811061434857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508087600001848154811061437957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b85548690806143ba57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610650565b6000915050610650565b6000614454826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661478b9092919063ffffffff16565b805190915015610bf457808060200190518101906144729190614c5d565b610bf45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610a07565b600082600001828154811061450957634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b6060600061452b83600261551a565b6145369060026154e2565b67ffffffffffffffff81111561455c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015614586576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106145cb57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061463c57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600061467884600261551a565b6146839060016154e2565b90505b600181111561473c577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106146d257634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106146f657634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c936147358161559a565b9050614686565b5083156118a55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a07565b6060610e41848460008585843b6147e45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a07565b600080866001600160a01b03168587604051614800919061510e565b60006040518083038185875af1925050503d806000811461483d576040519150601f19603f3d011682016040523d82523d6000602084013e614842565b606091505b509150915061485282828661485d565b979650505050505050565b6060831561486c5750816118a5565b82511561487c5782518084602001fd5b8160405162461bcd60e51b8152600401610a0791906152aa565b80356148a181615634565b919050565b80516148a181615634565b600082601f8301126148c1578081fd5b813560206148d66148d1836154be565b61546f565b80838252828201915082860187848660051b89010111156148f5578586fd5b855b8581101561491c57813561490a81615634565b845292840192908401906001016148f7565b5090979650505050505050565b600082601f830112614939578081fd5b813560206149496148d1836154be565b80838252828201915082860187848660051b8901011115614968578586fd5b855b8581101561491c5781358452928401929084019060010161496a565b80356148a181615649565b80516148a181615649565b8051600481106148a157600080fd5b600061012082840312156149bd578081fd5b6149c56153ff565b90506149d082614896565b81526149de60208301614896565b602082015260408201356040820152606082013560608201526080820135608082015260a082013560a0820152614a1760c08301614986565b60c0820152614a2860e08301614986565b60e0820152610100614a3b818401614986565b9082015292915050565b600060208284031215614a56578081fd5b81356118a581615634565b600060208284031215614a72578081fd5b81516118a581615634565b600080600080600080600080610200898b031215614a99578384fd5b8835614aa481615634565b97506020890135614ab481615634565b9650604089013595506060890135614acb81615649565b94506080890135614adb81615634565b935060a089013567ffffffffffffffff80821115614af7578485fd5b614b038c838d016148b1565b945060c08b0135915080821115614b18578384fd5b50614b258b828c01614929565b925050614b358a60e08b016149ab565b90509295985092959890939650565b60008060008060006101a08688031215614b5c578283fd5b8535614b6781615634565b945060208681013567ffffffffffffffff80821115614b84578586fd5b818901915089601f830112614b97578586fd5b813581811115614ba957614ba961561e565b614bd9847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160161546f565b8181528b85838601011115614bec578788fd5b818585018683013790810190930186905291955060408801359180831115614c12578586fd5b614c1e8a848b016148b1565b95506060890135925080831115614c33578384fd5b5050614c4188828901614929565b925050614c5187608088016149ab565b90509295509295909350565b600060208284031215614c6e578081fd5b81516118a581615649565b600060208284031215614c8a578081fd5b5035919050565b60008060408385031215614ca3578182fd5b823591506020830135614cb581615634565b809150509250929050565b60008060408385031215614cd2578182fd5b50508035926020909101359150565b600060208284031215614cf2578081fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146118a5578182fd5b600060208284031215614d32578081fd5b6118a58261499c565b60006101208284031215614d4d578081fd5b614d556153ff565b614d5e836148a6565b8152614d6c602084016148a6565b602082015260408301516040820152606083015160608201526080830151608082015260a083015160a0820152614da560c08401614991565b60c0820152614db660e08401614991565b60e0820152610100614dc9818501614991565b908201529392505050565b6000818303610140811215614de7578182fd5b614def615429565b8351614dfa81615634565b8152614e086020850161499c565b602082015260a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc083011215614e3c578283fd5b614e4461544c565b91506040840151614e5481615634565b82526060840151614e6481615634565b60208301526080840151614e7781615634565b604083015260a0840151606083015260c0840151614e9481615649565b8060808401525081604082015260e084015160608201526101008401516080820152614ec36101208501614991565b60a0820152949350505050565b600060208284031215614ee1578081fd5b5051919050565b6000806000806101808587031215614efe578182fd5b84359350602085013567ffffffffffffffff80821115614f1c578384fd5b614f28888389016148b1565b94506040870135915080821115614f3d578384fd5b50614f4a87828801614929565b925050614f5a86606087016149ab565b905092959194509250565b600080600060608486031215614f79578081fd5b83359250602084013567ffffffffffffffff811115614f96578182fd5b614fa286828701614929565b925050604084013590509250925092565b600080600060608486031215614fc7578081fd5b505081359360208301359350604090920135919050565b6000815180845260208085019450808401835b8381101561500d57815187529582019590820190600101614ff1565b509495945050505050565b6000815180845261503081602086016020860161556e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6001600160a01b038082511683528060208301511660208401525060408101516040830152606081015160608301526080810151608083015260a081015160a083015260c0810151151560c083015260e08101516150c460e084018215159052565b506101008181015180151584830152613c6e565b815160009082906020808601845b83811015615102578151855293820193908201906001016150e6565b50929695505050505050565b6000825161512081846020870161556e565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161516281601785016020880161556e565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161519f81602884016020880161556e565b01602801949350505050565b60006101806001600160a01b0380881684528087166020850152508060408401526151d881840186614fde565b9150506108da6060830184615062565b60006101606001600160a01b038616835280602084015261520b81840186614fde565b915050610e416040830184615062565b60a0808252855190820181905260009060209060c0840190828901845b8281101561525d5781516001600160a01b031684529284019290840190600101615238565b505050838103828501526152718188614fde565b604085019690965250606083019390935281840360809092019190915282520192915050565b6020815260006118a56020830184614fde565b6020815260006118a56020830184615018565b8481526080602082015260006152d66080830186614fde565b82810360408401526152e88186614fde565b91505082606083015295945050505050565b600061016085835280602084015261520b81840186614fde565b84815261018081016153296020830186615062565b836101408301526001600160a01b03831661016083015295945050505050565b6000610120820190508382526001600160a01b038084511660208401526020840151604084015260408401516004811061539357634e487b7160e01b600052602160045260246000fd5b8060608501525060608401518181511660808501528160208201511660a08501528160408201511660c0850152606081015160e08501526080810151151561010085015250509392505050565b8381528260208201526060604082015260006108da6060830184615018565b604051610120810167ffffffffffffffff811182821017156154235761542361561e565b60405290565b60405160c0810167ffffffffffffffff811182821017156154235761542361561e565b60405160a0810167ffffffffffffffff811182821017156154235761542361561e565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156154b6576154b661561e565b604052919050565b600067ffffffffffffffff8211156154d8576154d861561e565b5060051b60200190565b600082198211156154f5576154f5615608565b500190565b60008261551557634e487b7160e01b81526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561555257615552615608565b500290565b60008282101561556957615569615608565b500390565b60005b83811015615589578181015183820152602001615571565b83811115613c6e5750506000910152565b6000816155a9576155a9615608565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561560157615601615608565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146129df57600080fd5b80151581146129df57600080fdfea264697066735822122052fbaafee698a17bcee52a343ce32435c704483b216b5da2122bb1e540391db764736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d721a90dd7e010c8c5e022cc0100c55ac78e0fc4000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : provider (address): 0xD721A90dd7e010c8C5E022cc0100c55aC78E0FC4
Arg [1] : weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d721a90dd7e010c8c5e022cc0100c55ac78e0fc4
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.