More Info
Private Name Tags
ContractCreator
TokenTracker
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
VotingEscrow
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at basescan.org on 2023-08-28 */ // SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.19; // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } interface IVeArtProxy { /// @dev Art configuration struct Config { // NFT metadata variables int256 _tokenId; int256 _balanceOf; int256 _lockedEnd; int256 _lockedAmount; // Line art variables int256 shape; uint256 palette; int256 maxLines; int256 dash; // Randomness variables int256 seed1; int256 seed2; int256 seed3; } /// @dev Individual line art path variables. struct lineConfig { bytes8 color; uint256 stroke; uint256 offset; uint256 offsetHalf; uint256 offsetDashSum; uint256 pathLength; } /// @dev Represents an (x,y) coordinate in a line. struct Point { int256 x; int256 y; } /// @notice Generate a SVG based on veNFT metadata /// @param _tokenId Unique veNFT identifier /// @return output SVG metadata as HTML tag function tokenURI(uint256 _tokenId) external view returns (string memory output); /// @notice Generate only the foreground <path> elements of the line art for an NFT (excluding SVG header), for flexibility purposes. /// @param _tokenId Unique veNFT identifier /// @return output Encoded output of generateShape() function lineArtPathsOnly(uint256 _tokenId) external view returns (bytes memory output); /// @notice Generate the master art config metadata for a veNFT /// @param _tokenId Unique veNFT identifier /// @return cfg Config struct function generateConfig(uint256 _tokenId) external view returns (Config memory cfg); /// @notice Generate the points for two stripe lines based on the config generated for a veNFT /// @param cfg Master art config metadata of a veNFT /// @param l Number of line drawn /// @return Line (x, y) coordinates of the drawn stripes function twoStripes(Config memory cfg, int256 l) external pure returns (Point[100] memory Line); /// @notice Generate the points for circles based on the config generated for a veNFT /// @param cfg Master art config metadata of a veNFT /// @param l Number of circles drawn /// @return Line (x, y) coordinates of the drawn circles function circles(Config memory cfg, int256 l) external pure returns (Point[100] memory Line); /// @notice Generate the points for interlocking circles based on the config generated for a veNFT /// @param cfg Master art config metadata of a veNFT /// @param l Number of interlocking circles drawn /// @return Line (x, y) coordinates of the drawn interlocking circles function interlockingCircles(Config memory cfg, int256 l) external pure returns (Point[100] memory Line); /// @notice Generate the points for corners based on the config generated for a veNFT /// @param cfg Master art config metadata of a veNFT /// @param l Number of corners drawn /// @return Line (x, y) coordinates of the drawn corners function corners(Config memory cfg, int256 l) external pure returns (Point[100] memory Line); /// @notice Generate the points for a curve based on the config generated for a veNFT /// @param cfg Master art config metadata of a veNFT /// @param l Number of curve drawn /// @return Line (x, y) coordinates of the drawn curve function curves(Config memory cfg, int256 l) external pure returns (Point[100] memory Line); /// @notice Generate the points for a spiral based on the config generated for a veNFT /// @param cfg Master art config metadata of a veNFT /// @param l Number of spiral drawn /// @return Line (x, y) coordinates of the drawn spiral function spiral(Config memory cfg, int256 l) external pure returns (Point[100] memory Line); /// @notice Generate the points for an explosion based on the config generated for a veNFT /// @param cfg Master art config metadata of a veNFT /// @param l Number of explosion drawn /// @return Line (x, y) coordinates of the drawn explosion function explosion(Config memory cfg, int256 l) external pure returns (Point[100] memory Line); /// @notice Generate the points for a wormhole based on the config generated for a veNFT /// @param cfg Master art config metadata of a veNFT /// @param l Number of wormhole drawn /// @return Line (x, y) coordinates of the drawn wormhole function wormhole(Config memory cfg, int256 l) external pure returns (Point[100] memory Line); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // OpenZeppelin Contracts (interfaces/IERC6372.sol) interface IERC6372 { /** * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting). */ function clock() external view returns (uint48); /** * @dev Description of the clock */ // solhint-disable-next-line func-name-mixedcase function CLOCK_MODE() external view returns (string memory); } // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol) /// @title EIP-721 Metadata Update Extension interface IERC4906 is IERC165, IERC721 { /// @dev This event emits when the metadata of a token is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFT. event MetadataUpdate(uint256 _tokenId); /// @dev This event emits when the metadata of a range of tokens is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); } /// Modified IVotes interface for tokenId based voting interface IVotes { /** * @dev Emitted when an account changes their delegate. */ event DelegateChanged(address indexed delegator, uint256 indexed fromDelegate, uint256 indexed toDelegate); /** * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes. */ event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); /** * @dev Returns the amount of votes that `tokenId` had at a specific moment in the past. * If the account passed in is not the owner, returns 0. */ function getPastVotes(address account, uint256 tokenId, uint256 timepoint) external view returns (uint256); /** * @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is * configured to use block numbers, this will return the value the end of the corresponding block. * * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. * Votes that have not been delegated are still part of total supply, even though they would not participate in a * vote. */ function getPastTotalSupply(uint256 timepoint) external view returns (uint256); /** * @dev Returns the delegate that `tokenId` has chosen. Can never be equal to the delegator's `tokenId`. * Returns 0 if not delegated. */ function delegates(uint256 tokenId) external view returns (uint256); /** * @dev Delegates votes from the sender to `delegatee`. */ function delegate(uint256 delegator, uint256 delegatee) external; /** * @dev Delegates votes from `delegator` to `delegatee`. Signer must own `delegator`. */ function delegateBySig( uint256 delegator, uint256 delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) external; } interface IVotingEscrow is IVotes, IERC4906, IERC6372, IERC721Metadata { struct LockedBalance { int128 amount; uint256 end; bool isPermanent; } struct UserPoint { int128 bias; int128 slope; // # -dweight / dt uint256 ts; uint256 blk; // block uint256 permanent; } struct GlobalPoint { int128 bias; int128 slope; // # -dweight / dt uint256 ts; uint256 blk; // block uint256 permanentLockBalance; } /// @notice A checkpoint for recorded delegated voting weights at a certain timestamp struct Checkpoint { uint256 fromTimestamp; address owner; uint256 delegatedBalance; uint256 delegatee; } enum DepositType { DEPOSIT_FOR_TYPE, CREATE_LOCK_TYPE, INCREASE_LOCK_AMOUNT, INCREASE_UNLOCK_TIME } /// @dev Different types of veNFTs: /// NORMAL - typical veNFT /// LOCKED - veNFT which is locked into a MANAGED veNFT /// MANAGED - veNFT which can accept the deposit of NORMAL veNFTs enum EscrowType { NORMAL, LOCKED, MANAGED } error AlreadyVoted(); error AmountTooBig(); error ERC721ReceiverRejectedTokens(); error ERC721TransferToNonERC721ReceiverImplementer(); error InvalidNonce(); error InvalidSignature(); error InvalidSignatureS(); error InvalidManagedNFTId(); error LockDurationNotInFuture(); error LockDurationTooLong(); error LockExpired(); error LockNotExpired(); error NoLockFound(); error NonExistentToken(); error NotApprovedOrOwner(); error NotDistributor(); error NotEmergencyCouncilOrGovernor(); error NotGovernor(); error NotGovernorOrManager(); error NotManagedNFT(); error NotManagedOrNormalNFT(); error NotLockedNFT(); error NotNormalNFT(); error NotPermanentLock(); error NotOwner(); error NotTeam(); error NotVoter(); error OwnershipChange(); error PermanentLock(); error SameAddress(); error SameNFT(); error SameState(); error SplitNoOwner(); error SplitNotAllowed(); error SignatureExpired(); error TooManyTokenIDs(); error ZeroAddress(); error ZeroAmount(); error ZeroBalance(); event Deposit( address indexed provider, uint256 indexed tokenId, DepositType indexed depositType, uint256 value, uint256 locktime, uint256 ts ); event Withdraw(address indexed provider, uint256 indexed tokenId, uint256 value, uint256 ts); event LockPermanent(address indexed _owner, uint256 indexed _tokenId, uint256 amount, uint256 _ts); event UnlockPermanent(address indexed _owner, uint256 indexed _tokenId, uint256 amount, uint256 _ts); event Supply(uint256 prevSupply, uint256 supply); event Merge( address indexed _sender, uint256 indexed _from, uint256 indexed _to, uint256 _amountFrom, uint256 _amountTo, uint256 _amountFinal, uint256 _locktime, uint256 _ts ); event Split( uint256 indexed _from, uint256 indexed _tokenId1, uint256 indexed _tokenId2, address _sender, uint256 _splitAmount1, uint256 _splitAmount2, uint256 _locktime, uint256 _ts ); event CreateManaged( address indexed _to, uint256 indexed _mTokenId, address indexed _from, address _lockedManagedReward, address _freeManagedReward ); event DepositManaged( address indexed _owner, uint256 indexed _tokenId, uint256 indexed _mTokenId, uint256 _weight, uint256 _ts ); event WithdrawManaged( address indexed _owner, uint256 indexed _tokenId, uint256 indexed _mTokenId, uint256 _weight, uint256 _ts ); event SetAllowedManager(address indexed _allowedManager); // State variables /// @notice Address of Meta-tx Forwarder function forwarder() external view returns (address); /// @notice Address of FactoryRegistry.sol function factoryRegistry() external view returns (address); /// @notice Address of token (AERO) used to create a veNFT function token() external view returns (address); /// @notice Address of RewardsDistributor.sol function distributor() external view returns (address); /// @notice Address of Voter.sol function voter() external view returns (address); /// @notice Address of Protocol Team multisig function team() external view returns (address); /// @notice Address of art proxy used for on-chain art generation function artProxy() external view returns (address); /// @dev address which can create managed NFTs function allowedManager() external view returns (address); /// @dev Current count of token function tokenId() external view returns (uint256); /*/////////////////////////////////////////////////////////////// MANAGED NFT STORAGE //////////////////////////////////////////////////////////////*/ /// @dev Mapping of token id to escrow type /// Takes advantage of the fact default value is EscrowType.NORMAL function escrowType(uint256 tokenId) external view returns (EscrowType); /// @dev Mapping of token id to managed id function idToManaged(uint256 tokenId) external view returns (uint256 managedTokenId); /// @dev Mapping of user token id to managed token id to weight of token id function weights(uint256 tokenId, uint256 managedTokenId) external view returns (uint256 weight); /// @dev Mapping of managed id to deactivated state function deactivated(uint256 tokenId) external view returns (bool inactive); /// @dev Mapping from managed nft id to locked managed rewards /// `token` denominated rewards (rebases/rewards) stored in locked managed rewards contract /// to prevent co-mingling of assets function managedToLocked(uint256 tokenId) external view returns (address); /// @dev Mapping from managed nft id to free managed rewards contract /// these rewards can be freely withdrawn by users function managedToFree(uint256 tokenId) external view returns (address); /*/////////////////////////////////////////////////////////////// MANAGED NFT LOGIC //////////////////////////////////////////////////////////////*/ /// @notice Create managed NFT (a permanent lock) for use within ecosystem. /// @dev Throws if address already owns a managed NFT. /// @return _mTokenId managed token id. function createManagedLockFor(address _to) external returns (uint256 _mTokenId); /// @notice Delegates balance to managed nft /// Note that NFTs deposited into a managed NFT will be re-locked /// to the maximum lock time on withdrawal. /// Permanent locks that are deposited will automatically unlock. /// @dev Managed nft will remain max-locked as long as there is at least one /// deposit or withdrawal per week. /// Throws if deposit nft is managed. /// Throws if recipient nft is not managed. /// Throws if deposit nft is already locked. /// Throws if not called by voter. /// @param _tokenId tokenId of NFT being deposited /// @param _mTokenId tokenId of managed NFT that will receive the deposit function depositManaged(uint256 _tokenId, uint256 _mTokenId) external; /// @notice Retrieves locked rewards and withdraws balance from managed nft. /// Note that the NFT withdrawn is re-locked to the maximum lock time. /// @dev Throws if NFT not locked. /// Throws if not called by voter. /// @param _tokenId tokenId of NFT being deposited. function withdrawManaged(uint256 _tokenId) external; /// @notice Permit one address to call createManagedLockFor() that is not Voter.governor() function setAllowedManager(address _allowedManager) external; /// @notice Set Managed NFT state. Inactive NFTs cannot be deposited into. /// @param _mTokenId managed nft state to set /// @param _state true => inactive, false => active function setManagedState(uint256 _mTokenId, bool _state) external; /*/////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ function name() external view returns (string memory); function symbol() external view returns (string memory); function version() external view returns (string memory); function decimals() external view returns (uint8); function setTeam(address _team) external; function setArtProxy(address _proxy) external; /// @inheritdoc IERC721Metadata function tokenURI(uint256 tokenId) external view returns (string memory); /*////////////////////////////////////////////////////////////// ERC721 BALANCE/OWNER STORAGE //////////////////////////////////////////////////////////////*/ /// @dev Mapping from owner address to mapping of index to tokenId function ownerToNFTokenIdList(address _owner, uint256 _index) external view returns (uint256 _tokenId); /// @inheritdoc IERC721 function ownerOf(uint256 tokenId) external view returns (address owner); /// @inheritdoc IERC721 function balanceOf(address owner) external view returns (uint256 balance); /*////////////////////////////////////////////////////////////// ERC721 APPROVAL STORAGE //////////////////////////////////////////////////////////////*/ /// @inheritdoc IERC721 function getApproved(uint256 _tokenId) external view returns (address operator); /// @inheritdoc IERC721 function isApprovedForAll(address owner, address operator) external view returns (bool); /// @notice Check whether spender is owner or an approved user for a given veNFT /// @param _spender . /// @param _tokenId . function isApprovedOrOwner(address _spender, uint256 _tokenId) external returns (bool); /*////////////////////////////////////////////////////////////// ERC721 LOGIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc IERC721 function approve(address to, uint256 tokenId) external; /// @inheritdoc IERC721 function setApprovalForAll(address operator, bool approved) external; /// @inheritdoc IERC721 function transferFrom(address from, address to, uint256 tokenId) external; /// @inheritdoc IERC721 function safeTransferFrom(address from, address to, uint256 tokenId) external; /// @inheritdoc IERC721 function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /*////////////////////////////////////////////////////////////// ERC165 LOGIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc IERC165 function supportsInterface(bytes4 _interfaceID) external view returns (bool); /*////////////////////////////////////////////////////////////// ESCROW STORAGE //////////////////////////////////////////////////////////////*/ /// @notice Total count of epochs witnessed since contract creation function epoch() external view returns (uint256); /// @notice Total amount of token() deposited function supply() external view returns (uint256); /// @notice Aggregate permanent locked balances function permanentLockBalance() external view returns (uint256); function userPointEpoch(uint256 _tokenId) external view returns (uint256 _epoch); /// @notice time -> signed slope change function slopeChanges(uint256 _timestamp) external view returns (int128); /// @notice account -> can split function canSplit(address _account) external view returns (bool); /// @notice Global point history at a given index function pointHistory(uint256 _loc) external view returns (GlobalPoint memory); /// @notice Get the LockedBalance (amount, end) of a _tokenId /// @param _tokenId . /// @return LockedBalance of _tokenId function locked(uint256 _tokenId) external view returns (LockedBalance memory); /// @notice User -> UserPoint[userEpoch] function userPointHistory(uint256 _tokenId, uint256 _loc) external view returns (UserPoint memory); /*////////////////////////////////////////////////////////////// ESCROW LOGIC //////////////////////////////////////////////////////////////*/ /// @notice Record global data to checkpoint function checkpoint() external; /// @notice Deposit `_value` tokens for `_tokenId` and add to the lock /// @dev Anyone (even a smart contract) can deposit for someone else, but /// cannot extend their locktime and deposit for a brand new user /// @param _tokenId lock NFT /// @param _value Amount to add to user's lock function depositFor(uint256 _tokenId, uint256 _value) external; /// @notice Deposit `_value` tokens for `msg.sender` and lock for `_lockDuration` /// @param _value Amount to deposit /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week) /// @return TokenId of created veNFT function createLock(uint256 _value, uint256 _lockDuration) external returns (uint256); /// @notice Deposit `_value` tokens for `_to` and lock for `_lockDuration` /// @param _value Amount to deposit /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week) /// @param _to Address to deposit /// @return TokenId of created veNFT function createLockFor(uint256 _value, uint256 _lockDuration, address _to) external returns (uint256); /// @notice Deposit `_value` additional tokens for `_tokenId` without modifying the unlock time /// @param _value Amount of tokens to deposit and add to the lock function increaseAmount(uint256 _tokenId, uint256 _value) external; /// @notice Extend the unlock time for `_tokenId` /// Cannot extend lock time of permanent locks /// @param _lockDuration New number of seconds until tokens unlock function increaseUnlockTime(uint256 _tokenId, uint256 _lockDuration) external; /// @notice Withdraw all tokens for `_tokenId` /// @dev Only possible if the lock is both expired and not permanent /// This will burn the veNFT. Any rebases or rewards that are unclaimed /// will no longer be claimable. Claim all rebases and rewards prior to calling this. function withdraw(uint256 _tokenId) external; /// @notice Merges `_from` into `_to`. /// @dev Cannot merge `_from` locks that are permanent or have already voted this epoch. /// Cannot merge `_to` locks that have already expired. /// This will burn the veNFT. Any rebases or rewards that are unclaimed /// will no longer be claimable. Claim all rebases and rewards prior to calling this. /// @param _from VeNFT to merge from. /// @param _to VeNFT to merge into. function merge(uint256 _from, uint256 _to) external; /// @notice Splits veNFT into two new veNFTS - one with oldLocked.amount - `_amount`, and the second with `_amount` /// @dev This burns the tokenId of the target veNFT /// Callable by approved or owner /// If this is called by approved, approved will not have permissions to manipulate the newly created veNFTs /// Returns the two new split veNFTs to owner /// If `from` is permanent, will automatically dedelegate. /// This will burn the veNFT. Any rebases or rewards that are unclaimed /// will no longer be claimable. Claim all rebases and rewards prior to calling this. /// @param _from VeNFT to split. /// @param _amount Amount to split from veNFT. /// @return _tokenId1 Return tokenId of veNFT with oldLocked.amount - `_amount`. /// @return _tokenId2 Return tokenId of veNFT with `_amount`. function split(uint256 _from, uint256 _amount) external returns (uint256 _tokenId1, uint256 _tokenId2); /// @notice Toggle split for a specific address. /// @dev Toggle split for address(0) to enable or disable for all. /// @param _account Address to toggle split permissions /// @param _bool True to allow, false to disallow function toggleSplit(address _account, bool _bool) external; /// @notice Permanently lock a veNFT. Voting power will be equal to /// `LockedBalance.amount` with no decay. Required to delegate. /// @dev Only callable by unlocked normal veNFTs. /// @param _tokenId tokenId to lock. function lockPermanent(uint256 _tokenId) external; /// @notice Unlock a permanently locked veNFT. Voting power will decay. /// Will automatically dedelegate if delegated. /// @dev Only callable by permanently locked veNFTs. /// Cannot unlock if already voted this epoch. /// @param _tokenId tokenId to unlock. function unlockPermanent(uint256 _tokenId) external; /*/////////////////////////////////////////////////////////////// GAUGE VOTING STORAGE //////////////////////////////////////////////////////////////*/ /// @notice Get the voting power for _tokenId at the current timestamp /// @dev Returns 0 if called in the same block as a transfer. /// @param _tokenId . /// @return Voting power function balanceOfNFT(uint256 _tokenId) external view returns (uint256); /// @notice Get the voting power for _tokenId at a given timestamp /// @param _tokenId . /// @param _t Timestamp to query voting power /// @return Voting power function balanceOfNFTAt(uint256 _tokenId, uint256 _t) external view returns (uint256); /// @notice Calculate total voting power at current timestamp /// @return Total voting power at current timestamp function totalSupply() external view returns (uint256); /// @notice Calculate total voting power at a given timestamp /// @param _t Timestamp to query total voting power /// @return Total voting power at given timestamp function totalSupplyAt(uint256 _t) external view returns (uint256); /*/////////////////////////////////////////////////////////////// GAUGE VOTING LOGIC //////////////////////////////////////////////////////////////*/ /// @notice See if a queried _tokenId has actively voted /// @param _tokenId . /// @return True if voted, else false function voted(uint256 _tokenId) external view returns (bool); /// @notice Set the global state voter and distributor /// @dev This is only called once, at setup function setVoterAndDistributor(address _voter, address _distributor) external; /// @notice Set `voted` for _tokenId to true or false /// @dev Only callable by voter /// @param _tokenId . /// @param _voted . function voting(uint256 _tokenId, bool _voted) external; /*/////////////////////////////////////////////////////////////// DAO VOTING STORAGE //////////////////////////////////////////////////////////////*/ /// @notice The number of checkpoints for each tokenId function numCheckpoints(uint256 tokenId) external view returns (uint48); /// @notice A record of states for signing / validating signatures function nonces(address account) external view returns (uint256); /// @inheritdoc IVotes function delegates(uint256 delegator) external view returns (uint256); /// @notice A record of delegated token checkpoints for each account, by index /// @param tokenId . /// @param index . /// @return Checkpoint function checkpoints(uint256 tokenId, uint48 index) external view returns (Checkpoint memory); /// @inheritdoc IVotes function getPastVotes(address account, uint256 tokenId, uint256 timestamp) external view returns (uint256); /// @inheritdoc IVotes function getPastTotalSupply(uint256 timestamp) external view returns (uint256); /*/////////////////////////////////////////////////////////////// DAO VOTING LOGIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc IVotes function delegate(uint256 delegator, uint256 delegatee) external; /// @inheritdoc IVotes function delegateBySig( uint256 delegator, uint256 delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) external; /*////////////////////////////////////////////////////////////// ERC6372 LOGIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc IERC6372 function clock() external view returns (uint48); /// @inheritdoc IERC6372 function CLOCK_MODE() external view returns (string memory); } interface IVoter { error AlreadyVotedOrDeposited(); error DistributeWindow(); error FactoryPathNotApproved(); error GaugeAlreadyKilled(); error GaugeAlreadyRevived(); error GaugeExists(); error GaugeDoesNotExist(address _pool); error GaugeNotAlive(address _gauge); error InactiveManagedNFT(); error MaximumVotingNumberTooLow(); error NonZeroVotes(); error NotAPool(); error NotApprovedOrOwner(); error NotGovernor(); error NotEmergencyCouncil(); error NotMinter(); error NotWhitelistedNFT(); error NotWhitelistedToken(); error SameValue(); error SpecialVotingWindow(); error TooManyPools(); error UnequalLengths(); error ZeroBalance(); error ZeroAddress(); event GaugeCreated( address indexed poolFactory, address indexed votingRewardsFactory, address indexed gaugeFactory, address pool, address bribeVotingReward, address feeVotingReward, address gauge, address creator ); event GaugeKilled(address indexed gauge); event GaugeRevived(address indexed gauge); event Voted( address indexed voter, address indexed pool, uint256 indexed tokenId, uint256 weight, uint256 totalWeight, uint256 timestamp ); event Abstained( address indexed voter, address indexed pool, uint256 indexed tokenId, uint256 weight, uint256 totalWeight, uint256 timestamp ); event NotifyReward(address indexed sender, address indexed reward, uint256 amount); event DistributeReward(address indexed sender, address indexed gauge, uint256 amount); event WhitelistToken(address indexed whitelister, address indexed token, bool indexed _bool); event WhitelistNFT(address indexed whitelister, uint256 indexed tokenId, bool indexed _bool); /// @notice Store trusted forwarder address to pass into factories function forwarder() external view returns (address); /// @notice The ve token that governs these contracts function ve() external view returns (address); /// @notice Factory registry for valid pool / gauge / rewards factories function factoryRegistry() external view returns (address); /// @notice Address of Minter.sol function minter() external view returns (address); /// @notice Standard OZ IGovernor using ve for vote weights. function governor() external view returns (address); /// @notice Custom Epoch Governor using ve for vote weights. function epochGovernor() external view returns (address); /// @notice credibly neutral party similar to Curve's Emergency DAO function emergencyCouncil() external view returns (address); /// @dev Total Voting Weights function totalWeight() external view returns (uint256); /// @dev Most number of pools one voter can vote for at once function maxVotingNum() external view returns (uint256); // mappings /// @dev Pool => Gauge function gauges(address pool) external view returns (address); /// @dev Gauge => Pool function poolForGauge(address gauge) external view returns (address); /// @dev Gauge => Fees Voting Reward function gaugeToFees(address gauge) external view returns (address); /// @dev Gauge => Bribes Voting Reward function gaugeToBribe(address gauge) external view returns (address); /// @dev Pool => Weights function weights(address pool) external view returns (uint256); /// @dev NFT => Pool => Votes function votes(uint256 tokenId, address pool) external view returns (uint256); /// @dev NFT => Total voting weight of NFT function usedWeights(uint256 tokenId) external view returns (uint256); /// @dev Nft => Timestamp of last vote (ensures single vote per epoch) function lastVoted(uint256 tokenId) external view returns (uint256); /// @dev Address => Gauge function isGauge(address) external view returns (bool); /// @dev Token => Whitelisted status function isWhitelistedToken(address token) external view returns (bool); /// @dev TokenId => Whitelisted status function isWhitelistedNFT(uint256 tokenId) external view returns (bool); /// @dev Gauge => Liveness status function isAlive(address gauge) external view returns (bool); /// @dev Gauge => Amount claimable function claimable(address gauge) external view returns (uint256); /// @notice Number of pools with a Gauge function length() external view returns (uint256); /// @notice Called by Minter to distribute weekly emissions rewards for disbursement amongst gauges. /// @dev Assumes totalWeight != 0 (Will never be zero as long as users are voting). /// Throws if not called by minter. /// @param _amount Amount of rewards to distribute. function notifyRewardAmount(uint256 _amount) external; /// @dev Utility to distribute to gauges of pools in range _start to _finish. /// @param _start Starting index of gauges to distribute to. /// @param _finish Ending index of gauges to distribute to. function distribute(uint256 _start, uint256 _finish) external; /// @dev Utility to distribute to gauges of pools in array. /// @param _gauges Array of gauges to distribute to. function distribute(address[] memory _gauges) external; /// @notice Called by users to update voting balances in voting rewards contracts. /// @param _tokenId Id of veNFT whose balance you wish to update. function poke(uint256 _tokenId) external; /// @notice Called by users to vote for pools. Votes distributed proportionally based on weights. /// Can only vote or deposit into a managed NFT once per epoch. /// Can only vote for gauges that have not been killed. /// @dev Weights are distributed proportional to the sum of the weights in the array. /// Throws if length of _poolVote and _weights do not match. /// @param _tokenId Id of veNFT you are voting with. /// @param _poolVote Array of pools you are voting for. /// @param _weights Weights of pools. function vote(uint256 _tokenId, address[] calldata _poolVote, uint256[] calldata _weights) external; /// @notice Called by users to reset voting state. Required if you wish to make changes to /// veNFT state (e.g. merge, split, deposit into managed etc). /// Cannot reset in the same epoch that you voted in. /// Can vote or deposit into a managed NFT again after reset. /// @param _tokenId Id of veNFT you are reseting. function reset(uint256 _tokenId) external; /// @notice Called by users to deposit into a managed NFT. /// Can only vote or deposit into a managed NFT once per epoch. /// Note that NFTs deposited into a managed NFT will be re-locked /// to the maximum lock time on withdrawal. /// @dev Throws if not approved or owner. /// Throws if managed NFT is inactive. /// Throws if depositing within privileged window (one hour prior to epoch flip). function depositManaged(uint256 _tokenId, uint256 _mTokenId) external; /// @notice Called by users to withdraw from a managed NFT. /// Cannot do it in the same epoch that you deposited into a managed NFT. /// Can vote or deposit into a managed NFT again after withdrawing. /// Note that the NFT withdrawn is re-locked to the maximum lock time. function withdrawManaged(uint256 _tokenId) external; /// @notice Claim emissions from gauges. /// @param _gauges Array of gauges to collect emissions from. function claimRewards(address[] memory _gauges) external; /// @notice Claim bribes for a given NFT. /// @dev Utility to help batch bribe claims. /// @param _bribes Array of BribeVotingReward contracts to collect from. /// @param _tokens Array of tokens that are used as bribes. /// @param _tokenId Id of veNFT that you wish to claim bribes for. function claimBribes(address[] memory _bribes, address[][] memory _tokens, uint256 _tokenId) external; /// @notice Claim fees for a given NFT. /// @dev Utility to help batch fee claims. /// @param _fees Array of FeesVotingReward contracts to collect from. /// @param _tokens Array of tokens that are used as fees. /// @param _tokenId Id of veNFT that you wish to claim fees for. function claimFees(address[] memory _fees, address[][] memory _tokens, uint256 _tokenId) external; /// @notice Set new governor. /// @dev Throws if not called by governor. /// @param _governor . function setGovernor(address _governor) external; /// @notice Set new epoch based governor. /// @dev Throws if not called by governor. /// @param _epochGovernor . function setEpochGovernor(address _epochGovernor) external; /// @notice Set new emergency council. /// @dev Throws if not called by emergency council. /// @param _emergencyCouncil . function setEmergencyCouncil(address _emergencyCouncil) external; /// @notice Set maximum number of gauges that can be voted for. /// @dev Throws if not called by governor. /// Throws if _maxVotingNum is too low. /// Throws if the values are the same. /// @param _maxVotingNum . function setMaxVotingNum(uint256 _maxVotingNum) external; /// @notice Whitelist (or unwhitelist) token for use in bribes. /// @dev Throws if not called by governor. /// @param _token . /// @param _bool . function whitelistToken(address _token, bool _bool) external; /// @notice Whitelist (or unwhitelist) token id for voting in last hour prior to epoch flip. /// @dev Throws if not called by governor. /// Throws if already whitelisted. /// @param _tokenId . /// @param _bool . function whitelistNFT(uint256 _tokenId, bool _bool) external; /// @notice Create a new gauge (unpermissioned). /// @dev Governor can create a new gauge for a pool with any address. /// @param _poolFactory . /// @param _pool . function createGauge(address _poolFactory, address _pool) external returns (address); /// @notice Kills a gauge. The gauge will not receive any new emissions and cannot be deposited into. /// Can still withdraw from gauge. /// @dev Throws if not called by emergency council. /// Throws if gauge already killed. /// @param _gauge . function killGauge(address _gauge) external; /// @notice Revives a killed gauge. Gauge will can receive emissions and deposits again. /// @dev Throws if not called by emergency council. /// Throws if gauge is not killed. /// @param _gauge . function reviveGauge(address _gauge) external; /// @dev Update claims to emissions for an array of gauges. /// @param _gauges Array of gauges to update emissions for. function updateFor(address[] memory _gauges) external; /// @dev Update claims to emissions for gauges based on their pool id as stored in Voter. /// @param _start Starting index of pools. /// @param _end Ending index of pools. function updateFor(uint256 _start, uint256 _end) external; /// @dev Update claims to emissions for single gauge /// @param _gauge . function updateFor(address _gauge) external; } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Permit.sol) /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } /** * @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)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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"); } } } interface IReward { error InvalidReward(); error NotAuthorized(); error NotGauge(); error NotEscrowToken(); error NotSingleToken(); error NotVotingEscrow(); error NotWhitelisted(); error ZeroAmount(); event Deposit(address indexed from, uint256 indexed tokenId, uint256 amount); event Withdraw(address indexed from, uint256 indexed tokenId, uint256 amount); event NotifyReward(address indexed from, address indexed reward, uint256 indexed epoch, uint256 amount); event ClaimRewards(address indexed from, address indexed reward, uint256 amount); /// @notice A checkpoint for marking balance struct Checkpoint { uint256 timestamp; uint256 balanceOf; } /// @notice A checkpoint for marking supply struct SupplyCheckpoint { uint256 timestamp; uint256 supply; } /// @notice Epoch duration constant (7 days) function DURATION() external view returns (uint256); /// @notice Address of Voter.sol function voter() external view returns (address); /// @notice Address of VotingEscrow.sol function ve() external view returns (address); /// @dev Address which has permission to externally call _deposit() & _withdraw() function authorized() external view returns (address); /// @notice Total amount currently deposited via _deposit() function totalSupply() external view returns (uint256); /// @notice Current amount deposited by tokenId function balanceOf(uint256 tokenId) external view returns (uint256); /// @notice Amount of tokens to reward depositors for a given epoch /// @param token Address of token to reward /// @param epochStart Startime of rewards epoch /// @return Amount of token function tokenRewardsPerEpoch(address token, uint256 epochStart) external view returns (uint256); /// @notice Most recent timestamp a veNFT has claimed their rewards /// @param token Address of token rewarded /// @param tokenId veNFT unique identifier /// @return Timestamp function lastEarn(address token, uint256 tokenId) external view returns (uint256); /// @notice True if a token is or has been an active reward token, else false function isReward(address token) external view returns (bool); /// @notice The number of checkpoints for each tokenId deposited function numCheckpoints(uint256 tokenId) external view returns (uint256); /// @notice The total number of checkpoints function supplyNumCheckpoints() external view returns (uint256); /// @notice Deposit an amount into the rewards contract to earn future rewards associated to a veNFT /// @dev Internal notation used as only callable internally by `authorized`. /// @param amount Amount deposited for the veNFT /// @param tokenId Unique identifier of the veNFT function _deposit(uint256 amount, uint256 tokenId) external; /// @notice Withdraw an amount from the rewards contract associated to a veNFT /// @dev Internal notation used as only callable internally by `authorized`. /// @param amount Amount deposited for the veNFT /// @param tokenId Unique identifier of the veNFT function _withdraw(uint256 amount, uint256 tokenId) external; /// @notice Claim the rewards earned by a veNFT staker /// @param tokenId Unique identifier of the veNFT /// @param tokens Array of tokens to claim rewards of function getReward(uint256 tokenId, address[] memory tokens) external; /// @notice Add rewards for stakers to earn /// @param token Address of token to reward /// @param amount Amount of token to transfer to rewards function notifyRewardAmount(address token, uint256 amount) external; /// @notice Determine the prior balance for an account as of a block number /// @dev Block number must be a finalized block or else this function will revert to prevent misinformation. /// @param tokenId The token of the NFT to check /// @param timestamp The timestamp to get the balance at /// @return The balance the account had as of the given block function getPriorBalanceIndex(uint256 tokenId, uint256 timestamp) external view returns (uint256); /// @notice Determine the prior index of supply staked by of a timestamp /// @dev Timestamp must be <= current timestamp /// @param timestamp The timestamp to get the index at /// @return Index of supply checkpoint function getPriorSupplyIndex(uint256 timestamp) external view returns (uint256); /// @notice Get number of rewards tokens function rewardsListLength() external view returns (uint256); /// @notice Calculate how much in rewards are earned for a specific token and veNFT /// @param token Address of token to fetch rewards of /// @param tokenId Unique identifier of the veNFT /// @return Amount of token earned in rewards function earned(address token, uint256 tokenId) external view returns (uint256); } interface IFactoryRegistry { error FallbackFactory(); error InvalidFactoriesToPoolFactory(); error PathAlreadyApproved(); error PathNotApproved(); error SameAddress(); error ZeroAddress(); event Approve(address indexed poolFactory, address indexed votingRewardsFactory, address indexed gaugeFactory); event Unapprove(address indexed poolFactory, address indexed votingRewardsFactory, address indexed gaugeFactory); event SetManagedRewardsFactory(address indexed _newRewardsFactory); /// @notice Approve a set of factories used in the Protocol. /// Router.sol is able to swap any poolFactories currently approved. /// Cannot approve address(0) factories. /// Cannot aprove path that is already approved. /// Each poolFactory has one unique set and maintains state. In the case a poolFactory is unapproved /// and then re-approved, the same set of factories must be used. In other words, you cannot overwrite /// the factories tied to a poolFactory address. /// VotingRewardsFactories and GaugeFactories may use the same address across multiple poolFactories. /// @dev Callable by onlyOwner /// @param poolFactory . /// @param votingRewardsFactory . /// @param gaugeFactory . function approve(address poolFactory, address votingRewardsFactory, address gaugeFactory) external; /// @notice Unapprove a set of factories used in the Protocol. /// While a poolFactory is unapproved, Router.sol cannot swap with pools made from the corresponding factory /// Can only unapprove an approved path. /// Cannot unapprove the fallback path (core v2 factories). /// @dev Callable by onlyOwner /// @param poolFactory . function unapprove(address poolFactory) external; /// @notice Factory to create free and locked rewards for a managed veNFT function managedRewardsFactory() external view returns (address); /// @notice Set the rewards factory address /// @dev Callable by onlyOwner /// @param _newManagedRewardsFactory address of new managedRewardsFactory function setManagedRewardsFactory(address _newManagedRewardsFactory) external; /// @notice Get the factories correlated to a poolFactory. /// Once set, this can never be modified. /// Returns the correlated factories even after an approved poolFactory is unapproved. function factoriesToPoolFactory( address poolFactory ) external view returns (address votingRewardsFactory, address gaugeFactory); /// @notice Get all PoolFactories approved by the registry /// @dev The same PoolFactory address cannot be used twice /// @return Array of PoolFactory addresses function poolFactories() external view returns (address[] memory); /// @notice Check if a PoolFactory is approved within the factory registry. Router uses this method to /// ensure a pool swapped from is approved. /// @param poolFactory . /// @return True if PoolFactory is approved, else false function isPoolFactoryApproved(address poolFactory) external view returns (bool); /// @notice Get the length of the poolFactories array function poolFactoriesLength() external view returns (uint256); } interface IManagedRewardsFactory { event ManagedRewardCreated( address indexed voter, address indexed lockedManagedReward, address indexed freeManagedReward ); /// @notice creates a LockedManagedReward and a FreeManagedReward contract for a managed veNFT /// @param _forwarder Address of trusted forwarder /// @param _voter Address of Voter.sol /// @return lockedManagedReward Address of LockedManagedReward contract created /// @return freeManagedReward Address of FreeManagedReward contract created function createRewards( address _forwarder, address _voter ) external returns (address lockedManagedReward, address freeManagedReward); } // OpenZeppelin Contracts (last updated v4.7.0) (metatx/ERC2771Context.sol) // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } /** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771Context is Context { /// @custom:oz-upgrades-unsafe-allow state-variable-immutable address private immutable _trustedForwarder; /// @custom:oz-upgrades-unsafe-allow constructor constructor(address trustedForwarder) { _trustedForwarder = trustedForwarder; } function isTrustedForwarder(address forwarder) public view virtual returns (bool) { return forwarder == _trustedForwarder; } function _msgSender() internal view virtual override returns (address sender) { if (isTrustedForwarder(msg.sender)) { // The assembly code is more direct than the Solidity version using `abi.decode`. /// @solidity memory-safe-assembly assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return super._msgSender(); } } function _msgData() internal view virtual override returns (bytes calldata) { if (isTrustedForwarder(msg.sender)) { return msg.data[:msg.data.length - 20]; } else { return super._msgData(); } } } // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } /// @title SafeCast Library /// @author velodrome.finance /// @notice Safely convert unsigned and signed integers without overflow / underflow library SafeCastLibrary { error SafeCastOverflow(); error SafeCastUnderflow(); /// @dev Safely convert uint256 to int128 function toInt128(uint256 value) internal pure returns (int128) { if (value > uint128(type(int128).max)) revert SafeCastOverflow(); return int128(uint128(value)); } /// @dev Safely convert int128 to uint256 function toUint256(int128 value) internal pure returns (uint256) { if (value < 0) revert SafeCastUnderflow(); return uint256(int256(value)); } } library DelegationLogicLibrary { using SafeCastLibrary for int128; /// @notice Used by `_mint`, `_transferFrom`, `_burn` and `delegate` /// to update delegator voting checkpoints. /// Automatically dedelegates, then updates checkpoint. /// @dev This function depends on `_locked` and must be called prior to token state changes. /// If you wish to dedelegate only, use `_delegate(tokenId, 0)` instead. /// @param _locked State of all locked balances /// @param _numCheckpoints State of all user checkpoint counts /// @param _checkpoints State of all user checkpoints /// @param _delegates State of all user delegatees /// @param _delegator The delegator to update checkpoints for /// @param _delegatee The new delegatee for the delegator. Cannot be equal to `_delegator` (use 0 instead). /// @param _owner The new (or current) owner for the delegator function checkpointDelegator( mapping(uint256 => IVotingEscrow.LockedBalance) storage _locked, mapping(uint256 => uint48) storage _numCheckpoints, mapping(uint256 => mapping(uint48 => IVotingEscrow.Checkpoint)) storage _checkpoints, mapping(uint256 => uint256) storage _delegates, uint256 _delegator, uint256 _delegatee, address _owner ) external { uint256 delegatedBalance = _locked[_delegator].amount.toUint256(); uint48 numCheckpoint = _numCheckpoints[_delegator]; IVotingEscrow.Checkpoint storage cpOld = numCheckpoint > 0 ? _checkpoints[_delegator][numCheckpoint - 1] : _checkpoints[_delegator][0]; // Dedelegate from delegatee if delegated checkpointDelegatee(_numCheckpoints, _checkpoints, cpOld.delegatee, delegatedBalance, false); IVotingEscrow.Checkpoint storage cp = _checkpoints[_delegator][numCheckpoint]; cp.fromTimestamp = block.timestamp; cp.delegatedBalance = cpOld.delegatedBalance; cp.delegatee = _delegatee; cp.owner = _owner; if (_isCheckpointInNewBlock(_numCheckpoints, _checkpoints, _delegator)) { _numCheckpoints[_delegator]++; } else { _checkpoints[_delegator][numCheckpoint - 1] = cp; delete _checkpoints[_delegator][numCheckpoint]; } _delegates[_delegator] = _delegatee; } /// @notice Update delegatee's `delegatedBalance` by `balance`. /// Only updates if delegating to a new delegatee. /// @dev If used with `balance` == `_locked[_tokenId].amount`, then this is the same as /// delegating or dedelegating from `_tokenId` /// If used with `balance` < `_locked[_tokenId].amount`, then this is used to adjust /// `delegatedBalance` when a user's balance is modified (e.g. `increaseAmount`, `merge` etc). /// If `delegatee` is 0 (i.e. user is not delegating), then do nothing. /// @param _numCheckpoints State of all user checkpoint counts /// @param _checkpoints State of all user checkpoints /// @param _delegatee The delegatee's tokenId /// @param balance_ The delta in balance change /// @param _increase True if balance is increasing, false if decreasing function checkpointDelegatee( mapping(uint256 => uint48) storage _numCheckpoints, mapping(uint256 => mapping(uint48 => IVotingEscrow.Checkpoint)) storage _checkpoints, uint256 _delegatee, uint256 balance_, bool _increase ) public { if (_delegatee == 0) return; uint48 numCheckpoint = _numCheckpoints[_delegatee]; IVotingEscrow.Checkpoint storage cpOld = numCheckpoint > 0 ? _checkpoints[_delegatee][numCheckpoint - 1] : _checkpoints[_delegatee][0]; IVotingEscrow.Checkpoint storage cp = _checkpoints[_delegatee][numCheckpoint]; cp.fromTimestamp = block.timestamp; cp.owner = cpOld.owner; // do not expect balance_ > cpOld.delegatedBalance when decrementing but just in case cp.delegatedBalance = _increase ? cpOld.delegatedBalance + balance_ : (balance_ < cpOld.delegatedBalance ? cpOld.delegatedBalance - balance_ : 0); cp.delegatee = cpOld.delegatee; if (_isCheckpointInNewBlock(_numCheckpoints, _checkpoints, _delegatee)) { _numCheckpoints[_delegatee]++; } else { _checkpoints[_delegatee][numCheckpoint - 1] = cp; delete _checkpoints[_delegatee][numCheckpoint]; } } function _isCheckpointInNewBlock( mapping(uint256 => uint48) storage _numCheckpoints, mapping(uint256 => mapping(uint48 => IVotingEscrow.Checkpoint)) storage _checkpoints, uint256 _tokenId ) internal view returns (bool) { uint48 _nCheckPoints = _numCheckpoints[_tokenId]; if (_nCheckPoints > 0 && _checkpoints[_tokenId][_nCheckPoints - 1].fromTimestamp == block.timestamp) { return false; } else { return true; } } /// @notice Binary search to get the voting checkpoint for a token id at or prior to a given timestamp. /// @dev If a checkpoint does not exist prior to the timestamp, this will return 0. /// @param _numCheckpoints State of all user checkpoint counts /// @param _checkpoints State of all user checkpoints /// @param _tokenId . /// @param _timestamp . /// @return The index of the checkpoint. function getPastVotesIndex( mapping(uint256 => uint48) storage _numCheckpoints, mapping(uint256 => mapping(uint48 => IVotingEscrow.Checkpoint)) storage _checkpoints, uint256 _tokenId, uint256 _timestamp ) internal view returns (uint48) { uint48 nCheckpoints = _numCheckpoints[_tokenId]; if (nCheckpoints == 0) return 0; // First check most recent balance if (_checkpoints[_tokenId][nCheckpoints - 1].fromTimestamp <= _timestamp) return (nCheckpoints - 1); // Next check implicit zero balance if (_checkpoints[_tokenId][0].fromTimestamp > _timestamp) return 0; uint48 lower = 0; uint48 upper = nCheckpoints - 1; while (upper > lower) { uint48 center = upper - (upper - lower) / 2; // ceil, avoiding overflow IVotingEscrow.Checkpoint storage cp = _checkpoints[_tokenId][center]; if (cp.fromTimestamp == _timestamp) { return center; } else if (cp.fromTimestamp < _timestamp) { lower = center; } else { upper = center - 1; } } return lower; } /// @notice Retrieves historical voting balance for a token id at a given timestamp. /// @dev If a checkpoint does not exist prior to the timestamp, this will return 0. /// The user must also own the token at the time in order to receive a voting balance. /// @param _numCheckpoints State of all user checkpoint counts /// @param _checkpoints State of all user checkpoints /// @param _account . /// @param _tokenId . /// @param _timestamp . /// @return Total voting balance including delegations at a given timestamp. function getPastVotes( mapping(uint256 => uint48) storage _numCheckpoints, mapping(uint256 => mapping(uint48 => IVotingEscrow.Checkpoint)) storage _checkpoints, address _account, uint256 _tokenId, uint256 _timestamp ) external view returns (uint256) { uint48 _checkIndex = getPastVotesIndex(_numCheckpoints, _checkpoints, _tokenId, _timestamp); IVotingEscrow.Checkpoint memory lastCheckpoint = _checkpoints[_tokenId][_checkIndex]; // If no point exists prior to the given timestamp, return 0 if (lastCheckpoint.fromTimestamp > _timestamp) return 0; // Check ownership if (_account != lastCheckpoint.owner) return 0; uint256 votes = lastCheckpoint.delegatedBalance; return lastCheckpoint.delegatee == 0 ? votes + IVotingEscrow(address(this)).balanceOfNFTAt(_tokenId, _timestamp) : votes; } } library BalanceLogicLibrary { using SafeCastLibrary for uint256; using SafeCastLibrary for int128; uint256 internal constant WEEK = 1 weeks; /// @notice Binary search to get the user point index for a token id at or prior to a given timestamp /// @dev If a user point does not exist prior to the timestamp, this will return 0. /// @param _userPointEpoch State of all user point epochs /// @param _userPointHistory State of all user point history /// @param _tokenId . /// @param _timestamp . /// @return User point index function getPastUserPointIndex( mapping(uint256 => uint256) storage _userPointEpoch, mapping(uint256 => IVotingEscrow.UserPoint[1000000000]) storage _userPointHistory, uint256 _tokenId, uint256 _timestamp ) internal view returns (uint256) { uint256 _userEpoch = _userPointEpoch[_tokenId]; if (_userEpoch == 0) return 0; // First check most recent balance if (_userPointHistory[_tokenId][_userEpoch].ts <= _timestamp) return (_userEpoch); // Next check implicit zero balance if (_userPointHistory[_tokenId][1].ts > _timestamp) return 0; uint256 lower = 0; uint256 upper = _userEpoch; while (upper > lower) { uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow IVotingEscrow.UserPoint storage userPoint = _userPointHistory[_tokenId][center]; if (userPoint.ts == _timestamp) { return center; } else if (userPoint.ts < _timestamp) { lower = center; } else { upper = center - 1; } } return lower; } /// @notice Binary search to get the global point index at or prior to a given timestamp /// @dev If a checkpoint does not exist prior to the timestamp, this will return 0. /// @param _epoch Current global point epoch /// @param _pointHistory State of all global point history /// @param _timestamp . /// @return Global point index function getPastGlobalPointIndex( uint256 _epoch, mapping(uint256 => IVotingEscrow.GlobalPoint) storage _pointHistory, uint256 _timestamp ) internal view returns (uint256) { if (_epoch == 0) return 0; // First check most recent balance if (_pointHistory[_epoch].ts <= _timestamp) return (_epoch); // Next check implicit zero balance if (_pointHistory[1].ts > _timestamp) return 0; uint256 lower = 0; uint256 upper = _epoch; while (upper > lower) { uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow IVotingEscrow.GlobalPoint storage globalPoint = _pointHistory[center]; if (globalPoint.ts == _timestamp) { return center; } else if (globalPoint.ts < _timestamp) { lower = center; } else { upper = center - 1; } } return lower; } /// @notice Get the current voting power for `_tokenId` /// @dev Adheres to the ERC20 `balanceOf` interface for Aragon compatibility /// Fetches last user point prior to a certain timestamp, then walks forward to timestamp. /// @param _userPointEpoch State of all user point epochs /// @param _userPointHistory State of all user point history /// @param _tokenId NFT for lock /// @param _t Epoch time to return voting power at /// @return User voting power function balanceOfNFTAt( mapping(uint256 => uint256) storage _userPointEpoch, mapping(uint256 => IVotingEscrow.UserPoint[1000000000]) storage _userPointHistory, uint256 _tokenId, uint256 _t ) external view returns (uint256) { uint256 _epoch = getPastUserPointIndex(_userPointEpoch, _userPointHistory, _tokenId, _t); // epoch 0 is an empty point if (_epoch == 0) return 0; IVotingEscrow.UserPoint memory lastPoint = _userPointHistory[_tokenId][_epoch]; if (lastPoint.permanent != 0) { return lastPoint.permanent; } else { lastPoint.bias -= lastPoint.slope * (_t - lastPoint.ts).toInt128(); if (lastPoint.bias < 0) { lastPoint.bias = 0; } return lastPoint.bias.toUint256(); } } /// @notice Calculate total voting power at some point in the past /// @param _slopeChanges State of all slopeChanges /// @param _pointHistory State of all global point history /// @param _epoch The epoch to start search from /// @param _t Time to calculate the total voting power at /// @return Total voting power at that time function supplyAt( mapping(uint256 => int128) storage _slopeChanges, mapping(uint256 => IVotingEscrow.GlobalPoint) storage _pointHistory, uint256 _epoch, uint256 _t ) external view returns (uint256) { uint256 epoch_ = getPastGlobalPointIndex(_epoch, _pointHistory, _t); // epoch 0 is an empty point if (epoch_ == 0) return 0; IVotingEscrow.GlobalPoint memory _point = _pointHistory[epoch_]; int128 bias = _point.bias; int128 slope = _point.slope; uint256 ts = _point.ts; uint256 t_i = (ts / WEEK) * WEEK; for (uint256 i = 0; i < 255; ++i) { t_i += WEEK; int128 dSlope = 0; if (t_i > _t) { t_i = _t; } else { dSlope = _slopeChanges[t_i]; } bias -= slope * (t_i - ts).toInt128(); if (t_i == _t) { break; } slope += dSlope; ts = t_i; } if (bias < 0) { bias = 0; } return bias.toUint256() + _point.permanentLockBalance; } } /// @title Voting Escrow /// @notice veNFT implementation that escrows ERC-20 tokens in the form of an ERC-721 NFT /// @notice Votes have a weight depending on time, so that users are committed to the future of (whatever they are voting for) /// @author Modified from Solidly (https://github.com/solidlyexchange/solidly/blob/master/contracts/ve.sol) /// @author Modified from Curve (https://github.com/curvefi/curve-dao-contracts/blob/master/contracts/VotingEscrow.vy) /// @author velodrome.finance, @figs999, @pegahcarter /// @dev Vote weight decays linearly over time. Lock time cannot be more than `MAXTIME` (4 years). contract VotingEscrow is IVotingEscrow, ERC2771Context, ReentrancyGuard { using SafeERC20 for IERC20; using SafeCastLibrary for uint256; using SafeCastLibrary for int128; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ /// @inheritdoc IVotingEscrow address public immutable forwarder; /// @inheritdoc IVotingEscrow address public immutable factoryRegistry; /// @inheritdoc IVotingEscrow address public immutable token; /// @inheritdoc IVotingEscrow address public distributor; /// @inheritdoc IVotingEscrow address public voter; /// @inheritdoc IVotingEscrow address public team; /// @inheritdoc IVotingEscrow address public artProxy; /// @inheritdoc IVotingEscrow address public allowedManager; mapping(uint256 => GlobalPoint) internal _pointHistory; // epoch -> unsigned global point /// @dev Mapping of interface id to bool about whether or not it's supported mapping(bytes4 => bool) internal supportedInterfaces; /// @dev ERC165 interface ID of ERC165 bytes4 internal constant ERC165_INTERFACE_ID = 0x01ffc9a7; /// @dev ERC165 interface ID of ERC721 bytes4 internal constant ERC721_INTERFACE_ID = 0x80ac58cd; /// @dev ERC165 interface ID of ERC721Metadata bytes4 internal constant ERC721_METADATA_INTERFACE_ID = 0x5b5e139f; /// @dev ERC165 interface ID of ERC4906 bytes4 internal constant ERC4906_INTERFACE_ID = 0x49064906; /// @dev ERC165 interface ID of ERC6372 bytes4 internal constant ERC6372_INTERFACE_ID = 0xda287a1d; /// @inheritdoc IVotingEscrow uint256 public tokenId; /// @param _forwarder address of trusted forwarder /// @param _token `AERO` token address /// @param _factoryRegistry Factory Registry address constructor(address _forwarder, address _token, address _factoryRegistry) ERC2771Context(_forwarder) { forwarder = _forwarder; token = _token; factoryRegistry = _factoryRegistry; team = _msgSender(); voter = _msgSender(); _pointHistory[0].blk = block.number; _pointHistory[0].ts = block.timestamp; supportedInterfaces[ERC165_INTERFACE_ID] = true; supportedInterfaces[ERC721_INTERFACE_ID] = true; supportedInterfaces[ERC721_METADATA_INTERFACE_ID] = true; supportedInterfaces[ERC4906_INTERFACE_ID] = true; supportedInterfaces[ERC6372_INTERFACE_ID] = true; // mint-ish emit Transfer(address(0), address(this), tokenId); // burn-ish emit Transfer(address(this), address(0), tokenId); } /*/////////////////////////////////////////////////////////////// MANAGED NFT STORAGE //////////////////////////////////////////////////////////////*/ /// @inheritdoc IVotingEscrow mapping(uint256 => EscrowType) public escrowType; /// @inheritdoc IVotingEscrow mapping(uint256 => uint256) public idToManaged; /// @inheritdoc IVotingEscrow mapping(uint256 => mapping(uint256 => uint256)) public weights; /// @inheritdoc IVotingEscrow mapping(uint256 => bool) public deactivated; /// @inheritdoc IVotingEscrow mapping(uint256 => address) public managedToLocked; /// @inheritdoc IVotingEscrow mapping(uint256 => address) public managedToFree; /*/////////////////////////////////////////////////////////////// MANAGED NFT LOGIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc IVotingEscrow function createManagedLockFor(address _to) external nonReentrant returns (uint256 _mTokenId) { address sender = _msgSender(); if (sender != allowedManager && sender != IVoter(voter).governor()) revert NotGovernorOrManager(); _mTokenId = ++tokenId; _mint(_to, _mTokenId); _depositFor(_mTokenId, 0, 0, LockedBalance(0, 0, true), DepositType.CREATE_LOCK_TYPE); escrowType[_mTokenId] = EscrowType.MANAGED; (address _lockedManagedReward, address _freeManagedReward) = IManagedRewardsFactory( IFactoryRegistry(factoryRegistry).managedRewardsFactory() ).createRewards(forwarder, voter); managedToLocked[_mTokenId] = _lockedManagedReward; managedToFree[_mTokenId] = _freeManagedReward; emit CreateManaged(_to, _mTokenId, sender, _lockedManagedReward, _freeManagedReward); } /// @inheritdoc IVotingEscrow function depositManaged(uint256 _tokenId, uint256 _mTokenId) external nonReentrant { if (_msgSender() != voter) revert NotVoter(); if (escrowType[_mTokenId] != EscrowType.MANAGED) revert NotManagedNFT(); if (escrowType[_tokenId] != EscrowType.NORMAL) revert NotNormalNFT(); if (_balanceOfNFTAt(_tokenId, block.timestamp) == 0) revert ZeroBalance(); // adjust user nft int128 _amount = _locked[_tokenId].amount; if (_locked[_tokenId].isPermanent) { permanentLockBalance -= _amount.toUint256(); _delegate(_tokenId, 0); } _checkpoint(_tokenId, _locked[_tokenId], LockedBalance(0, 0, false)); _locked[_tokenId] = LockedBalance(0, 0, false); // adjust managed nft uint256 _weight = _amount.toUint256(); permanentLockBalance += _weight; LockedBalance memory newLocked = _locked[_mTokenId]; newLocked.amount += _amount; _checkpointDelegatee(_delegates[_mTokenId], _weight, true); _checkpoint(_mTokenId, _locked[_mTokenId], newLocked); _locked[_mTokenId] = newLocked; weights[_tokenId][_mTokenId] = _weight; idToManaged[_tokenId] = _mTokenId; escrowType[_tokenId] = EscrowType.LOCKED; address _lockedManagedReward = managedToLocked[_mTokenId]; IReward(_lockedManagedReward)._deposit(_weight, _tokenId); address _freeManagedReward = managedToFree[_mTokenId]; IReward(_freeManagedReward)._deposit(_weight, _tokenId); emit DepositManaged(_ownerOf(_tokenId), _tokenId, _mTokenId, _weight, block.timestamp); emit MetadataUpdate(_tokenId); } /// @inheritdoc IVotingEscrow function withdrawManaged(uint256 _tokenId) external nonReentrant { uint256 _mTokenId = idToManaged[_tokenId]; if (_msgSender() != voter) revert NotVoter(); if (_mTokenId == 0) revert InvalidManagedNFTId(); if (escrowType[_tokenId] != EscrowType.LOCKED) revert NotLockedNFT(); // update accrued rewards address _lockedManagedReward = managedToLocked[_mTokenId]; address _freeManagedReward = managedToFree[_mTokenId]; uint256 _weight = weights[_tokenId][_mTokenId]; uint256 _reward = IReward(_lockedManagedReward).earned(address(token), _tokenId); uint256 _total = _weight + _reward; uint256 _unlockTime = ((block.timestamp + MAXTIME) / WEEK) * WEEK; // claim locked rewards (rebases + compounded reward) address[] memory rewards = new address[](1); rewards[0] = address(token); IReward(_lockedManagedReward).getReward(_tokenId, rewards); // adjust user nft LockedBalance memory newLockedNormal = LockedBalance(_total.toInt128(), _unlockTime, false); _checkpoint(_tokenId, _locked[_tokenId], newLockedNormal); _locked[_tokenId] = newLockedNormal; // adjust managed nft LockedBalance memory newLockedManaged = _locked[_mTokenId]; // do not expect _total > locked.amount / permanentLockBalance but just in case newLockedManaged.amount -= ( _total.toInt128() < newLockedManaged.amount ? _total.toInt128() : newLockedManaged.amount ); permanentLockBalance -= (_total < permanentLockBalance ? _total : permanentLockBalance); _checkpointDelegatee(_delegates[_mTokenId], _total, false); _checkpoint(_mTokenId, _locked[_mTokenId], newLockedManaged); _locked[_mTokenId] = newLockedManaged; IReward(_lockedManagedReward)._withdraw(_weight, _tokenId); IReward(_freeManagedReward)._withdraw(_weight, _tokenId); delete idToManaged[_tokenId]; delete weights[_tokenId][_mTokenId]; delete escrowType[_tokenId]; emit WithdrawManaged(_ownerOf(_tokenId), _tokenId, _mTokenId, _total, block.timestamp); emit MetadataUpdate(_tokenId); } /// @inheritdoc IVotingEscrow function setAllowedManager(address _allowedManager) external { if (_msgSender() != IVoter(voter).governor()) revert NotGovernor(); if (_allowedManager == allowedManager) revert SameAddress(); if (_allowedManager == address(0)) revert ZeroAddress(); allowedManager = _allowedManager; emit SetAllowedManager(_allowedManager); } /// @inheritdoc IVotingEscrow function setManagedState(uint256 _mTokenId, bool _state) external { if (_msgSender() != IVoter(voter).emergencyCouncil() && _msgSender() != IVoter(voter).governor()) revert NotEmergencyCouncilOrGovernor(); if (escrowType[_mTokenId] != EscrowType.MANAGED) revert NotManagedNFT(); if (deactivated[_mTokenId] == _state) revert SameState(); deactivated[_mTokenId] = _state; } /*/////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ string public constant name = "veNFT"; string public constant symbol = "veNFT"; string public constant version = "2.0.0"; uint8 public constant decimals = 18; function setTeam(address _team) external { if (_msgSender() != team) revert NotTeam(); if (_team == address(0)) revert ZeroAddress(); team = _team; } function setArtProxy(address _proxy) external { if (_msgSender() != team) revert NotTeam(); artProxy = _proxy; emit BatchMetadataUpdate(0, type(uint256).max); } /// @inheritdoc IVotingEscrow function tokenURI(uint256 _tokenId) external view returns (string memory) { if (_ownerOf(_tokenId) == address(0)) revert NonExistentToken(); return IVeArtProxy(artProxy).tokenURI(_tokenId); } /*////////////////////////////////////////////////////////////// ERC721 BALANCE/OWNER STORAGE //////////////////////////////////////////////////////////////*/ /// @dev Mapping from NFT ID to the address that owns it. mapping(uint256 => address) internal idToOwner; /// @dev Mapping from owner address to count of his tokens. mapping(address => uint256) internal ownerToNFTokenCount; function _ownerOf(uint256 _tokenId) internal view returns (address) { return idToOwner[_tokenId]; } /// @inheritdoc IVotingEscrow function ownerOf(uint256 _tokenId) external view returns (address) { return _ownerOf(_tokenId); } /// @inheritdoc IVotingEscrow function balanceOf(address _owner) external view returns (uint256) { return ownerToNFTokenCount[_owner]; } /*////////////////////////////////////////////////////////////// ERC721 APPROVAL STORAGE //////////////////////////////////////////////////////////////*/ /// @dev Mapping from NFT ID to approved address. mapping(uint256 => address) internal idToApprovals; /// @dev Mapping from owner address to mapping of operator addresses. mapping(address => mapping(address => bool)) internal ownerToOperators; mapping(uint256 => uint256) internal ownershipChange; /// @inheritdoc IVotingEscrow function getApproved(uint256 _tokenId) external view returns (address) { return idToApprovals[_tokenId]; } /// @inheritdoc IVotingEscrow function isApprovedForAll(address _owner, address _operator) external view returns (bool) { return (ownerToOperators[_owner])[_operator]; } /// @inheritdoc IVotingEscrow function isApprovedOrOwner(address _spender, uint256 _tokenId) external view returns (bool) { return _isApprovedOrOwner(_spender, _tokenId); } function _isApprovedOrOwner(address _spender, uint256 _tokenId) internal view returns (bool) { address owner = _ownerOf(_tokenId); bool spenderIsOwner = owner == _spender; bool spenderIsApproved = _spender == idToApprovals[_tokenId]; bool spenderIsApprovedForAll = (ownerToOperators[owner])[_spender]; return spenderIsOwner || spenderIsApproved || spenderIsApprovedForAll; } /*////////////////////////////////////////////////////////////// ERC721 LOGIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc IVotingEscrow function approve(address _approved, uint256 _tokenId) external { address sender = _msgSender(); address owner = _ownerOf(_tokenId); // Throws if `_tokenId` is not a valid NFT if (owner == address(0)) revert ZeroAddress(); // Throws if `_approved` is the current owner if (owner == _approved) revert SameAddress(); // Check requirements bool senderIsOwner = (_ownerOf(_tokenId) == sender); bool senderIsApprovedForAll = (ownerToOperators[owner])[sender]; if (!senderIsOwner && !senderIsApprovedForAll) revert NotApprovedOrOwner(); // Set the approval idToApprovals[_tokenId] = _approved; emit Approval(owner, _approved, _tokenId); } /// @inheritdoc IVotingEscrow function setApprovalForAll(address _operator, bool _approved) external { address sender = _msgSender(); // Throws if `_operator` is the `msg.sender` if (_operator == sender) revert SameAddress(); ownerToOperators[sender][_operator] = _approved; emit ApprovalForAll(sender, _operator, _approved); } /* TRANSFER FUNCTIONS */ function _transferFrom(address _from, address _to, uint256 _tokenId, address _sender) internal { if (escrowType[_tokenId] == EscrowType.LOCKED) revert NotManagedOrNormalNFT(); // Check requirements if (!_isApprovedOrOwner(_sender, _tokenId)) revert NotApprovedOrOwner(); // Clear approval. Throws if `_from` is not the current owner if (_ownerOf(_tokenId) != _from) revert NotOwner(); delete idToApprovals[_tokenId]; // Remove NFT. Throws if `_tokenId` is not a valid NFT _removeTokenFrom(_from, _tokenId); // Update voting checkpoints _checkpointDelegator(_tokenId, 0, _to); // Add NFT _addTokenTo(_to, _tokenId); // Set the block of ownership transfer (for Flash NFT protection) ownershipChange[_tokenId] = block.number; // Log the transfer emit Transfer(_from, _to, _tokenId); } /// @inheritdoc IVotingEscrow function transferFrom(address _from, address _to, uint256 _tokenId) external { _transferFrom(_from, _to, _tokenId, _msgSender()); } /// @inheritdoc IVotingEscrow function safeTransferFrom(address _from, address _to, uint256 _tokenId) external { safeTransferFrom(_from, _to, _tokenId, ""); } 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; } /// @inheritdoc IVotingEscrow function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public { address sender = _msgSender(); _transferFrom(_from, _to, _tokenId, sender); if (_isContract(_to)) { // Throws if transfer destination is a contract which does not implement 'onERC721Received' try IERC721Receiver(_to).onERC721Received(sender, _from, _tokenId, _data) returns (bytes4 response) { if (response != IERC721Receiver(_to).onERC721Received.selector) { revert ERC721ReceiverRejectedTokens(); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } } /*////////////////////////////////////////////////////////////// ERC165 LOGIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc IVotingEscrow function supportsInterface(bytes4 _interfaceID) external view returns (bool) { return supportedInterfaces[_interfaceID]; } /*////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc IVotingEscrow mapping(address => mapping(uint256 => uint256)) public ownerToNFTokenIdList; /// @dev Mapping from NFT ID to index of owner mapping(uint256 => uint256) internal tokenToOwnerIndex; /// @dev Add a NFT to an index mapping to a given address /// @param _to address of the receiver /// @param _tokenId uint ID Of the token to be added function _addTokenToOwnerList(address _to, uint256 _tokenId) internal { uint256 currentCount = ownerToNFTokenCount[_to]; ownerToNFTokenIdList[_to][currentCount] = _tokenId; tokenToOwnerIndex[_tokenId] = currentCount; } /// @dev Add a NFT to a given address /// Throws if `_tokenId` is owned by someone. function _addTokenTo(address _to, uint256 _tokenId) internal { // Throws if `_tokenId` is owned by someone assert(_ownerOf(_tokenId) == address(0)); // Change the owner idToOwner[_tokenId] = _to; // Update owner token index tracking _addTokenToOwnerList(_to, _tokenId); // Change count tracking ownerToNFTokenCount[_to] += 1; } /// @dev Function to mint tokens /// Throws if `_to` is zero address. /// Throws if `_tokenId` is owned by someone. /// @param _to The address that will receive the minted tokens. /// @param _tokenId The token id to mint. /// @return A boolean that indicates if the operation was successful. function _mint(address _to, uint256 _tokenId) internal returns (bool) { // Throws if `_to` is zero address assert(_to != address(0)); // Add NFT. Throws if `_tokenId` is owned by someone _addTokenTo(_to, _tokenId); // Update voting checkpoints _checkpointDelegator(_tokenId, 0, _to); emit Transfer(address(0), _to, _tokenId); return true; } /// @dev Remove a NFT from an index mapping to a given address /// @param _from address of the sender /// @param _tokenId uint ID Of the token to be removed function _removeTokenFromOwnerList(address _from, uint256 _tokenId) internal { // Delete uint256 currentCount = ownerToNFTokenCount[_from] - 1; uint256 currentIndex = tokenToOwnerIndex[_tokenId]; if (currentCount == currentIndex) { // update ownerToNFTokenIdList ownerToNFTokenIdList[_from][currentCount] = 0; // update tokenToOwnerIndex tokenToOwnerIndex[_tokenId] = 0; } else { uint256 lastTokenId = ownerToNFTokenIdList[_from][currentCount]; // Add // update ownerToNFTokenIdList ownerToNFTokenIdList[_from][currentIndex] = lastTokenId; // update tokenToOwnerIndex tokenToOwnerIndex[lastTokenId] = currentIndex; // Delete // update ownerToNFTokenIdList ownerToNFTokenIdList[_from][currentCount] = 0; // update tokenToOwnerIndex tokenToOwnerIndex[_tokenId] = 0; } } /// @dev Remove a NFT from a given address /// Throws if `_from` is not the current owner. function _removeTokenFrom(address _from, uint256 _tokenId) internal { // Throws if `_from` is not the current owner assert(_ownerOf(_tokenId) == _from); // Change the owner idToOwner[_tokenId] = address(0); // Update owner token index tracking _removeTokenFromOwnerList(_from, _tokenId); // Change count tracking ownerToNFTokenCount[_from] -= 1; } /// @dev Must be called prior to updating `LockedBalance` function _burn(uint256 _tokenId) internal { address sender = _msgSender(); if (!_isApprovedOrOwner(sender, _tokenId)) revert NotApprovedOrOwner(); address owner = _ownerOf(_tokenId); // Clear approval delete idToApprovals[_tokenId]; // Update voting checkpoints _checkpointDelegator(_tokenId, 0, address(0)); // Remove token _removeTokenFrom(owner, _tokenId); emit Transfer(owner, address(0), _tokenId); } /*////////////////////////////////////////////////////////////// ESCROW STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal constant WEEK = 1 weeks; uint256 internal constant MAXTIME = 4 * 365 * 86400; int128 internal constant iMAXTIME = 4 * 365 * 86400; uint256 internal constant MULTIPLIER = 1 ether; /// @inheritdoc IVotingEscrow uint256 public epoch; /// @inheritdoc IVotingEscrow uint256 public supply; mapping(uint256 => LockedBalance) internal _locked; mapping(uint256 => UserPoint[1000000000]) internal _userPointHistory; mapping(uint256 => uint256) public userPointEpoch; /// @inheritdoc IVotingEscrow mapping(uint256 => int128) public slopeChanges; /// @inheritdoc IVotingEscrow mapping(address => bool) public canSplit; /// @inheritdoc IVotingEscrow uint256 public permanentLockBalance; /// @inheritdoc IVotingEscrow function locked(uint256 _tokenId) external view returns (LockedBalance memory) { return _locked[_tokenId]; } /// @inheritdoc IVotingEscrow function userPointHistory(uint256 _tokenId, uint256 _loc) external view returns (UserPoint memory) { return _userPointHistory[_tokenId][_loc]; } /// @inheritdoc IVotingEscrow function pointHistory(uint256 _loc) external view returns (GlobalPoint memory) { return _pointHistory[_loc]; } /*////////////////////////////////////////////////////////////// ESCROW LOGIC //////////////////////////////////////////////////////////////*/ /// @notice Record global and per-user data to checkpoints. Used by VotingEscrow system. /// @param _tokenId NFT token ID. No user checkpoint if 0 /// @param _oldLocked Pevious locked amount / end lock time for the user /// @param _newLocked New locked amount / end lock time for the user function _checkpoint(uint256 _tokenId, LockedBalance memory _oldLocked, LockedBalance memory _newLocked) internal { UserPoint memory uOld; UserPoint memory uNew; int128 oldDslope = 0; int128 newDslope = 0; uint256 _epoch = epoch; if (_tokenId != 0) { uNew.permanent = _newLocked.isPermanent ? _newLocked.amount.toUint256() : 0; // Calculate slopes and biases // Kept at zero when they have to if (_oldLocked.end > block.timestamp && _oldLocked.amount > 0) { uOld.slope = _oldLocked.amount / iMAXTIME; uOld.bias = uOld.slope * (_oldLocked.end - block.timestamp).toInt128(); } if (_newLocked.end > block.timestamp && _newLocked.amount > 0) { uNew.slope = _newLocked.amount / iMAXTIME; uNew.bias = uNew.slope * (_newLocked.end - block.timestamp).toInt128(); } // Read values of scheduled changes in the slope // _oldLocked.end can be in the past and in the future // _newLocked.end can ONLY by in the FUTURE unless everything expired: than zeros oldDslope = slopeChanges[_oldLocked.end]; if (_newLocked.end != 0) { if (_newLocked.end == _oldLocked.end) { newDslope = oldDslope; } else { newDslope = slopeChanges[_newLocked.end]; } } } GlobalPoint memory lastPoint = GlobalPoint({ bias: 0, slope: 0, ts: block.timestamp, blk: block.number, permanentLockBalance: 0 }); if (_epoch > 0) { lastPoint = _pointHistory[_epoch]; } uint256 lastCheckpoint = lastPoint.ts; // initialLastPoint is used for extrapolation to calculate block number // (approximately, for *At methods) and save them // as we cannot figure that out exactly from inside the contract GlobalPoint memory initialLastPoint = GlobalPoint({ bias: lastPoint.bias, slope: lastPoint.slope, ts: lastPoint.ts, blk: lastPoint.blk, permanentLockBalance: lastPoint.permanentLockBalance }); uint256 blockSlope = 0; // dblock/dt if (block.timestamp > lastPoint.ts) { blockSlope = (MULTIPLIER * (block.number - lastPoint.blk)) / (block.timestamp - lastPoint.ts); } // If last point is already recorded in this block, slope=0 // But that's ok b/c we know the block in such case // Go over weeks to fill history and calculate what the current point is { uint256 t_i = (lastCheckpoint / WEEK) * WEEK; for (uint256 i = 0; i < 255; ++i) { // Hopefully it won't happen that this won't get used in 5 years! // If it does, users will be able to withdraw but vote weight will be broken t_i += WEEK; // Initial value of t_i is always larger than the ts of the last point int128 d_slope = 0; if (t_i > block.timestamp) { t_i = block.timestamp; } else { d_slope = slopeChanges[t_i]; } lastPoint.bias -= lastPoint.slope * (t_i - lastCheckpoint).toInt128(); lastPoint.slope += d_slope; if (lastPoint.bias < 0) { // This can happen lastPoint.bias = 0; } if (lastPoint.slope < 0) { // This cannot happen - just in case lastPoint.slope = 0; } lastCheckpoint = t_i; lastPoint.ts = t_i; lastPoint.blk = initialLastPoint.blk + (blockSlope * (t_i - initialLastPoint.ts)) / MULTIPLIER; _epoch += 1; if (t_i == block.timestamp) { lastPoint.blk = block.number; break; } else { _pointHistory[_epoch] = lastPoint; } } } if (_tokenId != 0) { // If last point was in this block, the slope change has been applied already // But in such case we have 0 slope(s) lastPoint.slope += (uNew.slope - uOld.slope); lastPoint.bias += (uNew.bias - uOld.bias); if (lastPoint.slope < 0) { lastPoint.slope = 0; } if (lastPoint.bias < 0) { lastPoint.bias = 0; } lastPoint.permanentLockBalance = permanentLockBalance; } // If timestamp of last global point is the same, overwrite the last global point // Else record the new global point into history // Exclude epoch 0 (note: _epoch is always >= 1, see above) // Two possible outcomes: // Missing global checkpoints in prior weeks. In this case, _epoch = epoch + x, where x > 1 // No missing global checkpoints, but timestamp != block.timestamp. Create new checkpoint. // No missing global checkpoints, but timestamp == block.timestamp. Overwrite last checkpoint. if (_epoch != 1 && _pointHistory[_epoch - 1].ts == block.timestamp) { // _epoch = epoch + 1, so we do not increment epoch _pointHistory[_epoch - 1] = lastPoint; } else { // more than one global point may have been written, so we update epoch epoch = _epoch; _pointHistory[_epoch] = lastPoint; } if (_tokenId != 0) { // Schedule the slope changes (slope is going down) // We subtract new_user_slope from [_newLocked.end] // and add old_user_slope to [_oldLocked.end] if (_oldLocked.end > block.timestamp) { // oldDslope was <something> - uOld.slope, so we cancel that oldDslope += uOld.slope; if (_newLocked.end == _oldLocked.end) { oldDslope -= uNew.slope; // It was a new deposit, not extension } slopeChanges[_oldLocked.end] = oldDslope; } if (_newLocked.end > block.timestamp) { // update slope if new lock is greater than old lock and is not permanent or if old lock is permanent if ((_newLocked.end > _oldLocked.end)) { newDslope -= uNew.slope; // old slope disappeared at this point slopeChanges[_newLocked.end] = newDslope; } // else: we recorded it already in oldDslope } // If timestamp of last user point is the same, overwrite the last user point // Else record the new user point into history // Exclude epoch 0 uNew.ts = block.timestamp; uNew.blk = block.number; uint256 userEpoch = userPointEpoch[_tokenId]; if (userEpoch != 0 && _userPointHistory[_tokenId][userEpoch].ts == block.timestamp) { _userPointHistory[_tokenId][userEpoch] = uNew; } else { userPointEpoch[_tokenId] = ++userEpoch; _userPointHistory[_tokenId][userEpoch] = uNew; } } } /// @notice Deposit and lock tokens for a user /// @param _tokenId NFT that holds lock /// @param _value Amount to deposit /// @param _unlockTime New time when to unlock the tokens, or 0 if unchanged /// @param _oldLocked Previous locked amount / timestamp /// @param _depositType The type of deposit function _depositFor( uint256 _tokenId, uint256 _value, uint256 _unlockTime, LockedBalance memory _oldLocked, DepositType _depositType ) internal { uint256 supplyBefore = supply; supply = supplyBefore + _value; // Set newLocked to _oldLocked without mangling memory LockedBalance memory newLocked; (newLocked.amount, newLocked.end, newLocked.isPermanent) = ( _oldLocked.amount, _oldLocked.end, _oldLocked.isPermanent ); // Adding to existing lock, or if a lock is expired - creating a new one newLocked.amount += _value.toInt128(); if (_unlockTime != 0) { newLocked.end = _unlockTime; } _locked[_tokenId] = newLocked; // Possibilities: // Both _oldLocked.end could be current or expired (>/< block.timestamp) // or if the lock is a permanent lock, then _oldLocked.end == 0 // value == 0 (extend lock) or value > 0 (add to lock or extend lock) // newLocked.end > block.timestamp (always) _checkpoint(_tokenId, _oldLocked, newLocked); address from = _msgSender(); if (_value != 0) { IERC20(token).safeTransferFrom(from, address(this), _value); } emit Deposit(from, _tokenId, _depositType, _value, newLocked.end, block.timestamp); emit Supply(supplyBefore, supplyBefore + _value); } /// @inheritdoc IVotingEscrow function checkpoint() external nonReentrant { _checkpoint(0, LockedBalance(0, 0, false), LockedBalance(0, 0, false)); } /// @inheritdoc IVotingEscrow function depositFor(uint256 _tokenId, uint256 _value) external nonReentrant { if (escrowType[_tokenId] == EscrowType.MANAGED && _msgSender() != distributor) revert NotDistributor(); _increaseAmountFor(_tokenId, _value, DepositType.DEPOSIT_FOR_TYPE); } /// @dev Deposit `_value` tokens for `_to` and lock for `_lockDuration` /// @param _value Amount to deposit /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week) /// @param _to Address to deposit function _createLock(uint256 _value, uint256 _lockDuration, address _to) internal returns (uint256) { uint256 unlockTime = ((block.timestamp + _lockDuration) / WEEK) * WEEK; // Locktime is rounded down to weeks if (_value == 0) revert ZeroAmount(); if (unlockTime <= block.timestamp) revert LockDurationNotInFuture(); if (unlockTime > block.timestamp + MAXTIME) revert LockDurationTooLong(); uint256 _tokenId = ++tokenId; _mint(_to, _tokenId); _depositFor(_tokenId, _value, unlockTime, _locked[_tokenId], DepositType.CREATE_LOCK_TYPE); return _tokenId; } /// @inheritdoc IVotingEscrow function createLock(uint256 _value, uint256 _lockDuration) external nonReentrant returns (uint256) { return _createLock(_value, _lockDuration, _msgSender()); } /// @inheritdoc IVotingEscrow function createLockFor(uint256 _value, uint256 _lockDuration, address _to) external nonReentrant returns (uint256) { return _createLock(_value, _lockDuration, _to); } function _increaseAmountFor(uint256 _tokenId, uint256 _value, DepositType _depositType) internal { EscrowType _escrowType = escrowType[_tokenId]; if (_escrowType == EscrowType.LOCKED) revert NotManagedOrNormalNFT(); LockedBalance memory oldLocked = _locked[_tokenId]; if (_value == 0) revert ZeroAmount(); if (oldLocked.amount <= 0) revert NoLockFound(); if (oldLocked.end <= block.timestamp && !oldLocked.isPermanent) revert LockExpired(); if (oldLocked.isPermanent) permanentLockBalance += _value; _checkpointDelegatee(_delegates[_tokenId], _value, true); _depositFor(_tokenId, _value, 0, oldLocked, _depositType); if (_escrowType == EscrowType.MANAGED) { // increaseAmount called on managed tokens are treated as locked rewards address _lockedManagedReward = managedToLocked[_tokenId]; address _token = token; IERC20(_token).safeApprove(_lockedManagedReward, _value); IReward(_lockedManagedReward).notifyRewardAmount(_token, _value); IERC20(_token).safeApprove(_lockedManagedReward, 0); } emit MetadataUpdate(_tokenId); } /// @inheritdoc IVotingEscrow function increaseAmount(uint256 _tokenId, uint256 _value) external nonReentrant { if (!_isApprovedOrOwner(_msgSender(), _tokenId)) revert NotApprovedOrOwner(); _increaseAmountFor(_tokenId, _value, DepositType.INCREASE_LOCK_AMOUNT); } /// @inheritdoc IVotingEscrow function increaseUnlockTime(uint256 _tokenId, uint256 _lockDuration) external nonReentrant { if (!_isApprovedOrOwner(_msgSender(), _tokenId)) revert NotApprovedOrOwner(); if (escrowType[_tokenId] != EscrowType.NORMAL) revert NotNormalNFT(); LockedBalance memory oldLocked = _locked[_tokenId]; if (oldLocked.isPermanent) revert PermanentLock(); uint256 unlockTime = ((block.timestamp + _lockDuration) / WEEK) * WEEK; // Locktime is rounded down to weeks if (oldLocked.end <= block.timestamp) revert LockExpired(); if (oldLocked.amount <= 0) revert NoLockFound(); if (unlockTime <= oldLocked.end) revert LockDurationNotInFuture(); if (unlockTime > block.timestamp + MAXTIME) revert LockDurationTooLong(); _depositFor(_tokenId, 0, unlockTime, oldLocked, DepositType.INCREASE_UNLOCK_TIME); emit MetadataUpdate(_tokenId); } /// @inheritdoc IVotingEscrow function withdraw(uint256 _tokenId) external nonReentrant { address sender = _msgSender(); if (!_isApprovedOrOwner(sender, _tokenId)) revert NotApprovedOrOwner(); if (voted[_tokenId]) revert AlreadyVoted(); if (escrowType[_tokenId] != EscrowType.NORMAL) revert NotNormalNFT(); LockedBalance memory oldLocked = _locked[_tokenId]; if (oldLocked.isPermanent) revert PermanentLock(); if (block.timestamp < oldLocked.end) revert LockNotExpired(); uint256 value = oldLocked.amount.toUint256(); // Burn the NFT _burn(_tokenId); _locked[_tokenId] = LockedBalance(0, 0, false); uint256 supplyBefore = supply; supply = supplyBefore - value; // oldLocked can have either expired <= timestamp or zero end // oldLocked has only 0 end // Both can have >= 0 amount _checkpoint(_tokenId, oldLocked, LockedBalance(0, 0, false)); IERC20(token).safeTransfer(sender, value); emit Withdraw(sender, _tokenId, value, block.timestamp); emit Supply(supplyBefore, supplyBefore - value); } /// @inheritdoc IVotingEscrow function merge(uint256 _from, uint256 _to) external nonReentrant { address sender = _msgSender(); if (voted[_from]) revert AlreadyVoted(); if (escrowType[_from] != EscrowType.NORMAL) revert NotNormalNFT(); if (escrowType[_to] != EscrowType.NORMAL) revert NotNormalNFT(); if (_from == _to) revert SameNFT(); if (!_isApprovedOrOwner(sender, _from)) revert NotApprovedOrOwner(); if (!_isApprovedOrOwner(sender, _to)) revert NotApprovedOrOwner(); LockedBalance memory oldLockedTo = _locked[_to]; if (oldLockedTo.end <= block.timestamp && !oldLockedTo.isPermanent) revert LockExpired(); LockedBalance memory oldLockedFrom = _locked[_from]; if (oldLockedFrom.isPermanent) revert PermanentLock(); uint256 end = oldLockedFrom.end >= oldLockedTo.end ? oldLockedFrom.end : oldLockedTo.end; _burn(_from); _locked[_from] = LockedBalance(0, 0, false); _checkpoint(_from, oldLockedFrom, LockedBalance(0, 0, false)); LockedBalance memory newLockedTo; newLockedTo.amount = oldLockedTo.amount + oldLockedFrom.amount; newLockedTo.isPermanent = oldLockedTo.isPermanent; if (newLockedTo.isPermanent) { permanentLockBalance += oldLockedFrom.amount.toUint256(); } else { newLockedTo.end = end; } _checkpointDelegatee(_delegates[_to], oldLockedFrom.amount.toUint256(), true); _checkpoint(_to, oldLockedTo, newLockedTo); _locked[_to] = newLockedTo; emit Merge( sender, _from, _to, oldLockedFrom.amount.toUint256(), oldLockedTo.amount.toUint256(), newLockedTo.amount.toUint256(), newLockedTo.end, block.timestamp ); emit MetadataUpdate(_to); } /// @inheritdoc IVotingEscrow function split( uint256 _from, uint256 _amount ) external nonReentrant returns (uint256 _tokenId1, uint256 _tokenId2) { address sender = _msgSender(); address owner = _ownerOf(_from); if (owner == address(0)) revert SplitNoOwner(); if (!canSplit[owner] && !canSplit[address(0)]) revert SplitNotAllowed(); if (escrowType[_from] != EscrowType.NORMAL) revert NotNormalNFT(); if (voted[_from]) revert AlreadyVoted(); if (!_isApprovedOrOwner(sender, _from)) revert NotApprovedOrOwner(); LockedBalance memory newLocked = _locked[_from]; if (newLocked.end <= block.timestamp && !newLocked.isPermanent) revert LockExpired(); int128 _splitAmount = _amount.toInt128(); if (_splitAmount == 0) revert ZeroAmount(); if (newLocked.amount <= _splitAmount) revert AmountTooBig(); // Zero out and burn old veNFT _burn(_from); _locked[_from] = LockedBalance(0, 0, false); _checkpoint(_from, newLocked, LockedBalance(0, 0, false)); // Create new veNFT using old balance - amount newLocked.amount -= _splitAmount; _tokenId1 = _createSplitNFT(owner, newLocked); // Create new veNFT using amount newLocked.amount = _splitAmount; _tokenId2 = _createSplitNFT(owner, newLocked); emit Split( _from, _tokenId1, _tokenId2, sender, _locked[_tokenId1].amount.toUint256(), _splitAmount.toUint256(), newLocked.end, block.timestamp ); } function _createSplitNFT(address _to, LockedBalance memory _newLocked) private returns (uint256 _tokenId) { _tokenId = ++tokenId; _locked[_tokenId] = _newLocked; _checkpoint(_tokenId, LockedBalance(0, 0, false), _newLocked); _mint(_to, _tokenId); } /// @inheritdoc IVotingEscrow function toggleSplit(address _account, bool _bool) external { if (_msgSender() != team) revert NotTeam(); canSplit[_account] = _bool; } /// @inheritdoc IVotingEscrow function lockPermanent(uint256 _tokenId) external { address sender = _msgSender(); if (!_isApprovedOrOwner(sender, _tokenId)) revert NotApprovedOrOwner(); if (escrowType[_tokenId] != EscrowType.NORMAL) revert NotNormalNFT(); LockedBalance memory _newLocked = _locked[_tokenId]; if (_newLocked.isPermanent) revert PermanentLock(); if (_newLocked.end <= block.timestamp) revert LockExpired(); if (_newLocked.amount <= 0) revert NoLockFound(); uint256 _amount = _newLocked.amount.toUint256(); permanentLockBalance += _amount; _newLocked.end = 0; _newLocked.isPermanent = true; _checkpoint(_tokenId, _locked[_tokenId], _newLocked); _locked[_tokenId] = _newLocked; emit LockPermanent(sender, _tokenId, _amount, block.timestamp); emit MetadataUpdate(_tokenId); } /// @inheritdoc IVotingEscrow function unlockPermanent(uint256 _tokenId) external { address sender = _msgSender(); if (!_isApprovedOrOwner(sender, _tokenId)) revert NotApprovedOrOwner(); if (escrowType[_tokenId] != EscrowType.NORMAL) revert NotNormalNFT(); if (voted[_tokenId]) revert AlreadyVoted(); LockedBalance memory _newLocked = _locked[_tokenId]; if (!_newLocked.isPermanent) revert NotPermanentLock(); uint256 _amount = _newLocked.amount.toUint256(); permanentLockBalance -= _amount; _newLocked.end = ((block.timestamp + MAXTIME) / WEEK) * WEEK; _newLocked.isPermanent = false; _delegate(_tokenId, 0); _checkpoint(_tokenId, _locked[_tokenId], _newLocked); _locked[_tokenId] = _newLocked; emit UnlockPermanent(sender, _tokenId, _amount, block.timestamp); emit MetadataUpdate(_tokenId); } /*/////////////////////////////////////////////////////////////// GAUGE VOTING STORAGE //////////////////////////////////////////////////////////////*/ function _balanceOfNFTAt(uint256 _tokenId, uint256 _t) internal view returns (uint256) { return BalanceLogicLibrary.balanceOfNFTAt(userPointEpoch, _userPointHistory, _tokenId, _t); } function _supplyAt(uint256 _timestamp) internal view returns (uint256) { return BalanceLogicLibrary.supplyAt(slopeChanges, _pointHistory, epoch, _timestamp); } /// @inheritdoc IVotingEscrow function balanceOfNFT(uint256 _tokenId) public view returns (uint256) { if (ownershipChange[_tokenId] == block.number) return 0; return _balanceOfNFTAt(_tokenId, block.timestamp); } /// @inheritdoc IVotingEscrow function balanceOfNFTAt(uint256 _tokenId, uint256 _t) external view returns (uint256) { return _balanceOfNFTAt(_tokenId, _t); } /// @inheritdoc IVotingEscrow function totalSupply() external view returns (uint256) { return _supplyAt(block.timestamp); } /// @inheritdoc IVotingEscrow function totalSupplyAt(uint256 _timestamp) external view returns (uint256) { return _supplyAt(_timestamp); } /*/////////////////////////////////////////////////////////////// GAUGE VOTING LOGIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc IVotingEscrow mapping(uint256 => bool) public voted; /// @inheritdoc IVotingEscrow function setVoterAndDistributor(address _voter, address _distributor) external { if (_msgSender() != voter) revert NotVoter(); voter = _voter; distributor = _distributor; } /// @inheritdoc IVotingEscrow function voting(uint256 _tokenId, bool _voted) external { if (_msgSender() != voter) revert NotVoter(); voted[_tokenId] = _voted; } /*/////////////////////////////////////////////////////////////// DAO VOTING STORAGE //////////////////////////////////////////////////////////////*/ /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(uint256 delegator,uint256 delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of each accounts delegate mapping(uint256 => uint256) private _delegates; /// @notice A record of delegated token checkpoints for each tokenId, by index mapping(uint256 => mapping(uint48 => Checkpoint)) private _checkpoints; /// @inheritdoc IVotingEscrow mapping(uint256 => uint48) public numCheckpoints; /// @inheritdoc IVotingEscrow mapping(address => uint256) public nonces; /// @inheritdoc IVotingEscrow function delegates(uint256 delegator) external view returns (uint256) { return _delegates[delegator]; } /// @inheritdoc IVotingEscrow function checkpoints(uint256 _tokenId, uint48 _index) external view returns (Checkpoint memory) { return _checkpoints[_tokenId][_index]; } /// @inheritdoc IVotingEscrow function getPastVotes(address _account, uint256 _tokenId, uint256 _timestamp) external view returns (uint256) { return DelegationLogicLibrary.getPastVotes(numCheckpoints, _checkpoints, _account, _tokenId, _timestamp); } /// @inheritdoc IVotingEscrow function getPastTotalSupply(uint256 _timestamp) external view returns (uint256) { return _supplyAt(_timestamp); } /*/////////////////////////////////////////////////////////////// DAO VOTING LOGIC //////////////////////////////////////////////////////////////*/ function _checkpointDelegator(uint256 _delegator, uint256 _delegatee, address _owner) internal { DelegationLogicLibrary.checkpointDelegator( _locked, numCheckpoints, _checkpoints, _delegates, _delegator, _delegatee, _owner ); } function _checkpointDelegatee(uint256 _delegatee, uint256 balance_, bool _increase) internal { DelegationLogicLibrary.checkpointDelegatee(numCheckpoints, _checkpoints, _delegatee, balance_, _increase); } /// @notice Record user delegation checkpoints. Used by voting system. /// @dev Skips delegation if already delegated to `delegatee`. function _delegate(uint256 _delegator, uint256 _delegatee) internal { LockedBalance memory delegateLocked = _locked[_delegator]; if (!delegateLocked.isPermanent) revert NotPermanentLock(); if (_delegatee != 0 && _ownerOf(_delegatee) == address(0)) revert NonExistentToken(); if (ownershipChange[_delegator] == block.number) revert OwnershipChange(); if (_delegatee == _delegator) _delegatee = 0; uint256 currentDelegate = _delegates[_delegator]; if (currentDelegate == _delegatee) return; uint256 delegatedBalance = delegateLocked.amount.toUint256(); _checkpointDelegator(_delegator, _delegatee, _ownerOf(_delegator)); _checkpointDelegatee(_delegatee, delegatedBalance, true); emit DelegateChanged(_msgSender(), currentDelegate, _delegatee); } /// @inheritdoc IVotingEscrow function delegate(uint256 delegator, uint256 delegatee) external { if (!_isApprovedOrOwner(_msgSender(), delegator)) revert NotApprovedOrOwner(); return _delegate(delegator, delegatee); } /// @inheritdoc IVotingEscrow function delegateBySig( uint256 delegator, uint256 delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) external { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) revert InvalidSignatureS(); bytes32 domainSeparator = keccak256( abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(version)), block.chainid, address(this)) ); bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegator, delegatee, nonce, expiry)); bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); if (!_isApprovedOrOwner(signatory, delegator)) revert NotApprovedOrOwner(); if (signatory == address(0)) revert InvalidSignature(); if (nonce != nonces[signatory]++) revert InvalidNonce(); if (block.timestamp > expiry) revert SignatureExpired(); return _delegate(delegator, delegatee); } /*////////////////////////////////////////////////////////////// ERC6372 LOGIC //////////////////////////////////////////////////////////////*/ /// @inheritdoc IVotingEscrow function clock() external view returns (uint48) { return uint48(block.timestamp); } /// @inheritdoc IVotingEscrow function CLOCK_MODE() external pure returns (string memory) { return "mode=timestamp"; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_forwarder","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_factoryRegistry","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyVoted","type":"error"},{"inputs":[],"name":"AmountTooBig","type":"error"},{"inputs":[],"name":"ERC721ReceiverRejectedTokens","type":"error"},{"inputs":[],"name":"ERC721TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"InvalidManagedNFTId","type":"error"},{"inputs":[],"name":"InvalidNonce","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"InvalidSignatureS","type":"error"},{"inputs":[],"name":"LockDurationNotInFuture","type":"error"},{"inputs":[],"name":"LockDurationTooLong","type":"error"},{"inputs":[],"name":"LockExpired","type":"error"},{"inputs":[],"name":"LockNotExpired","type":"error"},{"inputs":[],"name":"NoLockFound","type":"error"},{"inputs":[],"name":"NonExistentToken","type":"error"},{"inputs":[],"name":"NotApprovedOrOwner","type":"error"},{"inputs":[],"name":"NotDistributor","type":"error"},{"inputs":[],"name":"NotEmergencyCouncilOrGovernor","type":"error"},{"inputs":[],"name":"NotGovernor","type":"error"},{"inputs":[],"name":"NotGovernorOrManager","type":"error"},{"inputs":[],"name":"NotLockedNFT","type":"error"},{"inputs":[],"name":"NotManagedNFT","type":"error"},{"inputs":[],"name":"NotManagedOrNormalNFT","type":"error"},{"inputs":[],"name":"NotNormalNFT","type":"error"},{"inputs":[],"name":"NotOwner","type":"error"},{"inputs":[],"name":"NotPermanentLock","type":"error"},{"inputs":[],"name":"NotTeam","type":"error"},{"inputs":[],"name":"NotVoter","type":"error"},{"inputs":[],"name":"OwnershipChange","type":"error"},{"inputs":[],"name":"PermanentLock","type":"error"},{"inputs":[],"name":"SafeCastOverflow","type":"error"},{"inputs":[],"name":"SafeCastUnderflow","type":"error"},{"inputs":[],"name":"SameAddress","type":"error"},{"inputs":[],"name":"SameNFT","type":"error"},{"inputs":[],"name":"SameState","type":"error"},{"inputs":[],"name":"SignatureExpired","type":"error"},{"inputs":[],"name":"SplitNoOwner","type":"error"},{"inputs":[],"name":"SplitNotAllowed","type":"error"},{"inputs":[],"name":"TooManyTokenIDs","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[],"name":"ZeroAmount","type":"error"},{"inputs":[],"name":"ZeroBalance","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_mTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_lockedManagedReward","type":"address"},{"indexed":false,"internalType":"address","name":"_freeManagedReward","type":"address"}],"name":"CreateManaged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"uint256","name":"fromDelegate","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"toDelegate","type":"uint256"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"enum IVotingEscrow.DepositType","name":"depositType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"locktime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ts","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_mTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_weight","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"DepositManaged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"LockPermanent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"_from","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_to","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amountFrom","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amountTo","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amountFinal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_locktime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"Merge","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_allowedManager","type":"address"}],"name":"SetAllowedManager","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_from","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_tokenId1","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_tokenId2","type":"uint256"},{"indexed":false,"internalType":"address","name":"_sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_splitAmount1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_splitAmount2","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_locktime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"Split","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"prevSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"Supply","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"UnlockPermanent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ts","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_mTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_weight","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ts","type":"uint256"}],"name":"WithdrawManaged","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_approved","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artProxy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"balanceOfNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_t","type":"uint256"}],"name":"balanceOfNFTAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canSplit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkpoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint48","name":"_index","type":"uint48"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint256","name":"fromTimestamp","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"delegatedBalance","type":"uint256"},{"internalType":"uint256","name":"delegatee","type":"uint256"}],"internalType":"struct IVotingEscrow.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"}],"name":"createLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"createLockFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"createManagedLockFor","outputs":[{"internalType":"uint256","name":"_mTokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"deactivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"delegator","type":"uint256"},{"internalType":"uint256","name":"delegatee","type":"uint256"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"delegator","type":"uint256"},{"internalType":"uint256","name":"delegatee","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"delegator","type":"uint256"}],"name":"delegates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"depositFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_mTokenId","type":"uint256"}],"name":"depositManaged","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"escrowType","outputs":[{"internalType":"enum IVotingEscrow.EscrowType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factoryRegistry","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"idToManaged","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"increaseAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_lockDuration","type":"uint256"}],"name":"increaseUnlockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"lockPermanent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"locked","outputs":[{"components":[{"internalType":"int128","name":"amount","type":"int128"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"bool","name":"isPermanent","type":"bool"}],"internalType":"struct IVotingEscrow.LockedBalance","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"managedToFree","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"managedToLocked","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"merge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"numCheckpoints","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownerToNFTokenIdList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permanentLockBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_loc","type":"uint256"}],"name":"pointHistory","outputs":[{"components":[{"internalType":"int128","name":"bias","type":"int128"},{"internalType":"int128","name":"slope","type":"int128"},{"internalType":"uint256","name":"ts","type":"uint256"},{"internalType":"uint256","name":"blk","type":"uint256"},{"internalType":"uint256","name":"permanentLockBalance","type":"uint256"}],"internalType":"struct IVotingEscrow.GlobalPoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_allowedManager","type":"address"}],"name":"setAllowedManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxy","type":"address"}],"name":"setArtProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mTokenId","type":"uint256"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setManagedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_team","type":"address"}],"name":"setTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_voter","type":"address"},{"internalType":"address","name":"_distributor","type":"address"}],"name":"setVoterAndDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"slopeChanges","outputs":[{"internalType":"int128","name":"","type":"int128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"split","outputs":[{"internalType":"uint256","name":"_tokenId1","type":"uint256"},{"internalType":"uint256","name":"_tokenId2","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"team","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"toggleSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"unlockPermanent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"userPointEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_loc","type":"uint256"}],"name":"userPointHistory","outputs":[{"components":[{"internalType":"int128","name":"bias","type":"int128"},{"internalType":"int128","name":"slope","type":"int128"},{"internalType":"uint256","name":"ts","type":"uint256"},{"internalType":"uint256","name":"blk","type":"uint256"},{"internalType":"uint256","name":"permanent","type":"uint256"}],"internalType":"struct IVotingEscrow.UserPoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"voted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"voter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_voted","type":"bool"}],"name":"voting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"weights","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"withdrawManaged","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101006040523480156200001257600080fd5b50604051620062c2380380620062c2833981016040819052620000359162000266565b6001600160a01b038084166080819052600160005560a05282811660e052811660c0526200006262000221565b600380546001600160a01b0319166001600160a01b03929092169190911790556200008c62000221565b600280546001600160a01b0319166001600160a01b0392909216919091179055437f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4fa55427f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f95560076020527f1142c8ae8ad77901cd97fce843895a9ccf91a8cbd5b191350a94c1d957b07f74805460ff1990811660019081179092557f2379132be4428a30bdcf8f40c0757cba23c7e3f4204cd933dabcc3d42093e80480548216831790557f7108cf076693445f3e0461801864e91d74eb5e0eee196ef60b5961a16cd35b9380548216831790557fbc48a5b87e2e2cb168c956e8aca8ee5c5d50c657bb1c18b9ad30280d5cf98f5b805482168317905563da287a1d60e01b60009081527f7105fc4c24d760d461c0883f925f50b55888872394b962f52e936e529601d62a8054909216909217905560085460405190913091600080516020620062a2833981519152908290a46008546040516000903090600080516020620062a2833981519152908390a4505050620002b0565b6080516000906001600160a01b0316330362000244575060131936013560601c90565b503390565b80516001600160a01b03811681146200026157600080fd5b919050565b6000806000606084860312156200027c57600080fd5b620002878462000249565b9250620002976020850162000249565b9150620002a76040850162000249565b90509250925092565b60805160a05160c05160e051615f806200032260003960008181610d6b01528181611263015281816117870152818161186a01528181613f080152614e7e0152600081816106e90152611fdb015260008181610d4401526120600152600081816108a60152613cd40152615f806000f3fe608060405234801561001057600080fd5b50600436106104805760003560e01c806370a0823111610257578063b45a3c0e11610146578063e58f5947116100c3578063ec32e6df11610087578063ec32e6df14610ca7578063f04cb3a814610cba578063f52a36f714610d09578063f645d4f914610d3f578063fc0c546a14610d6657600080fd5b8063e58f594714610bfe578063e75b1c2e14610c1e578063e7a324dc14610c31578063e7e242d414610c58578063e985e9c514610c6b57600080fd5b8063c87b56dd1161010a578063c87b56dd14610b9f578063d1c2babb14610bb2578063d9a3495214610bc5578063e0514aba14610bd8578063e0c11f9a14610beb57600080fd5b8063b45a3c0e14610ad6578063b52c05fe14610b5e578063b88d4fde14610b71578063bfe1092814610b84578063c2c4c5c114610b9757600080fd5b806391ddadf4116101d4578063a22cb46511610198578063a22cb46514610a44578063a738da8214610a57578063a899b36c14610a80578063b1548afc14610aa3578063b2383e5514610ac357600080fd5b806391ddadf414610a1857806395d89b41146104de578063981b24d0146109d95780639954a98914610a1e5780639d507b8b14610a3157600080fd5b80638ad4c4471161021b5780638ad4c4471461099b5780638bf9d84c146109ae5780638e539e8c146109d95780638fbb38ff146109ec578063900cf0cf14610a0f57600080fd5b806370a08231146108fc5780637c728000146109255780637ecebe0014610955578063834b0b691461097557806385f2aef21461098857600080fd5b8063370fb5fa116103735780634bf5d7e9116102f057806354fd4d50116102b457806354fd4d501461085f5780635594a04514610883578063572b6c05146108965780635a4f459a146108d65780636352211e146108e957600080fd5b80634bf5d7e9146107af5780634d01cb66146107d95780634d6fb775146107e257806350589793146107f5578063515857d41461083457600080fd5b806342842e0e1161033757806342842e0e1461072e578063430c20811461074157806344acb42a1461075457806346c96aac146107745780634b19becc1461078757600080fd5b8063370fb5fa146106ab57806337b1f500146106be5780633a6396a5146106d15780633bf0c9fb146106e45780633d085a371461070b57600080fd5b806320606b70116104015780632e720f7d116103c55780632e720f7d146106455780632f7f9ba914610658578063313ce5671461066b57806333230dc01461068557806335b0f6bd1461069857600080fd5b806320606b70146105bc57806323b872dd146105e357806327a6ee98146105f65780632d0485ec1461061f5780632e1a7d4d1461063257600080fd5b8063095ea7b311610448578063095ea7b3146105655780630ec84dda1461057857806317d70f7c1461058b57806318160ddd1461059457806319a0a9d51461059c57600080fd5b806301ffc9a714610485578063047fc9aa146104c757806306fdde03146104de578063081812fc1461050f578063095cf5c614610550575b600080fd5b6104b2610493366004615761565b6001600160e01b03191660009081526007602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6104d060175481565b6040519081526020016104be565b610502604051806040016040528060058152602001641d9953919560da1b81525081565b6040516104be91906157ce565b61053861051d3660046157e1565b6000908152601160205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016104be565b61056361055e36600461580f565b610d8d565b005b61056361057336600461582c565b610e11565b610563610586366004615858565b610f52565b6104d060085481565b6104d0610fdf565b6104d06105aa3660046157e1565b600a6020526000908152604090205481565b6104d07f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6105636105f136600461587a565b610fef565b6105386106043660046157e1565b600e602052600090815260409020546001600160a01b031681565b61056361062d3660046158bb565b611007565b6105636106403660046157e1565b611070565b61056361065336600461580f565b611324565b600554610538906001600160a01b031681565b610673601281565b60405160ff90911681526020016104be565b610563610693366004615902565b6113b8565b6105636106a63660046157e1565b61141e565b6105636106b93660046157e1565b61168d565b6105636106cc366004615930565b611c92565b6104d06106df36600461580f565b611e78565b6105387f000000000000000000000000000000000000000000000000000000000000000081565b6104b261071936600461580f565b601c6020526000908152604090205460ff1681565b61056361073c36600461587a565b612177565b6104b261074f36600461582c565b612192565b610767610762366004615858565b6121a7565b6040516104be9190615955565b600254610538906001600160a01b031681565b61079a610795366004615858565b612225565b604080519283526020830191909152016104be565b60408051808201909152600e81526d06d6f64653d74696d657374616d760941b6020820152610502565b6104d0601d5481565b6104d06107f0366004615994565b6125a2565b61081d6108033660046157e1565b60216020526000908152604090205465ffffffffffff1681565b60405165ffffffffffff90911681526020016104be565b6104d0610842366004615858565b600b60209081526000928352604080842090915290825290205481565b610502604051806040016040528060058152602001640322e302e360dc1b81525081565b600454610538906001600160a01b031681565b6104b26108a436600461580f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b6105636108e4366004615930565b612647565b6105386108f73660046157e1565b6126a2565b6104d061090a36600461580f565b6001600160a01b031660009081526010602052604090205490565b6109486109333660046157e1565b60096020526000908152604090205460ff1681565b6040516104be91906159df565b6104d061096336600461580f565b60226020526000908152604090205481565b610563610983366004615a07565b6126ad565b600354610538906001600160a01b031681565b6107676109a93660046157e1565b612987565b6104d06109bc36600461582c565b601460209081526000928352604080842090915290825290205481565b6104d06109e73660046157e1565b612a18565b6104b26109fa3660046157e1565b601e6020526000908152604090205460ff1681565b6104d060165481565b4261081d565b610563610a2c36600461580f565b612a23565b610563610a3f366004615858565b612b72565b610563610a52366004615902565b612d46565b610538610a653660046157e1565b600d602052600090815260409020546001600160a01b031681565b6104b2610a8e3660046157e1565b600c6020526000908152604090205460ff1681565b6104d0610ab13660046157e1565b6000908152601f602052604090205490565b610563610ad1366004615858565b612df1565b610b37610ae43660046157e1565b6040805160608082018352600080835260208084018290529284018190529384526018825292829020825193840183528054600f0b84526001810154918401919091526002015460ff1615159082015290565b604080518251600f0b815260208084015190820152918101511515908201526060016104be565b6104d0610b6c366004615858565b612e2d565b610563610b7f366004615adb565b612e55565b600154610538906001600160a01b031681565b610563612f78565b610502610bad3660046157e1565b612fca565b610563610bc0366004615858565b61306d565b610563610bd3366004615858565b6134cc565b6104d0610be6366004615858565b6134fe565b610563610bf9366004615858565b61350a565b6104d0610c0c3660046157e1565b601a6020526000908152604090205481565b610563610c2c3660046157e1565b6139c7565b6104d07f9947d5709c1682eaa3946b2d84115c9c0d1c946b149d76e69b457458b42ea29e81565b6104d0610c663660046157e1565b613bf6565b6104b2610c793660046158bb565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205460ff1690565b6104d0610cb5366004615b8a565b613c1e565b610ccd610cc8366004615bc3565b613c3f565b6040516104be9190815181526020808301516001600160a01b031690820152604080830151908201526060918201519181019190915260800190565b610d2c610d173660046157e1565b601b60205260009081526040902054600f0b81565b604051600f9190910b81526020016104be565b6105387f000000000000000000000000000000000000000000000000000000000000000081565b6105387f000000000000000000000000000000000000000000000000000000000000000081565b6003546001600160a01b0316610da1613cd0565b6001600160a01b031614610dc857604051633a7cfa5d60e21b815260040160405180910390fd5b6001600160a01b038116610def5760405163d92e233d60e01b815260040160405180910390fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e1b613cd0565b90506000610e2883613d14565b90506001600160a01b038116610e515760405163d92e233d60e01b815260040160405180910390fd5b836001600160a01b0316816001600160a01b031603610e835760405163367558c360e01b815260040160405180910390fd5b6000826001600160a01b0316610e9885613d14565b6001600160a01b0384811660009081526012602090815260408083208985168452909152902054911691909114915060ff16811582610ed5575080155b15610ef35760405163390cdd9b60e21b815260040160405180910390fd5b60008581526011602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050505050565b610f5a613d2f565b600260008381526009602052604090205460ff166002811115610f7f57610f7f6159c9565b148015610fa757506001546001600160a01b0316610f9b613cd0565b6001600160a01b031614155b15610fc55760405163385296d560e01b815260040160405180910390fd5b610fd182826000613d8d565b610fdb6001600055565b5050565b6000610fea42613fd8565b905090565b611002838383610ffd613cd0565b614068565b505050565b6002546001600160a01b031661101b613cd0565b6001600160a01b0316146110425760405163c18384c160e01b815260040160405180910390fd5b600280546001600160a01b039384166001600160a01b03199182161790915560018054929093169116179055565b611078613d2f565b6000611082613cd0565b905061108e8183614196565b6110ab5760405163390cdd9b60e21b815260040160405180910390fd5b6000828152601e602052604090205460ff16156110db57604051637c9a1cf960e01b815260040160405180910390fd5b60008281526009602052604081205460ff1660028111156110fe576110fe6159c9565b1461111c576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290611178576040516334d10f9560e11b815260040160405180910390fd5b806020015142101561119d5760405163342ad40160e11b815260040160405180910390fd5b60006111af8260000151600f0b614200565b90506111ba8461422c565b6040805160608101825260008082526020808301828152838501838152898452601890925293909120915182546001600160801b0319166001600160801b039091161782559151600182015590516002909101805460ff19169115159190911790556017546112298282615c09565b601755604080516060810182526000808252602082018190529181019190915261125690869085906142dc565b61128a6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168584614aad565b6040805183815242602082015286916001600160a01b038716917f02f25270a4d87bea75db541cdfe559334a275b4a233520ed6c0a2429667cca94910160405180910390a37f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c816112fb8482615c09565b6040805192835260208301919091520160405180910390a1505050506113216001600055565b50565b6003546001600160a01b0316611338613cd0565b6001600160a01b03161461135f57604051633a7cfa5d60e21b815260040160405180910390fd5b600480546001600160a01b0319166001600160a01b038316179055604080516000815260001960208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a150565b6003546001600160a01b03166113cc613cd0565b6001600160a01b0316146113f357604051633a7cfa5d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6000611428613cd0565b90506114348183614196565b6114515760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff166002811115611474576114746159c9565b14611492576040516317a66f3760e01b815260040160405180910390fd5b6000828152601e602052604090205460ff16156114c257604051637c9a1cf960e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff1615159181018290529061151c57604051632188f8ab60e01b815260040160405180910390fd5b600061152e8260000151600f0b614200565b905080601d60008282546115429190615c09565b9091555062093a8090508061155b630784ce0042615c1c565b6115659190615c45565b61156f9190615c59565b6020830152600060408301819052611588908590614b10565b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161515918101919091526115d1908590846142dc565b600084815260186020908152604091829020845181546001600160801b0319166001600160801b03909116178155848201516001820155848301516002909101805460ff19169115159190911790558151838152429181019190915285916001600160a01b038616917f668d293c0a181c1f163fd0d3c757239a9c17bd26c5e483150e374455433b27fa91015b60405180910390a3604051848152600080516020615f2b8339815191529060200160405180910390a150505050565b611695613d2f565b6000818152600a60205260409020546002546001600160a01b03166116b8613cd0565b6001600160a01b0316146116df5760405163c18384c160e01b815260040160405180910390fd5b806000036117005760405163d7caa26160e01b815260040160405180910390fd5b600160008381526009602052604090205460ff166002811115611725576117256159c9565b1461174357604051630fd82f7760e11b815260040160405180910390fd5b6000818152600d6020908152604080832054600e835281842054868552600b8452828520868652909352818420549151633e491d4760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018890529182169491909316928490633e491d4790604401602060405180830381865afa1580156117e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118099190615c70565b905060006118178284615c1c565b9050600062093a808061182e630784ce0042615c1c565b6118389190615c45565b6118429190615c59565b60408051600180825281830190925291925060009190602080830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000008160008151811061189c5761189c615c89565b6001600160a01b03928316602091820292909201015260405163f5f8d36560e01b81529088169063f5f8d365906118d9908c908590600401615c9f565b600060405180830381600087803b1580156118f357600080fd5b505af1158015611907573d6000803e3d6000fd5b505050506000604051806060016040528061192186614c78565b600f90810b82526020808301879052600060409384018190528e8152601882528390208351606081018552815490930b83526001810154918301919091526002015460ff1615159181019190915290915061197e908b90836142dc565b60008a8152601860209081526040808320845181546001600160801b0319166001600160801b0390911617815584830151600180830191909155858301516002928301805460ff19169115159190911790558d85529382902082516060810184528154600f0b8082529582015494810194909452015460ff1615159082015290611a0786614c78565b600f0b12611a16578051611a1f565b611a1f85614c78565b81518290611a2e908390615cf6565b600f0b905250601d548510611a4557601d54611a47565b845b601d6000828254611a589190615c09565b909155505060008a8152601f6020526040812054611a77918790614ca6565b60008a81526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16151591810191909152611ac0908b90836142dc565b60008a815260186020908152604091829020835181546001600160801b0319166001600160801b03909116178155908301516001820155828201516002909101805460ff19169115159190911790555163278afc8b60e21b815260048101889052602481018c90526001600160a01b038a1690639e2bf22c90604401600060405180830381600087803b158015611b5657600080fd5b505af1158015611b6a573d6000803e3d6000fd5b505060405163278afc8b60e21b8152600481018a9052602481018e90526001600160a01b038b169250639e2bf22c9150604401600060405180830381600087803b158015611bb757600080fd5b505af1158015611bcb573d6000803e3d6000fd5b50505060008c8152600a60209081526040808320839055600b82528083208e845282528083208390558e835260099091529020805460ff1916905550898b611c1281613d14565b6001600160a01b03167f5319474ec1e9d118585a40e615ea37be254007e6bb5b039756c3813c2d1354898842604051611c55929190918252602082015260400190565b60405180910390a46040518b8152600080516020615f2b8339815191529060200160405180910390a1505050505050505050506113216001600055565b600260009054906101000a90046001600160a01b03166001600160a01b0316637778960e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ce5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d099190615d23565b6001600160a01b0316611d1a613cd0565b6001600160a01b031614158015611dc05750600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da39190615d23565b6001600160a01b0316611db4613cd0565b6001600160a01b031614155b15611dde5760405163459d6a3f60e01b815260040160405180910390fd5b600260008381526009602052604090205460ff166002811115611e0357611e036159c9565b14611e215760405163054b1e0160e51b815260040160405180910390fd5b6000828152600c602052604090205481151560ff909116151503611e5857604051631490ad1160e01b815260040160405180910390fd5b6000918252600c6020526040909120805460ff1916911515919091179055565b6000611e82613d2f565b6000611e8c613cd0565b6005549091506001600160a01b03808316911614801590611f355750600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015611efb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1f9190615d23565b6001600160a01b0316816001600160a01b031614155b15611f5357604051633bc1d15f60e01b815260040160405180910390fd5b600860008154611f6290615d40565b91829055509150611f738383614d23565b50611fa58260008060405180606001604052806000600f0b815260200160008152602001600115158152506001614d92565b6000828152600960209081526040808320805460ff1916600217905580516301a15ccf60e31b8152905183926001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001692630d0ae67892600480830193928290030181865afa158015612022573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120469190615d23565b60025460405163dabc8e8360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152918216602482015291169063dabc8e839060440160408051808303816000875af11580156120b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120dc9190615d59565b6000868152600d6020908152604080832080546001600160a01b038781166001600160a01b03199283168117909355600e8552948390208054878716921682179055825191825292810192909252939550919350858116928792918916917fae65a147ec014982132ce8b32019735e3c5f41457848d2ce2e2c3e0cbc9df7bc910160405180910390a45050506121726001600055565b919050565b61100283838360405180602001604052806000815250612e55565b600061219e8383614196565b90505b92915050565b6121af615716565b600083815260196020526040902082633b9aca0081106121d1576121d1615c89565b6040805160a081018252600492909202929092018054600f81810b8452600160801b909104900b60208301526001810154928201929092526002820154606082015260039091015460808201529392505050565b600080612230613d2f565b600061223a613cd0565b9050600061224786613d14565b90506001600160a01b03811661227057604051632c2151ef60e11b815260040160405180910390fd5b6001600160a01b0381166000908152601c602052604090205460ff161580156122c4575060008052601c6020527fb9c6de81004e18dedadca3e5eabaab449ca91dff6f58efc9461da635fe77f8495460ff16155b156122e257604051633df16fd960e21b815260040160405180910390fd5b60008681526009602052604081205460ff166002811115612305576123056159c9565b14612323576040516317a66f3760e01b815260040160405180910390fd5b6000868152601e602052604090205460ff161561235357604051637c9a1cf960e01b815260040160405180910390fd5b61235d8287614196565b61237a5760405163390cdd9b60e21b815260040160405180910390fd5b60008681526018602090815260409182902082516060810184528154600f0b8152600182015492810183905260029091015460ff1615159281019290925242108015906123c957508060400151155b156123e7576040516307b7d7dd60e51b815260040160405180910390fd5b60006123f287614c78565b905080600f0b60000361241857604051631f2a200560e01b815260040160405180910390fd5b80600f0b8260000151600f0b1361244257604051636b2f218360e01b815260040160405180910390fd5b61244b8861422c565b6040805160608082018352600080835260208084018281528486018381528e845260188352868420955186546001600160801b0319166001600160801b0390911617865590516001860155516002909401805460ff19169415159490941790935583519182018452808252918101829052918201526124cd90899084906142dc565b80826000018181516124df9190615cf6565b600f0b9052506124ef8383614f57565b600f82900b835295506125028383614f57565b600087815260186020526040902054909550859087908a907f8303de8187a6102fdc3fe20c756dddd68df0ae027b77e2391c19a855e0821f3390889061254a90600f0b614200565b61255687600f0b614200565b6020808a0151604080516001600160a01b03909616865291850193909352830152606082015242608082015260a00160405180910390a45050505061259b6001600055565b9250929050565b6040516332b53f5360e11b815260216004820152602060248201526001600160a01b0384166044820152606481018390526084810182905260009073d6e6d57d0627aae127743c79bc795f836431d59f9063656a7ea69060a401602060405180830381865af4158015612619573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061263d9190615c70565b90505b9392505050565b6002546001600160a01b031661265b613cd0565b6001600160a01b0316146126825760405163c18384c160e01b815260040160405180910390fd5b6000918252601e6020526040909120805460ff1916911515919091179055565b60006121a182613d14565b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08111156126ee576040516317e97eb760e31b815260040160405180910390fd5b6040805180820182526005808252641d9953919560da1b60209283015282518084018452908152640322e302e360dc1b9082015281517f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866818301527fc792e9874e7b42c234d1e8448cec020a0f065019c8cd6f7ccdb65b8c110157e9818401527fb4bcb154e38601c389396fa918314da42d4626f13ef6d0ceb07e5f5d26b2fbc360608201524660808201523060a0808301919091528351808303909101815260c0820184528051908301207f9947d5709c1682eaa3946b2d84115c9c0d1c946b149d76e69b457458b42ea29e60e083015261010082018b905261012082018a905261014082018990526101608083018990528451808403909101815261018083019094528351939092019290922061190160f01b6101a08401526101a283018290526101c2830181905290916000906101e20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa1580156128ad573d6000803e3d6000fd5b5050506020604051035190506128c3818c614196565b6128e05760405163390cdd9b60e21b815260040160405180910390fd5b6001600160a01b03811661290757604051638baa579f60e01b815260040160405180910390fd5b6001600160a01b038116600090815260226020526040812080549161292b83615d40565b91905055891461294e57604051633ab3447f60e11b815260040160405180910390fd5b8742111561296f57604051630819bdcd60e01b815260040160405180910390fd5b6129798b8b614b10565b505050505b50505050505050565b6129bf6040518060a001604052806000600f0b81526020016000600f0b81526020016000815260200160008152602001600081525090565b50600090815260066020908152604091829020825160a0810184528154600f81810b8352600160801b909104900b9281019290925260018101549282019290925260028201546060820152600390910154608082015290565b60006121a182613fd8565b600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9a9190615d23565b6001600160a01b0316612aab613cd0565b6001600160a01b031614612ad257604051633b8d9d7560e21b815260040160405180910390fd5b6005546001600160a01b0390811690821603612b015760405163367558c360e01b815260040160405180910390fd5b6001600160a01b038116612b285760405163d92e233d60e01b815260040160405180910390fd5b600580546001600160a01b0319166001600160a01b0383169081179091556040517f1a6ce72407c68def4b7d2e724c896070d89cf2b2a2dd56b6897b5febd88420f590600090a250565b612b7a613d2f565b612b8b612b85613cd0565b83614196565b612ba85760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff166002811115612bcb57612bcb6159c9565b14612be9576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290612c45576040516334d10f9560e11b815260040160405180910390fd5b600062093a8080612c568542615c1c565b612c609190615c45565b612c6a9190615c59565b905042826020015111612c90576040516307b7d7dd60e51b815260040160405180910390fd5b60008260000151600f0b13612cb85760405163f90e998d60e01b815260040160405180910390fd5b81602001518111612cdc57604051638e6b5b6760e01b815260040160405180910390fd5b612cea630784ce0042615c1c565b811115612d0a5760405163f761f1cd60e01b815260040160405180910390fd5b612d1984600083856003614d92565b604051848152600080516020615f2b8339815191529060200160405180910390a15050610fdb6001600055565b6000612d50613cd0565b9050806001600160a01b0316836001600160a01b031603612d845760405163367558c360e01b815260040160405180910390fd5b6001600160a01b03818116600081815260126020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612df9613d2f565b612e04612b85613cd0565b612e215760405163390cdd9b60e21b815260040160405180910390fd5b610fd182826002613d8d565b6000612e37613d2f565b612e498383612e44613cd0565b614ff2565b90506121a16001600055565b6000612e5f613cd0565b9050612e6d85858584614068565b833b15612f7157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ea6908490899088908890600401615d88565b6020604051808303816000875af1925050508015612ee1575060408051601f3d908101601f19168201909252612ede91810190615dc5565b60015b612f3e573d808015612f0f576040519150601f19603f3d011682016040523d82523d6000602084013e612f14565b606091505b508051600003612f3657604051626b5e2960e61b815260040160405180910390fd5b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14612f6f5760405163279929b160e21b815260040160405180910390fd5b505b5050505050565b612f80613d2f565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101839052612fbe9291906142dc565b612fc86001600055565b565b60606000612fd783613d14565b6001600160a01b031603612ffe57604051634a1850bf60e11b815260040160405180910390fd5b6004805460405163c87b56dd60e01b81529182018490526001600160a01b03169063c87b56dd90602401600060405180830381865afa158015613045573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121a19190810190615de2565b613075613d2f565b600061307f613cd0565b6000848152601e602052604090205490915060ff16156130b257604051637c9a1cf960e01b815260040160405180910390fd5b60008381526009602052604081205460ff1660028111156130d5576130d56159c9565b146130f3576040516317a66f3760e01b815260040160405180910390fd5b60008281526009602052604081205460ff166002811115613116576131166159c9565b14613134576040516317a66f3760e01b815260040160405180910390fd5b818303613154576040516349da877960e11b815260040160405180910390fd5b61315e8184614196565b61317b5760405163390cdd9b60e21b815260040160405180910390fd5b6131858183614196565b6131a25760405163390cdd9b60e21b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b8152600182015492810183905260029091015460ff1615159281019290925242108015906131f157508060400151155b1561320f576040516307b7d7dd60e51b815260040160405180910390fd5b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16158015928201929092529061326b576040516334d10f9560e11b815260040160405180910390fd5b600082602001518260200151101561328757826020015161328d565b81602001515b90506132988661422c565b6040805160608082018352600080835260208084018281528486018381528c845260188352868420955186546001600160801b0319166001600160801b0390911617865590516001860155516002909401805460ff191694151594909417909355835191820184528082529181018290529182015261331a90879084906142dc565b6040805160608101825260008082526020820181905291810191909152825184516133459190615e50565b600f0b81526040808501511580159183019190915261338857825161336c90600f0b614200565b601d600082825461337d9190615c1c565b909155506133909050565b602081018290525b6000868152601f602052604090205483516133b991906133b290600f0b614200565b6001614ca6565b6133c48685836142dc565b600086815260186020908152604091829020835181546001600160801b0319166001600160801b03909116178155908301516001820155908201516002909101805460ff19169115159190911790558251869088906001600160a01b038816907f986e3c958e3bdf1f58c2150357fc94624dd4e77b08f9802d8e2e885fa0d6a1989061345290600f0b614200565b885161346090600f0b614200565b865161346e90600f0b614200565b6020808901516040805195865291850193909352830152606082015242608082015260a00160405180910390a4604051868152600080516020615f2b833981519152906020015b60405180910390a15050505050610fdb6001600055565b6134d7612b85613cd0565b6134f45760405163390cdd9b60e21b815260040160405180910390fd5b610fdb8282614b10565b600061219e8383615104565b613512613d2f565b6002546001600160a01b0316613526613cd0565b6001600160a01b03161461354d5760405163c18384c160e01b815260040160405180910390fd5b600260008281526009602052604090205460ff166002811115613572576135726159c9565b146135905760405163054b1e0160e51b815260040160405180910390fd5b60008281526009602052604081205460ff1660028111156135b3576135b36159c9565b146135d1576040516317a66f3760e01b815260040160405180910390fd5b6135db8242615104565b6000036135fb5760405163334ab3f560e11b815260040160405180910390fd5b60008281526018602052604090208054600290910154600f9190910b9060ff161561364e5761362c81600f0b614200565b601d600082825461363d9190615c09565b9091555061364e9050836000614b10565b60008381526018602090815260408083208151606080820184528254600f0b825260018301548286015260029092015460ff1615158184015282519182018352848252928101849052908101929092526136aa918591906142dc565b60408051606081018252600080825260208083018281528385018381528884526018909252938220925183546001600160801b0319166001600160801b039091161783559251600183015591516002909101805460ff1916911515919091179055613718600f83900b614200565b905080601d600082825461372c9190615c1c565b909155505060008381526018602090815260409182902082516060810184528154600f0b80825260018301549382019390935260029091015460ff1615159281019290925283908290613780908390615e50565b600f0b9052506000848152601f60205260409020546137a190836001614ca6565b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161515918101919091526137ea908590836142dc565b6000848152601860209081526040808320845181546001600160801b0319166001600160801b0390911617815584830151600180830191909155858301516002909201805460ff19908116931515939093179055898552600b84528285208986528452828520879055898552600a8452828520899055600984528285208054909216179055868352600d9091529081902054905163f320772360e01b815260048101849052602481018790526001600160a01b0390911690819063f320772390604401600060405180830381600087803b1580156138c757600080fd5b505af11580156138db573d6000803e3d6000fd5b5050506000868152600e60205260409081902054905163f320772360e01b815260048101869052602481018990526001600160a01b039091169150819063f320772390604401600060405180830381600087803b15801561393b57600080fd5b505af115801561394f573d6000803e3d6000fd5b50505050858761395e89613d14565b6001600160a01b03167ff7757ce35992f4ee014dee2e0c97ed6245758960a6ecc9e124897a5fb7b0142387426040516139a1929190918252602082015260400190565b60405180910390a4604051878152600080516020615f2b833981519152906020016134b5565b60006139d1613cd0565b90506139dd8183614196565b6139fa5760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff166002811115613a1d57613a1d6159c9565b14613a3b576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290613a97576040516334d10f9560e11b815260040160405180910390fd5b42816020015111613abb576040516307b7d7dd60e51b815260040160405180910390fd5b60008160000151600f0b13613ae35760405163f90e998d60e01b815260040160405180910390fd5b6000613af58260000151600f0b614200565b905080601d6000828254613b099190615c1c565b90915550506000602080840182905260016040808601829052878452601883529283902083516060810185528154600f0b8152918101549282019290925260029091015460ff16151591810191909152613b65908590846142dc565b600084815260186020908152604091829020845181546001600160801b0319166001600160801b03909116178155848201516001820155848301516002909101805460ff19169115159190911790558151838152429181019190915285916001600160a01b038616917f793cb7a30a4bb8669ec607dfcbdc93f5a3e9d282f38191fddab43ccaf79efb80910161165e565b600081815260136020526040812054439003613c1457506000919050565b6121a18242615104565b6000613c28613d2f565b613c33848484614ff2565b90506126406001600055565b613c7360405180608001604052806000815260200160006001600160a01b0316815260200160008152602001600081525090565b5060009182526020808052604080842065ffffffffffff9390931684529181529181902081516080810183528154815260018201546001600160a01b03169381019390935260028101549183019190915260030154606082015290565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163303613d0f575060131936013560601c90565b503390565b6000908152600f60205260409020546001600160a01b031690565b600260005403613d865760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600055565b60008381526009602052604090205460ff166001816002811115613db357613db36159c9565b03613dd157604051635eb32db160e11b815260040160405180910390fd5b600084815260186020908152604080832081516060810183528154600f0b81526001820154938101939093526002015460ff1615159082015290849003613e2b57604051631f2a200560e01b815260040160405180910390fd5b60008160000151600f0b13613e535760405163f90e998d60e01b815260040160405180910390fd5b42816020015111158015613e6957508060400151155b15613e87576040516307b7d7dd60e51b815260040160405180910390fd5b806040015115613ea95783601d6000828254613ea39190615c1c565b90915550505b6000858152601f6020526040902054613ec490856001614ca6565b613ed2858560008487614d92565b6002826002811115613ee657613ee66159c9565b03613fb0576000858152600d60205260409020546001600160a01b03908116907f000000000000000000000000000000000000000000000000000000000000000090613f359082168388615190565b60405163b66503cf60e01b81526001600160a01b0382811660048301526024820188905283169063b66503cf90604401600060405180830381600087803b158015613f7f57600080fd5b505af1158015613f93573d6000803e3d6000fd5b50613fad925050506001600160a01b038216836000615190565b50505b604051858152600080516020615f2b8339815191529060200160405180910390a15050505050565b601654604051637259b01960e01b8152601b600482015260066024820152604481019190915260648101829052600090738e634181dafb102213fad46b71ba1a4b6153b64890637259b01990608401602060405180830381865af4158015614044573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a19190615c70565b600160008381526009602052604090205460ff16600281111561408d5761408d6159c9565b036140ab57604051635eb32db160e11b815260040160405180910390fd5b6140b58183614196565b6140d25760405163390cdd9b60e21b815260040160405180910390fd5b836001600160a01b03166140e583613d14565b6001600160a01b03161461410c576040516330cd747160e01b815260040160405180910390fd5b600082815260116020526040902080546001600160a01b031916905561413284836152a5565b61413e82600085615326565b6141488383615390565b6000828152601360205260408082204390555183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a450505050565b6000806141a283613d14565b6000848152601160209081526040808320546001600160a01b0380861680865260128552838620828c1680885295529290942054949550908214939216149060ff1682806141ed5750815b806141f55750805b979650505050505050565b60008082600f0b12156142255760405162406f5d60e21b815260040160405180910390fd5b50600f0b90565b6000614236613cd0565b90506142428183614196565b61425f5760405163390cdd9b60e21b815260040160405180910390fd5b600061426a83613d14565b600084815260116020526040812080546001600160a01b031916905590915061429590849080615326565b61429f81846152a5565b60405183906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505050565b6142e4615716565b6142ec615716565b6016546000908190871561443f57856040015161430a576000614318565b855161431890600f0b614200565b6080850152602087015142108015614337575060008760000151600f0b135b1561438557865161434d90630784ce0090615e7d565b600f0b6020808701919091528701516143709061436b904290615c09565b614c78565b856020015161437f9190615ebb565b600f0b85525b42866020015111801561439f575060008660000151600f0b135b156143e85785516143b590630784ce0090615e7d565b600f0b6020808601919091528601516143d39061436b904290615c09565b84602001516143e29190615ebb565b600f0b84525b6020808801516000908152601b8252604090205490870151600f9190910b93501561443f5786602001518660200151036144245782915061443f565b6020808701516000908152601b9091526040902054600f0b91505b6040805160a0810182526000808252602082018190524292820192909252436060820152608081019190915281156144c85750600081815260066020908152604091829020825160a0810184528154600f81810b8352600160801b909104900b928101929092526001810154928201929092526002820154606082015260039091015460808201525b60008160400151905060006040518060a001604052808460000151600f0b81526020018460200151600f0b8152602001846040015181526020018460600151815260200184608001518152509050600083604001514211156145615760408401516145339042615c09565b60608501516145429043615c09565b61455490670de0b6b3a7640000615c59565b61455e9190615c45565b90505b600062093a806145718186615c45565b61457b9190615c59565b905060005b60ff8110156147025761459662093a8083615c1c565b91506000428311156145aa574292506145be565b506000828152601b6020526040902054600f0b5b6145cb61436b8785615c09565b87602001516145da9190615ebb565b875188906145e9908390615cf6565b600f0b905250602087018051829190614603908390615e50565b600f90810b90915288516000910b1215905061461e57600087525b60008760200151600f0b121561463657600060208801525b60408088018490528501519295508592670de0b6b3a76400009061465a9085615c09565b6146649086615c59565b61466e9190615c45565b856060015161467d9190615c1c565b606088015261468d600189615c1c565b97504283036146a25750436060870152614702565b6000888152600660209081526040918290208951918a01516001600160801b03908116600160801b029216919091178155908801516001820155606088015160028201556080880151600390910155506146fb81615d40565b9050614580565b50508b15614791578860200151886020015161471e9190615cf6565b8460200181815161472f9190615e50565b600f0b905250885188516147439190615cf6565b84518590614752908390615e50565b600f90810b90915260208601516000910b1215905061477357600060208501525b60008460000151600f0b121561478857600084525b601d5460808501525b846001141580156147c1575042600660006147ad600189615c09565b815260200190815260200160002060010154145b1561482b5783600660006147d6600189615c09565b815260208082019290925260409081016000208351928401516001600160801b03908116600160801b029316929092178255820151600182015560608201516002820155608090910151600390910155614880565b60168590556000858152600660209081526040918290208651918701516001600160801b03908116600160801b0292169190911781559085015160018201556060850151600282015560808501516003909101555b8b15614a9f57428b6020015111156148f25760208901516148a19088615e50565b96508a602001518a60200151036148c45760208801516148c19088615cf6565b96505b60208b8101516000908152601b9091526040902080546001600160801b0319166001600160801b0389161790555b428a60200151111561494d578a602001518a60200151111561494d57602088015161491d9087615cf6565b60208b8101516000908152601b9091526040902080546001600160801b0319166001600160801b03831617905595505b426040808a01919091524360608a015260008d8152601a602052205480158015906149a1575060008d8152601960205260409020429082633b9aca00811061499757614997615c89565b6004020160010154145b15614a175760008d8152601960205260409020899082633b9aca0081106149ca576149ca615c89565b825160208401516001600160801b03908116600160801b02911617600491909102919091019081556040820151600182015560608201516002820155608090910151600390910155614a9d565b614a2081615d40565b60008e8152601a6020908152604080832084905560199091529020909150899082633b9aca008110614a5457614a54615c89565b825160208401516001600160801b03908116600160801b029116176004919091029190910190815560408201516001820155606082015160028201556080909101516003909101555b505b505050505050505050505050565b6040516001600160a01b03831660248201526044810182905261100290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152615422565b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16151591810182905290614b6a57604051632188f8ab60e01b815260040160405180910390fd5b8115801590614b8a57506000614b7f83613d14565b6001600160a01b0316145b15614ba857604051634a1850bf60e11b815260040160405180910390fd5b600083815260136020526040902054439003614bd7576040516342d6fce760e01b815260040160405180910390fd5b828203614be357600091505b6000838152601f6020526040902054828103614bff5750505050565b6000614c118360000151600f0b614200565b9050614c268585614c2188613d14565b615326565b614c3284826001614ca6565b8382614c3c613cd0565b6001600160a01b03167ff1aa2a9e40138176a3ee6099df056f5c175f8511a0d8b8275d94d1ea5de4677360405160405180910390a45050505050565b600060016001607f1b03821115614ca2576040516393dafdf160e01b815260040160405180910390fd5b5090565b6040516375f199b960e11b815260216004820152602060248201526044810184905260648101839052811515608482015273d6e6d57d0627aae127743c79bc795f836431d59f9063ebe333729060a4015b60006040518083038186803b158015614d0f57600080fd5b505af415801561297e573d6000803e3d6000fd5b60006001600160a01b038316614d3b57614d3b615edb565b614d458383615390565b614d5182600085615326565b60405182906001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a450600192915050565b601754614d9f8582615c1c565b6017556040805160608101825260008082526020808301828152838501928352875191880151948801511515909252929052600f9190910b8152614de286614c78565b81518290614df1908390615e50565b600f0b9052508415614e0557602081018590525b600087815260186020908152604091829020835181546001600160801b0319166001600160801b03909116178155908301516001820155908201516002909101805460ff1916911515919091179055614e5f8785836142dc565b6000614e69613cd0565b90508615614ea657614ea66001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001682308a6154f4565b836003811115614eb857614eb86159c9565b602083810151604080518b8152928301919091524282820152518a916001600160a01b038516917f8835c22a0c751188de86681e15904223c054bedd5c68ec8858945b78312902739181900360600190a47f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c83614f358982615c1c565b6040805192835260208301919091520160405180910390a15050505050505050565b6000600860008154614f6890615d40565b91829055506000818152601860209081526040808320865181546001600160801b0319166001600160801b03909116178155868301516001820155868201516002909101805460ff19169115159190911790558051606081018252838152918201839052810191909152909150614fe1908290846142dc565b614feb8382614d23565b5092915050565b60008062093a80806150048642615c1c565b61500e9190615c45565b6150189190615c59565b90508460000361503b57604051631f2a200560e01b815260040160405180910390fd5b42811161505b57604051638e6b5b6760e01b815260040160405180910390fd5b615069630784ce0042615c1c565b8111156150895760405163f761f1cd60e01b815260040160405180910390fd5b600060086000815461509a90615d40565b918290555090506150ab8482614d23565b5060008181526018602090815260409182902082516060810184528154600f0b81526001808301549382019390935260029091015460ff161515928101929092526150fb91839189918691614d92565b95945050505050565b604051637b29b3d160e01b8152601a6004820152601960248201526044810183905260648101829052600090738e634181dafb102213fad46b71ba1a4b6153b64890637b29b3d190608401602060405180830381865af415801561516c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219e9190615c70565b80158061520a5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156151e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906152089190615c70565b155b6152755760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401613d7d565b6040516001600160a01b03831660248201526044810182905261100290849063095ea7b360e01b90606401614ad9565b816001600160a01b03166152b882613d14565b6001600160a01b0316146152ce576152ce615edb565b6000818152600f6020526040902080546001600160a01b03191690556152f48282615532565b6001600160a01b038216600090815260106020526040812080546001929061531d908490615c09565b90915550505050565b60405163690f66bf60e01b8152601860048201526021602482015260206044820152601f60648201526084810184905260a481018390526001600160a01b03821660c482015273d6e6d57d0627aae127743c79bc795f836431d59f9063690f66bf9060e401614cf7565b600061539b82613d14565b6001600160a01b0316146153b1576153b1615edb565b6000818152600f6020908152604080832080546001600160a01b0319166001600160a01b03871690811790915580845260108084528285208054601486528487208188528652848720889055878752601586529386209390935590845290915280546001929061531d908490615c1c565b6000615477826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166155f19092919063ffffffff16565b80519091501561100257808060200190518101906154959190615ef1565b6110025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401613d7d565b6040516001600160a01b038085166024830152831660448201526064810182905261552c9085906323b872dd60e01b90608401614ad9565b50505050565b6001600160a01b03821660009081526010602052604081205461555790600190615c09565b6000838152601560205260409020549091508082036155a6576001600160a01b03841660009081526014602090815260408083208584528252808320839055858352601590915281205561552c565b6001600160a01b039390931660009081526014602090815260408083209383529281528282208054868452848420819055835260159091528282209490945592839055908252812055565b606061263d848460008585600080866001600160a01b031685876040516156189190615f0e565b60006040518083038185875af1925050503d8060008114615655576040519150601f19603f3d011682016040523d82523d6000602084013e61565a565b606091505b509150915061566b87838387615678565b925050505b949350505050565b606083156156e75782516000036156e0576001600160a01b0385163b6156e05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401613d7d565b5081615670565b61567083838151156156fc5781518083602001fd5b8060405162461bcd60e51b8152600401613d7d91906157ce565b6040518060a001604052806000600f0b81526020016000600f0b81526020016000815260200160008152602001600081525090565b6001600160e01b03198116811461132157600080fd5b60006020828403121561577357600080fd5b81356126408161574b565b60005b83811015615799578181015183820152602001615781565b50506000910152565b600081518084526157ba81602086016020860161577e565b601f01601f19169290920160200192915050565b60208152600061219e60208301846157a2565b6000602082840312156157f357600080fd5b5035919050565b6001600160a01b038116811461132157600080fd5b60006020828403121561582157600080fd5b8135612640816157fa565b6000806040838503121561583f57600080fd5b823561584a816157fa565b946020939093013593505050565b6000806040838503121561586b57600080fd5b50508035926020909101359150565b60008060006060848603121561588f57600080fd5b833561589a816157fa565b925060208401356158aa816157fa565b929592945050506040919091013590565b600080604083850312156158ce57600080fd5b82356158d9816157fa565b915060208301356158e9816157fa565b809150509250929050565b801515811461132157600080fd5b6000806040838503121561591557600080fd5b8235615920816157fa565b915060208301356158e9816158f4565b6000806040838503121561594357600080fd5b8235915060208301356158e9816158f4565b60a081016121a182848051600f0b82526020810151600f0b60208301526040810151604083015260608101516060830152608081015160808301525050565b6000806000606084860312156159a957600080fd5b83356159b4816157fa565b95602085013595506040909401359392505050565b634e487b7160e01b600052602160045260246000fd5b6020810160038310615a0157634e487b7160e01b600052602160045260246000fd5b91905290565b600080600080600080600060e0888a031215615a2257600080fd5b87359650602088013595506040880135945060608801359350608088013560ff81168114615a4f57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715615aab57615aab615a6c565b604052919050565b600067ffffffffffffffff821115615acd57615acd615a6c565b50601f01601f191660200190565b60008060008060808587031215615af157600080fd5b8435615afc816157fa565b93506020850135615b0c816157fa565b925060408501359150606085013567ffffffffffffffff811115615b2f57600080fd5b8501601f81018713615b4057600080fd5b8035615b53615b4e82615ab3565b615a82565b818152886020838501011115615b6857600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060608486031215615b9f57600080fd5b83359250602084013591506040840135615bb8816157fa565b809150509250925092565b60008060408385031215615bd657600080fd5b82359150602083013565ffffffffffff811681146158e957600080fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156121a1576121a1615bf3565b808201808211156121a1576121a1615bf3565b634e487b7160e01b600052601260045260246000fd5b600082615c5457615c54615c2f565b500490565b80820281158282048414176121a1576121a1615bf3565b600060208284031215615c8257600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000604082018483526020604081850152818551808452606086019150828701935060005b81811015615ce95784516001600160a01b031683529383019391830191600101615cc4565b5090979650505050505050565b600f82810b9082900b0360016001607f1b0319811260016001607f1b03821317156121a1576121a1615bf3565b600060208284031215615d3557600080fd5b8151612640816157fa565b600060018201615d5257615d52615bf3565b5060010190565b60008060408385031215615d6c57600080fd5b8251615d77816157fa565b60208401519092506158e9816157fa565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615dbb908301846157a2565b9695505050505050565b600060208284031215615dd757600080fd5b81516126408161574b565b600060208284031215615df457600080fd5b815167ffffffffffffffff811115615e0b57600080fd5b8201601f81018413615e1c57600080fd5b8051615e2a615b4e82615ab3565b818152856020838501011115615e3f57600080fd5b6150fb82602083016020860161577e565b600f81810b9083900b0160016001607f1b03811360016001607f1b0319821217156121a1576121a1615bf3565b600081600f0b83600f0b80615e9457615e94615c2f565b60016001607f1b0319821460001982141615615eb257615eb2615bf3565b90059392505050565b600082600f0b82600f0b0280600f0b9150808214614feb57614feb615bf3565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615f0357600080fd5b8151612640816158f4565b60008251615f2081846020870161577e565b919091019291505056fef8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7a2646970667358221220b3b1b41a766901a8b8f6fa1e5e3839da187c0861202c702ea1956c8cfd7971e864736f6c63430008130033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000015e62707fca7352fbe35f51a8d6b0f8066a05dcc000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd986310000000000000000000000005c3f18f06cc09ca1910767a34a20f771039e37c0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104805760003560e01c806370a0823111610257578063b45a3c0e11610146578063e58f5947116100c3578063ec32e6df11610087578063ec32e6df14610ca7578063f04cb3a814610cba578063f52a36f714610d09578063f645d4f914610d3f578063fc0c546a14610d6657600080fd5b8063e58f594714610bfe578063e75b1c2e14610c1e578063e7a324dc14610c31578063e7e242d414610c58578063e985e9c514610c6b57600080fd5b8063c87b56dd1161010a578063c87b56dd14610b9f578063d1c2babb14610bb2578063d9a3495214610bc5578063e0514aba14610bd8578063e0c11f9a14610beb57600080fd5b8063b45a3c0e14610ad6578063b52c05fe14610b5e578063b88d4fde14610b71578063bfe1092814610b84578063c2c4c5c114610b9757600080fd5b806391ddadf4116101d4578063a22cb46511610198578063a22cb46514610a44578063a738da8214610a57578063a899b36c14610a80578063b1548afc14610aa3578063b2383e5514610ac357600080fd5b806391ddadf414610a1857806395d89b41146104de578063981b24d0146109d95780639954a98914610a1e5780639d507b8b14610a3157600080fd5b80638ad4c4471161021b5780638ad4c4471461099b5780638bf9d84c146109ae5780638e539e8c146109d95780638fbb38ff146109ec578063900cf0cf14610a0f57600080fd5b806370a08231146108fc5780637c728000146109255780637ecebe0014610955578063834b0b691461097557806385f2aef21461098857600080fd5b8063370fb5fa116103735780634bf5d7e9116102f057806354fd4d50116102b457806354fd4d501461085f5780635594a04514610883578063572b6c05146108965780635a4f459a146108d65780636352211e146108e957600080fd5b80634bf5d7e9146107af5780634d01cb66146107d95780634d6fb775146107e257806350589793146107f5578063515857d41461083457600080fd5b806342842e0e1161033757806342842e0e1461072e578063430c20811461074157806344acb42a1461075457806346c96aac146107745780634b19becc1461078757600080fd5b8063370fb5fa146106ab57806337b1f500146106be5780633a6396a5146106d15780633bf0c9fb146106e45780633d085a371461070b57600080fd5b806320606b70116104015780632e720f7d116103c55780632e720f7d146106455780632f7f9ba914610658578063313ce5671461066b57806333230dc01461068557806335b0f6bd1461069857600080fd5b806320606b70146105bc57806323b872dd146105e357806327a6ee98146105f65780632d0485ec1461061f5780632e1a7d4d1461063257600080fd5b8063095ea7b311610448578063095ea7b3146105655780630ec84dda1461057857806317d70f7c1461058b57806318160ddd1461059457806319a0a9d51461059c57600080fd5b806301ffc9a714610485578063047fc9aa146104c757806306fdde03146104de578063081812fc1461050f578063095cf5c614610550575b600080fd5b6104b2610493366004615761565b6001600160e01b03191660009081526007602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6104d060175481565b6040519081526020016104be565b610502604051806040016040528060058152602001641d9953919560da1b81525081565b6040516104be91906157ce565b61053861051d3660046157e1565b6000908152601160205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016104be565b61056361055e36600461580f565b610d8d565b005b61056361057336600461582c565b610e11565b610563610586366004615858565b610f52565b6104d060085481565b6104d0610fdf565b6104d06105aa3660046157e1565b600a6020526000908152604090205481565b6104d07f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6105636105f136600461587a565b610fef565b6105386106043660046157e1565b600e602052600090815260409020546001600160a01b031681565b61056361062d3660046158bb565b611007565b6105636106403660046157e1565b611070565b61056361065336600461580f565b611324565b600554610538906001600160a01b031681565b610673601281565b60405160ff90911681526020016104be565b610563610693366004615902565b6113b8565b6105636106a63660046157e1565b61141e565b6105636106b93660046157e1565b61168d565b6105636106cc366004615930565b611c92565b6104d06106df36600461580f565b611e78565b6105387f0000000000000000000000005c3f18f06cc09ca1910767a34a20f771039e37c081565b6104b261071936600461580f565b601c6020526000908152604090205460ff1681565b61056361073c36600461587a565b612177565b6104b261074f36600461582c565b612192565b610767610762366004615858565b6121a7565b6040516104be9190615955565b600254610538906001600160a01b031681565b61079a610795366004615858565b612225565b604080519283526020830191909152016104be565b60408051808201909152600e81526d06d6f64653d74696d657374616d760941b6020820152610502565b6104d0601d5481565b6104d06107f0366004615994565b6125a2565b61081d6108033660046157e1565b60216020526000908152604090205465ffffffffffff1681565b60405165ffffffffffff90911681526020016104be565b6104d0610842366004615858565b600b60209081526000928352604080842090915290825290205481565b610502604051806040016040528060058152602001640322e302e360dc1b81525081565b600454610538906001600160a01b031681565b6104b26108a436600461580f565b7f00000000000000000000000015e62707fca7352fbe35f51a8d6b0f8066a05dcc6001600160a01b0390811691161490565b6105636108e4366004615930565b612647565b6105386108f73660046157e1565b6126a2565b6104d061090a36600461580f565b6001600160a01b031660009081526010602052604090205490565b6109486109333660046157e1565b60096020526000908152604090205460ff1681565b6040516104be91906159df565b6104d061096336600461580f565b60226020526000908152604090205481565b610563610983366004615a07565b6126ad565b600354610538906001600160a01b031681565b6107676109a93660046157e1565b612987565b6104d06109bc36600461582c565b601460209081526000928352604080842090915290825290205481565b6104d06109e73660046157e1565b612a18565b6104b26109fa3660046157e1565b601e6020526000908152604090205460ff1681565b6104d060165481565b4261081d565b610563610a2c36600461580f565b612a23565b610563610a3f366004615858565b612b72565b610563610a52366004615902565b612d46565b610538610a653660046157e1565b600d602052600090815260409020546001600160a01b031681565b6104b2610a8e3660046157e1565b600c6020526000908152604090205460ff1681565b6104d0610ab13660046157e1565b6000908152601f602052604090205490565b610563610ad1366004615858565b612df1565b610b37610ae43660046157e1565b6040805160608082018352600080835260208084018290529284018190529384526018825292829020825193840183528054600f0b84526001810154918401919091526002015460ff1615159082015290565b604080518251600f0b815260208084015190820152918101511515908201526060016104be565b6104d0610b6c366004615858565b612e2d565b610563610b7f366004615adb565b612e55565b600154610538906001600160a01b031681565b610563612f78565b610502610bad3660046157e1565b612fca565b610563610bc0366004615858565b61306d565b610563610bd3366004615858565b6134cc565b6104d0610be6366004615858565b6134fe565b610563610bf9366004615858565b61350a565b6104d0610c0c3660046157e1565b601a6020526000908152604090205481565b610563610c2c3660046157e1565b6139c7565b6104d07f9947d5709c1682eaa3946b2d84115c9c0d1c946b149d76e69b457458b42ea29e81565b6104d0610c663660046157e1565b613bf6565b6104b2610c793660046158bb565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205460ff1690565b6104d0610cb5366004615b8a565b613c1e565b610ccd610cc8366004615bc3565b613c3f565b6040516104be9190815181526020808301516001600160a01b031690820152604080830151908201526060918201519181019190915260800190565b610d2c610d173660046157e1565b601b60205260009081526040902054600f0b81565b604051600f9190910b81526020016104be565b6105387f00000000000000000000000015e62707fca7352fbe35f51a8d6b0f8066a05dcc81565b6105387f000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd9863181565b6003546001600160a01b0316610da1613cd0565b6001600160a01b031614610dc857604051633a7cfa5d60e21b815260040160405180910390fd5b6001600160a01b038116610def5760405163d92e233d60e01b815260040160405180910390fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e1b613cd0565b90506000610e2883613d14565b90506001600160a01b038116610e515760405163d92e233d60e01b815260040160405180910390fd5b836001600160a01b0316816001600160a01b031603610e835760405163367558c360e01b815260040160405180910390fd5b6000826001600160a01b0316610e9885613d14565b6001600160a01b0384811660009081526012602090815260408083208985168452909152902054911691909114915060ff16811582610ed5575080155b15610ef35760405163390cdd9b60e21b815260040160405180910390fd5b60008581526011602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050505050565b610f5a613d2f565b600260008381526009602052604090205460ff166002811115610f7f57610f7f6159c9565b148015610fa757506001546001600160a01b0316610f9b613cd0565b6001600160a01b031614155b15610fc55760405163385296d560e01b815260040160405180910390fd5b610fd182826000613d8d565b610fdb6001600055565b5050565b6000610fea42613fd8565b905090565b611002838383610ffd613cd0565b614068565b505050565b6002546001600160a01b031661101b613cd0565b6001600160a01b0316146110425760405163c18384c160e01b815260040160405180910390fd5b600280546001600160a01b039384166001600160a01b03199182161790915560018054929093169116179055565b611078613d2f565b6000611082613cd0565b905061108e8183614196565b6110ab5760405163390cdd9b60e21b815260040160405180910390fd5b6000828152601e602052604090205460ff16156110db57604051637c9a1cf960e01b815260040160405180910390fd5b60008281526009602052604081205460ff1660028111156110fe576110fe6159c9565b1461111c576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290611178576040516334d10f9560e11b815260040160405180910390fd5b806020015142101561119d5760405163342ad40160e11b815260040160405180910390fd5b60006111af8260000151600f0b614200565b90506111ba8461422c565b6040805160608101825260008082526020808301828152838501838152898452601890925293909120915182546001600160801b0319166001600160801b039091161782559151600182015590516002909101805460ff19169115159190911790556017546112298282615c09565b601755604080516060810182526000808252602082018190529181019190915261125690869085906142dc565b61128a6001600160a01b037f000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd98631168584614aad565b6040805183815242602082015286916001600160a01b038716917f02f25270a4d87bea75db541cdfe559334a275b4a233520ed6c0a2429667cca94910160405180910390a37f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c816112fb8482615c09565b6040805192835260208301919091520160405180910390a1505050506113216001600055565b50565b6003546001600160a01b0316611338613cd0565b6001600160a01b03161461135f57604051633a7cfa5d60e21b815260040160405180910390fd5b600480546001600160a01b0319166001600160a01b038316179055604080516000815260001960208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a150565b6003546001600160a01b03166113cc613cd0565b6001600160a01b0316146113f357604051633a7cfa5d60e21b815260040160405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6000611428613cd0565b90506114348183614196565b6114515760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff166002811115611474576114746159c9565b14611492576040516317a66f3760e01b815260040160405180910390fd5b6000828152601e602052604090205460ff16156114c257604051637c9a1cf960e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff1615159181018290529061151c57604051632188f8ab60e01b815260040160405180910390fd5b600061152e8260000151600f0b614200565b905080601d60008282546115429190615c09565b9091555062093a8090508061155b630784ce0042615c1c565b6115659190615c45565b61156f9190615c59565b6020830152600060408301819052611588908590614b10565b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161515918101919091526115d1908590846142dc565b600084815260186020908152604091829020845181546001600160801b0319166001600160801b03909116178155848201516001820155848301516002909101805460ff19169115159190911790558151838152429181019190915285916001600160a01b038616917f668d293c0a181c1f163fd0d3c757239a9c17bd26c5e483150e374455433b27fa91015b60405180910390a3604051848152600080516020615f2b8339815191529060200160405180910390a150505050565b611695613d2f565b6000818152600a60205260409020546002546001600160a01b03166116b8613cd0565b6001600160a01b0316146116df5760405163c18384c160e01b815260040160405180910390fd5b806000036117005760405163d7caa26160e01b815260040160405180910390fd5b600160008381526009602052604090205460ff166002811115611725576117256159c9565b1461174357604051630fd82f7760e11b815260040160405180910390fd5b6000818152600d6020908152604080832054600e835281842054868552600b8452828520868652909352818420549151633e491d4760e01b81526001600160a01b037f000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd9863181166004830152602482018890529182169491909316928490633e491d4790604401602060405180830381865afa1580156117e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118099190615c70565b905060006118178284615c1c565b9050600062093a808061182e630784ce0042615c1c565b6118389190615c45565b6118429190615c59565b60408051600180825281830190925291925060009190602080830190803683370190505090507f000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd986318160008151811061189c5761189c615c89565b6001600160a01b03928316602091820292909201015260405163f5f8d36560e01b81529088169063f5f8d365906118d9908c908590600401615c9f565b600060405180830381600087803b1580156118f357600080fd5b505af1158015611907573d6000803e3d6000fd5b505050506000604051806060016040528061192186614c78565b600f90810b82526020808301879052600060409384018190528e8152601882528390208351606081018552815490930b83526001810154918301919091526002015460ff1615159181019190915290915061197e908b90836142dc565b60008a8152601860209081526040808320845181546001600160801b0319166001600160801b0390911617815584830151600180830191909155858301516002928301805460ff19169115159190911790558d85529382902082516060810184528154600f0b8082529582015494810194909452015460ff1615159082015290611a0786614c78565b600f0b12611a16578051611a1f565b611a1f85614c78565b81518290611a2e908390615cf6565b600f0b905250601d548510611a4557601d54611a47565b845b601d6000828254611a589190615c09565b909155505060008a8152601f6020526040812054611a77918790614ca6565b60008a81526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16151591810191909152611ac0908b90836142dc565b60008a815260186020908152604091829020835181546001600160801b0319166001600160801b03909116178155908301516001820155828201516002909101805460ff19169115159190911790555163278afc8b60e21b815260048101889052602481018c90526001600160a01b038a1690639e2bf22c90604401600060405180830381600087803b158015611b5657600080fd5b505af1158015611b6a573d6000803e3d6000fd5b505060405163278afc8b60e21b8152600481018a9052602481018e90526001600160a01b038b169250639e2bf22c9150604401600060405180830381600087803b158015611bb757600080fd5b505af1158015611bcb573d6000803e3d6000fd5b50505060008c8152600a60209081526040808320839055600b82528083208e845282528083208390558e835260099091529020805460ff1916905550898b611c1281613d14565b6001600160a01b03167f5319474ec1e9d118585a40e615ea37be254007e6bb5b039756c3813c2d1354898842604051611c55929190918252602082015260400190565b60405180910390a46040518b8152600080516020615f2b8339815191529060200160405180910390a1505050505050505050506113216001600055565b600260009054906101000a90046001600160a01b03166001600160a01b0316637778960e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ce5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d099190615d23565b6001600160a01b0316611d1a613cd0565b6001600160a01b031614158015611dc05750600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da39190615d23565b6001600160a01b0316611db4613cd0565b6001600160a01b031614155b15611dde5760405163459d6a3f60e01b815260040160405180910390fd5b600260008381526009602052604090205460ff166002811115611e0357611e036159c9565b14611e215760405163054b1e0160e51b815260040160405180910390fd5b6000828152600c602052604090205481151560ff909116151503611e5857604051631490ad1160e01b815260040160405180910390fd5b6000918252600c6020526040909120805460ff1916911515919091179055565b6000611e82613d2f565b6000611e8c613cd0565b6005549091506001600160a01b03808316911614801590611f355750600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015611efb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1f9190615d23565b6001600160a01b0316816001600160a01b031614155b15611f5357604051633bc1d15f60e01b815260040160405180910390fd5b600860008154611f6290615d40565b91829055509150611f738383614d23565b50611fa58260008060405180606001604052806000600f0b815260200160008152602001600115158152506001614d92565b6000828152600960209081526040808320805460ff1916600217905580516301a15ccf60e31b8152905183926001600160a01b037f0000000000000000000000005c3f18f06cc09ca1910767a34a20f771039e37c01692630d0ae67892600480830193928290030181865afa158015612022573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120469190615d23565b60025460405163dabc8e8360e01b81526001600160a01b037f00000000000000000000000015e62707fca7352fbe35f51a8d6b0f8066a05dcc81166004830152918216602482015291169063dabc8e839060440160408051808303816000875af11580156120b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120dc9190615d59565b6000868152600d6020908152604080832080546001600160a01b038781166001600160a01b03199283168117909355600e8552948390208054878716921682179055825191825292810192909252939550919350858116928792918916917fae65a147ec014982132ce8b32019735e3c5f41457848d2ce2e2c3e0cbc9df7bc910160405180910390a45050506121726001600055565b919050565b61100283838360405180602001604052806000815250612e55565b600061219e8383614196565b90505b92915050565b6121af615716565b600083815260196020526040902082633b9aca0081106121d1576121d1615c89565b6040805160a081018252600492909202929092018054600f81810b8452600160801b909104900b60208301526001810154928201929092526002820154606082015260039091015460808201529392505050565b600080612230613d2f565b600061223a613cd0565b9050600061224786613d14565b90506001600160a01b03811661227057604051632c2151ef60e11b815260040160405180910390fd5b6001600160a01b0381166000908152601c602052604090205460ff161580156122c4575060008052601c6020527fb9c6de81004e18dedadca3e5eabaab449ca91dff6f58efc9461da635fe77f8495460ff16155b156122e257604051633df16fd960e21b815260040160405180910390fd5b60008681526009602052604081205460ff166002811115612305576123056159c9565b14612323576040516317a66f3760e01b815260040160405180910390fd5b6000868152601e602052604090205460ff161561235357604051637c9a1cf960e01b815260040160405180910390fd5b61235d8287614196565b61237a5760405163390cdd9b60e21b815260040160405180910390fd5b60008681526018602090815260409182902082516060810184528154600f0b8152600182015492810183905260029091015460ff1615159281019290925242108015906123c957508060400151155b156123e7576040516307b7d7dd60e51b815260040160405180910390fd5b60006123f287614c78565b905080600f0b60000361241857604051631f2a200560e01b815260040160405180910390fd5b80600f0b8260000151600f0b1361244257604051636b2f218360e01b815260040160405180910390fd5b61244b8861422c565b6040805160608082018352600080835260208084018281528486018381528e845260188352868420955186546001600160801b0319166001600160801b0390911617865590516001860155516002909401805460ff19169415159490941790935583519182018452808252918101829052918201526124cd90899084906142dc565b80826000018181516124df9190615cf6565b600f0b9052506124ef8383614f57565b600f82900b835295506125028383614f57565b600087815260186020526040902054909550859087908a907f8303de8187a6102fdc3fe20c756dddd68df0ae027b77e2391c19a855e0821f3390889061254a90600f0b614200565b61255687600f0b614200565b6020808a0151604080516001600160a01b03909616865291850193909352830152606082015242608082015260a00160405180910390a45050505061259b6001600055565b9250929050565b6040516332b53f5360e11b815260216004820152602060248201526001600160a01b0384166044820152606481018390526084810182905260009073d6e6d57d0627aae127743c79bc795f836431d59f9063656a7ea69060a401602060405180830381865af4158015612619573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061263d9190615c70565b90505b9392505050565b6002546001600160a01b031661265b613cd0565b6001600160a01b0316146126825760405163c18384c160e01b815260040160405180910390fd5b6000918252601e6020526040909120805460ff1916911515919091179055565b60006121a182613d14565b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08111156126ee576040516317e97eb760e31b815260040160405180910390fd5b6040805180820182526005808252641d9953919560da1b60209283015282518084018452908152640322e302e360dc1b9082015281517f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866818301527fc792e9874e7b42c234d1e8448cec020a0f065019c8cd6f7ccdb65b8c110157e9818401527fb4bcb154e38601c389396fa918314da42d4626f13ef6d0ceb07e5f5d26b2fbc360608201524660808201523060a0808301919091528351808303909101815260c0820184528051908301207f9947d5709c1682eaa3946b2d84115c9c0d1c946b149d76e69b457458b42ea29e60e083015261010082018b905261012082018a905261014082018990526101608083018990528451808403909101815261018083019094528351939092019290922061190160f01b6101a08401526101a283018290526101c2830181905290916000906101e20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa1580156128ad573d6000803e3d6000fd5b5050506020604051035190506128c3818c614196565b6128e05760405163390cdd9b60e21b815260040160405180910390fd5b6001600160a01b03811661290757604051638baa579f60e01b815260040160405180910390fd5b6001600160a01b038116600090815260226020526040812080549161292b83615d40565b91905055891461294e57604051633ab3447f60e11b815260040160405180910390fd5b8742111561296f57604051630819bdcd60e01b815260040160405180910390fd5b6129798b8b614b10565b505050505b50505050505050565b6129bf6040518060a001604052806000600f0b81526020016000600f0b81526020016000815260200160008152602001600081525090565b50600090815260066020908152604091829020825160a0810184528154600f81810b8352600160801b909104900b9281019290925260018101549282019290925260028201546060820152600390910154608082015290565b60006121a182613fd8565b600260009054906101000a90046001600160a01b03166001600160a01b0316630c340a246040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9a9190615d23565b6001600160a01b0316612aab613cd0565b6001600160a01b031614612ad257604051633b8d9d7560e21b815260040160405180910390fd5b6005546001600160a01b0390811690821603612b015760405163367558c360e01b815260040160405180910390fd5b6001600160a01b038116612b285760405163d92e233d60e01b815260040160405180910390fd5b600580546001600160a01b0319166001600160a01b0383169081179091556040517f1a6ce72407c68def4b7d2e724c896070d89cf2b2a2dd56b6897b5febd88420f590600090a250565b612b7a613d2f565b612b8b612b85613cd0565b83614196565b612ba85760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff166002811115612bcb57612bcb6159c9565b14612be9576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290612c45576040516334d10f9560e11b815260040160405180910390fd5b600062093a8080612c568542615c1c565b612c609190615c45565b612c6a9190615c59565b905042826020015111612c90576040516307b7d7dd60e51b815260040160405180910390fd5b60008260000151600f0b13612cb85760405163f90e998d60e01b815260040160405180910390fd5b81602001518111612cdc57604051638e6b5b6760e01b815260040160405180910390fd5b612cea630784ce0042615c1c565b811115612d0a5760405163f761f1cd60e01b815260040160405180910390fd5b612d1984600083856003614d92565b604051848152600080516020615f2b8339815191529060200160405180910390a15050610fdb6001600055565b6000612d50613cd0565b9050806001600160a01b0316836001600160a01b031603612d845760405163367558c360e01b815260040160405180910390fd5b6001600160a01b03818116600081815260126020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612df9613d2f565b612e04612b85613cd0565b612e215760405163390cdd9b60e21b815260040160405180910390fd5b610fd182826002613d8d565b6000612e37613d2f565b612e498383612e44613cd0565b614ff2565b90506121a16001600055565b6000612e5f613cd0565b9050612e6d85858584614068565b833b15612f7157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ea6908490899088908890600401615d88565b6020604051808303816000875af1925050508015612ee1575060408051601f3d908101601f19168201909252612ede91810190615dc5565b60015b612f3e573d808015612f0f576040519150601f19603f3d011682016040523d82523d6000602084013e612f14565b606091505b508051600003612f3657604051626b5e2960e61b815260040160405180910390fd5b805181602001fd5b6001600160e01b03198116630a85bd0160e11b14612f6f5760405163279929b160e21b815260040160405180910390fd5b505b5050505050565b612f80613d2f565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101839052612fbe9291906142dc565b612fc86001600055565b565b60606000612fd783613d14565b6001600160a01b031603612ffe57604051634a1850bf60e11b815260040160405180910390fd5b6004805460405163c87b56dd60e01b81529182018490526001600160a01b03169063c87b56dd90602401600060405180830381865afa158015613045573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121a19190810190615de2565b613075613d2f565b600061307f613cd0565b6000848152601e602052604090205490915060ff16156130b257604051637c9a1cf960e01b815260040160405180910390fd5b60008381526009602052604081205460ff1660028111156130d5576130d56159c9565b146130f3576040516317a66f3760e01b815260040160405180910390fd5b60008281526009602052604081205460ff166002811115613116576131166159c9565b14613134576040516317a66f3760e01b815260040160405180910390fd5b818303613154576040516349da877960e11b815260040160405180910390fd5b61315e8184614196565b61317b5760405163390cdd9b60e21b815260040160405180910390fd5b6131858183614196565b6131a25760405163390cdd9b60e21b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b8152600182015492810183905260029091015460ff1615159281019290925242108015906131f157508060400151155b1561320f576040516307b7d7dd60e51b815260040160405180910390fd5b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16158015928201929092529061326b576040516334d10f9560e11b815260040160405180910390fd5b600082602001518260200151101561328757826020015161328d565b81602001515b90506132988661422c565b6040805160608082018352600080835260208084018281528486018381528c845260188352868420955186546001600160801b0319166001600160801b0390911617865590516001860155516002909401805460ff191694151594909417909355835191820184528082529181018290529182015261331a90879084906142dc565b6040805160608101825260008082526020820181905291810191909152825184516133459190615e50565b600f0b81526040808501511580159183019190915261338857825161336c90600f0b614200565b601d600082825461337d9190615c1c565b909155506133909050565b602081018290525b6000868152601f602052604090205483516133b991906133b290600f0b614200565b6001614ca6565b6133c48685836142dc565b600086815260186020908152604091829020835181546001600160801b0319166001600160801b03909116178155908301516001820155908201516002909101805460ff19169115159190911790558251869088906001600160a01b038816907f986e3c958e3bdf1f58c2150357fc94624dd4e77b08f9802d8e2e885fa0d6a1989061345290600f0b614200565b885161346090600f0b614200565b865161346e90600f0b614200565b6020808901516040805195865291850193909352830152606082015242608082015260a00160405180910390a4604051868152600080516020615f2b833981519152906020015b60405180910390a15050505050610fdb6001600055565b6134d7612b85613cd0565b6134f45760405163390cdd9b60e21b815260040160405180910390fd5b610fdb8282614b10565b600061219e8383615104565b613512613d2f565b6002546001600160a01b0316613526613cd0565b6001600160a01b03161461354d5760405163c18384c160e01b815260040160405180910390fd5b600260008281526009602052604090205460ff166002811115613572576135726159c9565b146135905760405163054b1e0160e51b815260040160405180910390fd5b60008281526009602052604081205460ff1660028111156135b3576135b36159c9565b146135d1576040516317a66f3760e01b815260040160405180910390fd5b6135db8242615104565b6000036135fb5760405163334ab3f560e11b815260040160405180910390fd5b60008281526018602052604090208054600290910154600f9190910b9060ff161561364e5761362c81600f0b614200565b601d600082825461363d9190615c09565b9091555061364e9050836000614b10565b60008381526018602090815260408083208151606080820184528254600f0b825260018301548286015260029092015460ff1615158184015282519182018352848252928101849052908101929092526136aa918591906142dc565b60408051606081018252600080825260208083018281528385018381528884526018909252938220925183546001600160801b0319166001600160801b039091161783559251600183015591516002909101805460ff1916911515919091179055613718600f83900b614200565b905080601d600082825461372c9190615c1c565b909155505060008381526018602090815260409182902082516060810184528154600f0b80825260018301549382019390935260029091015460ff1615159281019290925283908290613780908390615e50565b600f0b9052506000848152601f60205260409020546137a190836001614ca6565b60008481526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161515918101919091526137ea908590836142dc565b6000848152601860209081526040808320845181546001600160801b0319166001600160801b0390911617815584830151600180830191909155858301516002909201805460ff19908116931515939093179055898552600b84528285208986528452828520879055898552600a8452828520899055600984528285208054909216179055868352600d9091529081902054905163f320772360e01b815260048101849052602481018790526001600160a01b0390911690819063f320772390604401600060405180830381600087803b1580156138c757600080fd5b505af11580156138db573d6000803e3d6000fd5b5050506000868152600e60205260409081902054905163f320772360e01b815260048101869052602481018990526001600160a01b039091169150819063f320772390604401600060405180830381600087803b15801561393b57600080fd5b505af115801561394f573d6000803e3d6000fd5b50505050858761395e89613d14565b6001600160a01b03167ff7757ce35992f4ee014dee2e0c97ed6245758960a6ecc9e124897a5fb7b0142387426040516139a1929190918252602082015260400190565b60405180910390a4604051878152600080516020615f2b833981519152906020016134b5565b60006139d1613cd0565b90506139dd8183614196565b6139fa5760405163390cdd9b60e21b815260040160405180910390fd5b60008281526009602052604081205460ff166002811115613a1d57613a1d6159c9565b14613a3b576040516317a66f3760e01b815260040160405180910390fd5b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff161580159282019290925290613a97576040516334d10f9560e11b815260040160405180910390fd5b42816020015111613abb576040516307b7d7dd60e51b815260040160405180910390fd5b60008160000151600f0b13613ae35760405163f90e998d60e01b815260040160405180910390fd5b6000613af58260000151600f0b614200565b905080601d6000828254613b099190615c1c565b90915550506000602080840182905260016040808601829052878452601883529283902083516060810185528154600f0b8152918101549282019290925260029091015460ff16151591810191909152613b65908590846142dc565b600084815260186020908152604091829020845181546001600160801b0319166001600160801b03909116178155848201516001820155848301516002909101805460ff19169115159190911790558151838152429181019190915285916001600160a01b038616917f793cb7a30a4bb8669ec607dfcbdc93f5a3e9d282f38191fddab43ccaf79efb80910161165e565b600081815260136020526040812054439003613c1457506000919050565b6121a18242615104565b6000613c28613d2f565b613c33848484614ff2565b90506126406001600055565b613c7360405180608001604052806000815260200160006001600160a01b0316815260200160008152602001600081525090565b5060009182526020808052604080842065ffffffffffff9390931684529181529181902081516080810183528154815260018201546001600160a01b03169381019390935260028101549183019190915260030154606082015290565b60007f00000000000000000000000015e62707fca7352fbe35f51a8d6b0f8066a05dcc6001600160a01b03163303613d0f575060131936013560601c90565b503390565b6000908152600f60205260409020546001600160a01b031690565b600260005403613d865760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600055565b60008381526009602052604090205460ff166001816002811115613db357613db36159c9565b03613dd157604051635eb32db160e11b815260040160405180910390fd5b600084815260186020908152604080832081516060810183528154600f0b81526001820154938101939093526002015460ff1615159082015290849003613e2b57604051631f2a200560e01b815260040160405180910390fd5b60008160000151600f0b13613e535760405163f90e998d60e01b815260040160405180910390fd5b42816020015111158015613e6957508060400151155b15613e87576040516307b7d7dd60e51b815260040160405180910390fd5b806040015115613ea95783601d6000828254613ea39190615c1c565b90915550505b6000858152601f6020526040902054613ec490856001614ca6565b613ed2858560008487614d92565b6002826002811115613ee657613ee66159c9565b03613fb0576000858152600d60205260409020546001600160a01b03908116907f000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd9863190613f359082168388615190565b60405163b66503cf60e01b81526001600160a01b0382811660048301526024820188905283169063b66503cf90604401600060405180830381600087803b158015613f7f57600080fd5b505af1158015613f93573d6000803e3d6000fd5b50613fad925050506001600160a01b038216836000615190565b50505b604051858152600080516020615f2b8339815191529060200160405180910390a15050505050565b601654604051637259b01960e01b8152601b600482015260066024820152604481019190915260648101829052600090738e634181dafb102213fad46b71ba1a4b6153b64890637259b01990608401602060405180830381865af4158015614044573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121a19190615c70565b600160008381526009602052604090205460ff16600281111561408d5761408d6159c9565b036140ab57604051635eb32db160e11b815260040160405180910390fd5b6140b58183614196565b6140d25760405163390cdd9b60e21b815260040160405180910390fd5b836001600160a01b03166140e583613d14565b6001600160a01b03161461410c576040516330cd747160e01b815260040160405180910390fd5b600082815260116020526040902080546001600160a01b031916905561413284836152a5565b61413e82600085615326565b6141488383615390565b6000828152601360205260408082204390555183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a450505050565b6000806141a283613d14565b6000848152601160209081526040808320546001600160a01b0380861680865260128552838620828c1680885295529290942054949550908214939216149060ff1682806141ed5750815b806141f55750805b979650505050505050565b60008082600f0b12156142255760405162406f5d60e21b815260040160405180910390fd5b50600f0b90565b6000614236613cd0565b90506142428183614196565b61425f5760405163390cdd9b60e21b815260040160405180910390fd5b600061426a83613d14565b600084815260116020526040812080546001600160a01b031916905590915061429590849080615326565b61429f81846152a5565b60405183906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505050565b6142e4615716565b6142ec615716565b6016546000908190871561443f57856040015161430a576000614318565b855161431890600f0b614200565b6080850152602087015142108015614337575060008760000151600f0b135b1561438557865161434d90630784ce0090615e7d565b600f0b6020808701919091528701516143709061436b904290615c09565b614c78565b856020015161437f9190615ebb565b600f0b85525b42866020015111801561439f575060008660000151600f0b135b156143e85785516143b590630784ce0090615e7d565b600f0b6020808601919091528601516143d39061436b904290615c09565b84602001516143e29190615ebb565b600f0b84525b6020808801516000908152601b8252604090205490870151600f9190910b93501561443f5786602001518660200151036144245782915061443f565b6020808701516000908152601b9091526040902054600f0b91505b6040805160a0810182526000808252602082018190524292820192909252436060820152608081019190915281156144c85750600081815260066020908152604091829020825160a0810184528154600f81810b8352600160801b909104900b928101929092526001810154928201929092526002820154606082015260039091015460808201525b60008160400151905060006040518060a001604052808460000151600f0b81526020018460200151600f0b8152602001846040015181526020018460600151815260200184608001518152509050600083604001514211156145615760408401516145339042615c09565b60608501516145429043615c09565b61455490670de0b6b3a7640000615c59565b61455e9190615c45565b90505b600062093a806145718186615c45565b61457b9190615c59565b905060005b60ff8110156147025761459662093a8083615c1c565b91506000428311156145aa574292506145be565b506000828152601b6020526040902054600f0b5b6145cb61436b8785615c09565b87602001516145da9190615ebb565b875188906145e9908390615cf6565b600f0b905250602087018051829190614603908390615e50565b600f90810b90915288516000910b1215905061461e57600087525b60008760200151600f0b121561463657600060208801525b60408088018490528501519295508592670de0b6b3a76400009061465a9085615c09565b6146649086615c59565b61466e9190615c45565b856060015161467d9190615c1c565b606088015261468d600189615c1c565b97504283036146a25750436060870152614702565b6000888152600660209081526040918290208951918a01516001600160801b03908116600160801b029216919091178155908801516001820155606088015160028201556080880151600390910155506146fb81615d40565b9050614580565b50508b15614791578860200151886020015161471e9190615cf6565b8460200181815161472f9190615e50565b600f0b905250885188516147439190615cf6565b84518590614752908390615e50565b600f90810b90915260208601516000910b1215905061477357600060208501525b60008460000151600f0b121561478857600084525b601d5460808501525b846001141580156147c1575042600660006147ad600189615c09565b815260200190815260200160002060010154145b1561482b5783600660006147d6600189615c09565b815260208082019290925260409081016000208351928401516001600160801b03908116600160801b029316929092178255820151600182015560608201516002820155608090910151600390910155614880565b60168590556000858152600660209081526040918290208651918701516001600160801b03908116600160801b0292169190911781559085015160018201556060850151600282015560808501516003909101555b8b15614a9f57428b6020015111156148f25760208901516148a19088615e50565b96508a602001518a60200151036148c45760208801516148c19088615cf6565b96505b60208b8101516000908152601b9091526040902080546001600160801b0319166001600160801b0389161790555b428a60200151111561494d578a602001518a60200151111561494d57602088015161491d9087615cf6565b60208b8101516000908152601b9091526040902080546001600160801b0319166001600160801b03831617905595505b426040808a01919091524360608a015260008d8152601a602052205480158015906149a1575060008d8152601960205260409020429082633b9aca00811061499757614997615c89565b6004020160010154145b15614a175760008d8152601960205260409020899082633b9aca0081106149ca576149ca615c89565b825160208401516001600160801b03908116600160801b02911617600491909102919091019081556040820151600182015560608201516002820155608090910151600390910155614a9d565b614a2081615d40565b60008e8152601a6020908152604080832084905560199091529020909150899082633b9aca008110614a5457614a54615c89565b825160208401516001600160801b03908116600160801b029116176004919091029190910190815560408201516001820155606082015160028201556080909101516003909101555b505b505050505050505050505050565b6040516001600160a01b03831660248201526044810182905261100290849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152615422565b60008281526018602090815260409182902082516060810184528154600f0b81526001820154928101929092526002015460ff16151591810182905290614b6a57604051632188f8ab60e01b815260040160405180910390fd5b8115801590614b8a57506000614b7f83613d14565b6001600160a01b0316145b15614ba857604051634a1850bf60e11b815260040160405180910390fd5b600083815260136020526040902054439003614bd7576040516342d6fce760e01b815260040160405180910390fd5b828203614be357600091505b6000838152601f6020526040902054828103614bff5750505050565b6000614c118360000151600f0b614200565b9050614c268585614c2188613d14565b615326565b614c3284826001614ca6565b8382614c3c613cd0565b6001600160a01b03167ff1aa2a9e40138176a3ee6099df056f5c175f8511a0d8b8275d94d1ea5de4677360405160405180910390a45050505050565b600060016001607f1b03821115614ca2576040516393dafdf160e01b815260040160405180910390fd5b5090565b6040516375f199b960e11b815260216004820152602060248201526044810184905260648101839052811515608482015273d6e6d57d0627aae127743c79bc795f836431d59f9063ebe333729060a4015b60006040518083038186803b158015614d0f57600080fd5b505af415801561297e573d6000803e3d6000fd5b60006001600160a01b038316614d3b57614d3b615edb565b614d458383615390565b614d5182600085615326565b60405182906001600160a01b038516906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a450600192915050565b601754614d9f8582615c1c565b6017556040805160608101825260008082526020808301828152838501928352875191880151948801511515909252929052600f9190910b8152614de286614c78565b81518290614df1908390615e50565b600f0b9052508415614e0557602081018590525b600087815260186020908152604091829020835181546001600160801b0319166001600160801b03909116178155908301516001820155908201516002909101805460ff1916911515919091179055614e5f8785836142dc565b6000614e69613cd0565b90508615614ea657614ea66001600160a01b037f000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd986311682308a6154f4565b836003811115614eb857614eb86159c9565b602083810151604080518b8152928301919091524282820152518a916001600160a01b038516917f8835c22a0c751188de86681e15904223c054bedd5c68ec8858945b78312902739181900360600190a47f5e2aa66efd74cce82b21852e317e5490d9ecc9e6bb953ae24d90851258cc2f5c83614f358982615c1c565b6040805192835260208301919091520160405180910390a15050505050505050565b6000600860008154614f6890615d40565b91829055506000818152601860209081526040808320865181546001600160801b0319166001600160801b03909116178155868301516001820155868201516002909101805460ff19169115159190911790558051606081018252838152918201839052810191909152909150614fe1908290846142dc565b614feb8382614d23565b5092915050565b60008062093a80806150048642615c1c565b61500e9190615c45565b6150189190615c59565b90508460000361503b57604051631f2a200560e01b815260040160405180910390fd5b42811161505b57604051638e6b5b6760e01b815260040160405180910390fd5b615069630784ce0042615c1c565b8111156150895760405163f761f1cd60e01b815260040160405180910390fd5b600060086000815461509a90615d40565b918290555090506150ab8482614d23565b5060008181526018602090815260409182902082516060810184528154600f0b81526001808301549382019390935260029091015460ff161515928101929092526150fb91839189918691614d92565b95945050505050565b604051637b29b3d160e01b8152601a6004820152601960248201526044810183905260648101829052600090738e634181dafb102213fad46b71ba1a4b6153b64890637b29b3d190608401602060405180830381865af415801561516c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061219e9190615c70565b80158061520a5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156151e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906152089190615c70565b155b6152755760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401613d7d565b6040516001600160a01b03831660248201526044810182905261100290849063095ea7b360e01b90606401614ad9565b816001600160a01b03166152b882613d14565b6001600160a01b0316146152ce576152ce615edb565b6000818152600f6020526040902080546001600160a01b03191690556152f48282615532565b6001600160a01b038216600090815260106020526040812080546001929061531d908490615c09565b90915550505050565b60405163690f66bf60e01b8152601860048201526021602482015260206044820152601f60648201526084810184905260a481018390526001600160a01b03821660c482015273d6e6d57d0627aae127743c79bc795f836431d59f9063690f66bf9060e401614cf7565b600061539b82613d14565b6001600160a01b0316146153b1576153b1615edb565b6000818152600f6020908152604080832080546001600160a01b0319166001600160a01b03871690811790915580845260108084528285208054601486528487208188528652848720889055878752601586529386209390935590845290915280546001929061531d908490615c1c565b6000615477826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166155f19092919063ffffffff16565b80519091501561100257808060200190518101906154959190615ef1565b6110025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401613d7d565b6040516001600160a01b038085166024830152831660448201526064810182905261552c9085906323b872dd60e01b90608401614ad9565b50505050565b6001600160a01b03821660009081526010602052604081205461555790600190615c09565b6000838152601560205260409020549091508082036155a6576001600160a01b03841660009081526014602090815260408083208584528252808320839055858352601590915281205561552c565b6001600160a01b039390931660009081526014602090815260408083209383529281528282208054868452848420819055835260159091528282209490945592839055908252812055565b606061263d848460008585600080866001600160a01b031685876040516156189190615f0e565b60006040518083038185875af1925050503d8060008114615655576040519150601f19603f3d011682016040523d82523d6000602084013e61565a565b606091505b509150915061566b87838387615678565b925050505b949350505050565b606083156156e75782516000036156e0576001600160a01b0385163b6156e05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401613d7d565b5081615670565b61567083838151156156fc5781518083602001fd5b8060405162461bcd60e51b8152600401613d7d91906157ce565b6040518060a001604052806000600f0b81526020016000600f0b81526020016000815260200160008152602001600081525090565b6001600160e01b03198116811461132157600080fd5b60006020828403121561577357600080fd5b81356126408161574b565b60005b83811015615799578181015183820152602001615781565b50506000910152565b600081518084526157ba81602086016020860161577e565b601f01601f19169290920160200192915050565b60208152600061219e60208301846157a2565b6000602082840312156157f357600080fd5b5035919050565b6001600160a01b038116811461132157600080fd5b60006020828403121561582157600080fd5b8135612640816157fa565b6000806040838503121561583f57600080fd5b823561584a816157fa565b946020939093013593505050565b6000806040838503121561586b57600080fd5b50508035926020909101359150565b60008060006060848603121561588f57600080fd5b833561589a816157fa565b925060208401356158aa816157fa565b929592945050506040919091013590565b600080604083850312156158ce57600080fd5b82356158d9816157fa565b915060208301356158e9816157fa565b809150509250929050565b801515811461132157600080fd5b6000806040838503121561591557600080fd5b8235615920816157fa565b915060208301356158e9816158f4565b6000806040838503121561594357600080fd5b8235915060208301356158e9816158f4565b60a081016121a182848051600f0b82526020810151600f0b60208301526040810151604083015260608101516060830152608081015160808301525050565b6000806000606084860312156159a957600080fd5b83356159b4816157fa565b95602085013595506040909401359392505050565b634e487b7160e01b600052602160045260246000fd5b6020810160038310615a0157634e487b7160e01b600052602160045260246000fd5b91905290565b600080600080600080600060e0888a031215615a2257600080fd5b87359650602088013595506040880135945060608801359350608088013560ff81168114615a4f57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715615aab57615aab615a6c565b604052919050565b600067ffffffffffffffff821115615acd57615acd615a6c565b50601f01601f191660200190565b60008060008060808587031215615af157600080fd5b8435615afc816157fa565b93506020850135615b0c816157fa565b925060408501359150606085013567ffffffffffffffff811115615b2f57600080fd5b8501601f81018713615b4057600080fd5b8035615b53615b4e82615ab3565b615a82565b818152886020838501011115615b6857600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600080600060608486031215615b9f57600080fd5b83359250602084013591506040840135615bb8816157fa565b809150509250925092565b60008060408385031215615bd657600080fd5b82359150602083013565ffffffffffff811681146158e957600080fd5b634e487b7160e01b600052601160045260246000fd5b818103818111156121a1576121a1615bf3565b808201808211156121a1576121a1615bf3565b634e487b7160e01b600052601260045260246000fd5b600082615c5457615c54615c2f565b500490565b80820281158282048414176121a1576121a1615bf3565b600060208284031215615c8257600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000604082018483526020604081850152818551808452606086019150828701935060005b81811015615ce95784516001600160a01b031683529383019391830191600101615cc4565b5090979650505050505050565b600f82810b9082900b0360016001607f1b0319811260016001607f1b03821317156121a1576121a1615bf3565b600060208284031215615d3557600080fd5b8151612640816157fa565b600060018201615d5257615d52615bf3565b5060010190565b60008060408385031215615d6c57600080fd5b8251615d77816157fa565b60208401519092506158e9816157fa565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615dbb908301846157a2565b9695505050505050565b600060208284031215615dd757600080fd5b81516126408161574b565b600060208284031215615df457600080fd5b815167ffffffffffffffff811115615e0b57600080fd5b8201601f81018413615e1c57600080fd5b8051615e2a615b4e82615ab3565b818152856020838501011115615e3f57600080fd5b6150fb82602083016020860161577e565b600f81810b9083900b0160016001607f1b03811360016001607f1b0319821217156121a1576121a1615bf3565b600081600f0b83600f0b80615e9457615e94615c2f565b60016001607f1b0319821460001982141615615eb257615eb2615bf3565b90059392505050565b600082600f0b82600f0b0280600f0b9150808214614feb57614feb615bf3565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615f0357600080fd5b8151612640816158f4565b60008251615f2081846020870161577e565b919091019291505056fef8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7a2646970667358221220b3b1b41a766901a8b8f6fa1e5e3839da187c0861202c702ea1956c8cfd7971e864736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000015e62707fca7352fbe35f51a8d6b0f8066a05dcc000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd986310000000000000000000000005c3f18f06cc09ca1910767a34a20f771039e37c0
-----Decoded View---------------
Arg [0] : _forwarder (address): 0x15e62707FCA7352fbE35F51a8D6b0F8066A05DCc
Arg [1] : _token (address): 0x940181a94A35A4569E4529A3CDfB74e38FD98631
Arg [2] : _factoryRegistry (address): 0x5C3F18F06CC09CA1910767A34a20F771039E37C0
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000015e62707fca7352fbe35f51a8d6b0f8066a05dcc
Arg [1] : 000000000000000000000000940181a94a35a4569e4529a3cdfb74e38fd98631
Arg [2] : 0000000000000000000000005c3f18f06cc09ca1910767a34a20f771039e37c0
Library Used
BalanceLogicLibrary : 0x8e634181dafb102213fad46b71ba1a4b6153b648DelegationLogicLibrary : 0xd6e6d57d0627aae127743c79bc795f836431d59f
Deployed Bytecode Sourcemap
97909:53420:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115290:136;;;;;;:::i;:::-;-1:-1:-1;;;;;;115385:33:0;115361:4;115385:33;;;:19;:33;;;;;;;;;115290:136;;;;565:14:1;;558:22;540:41;;528:2;513:18;115290:136:0;;;;;;;;120373:21;;;;;;;;;738:25:1;;;726:2;711:18;120373:21:0;592:177:1;107727:37:0;;;;;;;;;;;;;;;-1:-1:-1;;;107727:37:0;;;;;;;;;;;;:::i;109990:120::-;;;;;;:::i;:::-;110052:7;110079:23;;;:13;:23;;;;;;-1:-1:-1;;;;;110079:23:0;;109990:120;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;109990:120:0;1715:203:1;107908:181:0;;;;;;:::i;:::-;;:::i;:::-;;111166:753;;;;;;:::i;:::-;;:::i;131522:274::-;;;;;;:::i;:::-;;:::i;99691:22::-;;;;;;143932:107;;;:::i;101043:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;145183:131;;145234:80;145183:131;;113322:145;;;;;;:::i;:::-;;:::i;101414:48::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;101414:48:0;;;144519:204;;;;;;:::i;:::-;;:::i;135683:1157::-;;;;;;:::i;:::-;;:::i;108097:192::-;;;;;;:::i;:::-;;:::i;98807:29::-;;;;;-1:-1:-1;;;;;98807:29:0;;;107864:35;;107897:2;107864:35;;;;;4092:4:1;4080:17;;;4062:36;;4050:2;4035:18;107864:35:0;3920:184:1;140829:158:0;;;;;;:::i;:::-;;:::i;141973:908::-;;;;;;:::i;:::-;;:::i;104383:2260::-;;;;;;:::i;:::-;;:::i;107104:425::-;;;;;;:::i;:::-;;:::i;101696:890::-;;;;;;:::i;:::-;;:::i;98397:40::-;;;;;120714;;;;;;:::i;:::-;;;;;;;;;;;;;;;;113510:142;;;;;;:::i;:::-;;:::i;110349:156::-;;;;;;:::i;:::-;;:::i;121040:158::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;98619:20::-;;;;;-1:-1:-1;;;;;98619:20:0;;;138830:1659;;;;;;:::i;:::-;;:::i;:::-;;;;5718:25:1;;;5774:2;5759:18;;5752:34;;;;5691:18;138830:1659:0;5544:248:1;151224:102:0;151295:23;;;;;;;;;;;;-1:-1:-1;;;151295:23:0;;;;151224:102;;120796:35;;;;;;146398:233;;;;;;:::i;:::-;;:::i;145866:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6359:14:1;6347:27;;;6329:46;;6317:2;6302:18;145866:48:0;6185:196:1;101131:62:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;107817:40;;;;;;;;;;;;;;;-1:-1:-1;;;107817:40:0;;;;;98742:23;;;;;-1:-1:-1;;;;;98742:23:0;;;78156:138;;;;;;:::i;:::-;78269:17;-1:-1:-1;;;;;78256:30:0;;;;;;;78156:138;144766:154;;;;;;:::i;:::-;;:::i;109152:111::-;;;;;;:::i;:::-;;:::i;109306:120::-;;;;;;:::i;:::-;-1:-1:-1;;;;;109391:27:0;109364:7;109391:27;;;:19;:27;;;;;;;109306:120;100951:48;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;145958:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;148864:1990;;;;;;:::i;:::-;;:::i;98681:19::-;;;;;-1:-1:-1;;;;;98681:19:0;;;121241:124;;;;;;:::i;:::-;;:::i;115661:75::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;146674:127;;;;;;:::i;:::-;;:::i;144438:37::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;120311:20;;;;;;151084:97;151157:15;151084:97;;106686:375;;;;;;:::i;:::-;;:::i;134710:930::-;;;;;;:::i;:::-;;:::i;111962:347::-;;;;;;:::i;:::-;;:::i;101322:50::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;101322:50:0;;;101235:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;146043:117;;;;;;:::i;:::-;146104:7;146131:21;;;:10;:21;;;;;;;146043:117;134411:256;;;;;;:::i;:::-;;:::i;120875:122::-;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;120972:17:0;;;:7;:17;;;;;;120965:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120875:122;;;;;8050:13:1;;8046:2;8035:29;8017:48;;8121:4;8109:17;;;8103:24;8081:20;;;8074:54;8186:17;;;8180:24;8173:32;8166:40;8144:20;;;8137:70;8005:2;7990:18;120875:122:0;7811:402:1;132739:173:0;;;;;;:::i;:::-;;:::i;114089:972::-;;;;;;:::i;:::-;;:::i;98551:26::-;;;;;-1:-1:-1;;;;;98551:26:0;;;131346:133;;;:::i;108332:214::-;;;;;;:::i;:::-;;:::i;136883:1904::-;;;;;;:::i;:::-;;:::i;148611:210::-;;;;;;:::i;:::-;;:::i;143748:141::-;;;;;;:::i;:::-;;:::i;102629:1711::-;;;;;;:::i;:::-;;:::i;120535:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;141030:900;;;;;;:::i;:::-;;:::i;145408:144::-;;145463:89;145408:144;;143501:204;;;;;;:::i;:::-;;:::i;110153:153::-;;;;;;:::i;:::-;-1:-1:-1;;;;;110262:24:0;;;110237:4;110262:24;;;:16;:24;;;;;;;;110261:37;;;;;;;;;;;;;;;110153:153;132955:180;;;;;;:::i;:::-;;:::i;146203:152::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;10802:13:1;;10784:32;;10876:4;10864:17;;;10858:24;-1:-1:-1;;;;;10854:50:1;10832:20;;;10825:80;10961:4;10949:17;;;10943:24;10921:20;;;10914:54;11024:4;11012:17;;;11006:24;10984:20;;;10977:54;;;;10771:3;10756:19;;10583:454;120626:46:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11215:2:1;11204:22;;;;11186:41;;11174:2;11159:18;120626:46:0;11042:191:1;98321:34:0;;;;;98479:30;;;;;107908:181;107980:4;;-1:-1:-1;;;;;107980:4:0;107964:12;:10;:12::i;:::-;-1:-1:-1;;;;;107964:20:0;;107960:42;;107993:9;;-1:-1:-1;;;107993:9:0;;;;;;;;;;;107960:42;-1:-1:-1;;;;;108017:19:0;;108013:45;;108045:13;;-1:-1:-1;;;108045:13:0;;;;;;;;;;;108013:45;108069:4;:12;;-1:-1:-1;;;;;;108069:12:0;-1:-1:-1;;;;;108069:12:0;;;;;;;;;;107908:181::o;111166:753::-;111240:14;111257:12;:10;:12::i;:::-;111240:29;;111280:13;111296:18;111305:8;111296;:18::i;:::-;111280:34;-1:-1:-1;;;;;;111381:19:0;;111377:45;;111409:13;;-1:-1:-1;;;111409:13:0;;;;;;;;;;;111377:45;111501:9;-1:-1:-1;;;;;111492:18:0;:5;-1:-1:-1;;;;;111492:18:0;;111488:44;;111519:13;;-1:-1:-1;;;111519:13:0;;;;;;;;;;;111488:44;111574:18;111618:6;-1:-1:-1;;;;;111596:28:0;:18;111605:8;111596;:18::i;:::-;-1:-1:-1;;;;;111667:23:0;;;111636:27;111667:23;;;:16;:23;;;;;;;;111666:33;;;;;;;;;;;111596:28;;;;;;;-1:-1:-1;111666:33:0;;111714:14;;111596:28;111714:41;;;111733:22;111732:23;111714:41;111710:74;;;111764:20;;-1:-1:-1;;;111764:20:0;;;;;;;;;;;111710:74;111824:23;;;;:13;:23;;;;;;:35;;-1:-1:-1;;;;;;111824:35:0;-1:-1:-1;;;;;111824:35:0;;;;;;;;;111875:36;;111824:23;;111875:36;;;;;;;111229:690;;;;111166:753;;:::o;131522:274::-;81277:21;:19;:21::i;:::-;131637:18:::1;131613:20;::::0;;;:10:::1;:20;::::0;;;;;::::1;;:42;::::0;::::1;;;;;;:::i;:::-;;:73;;;;-1:-1:-1::0;131675:11:0::1;::::0;-1:-1:-1;;;;;131675:11:0::1;131659:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;131659:27:0::1;;;131613:73;131609:102;;;131695:16;;-1:-1:-1::0;;;131695:16:0::1;;;;;;;;;;;131609:102;131722:66;131741:8;131751:6;131759:28;131722:18;:66::i;:::-;81321:20:::0;80715:1;81841:7;:22;81658:213;81321:20;131522:274;;:::o;143932:107::-;143978:7;144005:26;144015:15;144005:9;:26::i;:::-;143998:33;;143932:107;:::o;113322:145::-;113410:49;113424:5;113431:3;113436:8;113446:12;:10;:12::i;:::-;113410:13;:49::i;:::-;113322:145;;;:::o;144519:204::-;144629:5;;-1:-1:-1;;;;;144629:5:0;144613:12;:10;:12::i;:::-;-1:-1:-1;;;;;144613:21:0;;144609:44;;144643:10;;-1:-1:-1;;;144643:10:0;;;;;;;;;;;144609:44;144664:5;:14;;-1:-1:-1;;;;;144664:14:0;;;-1:-1:-1;;;;;;144664:14:0;;;;;;;;144689:26;;;;;;;;;;;144519:204::o;135683:1157::-;81277:21;:19;:21::i;:::-;135752:14:::1;135769:12;:10;:12::i;:::-;135752:29;;135797:36;135816:6;135824:8;135797:18;:36::i;:::-;135792:70;;135842:20;;-1:-1:-1::0;;;135842:20:0::1;;;;;;;;;;;135792:70;135877:15;::::0;;;:5:::1;:15;::::0;;;;;::::1;;135873:42;;;135901:14;;-1:-1:-1::0;;;135901:14:0::1;;;;;;;;;;;135873:42;135954:17;135930:20:::0;;;:10:::1;:20;::::0;;;;;::::1;;:41;::::0;::::1;;;;;;:::i;:::-;;135926:68;;135980:14;;-1:-1:-1::0;;;135980:14:0::1;;;;;;;;;;;135926:68;136007:30;136040:17:::0;;;:7:::1;:17;::::0;;;;;;;;136007:50;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;::::0;::::1;::::0;;;;;;;;136068:49:::1;;136102:15;;-1:-1:-1::0;;;136102:15:0::1;;;;;;;;;;;136068:49;136150:9;:13;;;136132:15;:31;136128:60;;;136172:16;;-1:-1:-1::0;;;136172:16:0::1;;;;;;;;;;;136128:60;136199:13;136215:28;:9;:16;;;:26;;;:28::i;:::-;136199:44;;136281:15;136287:8;136281:5;:15::i;:::-;136327:26;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;136327:26:0;;;::::1;::::0;;::::1;::::0;;;;;;;;;136307:17;;;:7:::1;:17:::0;;;;;;;:46;;;;-1:-1:-1;;;;;;136307:46:0::1;-1:-1:-1::0;;;;;136307:46:0;;;::::1;::::0;;;;-1:-1:-1;136307:46:0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;136307:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;136387:6:::1;::::0;136413:20:::1;136428:5:::0;136387:6;136413:20:::1;:::i;:::-;136404:6;:29:::0;136625:26:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;136625:26:0;;;::::1;::::0;::::1;::::0;;;;;;;;;;136592:60:::1;::::0;136604:8;;136614:9;;136592:11:::1;:60::i;:::-;136665:41;-1:-1:-1::0;;;;;136672:5:0::1;136665:26;136692:6:::0;136700:5;136665:26:::1;:41::i;:::-;136724:50;::::0;;5718:25:1;;;136758:15:0::1;5774:2:1::0;5759:18;;5752:34;136741:8:0;;-1:-1:-1;;;;;136724:50:0;::::1;::::0;::::1;::::0;5691:18:1;136724:50:0::1;;;;;;;136790:42;136797:12:::0;136811:20:::1;136826:5:::0;136797:12;136811:20:::1;:::i;:::-;136790:42;::::0;;5718:25:1;;;5774:2;5759:18;;5752:34;;;;5691:18;136790:42:0::1;;;;;;;135741:1099;;;;81321:20:::0;80715:1;81841:7;:22;81658:213;81321:20;135683:1157;:::o;108097:192::-;108174:4;;-1:-1:-1;;;;;108174:4:0;108158:12;:10;:12::i;:::-;-1:-1:-1;;;;;108158:20:0;;108154:42;;108187:9;;-1:-1:-1;;;108187:9:0;;;;;;;;;;;108154:42;108207:8;:17;;-1:-1:-1;;;;;;108207:17:0;-1:-1:-1;;;;;108207:17:0;;;;;108240:41;;;-1:-1:-1;5718:25:1;;-1:-1:-1;;5774:2:1;5759:18;;5752:34;108240:41:0;;5691:18:1;108240:41:0;;;;;;;108097:192;:::o;140829:158::-;140920:4;;-1:-1:-1;;;;;140920:4:0;140904:12;:10;:12::i;:::-;-1:-1:-1;;;;;140904:20:0;;140900:42;;140933:9;;-1:-1:-1;;;140933:9:0;;;;;;;;;;;140900:42;-1:-1:-1;;;;;140953:18:0;;;;;;;;:8;:18;;;;;:26;;-1:-1:-1;;140953:26:0;;;;;;;;;;140829:158::o;141973:908::-;142036:14;142053:12;:10;:12::i;:::-;142036:29;;142081:36;142100:6;142108:8;142081:18;:36::i;:::-;142076:70;;142126:20;;-1:-1:-1;;;142126:20:0;;;;;;;;;;;142076:70;142185:17;142161:20;;;:10;:20;;;;;;;;:41;;;;;;;;:::i;:::-;;142157:68;;142211:14;;-1:-1:-1;;;142211:14:0;;;;;;;;;;;142157:68;142240:15;;;;:5;:15;;;;;;;;142236:42;;;142264:14;;-1:-1:-1;;;142264:14:0;;;;;;;;;;;142236:42;142289:31;142323:17;;;:7;:17;;;;;;;;;142289:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142351:54;;142387:18;;-1:-1:-1;;;142387:18:0;;;;;;;;;;;142351:54;142418:15;142436:29;:10;:17;;;:27;;;:29::i;:::-;142418:47;;142500:7;142476:20;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;120091:7:0;;-1:-1:-1;120091:7:0;142537:25;120141:15;142537;:25;:::i;:::-;142536:34;;;;:::i;:::-;142535:43;;;;:::i;:::-;142518:14;;;:60;142614:5;142589:22;;;:30;;;142630:22;;142640:8;;142630:9;:22::i;:::-;142685:17;;;;:7;:17;;;;;;;;;142663:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;142675:8;;142704:10;142663:11;:52::i;:::-;142726:17;;;;:7;:17;;;;;;;;;:30;;;;-1:-1:-1;;;;;;142726:30:0;-1:-1:-1;;;;;142726:30:0;;;;;;;;;;-1:-1:-1;142726:30:0;;;;;;;;;;;;;-1:-1:-1;;142726:30:0;;;;;;;;;;142774:59;;5718:25:1;;;142817:15:0;5759:18:1;;;5752:34;;;;142726:17:0;;-1:-1:-1;;;;;142774:59:0;;;;;5691:18:1;142774:59:0;;;;;;;;142849:24;;738:25:1;;;-1:-1:-1;;;;;;;;;;;142849:24:0;726:2:1;711:18;142849:24:0;;;;;;;142025:856;;;141973:908;:::o;104383:2260::-;81277:21;:19;:21::i;:::-;104459:17:::1;104479:21:::0;;;:11:::1;:21;::::0;;;;;104531:5:::1;::::0;-1:-1:-1;;;;;104531:5:0::1;104515:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;104515:21:0::1;;104511:44;;104545:10;;-1:-1:-1::0;;;104545:10:0::1;;;;;;;;;;;104511:44;104570:9;104583:1;104570:14:::0;104566:48:::1;;104593:21;;-1:-1:-1::0;;;104593:21:0::1;;;;;;;;;;;104566:48;104653:17;104629:20;::::0;;;:10:::1;:20;::::0;;;;;::::1;;:41;::::0;::::1;;;;;;:::i;:::-;;104625:68;;104679:14;;-1:-1:-1::0;;;104679:14:0::1;;;;;;;;;;;104625:68;104741:28;104772:26:::0;;;:15:::1;:26;::::0;;;;;;;;104838:13:::1;:24:::0;;;;;;104891:17;;;:7:::1;:17:::0;;;;;:28;;;;;;;;;;104948:62;;-1:-1:-1;;;104948:62:0;;-1:-1:-1;;;;;104993:5:0::1;12516:32:1::0;;104948:62:0::1;::::0;::::1;12498:51:1::0;12565:18;;;12558:34;;;104772:26:0;;::::1;::::0;104838:24;;;::::1;::::0;104772:26;;104948:36:::1;::::0;12471:18:1;;104948:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;104930:80:::0;-1:-1:-1;105021:14:0::1;105038:17;104930:80:::0;105038:7;:17:::1;:::i;:::-;105021:34:::0;-1:-1:-1;105066:19:0::1;120091:7;::::0;105090:25:::1;120141:15;105090;:25;:::i;:::-;105089:34;;;;:::i;:::-;105088:43;;;;:::i;:::-;105234:16;::::0;;105248:1:::1;105234:16:::0;;;;;::::1;::::0;;;105066:65;;-1:-1:-1;105207:24:0::1;::::0;105234:16;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;105234:16:0::1;105207:43;;105282:5;105261:7;105269:1;105261:10;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;105261:27:0;;::::1;:10;::::0;;::::1;::::0;;;;;:27;105299:58:::1;::::0;-1:-1:-1;;;105299:58:0;;:39;;::::1;::::0;::::1;::::0;:58:::1;::::0;105339:8;;105349:7;;105299:58:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;105398:36;105437:52;;;;;;;;105451:17;:6;:15;:17::i;:::-;105437:52;::::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;105437:52:0;;;;;;;105522:17;;;:7:::1;:17:::0;;;;;105500:57;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;105437:52;105500:57;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;;::::0;;;;;;;105398:91;;-1:-1:-1;105500:57:0::1;::::0;105512:8;;105398:91;105500:11:::1;:57::i;:::-;105568:17;::::0;;;:7:::1;:17;::::0;;;;;;;:35;;;;-1:-1:-1;;;;;;105568:35:0::1;-1:-1:-1::0;;;;;105568:35:0;;;::::1;::::0;;;;::::1;::::0;-1:-1:-1;105568:35:0;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;105568:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;105687:18;;;;;;;105647:58;;::::1;::::0;::::1;::::0;;;;105568:35:::1;105647:58;::::0;;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;105568:35:::1;105647:58;;;::::0;;;;;105847:17:::1;:6:::0;:15:::1;:17::i;:::-;:43;;;:89;;105913:23:::0;;105847:89:::1;;;105893:17;:6;:15;:17::i;:::-;105805:142:::0;;:16;;:142:::1;::::0;;;::::1;:::i;:::-;;;::::0;;-1:-1:-1;105992:20:0::1;::::0;105983:29;::::1;:61;;106024:20;;105983:61;;;106015:6;105983:61;105958:20;;:87;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;106077:21:0::1;::::0;;;:10:::1;:21;::::0;;;;;106056:58:::1;::::0;106100:6;;106056:20:::1;:58::i;:::-;106148:18;::::0;;;:7:::1;:18;::::0;;;;;;;;106125:60;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;;::::0;;;;;;;::::1;::::0;106137:9;;106168:16;106125:11:::1;:60::i;:::-;106196:18;::::0;;;:7:::1;:18;::::0;;;;;;;;:37;;;;-1:-1:-1;;;;;;106196:37:0::1;-1:-1:-1::0;;;;;106196:37:0;;;::::1;::::0;;;;::::1;::::0;-1:-1:-1;106196:37:0;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;106196:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;106246:58;-1:-1:-1;;;106246:58:0;;::::1;::::0;::::1;5718:25:1::0;;;5759:18;;;5752:34;;;-1:-1:-1;;;;;106246:39:0;::::1;::::0;::::1;::::0;5691:18:1;;106246:58:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;106315:56:0::1;::::0;-1:-1:-1;;;106315:56:0;;::::1;::::0;::::1;5718:25:1::0;;;5759:18;;;5752:34;;;-1:-1:-1;;;;;106315:37:0;::::1;::::0;-1:-1:-1;106315:37:0::1;::::0;-1:-1:-1;5691:18:1;;106315:56:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;106391:21:0::1;::::0;;;:11:::1;:21;::::0;;;;;;;106384:28;;;106430:7:::1;:17:::0;;;;;:28;;;;;;;;106423:35;;;106476:20;;;:10:::1;:20:::0;;;;;106469:27;;-1:-1:-1;;106469:27:0::1;::::0;;-1:-1:-1;106448:9:0;106403:8;106530:18:::1;106403:8:::0;106530::::1;:18::i;:::-;-1:-1:-1::0;;;;;106514:81:0::1;;106571:6;106579:15;106514:81;;;;;;5718:25:1::0;;;5774:2;5759:18;;5752:34;5706:2;5691:18;;5544:248;106514:81:0::1;;;;;;;;106611:24;::::0;738:25:1;;;-1:-1:-1;;;;;;;;;;;106611:24:0;726:2:1;711:18;106611:24:0::1;;;;;;;104448:2195;;;;;;;;;;81321:20:::0;80715:1;81841:7;:22;81658:213;107104:425;107208:5;;;;;;;;;-1:-1:-1;;;;;107208:5:0;-1:-1:-1;;;;;107201:30:0;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;107185:48:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;107185:48:0;;;:92;;;;;107260:5;;;;;;;;;-1:-1:-1;;;;;107260:5:0;-1:-1:-1;;;;;107253:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;107237:40:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;107237:40:0;;;107185:92;107181:149;;;107299:31;;-1:-1:-1;;;107299:31:0;;;;;;;;;;;107181:149;107370:18;107345:21;;;;:10;:21;;;;;;;;:43;;;;;;;;:::i;:::-;;107341:71;;107397:15;;-1:-1:-1;;;107397:15:0;;;;;;;;;;;107341:71;107427:22;;;;:11;:22;;;;;;:32;;;:22;;;;:32;;;107423:56;;107468:11;;-1:-1:-1;;;107468:11:0;;;;;;;;;;;107423:56;107490:22;;;;:11;:22;;;;;;:31;;-1:-1:-1;;107490:31:0;;;;;;;;;;107104:425::o;101696:890::-;101770:17;81277:21;:19;:21::i;:::-;101800:14:::1;101817:12;:10;:12::i;:::-;101854:14;::::0;101800:29;;-1:-1:-1;;;;;;101844:24:0;;::::1;101854:14:::0;::::1;101844:24;::::0;::::1;::::0;:62:::1;;;101889:5;;;;;;;;;-1:-1:-1::0;;;;;101889:5:0::1;-1:-1:-1::0;;;;;101882:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;101872:34:0::1;:6;-1:-1:-1::0;;;;;101872:34:0::1;;;101844:62;101840:97;;;101915:22;;-1:-1:-1::0;;;101915:22:0::1;;;;;;;;;;;101840:97;101964:7;;101962:9;;;;;:::i;:::-;::::0;;;;-1:-1:-1;101962:9:0;-1:-1:-1;101982:21:0::1;101988:3:::0;101962:9;101982:5:::1;:21::i;:::-;;102014:85;102026:9;102037:1;102040::::0;102043:25:::1;;;;;;;;102057:1;102043:25;;;;;;102060:1;102043:25;;;;102063:4;102043:25;;;;::::0;102070:28:::1;102014:11;:85::i;:::-;102112:21;::::0;;;:10:::1;:21;::::0;;;;;;;:42;;-1:-1:-1;;102112:42:0::1;102136:18;102112:42;::::0;;102265:57;;-1:-1:-1;;;102265:57:0;;;;102112:21;;-1:-1:-1;;;;;102282:15:0::1;102265:55;::::0;::::1;::::0;:57:::1;::::0;;::::1;::::0;102112:21;102265:57;;;;;:55;:57:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;102359:5;::::0;102228:137:::1;::::0;-1:-1:-1;;;102228:137:0;;-1:-1:-1;;;;;102348:9:0::1;14538:15:1::0;;102228:137:0::1;::::0;::::1;14520:34:1::0;102359:5:0;;::::1;14570:18:1::0;;;14563:43;102228:119:0;::::1;::::0;::::1;::::0;14455:18:1;;102228:137:0::1;::::0;::::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;102376:26;::::0;;;:15:::1;:26;::::0;;;;;;;:49;;-1:-1:-1;;;;;102376:49:0;;::::1;-1:-1:-1::0;;;;;;102376:49:0;;::::1;::::0;::::1;::::0;;;102436:13:::1;:24:::0;;;;;;:45;;;;::::1;::::0;::::1;::::0;::::1;::::0;;102499:79;;14520:34:1;;;14570:18;;;14563:43;;;;102376:49:0;;-1:-1:-1;102436:45:0;;-1:-1:-1;102499:79:0;;::::1;::::0;102376:26;;102499:79;;::::1;::::0;::::1;::::0;14455:18:1;102499:79:0::1;;;;;;;101789:797;;;81321:20:::0;80715:1;81841:7;:22;81658:213;81321:20;101696:890;;;:::o;113510:142::-;113602:42;113619:5;113626:3;113631:8;113602:42;;;;;;;;;;;;:16;:42::i;110349:156::-;110435:4;110459:38;110478:8;110488;110459:18;:38::i;:::-;110452:45;;110349:156;;;;;:::o;121040:158::-;121121:16;;:::i;:::-;121157:27;;;;:17;:27;;;;;121185:4;121157:33;;;;;;;:::i;:::-;121150:40;;;;;;;;121157:33;;;;;;;;;121150:40;;;;;;;;-1:-1:-1;;;121150:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121040:158;-1:-1:-1;;;121040:158:0:o;138830:1659::-;138933:17;138952;81277:21;:19;:21::i;:::-;138982:14:::1;138999:12;:10;:12::i;:::-;138982:29;;139022:13;139038:15;139047:5;139038:8;:15::i;:::-;139022:31:::0;-1:-1:-1;;;;;;139068:19:0;::::1;139064:46;;139096:14;;-1:-1:-1::0;;;139096:14:0::1;;;;;;;;;;;139064:46;-1:-1:-1::0;;;;;139126:15:0;::::1;;::::0;;;:8:::1;:15;::::0;;;;;::::1;;139125:16;:41:::0;::::1;;;-1:-1:-1::0;139146:20:0::1;::::0;;:8:::1;:20;::::0;;;::::1;;139145:21;139125:41;139121:71;;;139175:17;;-1:-1:-1::0;;;139175:17:0::1;;;;;;;;;;;139121:71;139228:17;139207::::0;;;:10:::1;:17;::::0;;;;;::::1;;:38;::::0;::::1;;;;;;:::i;:::-;;139203:65;;139254:14;;-1:-1:-1::0;;;139254:14:0::1;;;;;;;;;;;139203:65;139283:12;::::0;;;:5:::1;:12;::::0;;;;;::::1;;139279:39;;;139304:14;;-1:-1:-1::0;;;139304:14:0::1;;;;;;;;;;;139279:39;139334:33;139353:6;139361:5;139334:18;:33::i;:::-;139329:67;;139376:20;;-1:-1:-1::0;;;139376:20:0::1;;;;;;;;;;;139329:67;139407:30;139440:14:::0;;;:7:::1;:14;::::0;;;;;;;;139407:47;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;;;;;139486:15:::1;-1:-1:-1::0;139469:32:0;::::1;::::0;:58:::1;;;139506:9;:21;;;139505:22;139469:58;139465:84;;;139536:13;;-1:-1:-1::0;;;139536:13:0::1;;;;;;;;;;;139465:84;139560:19;139582:18;:7;:16;:18::i;:::-;139560:40;;139615:12;:17;;139631:1;139615:17:::0;139611:42:::1;;139641:12;;-1:-1:-1::0;;;139641:12:0::1;;;;;;;;;;;139611:42;139688:12;139668:32;;:9;:16;;;:32;;;139664:59;;139709:14;;-1:-1:-1::0;;;139709:14:0::1;;;;;;;;;;;139664:59;139776:12;139782:5;139776;:12::i;:::-;139816:26;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;139816:26:0;;;::::1;::::0;;::::1;::::0;;;;;;;;;139799:14;;;:7:::1;:14:::0;;;;;:43;;;;-1:-1:-1;;;;;;139799:43:0::1;-1:-1:-1::0;;;;;139799:43:0;;;::::1;::::0;;;;-1:-1:-1;139799:43:0;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;139799:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;139883:26;;;;::::1;::::0;;;;;;;::::1;::::0;;;;;;;139853:57:::1;::::0;139799:14;;139872:9;;139853:11:::1;:57::i;:::-;139999:12;139979:9;:16;;:32;;;;;;;:::i;:::-;;;::::0;;-1:-1:-1;140034:33:0::1;140050:5:::0;140057:9;140034:15:::1;:33::i;:::-;140122:31;::::0;;::::1;::::0;;140022:45;-1:-1:-1;140176:33:0::1;140192:5:::0;140122:9;140176:15:::1;:33::i;:::-;140336:18;::::0;;;:7:::1;:18;::::0;;;;:25;140164:45;;-1:-1:-1;140164:45:0;;140267:9;;140247:5;;140227:254:::1;::::0;140315:6;;140336:37:::1;::::0;:25:::1;;:35;:37::i;:::-;140388:24;:12;:22;;;:24::i;:::-;140427:13;::::0;;::::1;::::0;140227:254:::1;::::0;;-1:-1:-1;;;;;15284:32:1;;;15266:51;;15333:18;;;15326:34;;;;15376:18;;15369:34;15434:2;15419:18;;15412:34;140455:15:0::1;15477:3:1::0;15462:19;;15455:35;15253:3;15238:19;140227:254:0::1;;;;;;;138971:1518;;;;81321:20:::0;80715:1;81841:7;:22;81658:213;81321:20;138830:1659;;;;;:::o;146398:233::-;146526:97;;-1:-1:-1;;;146526:97:0;;146562:14;146526:97;;;15865:25:1;146578:12:0;15906:18:1;;;15899:34;-1:-1:-1;;;;;15969:32:1;;15949:18;;;15942:60;16018:18;;;16011:34;;;16061:19;;;16054:35;;;146499:7:0;;146526:22;;:35;;15837:19:1;;146526:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;146519:104;;146398:233;;;;;;:::o;144766:154::-;144853:5;;-1:-1:-1;;;;;144853:5:0;144837:12;:10;:12::i;:::-;-1:-1:-1;;;;;144837:21:0;;144833:44;;144867:10;;-1:-1:-1;;;144867:10:0;;;;;;;;;;;144833:44;144888:15;;;;:5;:15;;;;;;:24;;-1:-1:-1;;144888:24:0;;;;;;;;;;144766:154::o;109152:111::-;109210:7;109237:18;109246:8;109237;:18::i;148864:1990::-;149977:66;149964:79;;149960:111;;;150052:19;;-1:-1:-1;;;150052:19:0;;;;;;;;;;;149960:111;150176:4;;;;;;;;;;;;-1:-1:-1;;;150176:4:0;;;;;150200:7;;;;;;;;;;-1:-1:-1;;;150200:7:0;;;;150132:108;;145234:80;150132:108;;;16359:25:1;150160:22:0;16400:18:1;;;16393:34;150184:25:0;16443:18:1;;;16436:34;150211:13:0;16486:18:1;;;16479:34;150234:4:0;16529:19:1;;;;16522:61;;;;150132:108:0;;;;;;;;;;16331:19:1;;;150132:108:0;;150108:143;;;;;;145463:89;150293:68;;;16853:25:1;16894:18;;;16887:34;;;16937:18;;;16930:34;;;16980:18;;;16973:34;;;17023:19;;;;17016:35;;;150293:68:0;;;;;;;;;;16825:19:1;;;150293:68:0;;;150283:79;;;;;;;;;;-1:-1:-1;;;150400:57:0;;;17320:27:1;17363:11;;;17356:27;;;17399:12;;;17392:28;;;150108:143:0;;-1:-1:-1;;17436:12:1;;150400:57:0;;;-1:-1:-1;;150400:57:0;;;;;;;;;150390:68;;150400:57;150390:68;;;;150469:17;150489:26;;;;;;;;;17686:25:1;;;17759:4;17747:17;;17727:18;;;17720:45;;;;17781:18;;;17774:34;;;17824:18;;;17817:34;;;150390:68:0;;-1:-1:-1;150469:17:0;150489:26;;17658:19:1;;150489:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;150469:46;;150531:40;150550:9;150561;150531:18;:40::i;:::-;150526:74;;150580:20;;-1:-1:-1;;;150580:20:0;;;;;;;;;;;150526:74;-1:-1:-1;;;;;150615:23:0;;150611:54;;150647:18;;-1:-1:-1;;;150647:18:0;;;;;;;;;;;150611:54;-1:-1:-1;;;;;150689:17:0;;;;;;:6;:17;;;;;:19;;;;;;:::i;:::-;;;;;150680:5;:28;150676:55;;150717:14;;-1:-1:-1;;;150717:14:0;;;;;;;;;;;150676:55;150764:6;150746:15;:24;150742:55;;;150779:18;;-1:-1:-1;;;150779:18:0;;;;;;;;;;;150742:55;150815:31;150825:9;150836;150815;:31::i;:::-;150808:38;;;;148864:1990;;;;;;;;:::o;121241:124::-;121300:18;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121300:18:0;-1:-1:-1;121338:19:0;;;;:13;:19;;;;;;;;;121331:26;;;;;;;;;;;;;;;-1:-1:-1;;;121331:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121241:124::o;146674:127::-;146745:7;146772:21;146782:10;146772:9;:21::i;106686:375::-;106785:5;;;;;;;;;-1:-1:-1;;;;;106785:5:0;-1:-1:-1;;;;;106778:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;106762:40:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;106762:40:0;;106758:66;;106811:13;;-1:-1:-1;;;106811:13:0;;;;;;;;;;;106758:66;106858:14;;-1:-1:-1;;;;;106858:14:0;;;106839:33;;;;106835:59;;106881:13;;-1:-1:-1;;;106881:13:0;;;;;;;;;;;106835:59;-1:-1:-1;;;;;106909:29:0;;106905:55;;106947:13;;-1:-1:-1;;;106947:13:0;;;;;;;;;;;106905:55;106971:14;:32;;-1:-1:-1;;;;;;106971:32:0;-1:-1:-1;;;;;106971:32:0;;;;;;;;107019:34;;;;-1:-1:-1;;107019:34:0;106686:375;:::o;134710:930::-;81277:21;:19;:21::i;:::-;134817:42:::1;134836:12;:10;:12::i;:::-;134850:8;134817:18;:42::i;:::-;134812:76;;134868:20;;-1:-1:-1::0;;;134868:20:0::1;;;;;;;;;;;134812:76;134927:17;134903:20:::0;;;:10:::1;:20;::::0;;;;;::::1;;:41;::::0;::::1;;;;;;:::i;:::-;;134899:68;;134953:14;;-1:-1:-1::0;;;134953:14:0::1;;;;;;;;;;;134899:68;134980:30;135013:17:::0;;;:7:::1;:17;::::0;;;;;;;;134980:50;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;::::0;::::1;::::0;;;;;;;;135041:49:::1;;135075:15;;-1:-1:-1::0;;;135075:15:0::1;;;;;;;;;;;135041:49;135101:18;120091:7;::::0;135124:31:::1;135142:13:::0;135124:15:::1;:31;:::i;:::-;135123:40;;;;:::i;:::-;135122:49;;;;:::i;:::-;135101:70;;135242:15;135225:9;:13;;;:32;135221:58;;135266:13;;-1:-1:-1::0;;;135266:13:0::1;;;;;;;;;;;135221:58;135314:1;135294:9;:16;;;:21;;;135290:47;;135324:13;;-1:-1:-1::0;;;135324:13:0::1;;;;;;;;;;;135290:47;135366:9;:13;;;135352:10;:27;135348:65;;135388:25;;-1:-1:-1::0;;;135388:25:0::1;;;;;;;;;;;135348:65;135441:25;120141:15;135441;:25;:::i;:::-;135428:10;:38;135424:72;;;135475:21;;-1:-1:-1::0;;;135475:21:0::1;;;;;;;;;;;135424:72;135509:81;135521:8;135531:1;135534:10;135546:9;135557:32;135509:11;:81::i;:::-;135608:24;::::0;738:25:1;;;-1:-1:-1;;;;;;;;;;;135608:24:0;726:2:1;711:18;135608:24:0::1;;;;;;;134801:839;;81321:20:::0;80715:1;81841:7;:22;81658:213;111962:347;112044:14;112061:12;:10;:12::i;:::-;112044:29;;112155:6;-1:-1:-1;;;;;112142:19:0;:9;-1:-1:-1;;;;;112142:19:0;;112138:45;;112170:13;;-1:-1:-1;;;112170:13:0;;;;;;;;;;;112138:45;-1:-1:-1;;;;;112194:24:0;;;;;;;:16;:24;;;;;;;;:35;;;;;;;;;;;;;:47;;-1:-1:-1;;112194:47:0;;;;;;;;;;112257:44;;540:41:1;;;112257:44:0;;513:18:1;112257:44:0;;;;;;;112033:276;111962:347;;:::o;134411:256::-;81277:21;:19;:21::i;:::-;134507:42:::1;134526:12;:10;:12::i;134507:42::-;134502:76;;134558:20;;-1:-1:-1::0;;;134558:20:0::1;;;;;;;;;;;134502:76;134589:70;134608:8;134618:6;134626:32;134589:18;:70::i;132739:173::-:0;132829:7;81277:21;:19;:21::i;:::-;132856:48:::1;132868:6;132876:13;132891:12;:10;:12::i;:::-;132856:11;:48::i;:::-;132849:55;;81321:20:::0;80715:1;81841:7;:22;81658:213;114089:972;114199:14;114216:12;:10;:12::i;:::-;114199:29;;114239:43;114253:5;114260:3;114265:8;114275:6;114239:13;:43::i;:::-;113982:20;;114030:8;114295:759;;114441:69;;-1:-1:-1;;;114441:69:0;;-1:-1:-1;;;;;114441:37:0;;;;;:69;;114479:6;;114487:5;;114494:8;;114504:5;;114441:69;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;114441:69:0;;;;;;;;-1:-1:-1;;114441:69:0;;;;;;;;;;;;:::i;:::-;;;114437:606;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;114767:6;:13;114784:1;114767:18;114763:265;;114817:46;;-1:-1:-1;;;114817:46:0;;;;;;;;;;;114763:265;114978:6;114972:13;114963:6;114959:2;114955:15;114948:38;114437:606;-1:-1:-1;;;;;;114560:58:0;;-1:-1:-1;;;114560:58:0;114556:144;;114650:30;;-1:-1:-1;;;114650:30:0;;;;;;;;;;;114556:144;114511:204;114437:606;114188:873;114089:972;;;;:::o;131346:133::-;81277:21;:19;:21::i;:::-;131416:26:::1;::::0;;::::1;::::0;;::::1;::::0;;131413:1:::1;131416:26:::0;;;::::1;::::0;;::::1;::::0;;;;;;;;;131444;;;;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;131401:70:::1;::::0;131413:1;131416:26;131401:11:::1;:70::i;:::-;81321:20:::0;80715:1;81841:7;:22;81658:213;81321:20;131346:133::o;108332:214::-;108391:13;108451:1;108421:18;108430:8;108421;:18::i;:::-;-1:-1:-1;;;;;108421:32:0;;108417:63;;108462:18;;-1:-1:-1;;;108462:18:0;;;;;;;;;;;108417:63;108510:8;;;108498:40;;-1:-1:-1;;;108498:40:0;;;;;738:25:1;;;-1:-1:-1;;;;;108510:8:0;;108498:30;;711:18:1;;108498:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;108498:40:0;;;;;;;;;;;;:::i;136883:1904::-;81277:21;:19;:21::i;:::-;136959:14:::1;136976:12;:10;:12::i;:::-;137003;::::0;;;:5:::1;:12;::::0;;;;;136959:29;;-1:-1:-1;137003:12:0::1;;136999:39;;;137024:14;;-1:-1:-1::0;;;137024:14:0::1;;;;;;;;;;;136999:39;137074:17;137053::::0;;;:10:::1;:17;::::0;;;;;::::1;;:38;::::0;::::1;;;;;;:::i;:::-;;137049:65;;137100:14;;-1:-1:-1::0;;;137100:14:0::1;;;;;;;;;;;137049:65;137148:17;137129:15:::0;;;:10:::1;:15;::::0;;;;;::::1;;:36;::::0;::::1;;;;;;:::i;:::-;;137125:63;;137174:14;;-1:-1:-1::0;;;137174:14:0::1;;;;;;;;;;;137125:63;137212:3;137203:5;:12:::0;137199:34:::1;;137224:9;;-1:-1:-1::0;;;137224:9:0::1;;;;;;;;;;;137199:34;137249:33;137268:6;137276:5;137249:18;:33::i;:::-;137244:67;;137291:20;;-1:-1:-1::0;;;137291:20:0::1;;;;;;;;;;;137244:67;137327:31;137346:6;137354:3;137327:18;:31::i;:::-;137322:65;;137367:20;;-1:-1:-1::0;;;137367:20:0::1;;;;;;;;;;;137322:65;137398:32;137433:12:::0;;;:7:::1;:12;::::0;;;;;;;;137398:47;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;;;;;137479:15:::1;-1:-1:-1::0;137460:34:0;::::1;::::0;:62:::1;;;137499:11;:23;;;137498:24;137460:62;137456:88;;;137531:13;;-1:-1:-1::0;;;137531:13:0::1;;;;;;;;;;;137456:88;137557:34;137594:14:::0;;;:7:::1;:14;::::0;;;;;;;;137557:51;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;::::0;::::1;::::0;;;;;;;;137619:53:::1;;137657:15;;-1:-1:-1::0;;;137657:15:0::1;;;;;;;;;;;137619:53;137683:11;137718;:15;;;137697:13;:17;;;:36;;:74;;137756:11;:15;;;137697:74;;;137736:13;:17;;;137697:74;137683:88;;137784:12;137790:5;137784;:12::i;:::-;137824:26;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;137824:26:0;;;::::1;::::0;;::::1;::::0;;;;;;;;;137807:14;;;:7:::1;:14:::0;;;;;:43;;;;-1:-1:-1;;;;;;137807:43:0::1;-1:-1:-1::0;;;;;137807:43:0;;;::::1;::::0;;;;-1:-1:-1;137807:43:0;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;137807:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;137895:26;;;;::::1;::::0;;;;;;;::::1;::::0;;;;;;;137861:61:::1;::::0;137807:14;;137880:13;;137861:11:::1;:61::i;:::-;-1:-1:-1::0;;;;;;;;;;;;;;;;;;;;;;;;;138020:20:0;;137999:18;;:41:::1;::::0;138020:20;137999:41:::1;:::i;:::-;137978:62;;::::0;;138077:23:::1;::::0;;::::1;::::0;138051:49:::1;::::0;::::1;:23:::0;;::::1;:49:::0;;;;138111:166:::1;;138179:20:::0;;:32:::1;::::0;:30:::1;;;:32::i;:::-;138155:20;;:56;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;138111:166:0::1;::::0;-1:-1:-1;138111:166:0::1;;138244:15;::::0;::::1;:21:::0;;;138111:166:::1;138308:15;::::0;;;:10:::1;:15;::::0;;;;;138325:20;;138287:77:::1;::::0;138308:15;138325:32:::1;::::0;:30:::1;;;:32::i;:::-;138359:4;138287:20;:77::i;:::-;138375:42;138387:3;138392:11;138405;138375;:42::i;:::-;138428:12;::::0;;;:7:::1;:12;::::0;;;;;;;;:26;;;;-1:-1:-1;;;;;;138428:26:0::1;-1:-1:-1::0;;;;;138428:26:0;;;::::1;::::0;;;;::::1;::::0;-1:-1:-1;138428:26:0;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;138428:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;138551:20;;138428:12;;138513:5;;-1:-1:-1;;;;;138472:272:0;::::1;::::0;::::1;::::0;138551:32:::1;::::0;138428:26:::1;138551:30;;:32::i;:::-;138598:18:::0;;:30:::1;::::0;:28:::1;;;:30::i;:::-;138643:18:::0;;:30:::1;::::0;:28:::1;;;:30::i;:::-;138688:15;::::0;;::::1;::::0;138472:272:::1;::::0;;16853:25:1;;;16894:18;;;16887:34;;;;16937:18;;16930:34;16995:2;16980:18;;16973:34;138718:15:0::1;17038:3:1::0;17023:19;;17016:35;16840:3;16825:19;138472:272:0::1;;;;;;;138760:19;::::0;738:25:1;;;-1:-1:-1;;;;;;;;;;;138760:19:0;726:2:1;711:18;138760:19:0::1;;;;;;;;136948:1839;;;;;81321:20:::0;80715:1;81841:7;:22;81658:213;148611:210;148692:43;148711:12;:10;:12::i;148692:43::-;148687:77;;148744:20;;-1:-1:-1;;;148744:20:0;;;;;;;;;;;148687:77;148782:31;148792:9;148803;148782;:31::i;143748:141::-;143825:7;143852:29;143868:8;143878:2;143852:15;:29::i;102629:1711::-;81277:21;:19;:21::i;:::-;102743:5:::1;::::0;-1:-1:-1;;;;;102743:5:0::1;102727:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;102727:21:0::1;;102723:44;;102757:10;;-1:-1:-1::0;;;102757:10:0::1;;;;;;;;;;;102723:44;102807:18;102782:21;::::0;;;:10:::1;:21;::::0;;;;;::::1;;:43;::::0;::::1;;;;;;:::i;:::-;;102778:71;;102834:15;;-1:-1:-1::0;;;102834:15:0::1;;;;;;;;;;;102778:71;102888:17;102864:20:::0;;;:10:::1;:20;::::0;;;;;::::1;;:41;::::0;::::1;;;;;;:::i;:::-;;102860:68;;102914:14;;-1:-1:-1::0;;;102914:14:0::1;;;;;;;;;;;102860:68;102943:42;102959:8;102969:15;102943;:42::i;:::-;102989:1;102943:47:::0;102939:73:::1;;102999:13;;-1:-1:-1::0;;;102999:13:0::1;;;;;;;;;;;102939:73;103053:14;103070:17:::0;;;:7:::1;:17;::::0;;;;:24;;103109:29:::1;::::0;;::::1;::::0;103070:24:::1;::::0;;;::::1;::::0;103109:29:::1;;103105:142;;;103179:19;:7;:17;;;:19::i;:::-;103155:20;;:43;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;103213:22:0::1;::::0;-1:-1:-1;103223:8:0;103233:1:::1;103213:9;:22::i;:::-;103279:17;::::0;;;:7:::1;:17;::::0;;;;;;;103257:68;;::::1;::::0;;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;;103298:26;;;;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;103257:68:::1;::::0;103269:8;;103257:68;:11:::1;:68::i;:::-;103356:26;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;103356:26:0;;;::::1;::::0;;::::1;::::0;;;;;;;;;103336:17;;;:7:::1;:17:::0;;;;;;:46;;;;-1:-1:-1;;;;;;103336:46:0::1;-1:-1:-1::0;;;;;103336:46:0;;;::::1;::::0;;;;-1:-1:-1;103336:46:0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;103336:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;103444:19:::1;103356:26;103444:17:::0;;::::1;;:19::i;:::-;103426:37;;103498:7;103474:20;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;103516:30:0::1;103549:18:::0;;;:7:::1;:18;::::0;;;;;;;;103516:51;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;;;;;103598:7;;103516:51;;103578:27:::1;::::0;103598:7;;103578:27:::1;:::i;:::-;;;::::0;;-1:-1:-1;103637:21:0::1;::::0;;;:10:::1;:21;::::0;;;;;103616:58:::1;::::0;103660:7;103669:4:::1;103616:20;:58::i;:::-;103708:18;::::0;;;:7:::1;:18;::::0;;;;;;;;103685:53;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;::::1;::::0;;;::::1;::::0;;;;::::1;;::::0;::::1;;;;::::0;;;;;;;::::1;::::0;103697:9;;103728;103685:11:::1;:53::i;:::-;103749:18;::::0;;;:7:::1;:18;::::0;;;;;;;:30;;;;-1:-1:-1;;;;;;103749:30:0::1;-1:-1:-1::0;;;;;103749:30:0;;;::::1;::::0;;;;::::1;::::0;-1:-1:-1;103749:30:0;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;103749:30:0;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;103792:17;;;:7:::1;:17:::0;;;;;:28;;;;;;;;:38;;;103841:21;;;:11:::1;:21:::0;;;;;:33;;;103885:10:::1;:20:::0;;;;;:40;;;;::::1;;::::0;;103969:26;;;:15:::1;:26:::0;;;;;;;;104006:57;;-1:-1:-1;;;104006:57:0;;::::1;::::0;::::1;5718:25:1::0;;;5759:18;;;5752:34;;;-1:-1:-1;;;;;103969:26:0;;::::1;::::0;;;104006:38:::1;::::0;5691:18:1;;104006:57:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;104074:26:0::1;104103:24:::0;;;:13:::1;:24;::::0;;;;;;;104138:55;;-1:-1:-1;;;104138:55:0;;::::1;::::0;::::1;5718:25:1::0;;;5759:18;;;5752:34;;;-1:-1:-1;;;;;104103:24:0;;::::1;::::0;-1:-1:-1;104103:24:0;;104138:36:::1;::::0;5691:18:1;;104138:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;104256:9;104246:8;104226:18;104235:8;104226;:18::i;:::-;-1:-1:-1::0;;;;;104211:81:0::1;;104267:7;104276:15;104211:81;;;;;;5718:25:1::0;;;5774:2;5759:18;;5752:34;5706:2;5691:18;;5544:248;104211:81:0::1;;;;;;;;104308:24;::::0;738:25:1;;;-1:-1:-1;;;;;;;;;;;104308:24:0;726:2:1;711:18;104308:24:0::1;592:177:1::0;141030:900:0;141091:14;141108:12;:10;:12::i;:::-;141091:29;;141136:36;141155:6;141163:8;141136:18;:36::i;:::-;141131:70;;141181:20;;-1:-1:-1;;;141181:20:0;;;;;;;;;;;141131:70;141240:17;141216:20;;;:10;:20;;;;;;;;:41;;;;;;;;:::i;:::-;;141212:68;;141266:14;;-1:-1:-1;;;141266:14:0;;;;;;;;;;;141212:68;141291:31;141325:17;;;:7;:17;;;;;;;;;141291:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141353:50;;141388:15;;-1:-1:-1;;;141388:15:0;;;;;;;;;;;141353:50;141436:15;141418:10;:14;;;:33;141414:59;;141460:13;;-1:-1:-1;;;141460:13:0;;;;;;;;;;;141414:59;141509:1;141488:10;:17;;;:22;;;141484:48;;141519:13;;-1:-1:-1;;;141519:13:0;;;;;;;;;;;141484:48;141545:15;141563:29;:10;:17;;;:27;;;:29::i;:::-;141545:47;;141627:7;141603:20;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;;141662:1:0;141645:14;;;;:18;;;141699:4;141674:22;;;;:29;;;141736:17;;;:7;:17;;;;;;141714:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;141726:8;;141645:10;141714:11;:52::i;:::-;141777:17;;;;:7;:17;;;;;;;;;:30;;;;-1:-1:-1;;;;;;141777:30:0;-1:-1:-1;;;;;141777:30:0;;;;;;;;;;-1:-1:-1;141777:30:0;;;;;;;;;;;;;-1:-1:-1;;141777:30:0;;;;;;;;;;141825:57;;5718:25:1;;;141866:15:0;5759:18:1;;;5752:34;;;;141777:17:0;;-1:-1:-1;;;;;141825:57:0;;;;;5691:18:1;141825:57:0;5544:248:1;143501:204:0;143562:7;143586:25;;;:15;:25;;;;;;143615:12;143586:41;;143582:55;;-1:-1:-1;143636:1:0;;143501:204;-1:-1:-1;143501:204:0:o;143582:55::-;143655:42;143671:8;143681:15;143655;:42::i;132955:180::-;133061:7;81277:21;:19;:21::i;:::-;133088:39:::1;133100:6;133108:13;133123:3;133088:11;:39::i;:::-;133081:46;;81321:20:::0;80715:1;81841:7;:22;81658:213;146203:152;146280:17;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;146280:17:0;-1:-1:-1;146317:22:0;;;;:12;:22;;;;;;;:30;;;;;;;;;;;;;;146310:37;;;;;;;;;;;;;;;-1:-1:-1;;;;;146310:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;146203:152::o;78302:458::-;78364:14;78269:17;-1:-1:-1;;;;;78256:30:0;78414:10;78256:30;78391:362;;-1:-1:-1;;;78648:14:0;78644:23;78631:37;78627:2;78623:46;78302:458;:::o;78391:362::-;-1:-1:-1;77640:10:0;;143932:107::o;108996:113::-;109055:7;109082:19;;;:9;:19;;;;;;-1:-1:-1;;;;;109082:19:0;;108996:113::o;81357:293::-;80759:1;81491:7;;:19;81483:63;;;;-1:-1:-1;;;81483:63:0;;20183:2:1;81483:63:0;;;20165:21:1;20222:2;20202:18;;;20195:30;20261:33;20241:18;;;20234:61;20312:18;;81483:63:0;;;;;;;;;80759:1;81624:7;:18;81357:293::o;133143:1225::-;133251:22;133276:20;;;:10;:20;;;;;;;;;133311:11;:32;;;;;;;;:::i;:::-;;133307:68;;133352:23;;-1:-1:-1;;;133352:23:0;;;;;;;;;;;133307:68;133388:30;133421:17;;;:7;:17;;;;;;;;133388:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133455:11;;;133451:36;;133475:12;;-1:-1:-1;;;133475:12:0;;;;;;;;;;;133451:36;133522:1;133502:9;:16;;;:21;;;133498:47;;133532:13;;-1:-1:-1;;;133532:13:0;;;;;;;;;;;133498:47;133577:15;133560:9;:13;;;:32;;:58;;;;;133597:9;:21;;;133596:22;133560:58;133556:84;;;133627:13;;-1:-1:-1;;;133627:13:0;;;;;;;;;;;133556:84;133657:9;:21;;;133653:57;;;133704:6;133680:20;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;133653:57:0;133742:20;;;;:10;:20;;;;;;133721:56;;133764:6;133772:4;133721:20;:56::i;:::-;133788:57;133800:8;133810:6;133818:1;133821:9;133832:12;133788:11;:57::i;:::-;133877:18;133862:11;:33;;;;;;;;:::i;:::-;;133858:461;;133998:28;134029:25;;;:15;:25;;;;;;-1:-1:-1;;;;;134029:25:0;;;;134086:5;;134106:56;;:26;;134029:25;134155:6;134106:26;:56::i;:::-;134177:64;;-1:-1:-1;;;134177:64:0;;-1:-1:-1;;;;;12516:32:1;;;134177:64:0;;;12498:51:1;12565:18;;;12558:34;;;134177:48:0;;;;;12471:18:1;;134177:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;134256:51:0;;-1:-1:-1;;;;;;;;134256:26:0;;134283:20;134305:1;134256:26;:51::i;:::-;133897:422;;133858:461;134336:24;;738:25:1;;;-1:-1:-1;;;;;;;;;;;134336:24:0;726:2:1;711:18;134336:24:0;;;;;;;133240:1128;;133143:1225;;;:::o;143285:173::-;143432:5;;143374:76;;-1:-1:-1;;;143374:76:0;;143403:12;143374:76;;;20654:25:1;143417:13:0;20695:18:1;;;20688:34;20738:18;;;20731:34;;;;20781:18;;;20774:34;;;143347:7:0;;143374:19;;:28;;20626:19:1;;143374:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;112349:930::-;112483:17;112459:20;;;;:10;:20;;;;;;;;:41;;;;;;;;:::i;:::-;;112455:77;;112509:23;;-1:-1:-1;;;112509:23:0;;;;;;;;;;;112455:77;112579:37;112598:7;112607:8;112579:18;:37::i;:::-;112574:71;;112625:20;;-1:-1:-1;;;112625:20:0;;;;;;;;;;;112574:71;112753:5;-1:-1:-1;;;;;112731:27:0;:18;112740:8;112731;:18::i;:::-;-1:-1:-1;;;;;112731:27:0;;112727:50;;112767:10;;-1:-1:-1;;;112767:10:0;;;;;;;;;;;112727:50;112795:23;;;;:13;:23;;;;;112788:30;;-1:-1:-1;;;;;;112788:30:0;;;112893:33;112910:5;112809:8;112893:16;:33::i;:::-;112975:38;112996:8;113006:1;113009:3;112975:20;:38::i;:::-;113044:26;113056:3;113061:8;113044:11;:26::i;:::-;113156:25;;;;:15;:25;;;;;;113184:12;113156:40;;113241:30;113172:8;;-1:-1:-1;;;;;113241:30:0;;;;;;;;;;;112349:930;;;;:::o;110513:424::-;110600:4;110617:13;110633:18;110642:8;110633;:18::i;:::-;110662:19;110749:23;;;:13;:23;;;;;;;;;-1:-1:-1;;;;;110684:17:0;;;110815:23;;;:16;:23;;;;;110684:17;;;110814:35;;;;;;;;;;110617:34;;-1:-1:-1;110684:17:0;;;;110749:23;;110737:35;;110814;;110684:17;;110867:35;;;110885:17;110867:35;:62;;;;110906:23;110867:62;110860:69;110513:424;-1:-1:-1;;;;;;;110513:424:0:o;82703:165::-;82759:7;82791:1;82783:5;:9;;;82779:41;;;82801:19;;-1:-1:-1;;;82801:19:0;;;;;;;;;;;82779:41;-1:-1:-1;82846:13:0;;;82703:165::o;119361:502::-;119414:14;119431:12;:10;:12::i;:::-;119414:29;;119459:36;119478:6;119486:8;119459:18;:36::i;:::-;119454:70;;119504:20;;-1:-1:-1;;;119504:20:0;;;;;;;;;;;119454:70;119535:13;119551:18;119560:8;119551;:18::i;:::-;119616:23;;;;:13;:23;;;;;119609:30;;-1:-1:-1;;;;;;119609:30:0;;;119535:34;;-1:-1:-1;119688:45:0;;119630:8;;119616:23;119688:20;:45::i;:::-;119769:33;119786:5;119793:8;119769:16;:33::i;:::-;119818:37;;119846:8;;119842:1;;-1:-1:-1;;;;;119818:37:0;;;;;119842:1;;119818:37;119403:460;;119361:502;:::o;121868:7589::-;121993:21;;:::i;:::-;122025;;:::i;:::-;122136:5;;122057:16;;;;122158:13;;122154:1242;;122205:10;:22;;;:58;;122262:1;122205:58;;;122230:17;;:29;;:27;;;:29::i;:::-;122188:14;;;:75;122373:14;;;;122390:15;-1:-1:-1;122373:57:0;;;;;122429:1;122409:10;:17;;;:21;;;122373:57;122369:228;;;122464:17;;:28;;120199:15;;122464:28;:::i;:::-;122451:41;;:10;;;;:41;;;;122537:14;;;122536:45;;122537:32;;122554:15;;122537:32;:::i;:::-;122536:43;:45::i;:::-;122523:4;:10;;;:58;;;;:::i;:::-;122511:70;;;;122369:228;122632:15;122615:10;:14;;;:32;:57;;;;;122671:1;122651:10;:17;;;:21;;;122615:57;122611:228;;;122706:17;;:28;;120199:15;;122706:28;:::i;:::-;122693:41;;:10;;;;:41;;;;122779:14;;;122778:45;;122779:32;;122796:15;;122779:32;:::i;122778:45::-;122765:4;:10;;;:58;;;;:::i;:::-;122753:70;;;;122611:228;123105:14;;;;;123092:28;;;;:12;:28;;;;;;123139:14;;;;123092:28;;;;;;-1:-1:-1;123139:19:0;123135:250;;123201:10;:14;;;123183:10;:14;;;:32;123179:191;;123252:9;123240:21;;123179:191;;;123335:14;;;;;123322:28;;;;:12;:28;;;;;;;;;;-1:-1:-1;123179:191:0;123439:173;;;;;;;;123408:28;123439:173;;;;;;;;;123515:15;123439:173;;;;;;;123550:12;123439:173;;;;;;;;;;;123627:10;;123623:76;;-1:-1:-1;123666:21:0;;;;:13;:21;;;;;;;;;123654:33;;;;;;;;;;;;;;;-1:-1:-1;;;123654:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123623:76;123709:22;123734:9;:12;;;123709:37;;123971:35;124009:227;;;;;;;;124042:9;:14;;;124009:227;;;;;;124078:9;:15;;;124009:227;;;;;;124112:9;:12;;;124009:227;;;;124144:9;:13;;;124009:227;;;;124194:9;:30;;;124009:227;;;123971:265;;124247:18;124315:9;:12;;;124297:15;:30;124293:156;;;124424:12;;;;124406:30;;:15;:30;:::i;:::-;124387:13;;;;124372:28;;:12;:28;:::i;:::-;124358:43;;120260:7;124358:43;:::i;:::-;124357:80;;;;:::i;:::-;124344:93;;124293:156;124688:11;120091:7;124703:21;120091:7;124703:14;:21;:::i;:::-;124702:30;;;;:::i;:::-;124688:44;;124752:9;124747:1435;124771:3;124767:1;:7;124747:1435;;;124977:11;120091:7;124977:11;;:::i;:::-;;;125078:14;125125:15;125119:3;:21;125115:167;;;125171:15;125165:21;;125115:167;;;-1:-1:-1;125245:17:0;;;;:12;:17;;;;;;;;125115:167;125336:33;125337:20;125343:14;125337:3;:20;:::i;125336:33::-;125318:9;:15;;;:51;;;;:::i;:::-;125300:69;;:9;;:69;;;;;:::i;:::-;;;;;-1:-1:-1;125388:15:0;;;:26;;125407:7;;125388:15;:26;;125407:7;;125388:26;:::i;:::-;;;;;;;;125437:14;;125454:1;125437:18;;;125433:125;;-1:-1:-1;125433:125:0;;125537:1;125520:18;;125433:125;125598:1;125580:9;:15;;;:19;;;125576:145;;;125700:1;125682:15;;;:19;125576:145;125778:12;;;;:18;;;125875:19;;;125756:3;;-1:-1:-1;125756:3:0;;120260:7;;125869:25;;125756:3;125869:25;:::i;:::-;125855:40;;:10;:40;:::i;:::-;125854:55;;;;:::i;:::-;125831:16;:20;;;:78;;;;:::i;:::-;125815:13;;;:94;125928:11;125938:1;125928:11;;:::i;:::-;;;125969:15;125962:3;:22;125958:209;;-1:-1:-1;126025:12:0;126009:13;;;:28;126060:5;;125958:209;126114:21;;;;:13;:21;;;;;;;;;:33;;;;;;-1:-1:-1;;;;;126114:33:0;;;-1:-1:-1;;;126114:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;124776:3:0;;;:::i;:::-;;;124747:1435;;;-1:-1:-1;;126209:13:0;;126205:541;;126415:4;:10;;;126402:4;:10;;;:23;;;;:::i;:::-;126382:9;:15;;:44;;;;;;;:::i;:::-;;;;;-1:-1:-1;126472:9:0;;126460;;:21;;126472:9;126460:21;:::i;:::-;126441:41;;:9;;:41;;;;;:::i;:::-;;;;;;;;126501:15;;;;126519:1;126501:19;;;126497:79;;-1:-1:-1;126497:79:0;;126559:1;126541:15;;;:19;126497:79;126611:1;126594:9;:14;;;:18;;;126590:77;;;126650:1;126633:18;;126590:77;126714:20;;126681:30;;;:53;126205:541;127320:6;127330:1;127320:11;;:62;;;;-1:-1:-1;127367:15:0;127335:13;:25;127349:10;127358:1;127349:6;:10;:::i;:::-;127335:25;;;;;;;;;;;:28;;;:47;127320:62;127316:377;;;127492:9;127464:13;:25;127478:10;127487:1;127478:6;:10;:::i;:::-;127464:25;;;;;;;;;;;;;;-1:-1:-1;127464:25:0;:37;;;;;;-1:-1:-1;;;;;127464:37:0;;;-1:-1:-1;;;127464:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127316:377;;;127619:5;:14;;;127648:21;;;;:13;:21;;;;;;;;;:33;;;;;;-1:-1:-1;;;;;127648:33:0;;;-1:-1:-1;;;127648:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127316:377;127709:13;;127705:1745;;127949:15;127932:10;:14;;;:32;127928:394;;;128076:10;;;;128063:23;;;;:::i;:::-;;;128127:10;:14;;;128109:10;:14;;;:32;128105:143;;128179:10;;;;128166:23;;;;:::i;:::-;;;128105:143;128279:14;;;;;128266:28;;;;:12;:28;;;;;;:40;;-1:-1:-1;;;;;;128266:40:0;-1:-1:-1;;;;;128266:40:0;;;;;127928:394;128359:15;128342:10;:14;;;:32;128338:460;;;128536:10;:14;;;128519:10;:14;;;:31;128514:207;;;128589:10;;;;128576:23;;;;:::i;:::-;128674:14;;;;;128661:28;;;;:12;:28;;;;;;:40;;-1:-1:-1;;;;;;128661:40:0;-1:-1:-1;;;;;128661:40:0;;;;;;-1:-1:-1;128514:207:0;129005:15;128995:7;;;;:25;;;;129046:12;129035:8;;;:23;-1:-1:-1;129093:24:0;;;:14;:24;;;;129136:14;;;;;:78;;-1:-1:-1;129154:27:0;;;;:17;:27;;;;;129199:15;;129182:9;129154:38;;;;;;;:::i;:::-;;;;:41;;;:60;129136:78;129132:307;;;129235:27;;;;:17;:27;;;;;129276:4;;129263:9;129235:38;;;;;;;:::i;:::-;:45;;;;;;-1:-1:-1;;;;;129235:45:0;;;-1:-1:-1;;;129235:45:0;;;;:38;;;;;;;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129132:307;;;129348:11;;;:::i;:::-;129321:24;;;;:14;:24;;;;;;;;:38;;;129378:17;:27;;;;;129348:11;;-1:-1:-1;129419:4:0;;129348:11;129378:38;;;;;;;:::i;:::-;:45;;;;;;-1:-1:-1;;;;;129378:45:0;;;-1:-1:-1;;;129378:45:0;;;;:38;;;;;;;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;129132:307;127724:1726;127705:1745;121982:7475;;;;;;;;;121868:7589;;;:::o;64025:177::-;64135:58;;-1:-1:-1;;;;;12516:32:1;;64135:58:0;;;12498:51:1;12565:18;;;12558:34;;;64108:86:0;;64128:5;;-1:-1:-1;;;64158:23:0;12471:18:1;;64135:58:0;;;;-1:-1:-1;;64135:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;64135:58:0;-1:-1:-1;;;;;;64135:58:0;;;;;;;;;;64108:19;:86::i;147717:851::-;147796:35;147834:19;;;:7;:19;;;;;;;;;147796:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;147864:58;;147904:18;;-1:-1:-1;;;147904:18:0;;;;;;;;;;;147864:58;147937:15;;;;;:53;;-1:-1:-1;147988:1:0;147956:20;147965:10;147956:8;:20::i;:::-;-1:-1:-1;;;;;147956:34:0;;147937:53;147933:84;;;147999:18;;-1:-1:-1;;;147999:18:0;;;;;;;;;;;147933:84;148032:27;;;;:15;:27;;;;;;148063:12;148032:43;;148028:73;;148084:17;;-1:-1:-1;;;148084:17:0;;;;;;;;;;;148028:73;148130:10;148116;:24;148112:44;;148155:1;148142:14;;148112:44;148167:23;148193:22;;;:10;:22;;;;;;148230:29;;;148226:42;;148261:7;;147717:851;;:::o;148226:42::-;148280:24;148307:33;:14;:21;;;:31;;;:33::i;:::-;148280:60;;148351:66;148372:10;148384;148396:20;148405:10;148396:8;:20::i;:::-;148351;:66::i;:::-;148428:56;148449:10;148461:16;148479:4;148428:20;:56::i;:::-;148549:10;148532:15;148518:12;:10;:12::i;:::-;-1:-1:-1;;;;;148502:58:0;;;;;;;;;;;147785:783;;;147717:851;;:::o;82461:187::-;82517:6;-1:-1:-1;;;;;82540:33:0;;82536:64;;;82582:18;;-1:-1:-1;;;82582:18:0;;;;;;;;;;;82536:64;-1:-1:-1;82633:5:0;82461:187::o;147348:217::-;147452:105;;-1:-1:-1;;;147452:105:0;;147495:14;147452:105;;;21733:25:1;147511:12:0;21774:18:1;;;21767:34;21817:18;;;21810:34;;;21860:18;;;21853:34;;;21931:14;;21924:22;21903:19;;;21896:51;147452:22:0;;:42;;21705:19:1;;147452:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117128:417;117192:4;-1:-1:-1;;;;;117260:17:0;;117253:25;;;;:::i;:::-;117351:26;117363:3;117368:8;117351:11;:26::i;:::-;117426:38;117447:8;117457:1;117460:3;117426:20;:38::i;:::-;117480:35;;117506:8;;-1:-1:-1;;;;;117480:35:0;;;117497:1;;117480:35;;117497:1;;117480:35;-1:-1:-1;117533:4:0;117128:417;;;;:::o;129796:1507::-;130026:6;;130052:21;130067:6;130026;130052:21;:::i;:::-;130043:6;:30;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;130265:17:0;;130297:14;;;;130326:22;;;;130191:168;;;;;;;;;;;;;;;130474:17;:6;:15;:17::i;:::-;130454:37;;:9;;:37;;;;;:::i;:::-;;;;;-1:-1:-1;130506:16:0;;130502:76;;130539:13;;;:27;;;130502:76;130588:17;;;;:7;:17;;;;;;;;;:29;;;;-1:-1:-1;;;;;;130588:29:0;-1:-1:-1;;;;;130588:29:0;;;;;;;;;;-1:-1:-1;130588:29:0;;;;;;;;;;;;;-1:-1:-1;;130588:29:0;;;;;;;;;;130944:44;130588:17;130966:10;130588:29;130944:11;:44::i;:::-;131001:12;131016;:10;:12::i;:::-;131001:27;-1:-1:-1;131043:11:0;;131039:103;;131071:59;-1:-1:-1;;;;;131078:5:0;131071:30;131102:4;131116;131123:6;131071:30;:59::i;:::-;131183:12;131159:77;;;;;;;;:::i;:::-;131205:13;;;;;131159:77;;;22292:25:1;;;22333:18;;;22326:34;;;;131220:15:0;22376:18:1;;;22369:34;131159:77:0;131173:8;;-1:-1:-1;;;;;131159:77:0;;;;;;;;22280:2:1;131159:77:0;;;131252:43;131259:12;131273:21;131288:6;131259:12;131273:21;:::i;:::-;131252:43;;;5718:25:1;;;5774:2;5759:18;;5752:34;;;;5691:18;131252:43:0;;;;;;;129992:1311;;;129796:1507;;;;;:::o;140497:289::-;140585:16;140627:7;;140625:9;;;;;:::i;:::-;;;;;-1:-1:-1;140645:17:0;;;;:7;:17;;;;;;;;:30;;;;-1:-1:-1;;;;;;140645:30:0;-1:-1:-1;;;;;140645:30:0;;;;;;;;;;-1:-1:-1;140645:30:0;;;;;;;;;;;;;-1:-1:-1;;140645:30:0;;;;;;;;;;140708:26;;;;;;;;;;;;;;;;;;;;;;140625:9;;-1:-1:-1;140686:61:0;;140625:9;;140645:30;140686:11;:61::i;:::-;140758:20;140764:3;140769:8;140758:5;:20::i;:::-;;140497:289;;;;:::o;132059:637::-;132150:7;;120091;;132193:31;132211:13;132193:15;:31;:::i;:::-;132192:40;;;;:::i;:::-;132191:49;;;;:::i;:::-;132170:70;;132294:6;132304:1;132294:11;132290:36;;132314:12;;-1:-1:-1;;;132314:12:0;;;;;;;;;;;132290:36;132355:15;132341:10;:29;132337:67;;132379:25;;-1:-1:-1;;;132379:25:0;;;;;;;;;;;132337:67;132432:25;120141:15;132432;:25;:::i;:::-;132419:10;:38;132415:72;;;132466:21;;-1:-1:-1;;;132466:21:0;;;;;;;;;;;132415:72;132500:16;132521:7;;132519:9;;;;;:::i;:::-;;;;;-1:-1:-1;132519:9:0;-1:-1:-1;132539:20:0;132545:3;132519:9;132539:5;:20::i;:::-;-1:-1:-1;132614:17:0;;;;:7;:17;;;;;;;;;132572:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132584:8;;132594:6;;132602:10;;132572:11;:90::i;:::-;132680:8;132059:637;-1:-1:-1;;;;;132059:637:0:o;143081:196::-;143186:83;;-1:-1:-1;;;143186:83:0;;143221:14;143186:83;;;20654:25:1;143237:17:0;20695:18:1;;;20688:34;20738:18;;;20731:34;;;20781:18;;;20774:34;;;143159:7:0;;143186:19;;:34;;20626:19:1;;143186:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;64684:582::-;65014:10;;;65013:62;;-1:-1:-1;65030:39:0;;-1:-1:-1;;;65030:39:0;;65054:4;65030:39;;;14520:34:1;-1:-1:-1;;;;;14590:15:1;;;14570:18;;;14563:43;65030:15:0;;;;;14455:18:1;;65030:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;65013:62;64991:166;;;;-1:-1:-1;;;64991:166:0;;23122:2:1;64991:166:0;;;23104:21:1;23161:2;23141:18;;;23134:30;23200:34;23180:18;;;23173:62;-1:-1:-1;;;23251:18:1;;;23244:52;23313:19;;64991:166:0;22920:418:1;64991:166:0;65195:62;;-1:-1:-1;;;;;12516:32:1;;65195:62:0;;;12498:51:1;12565:18;;;12558:34;;;65168:90:0;;65188:5;;-1:-1:-1;;;65218:22:0;12471:18:1;;65195:62:0;12324:274:1;118866:424:0;119029:5;-1:-1:-1;;;;;119007:27:0;:18;119016:8;119007;:18::i;:::-;-1:-1:-1;;;;;119007:27:0;;119000:35;;;;:::i;:::-;119105:1;119075:19;;;:9;:19;;;;;:32;;-1:-1:-1;;;;;;119075:32:0;;;119164:42;119190:5;119085:8;119164:25;:42::i;:::-;-1:-1:-1;;;;;119251:26:0;;;;;;:19;:26;;;;;:31;;119281:1;;119251:26;:31;;119281:1;;119251:31;:::i;:::-;;;;-1:-1:-1;;;;118866:424:0:o;146999:341::-;147105:227;;-1:-1:-1;;;147105:227:0;;147162:7;147105:227;;;23840:25:1;147184:14:0;23881:18:1;;;23874:34;147213:12:0;23924:18:1;;;23917:34;147240:10:0;23967:18:1;;;23960:34;24010:19;;;24003:35;;;24054:19;;;24047:35;;;-1:-1:-1;;;;;24119:32:1;;24098:19;;;24091:61;147105:22:0;;:42;;23812:19:1;;147105:227:0;23343:815:1;116384:404:0;116546:1;116516:18;116525:8;116516;:18::i;:::-;-1:-1:-1;;;;;116516:32:0;;116509:40;;;;:::i;:::-;116589:19;;;;:9;:19;;;;;;;;:25;;-1:-1:-1;;;;;;116589:25:0;-1:-1:-1;;;;;116589:25:0;;;;;;;;116129:24;;;:19;:24;;;;;;;;116166:20;:25;;;;;:39;;;;;;;;:50;;;116227:27;;;:17;:27;;;;;:42;;;;116751:24;;;;;;:29;;-1:-1:-1;;116589:19:0;116751:29;;-1:-1:-1;;116751:29:0;:::i;66913:716::-;67337:23;67363:69;67391:4;67363:69;;;;;;;;;;;;;;;;;67371:5;-1:-1:-1;;;;;67363:27:0;;;:69;;;;;:::i;:::-;67447:17;;67337:95;;-1:-1:-1;67447:21:0;67443:179;;67544:10;67533:30;;;;;;;;;;;;:::i;:::-;67525:85;;;;-1:-1:-1;;;67525:85:0;;24615:2:1;67525:85:0;;;24597:21:1;24654:2;24634:18;;;24627:30;24693:34;24673:18;;;24666:62;-1:-1:-1;;;24744:18:1;;;24737:40;24794:19;;67525:85:0;24413:406:1;64210:205:0;64338:68;;-1:-1:-1;;;;;25082:15:1;;;64338:68:0;;;25064:34:1;25134:15;;25114:18;;;25107:43;25166:18;;;25159:34;;;64311:96:0;;64331:5;;-1:-1:-1;;;64361:27:0;24999:18:1;;64338:68:0;24824:375:1;64311:96:0;64210:205;;;;:::o;117725:1027::-;-1:-1:-1;;;;;117855:26:0;;117832:20;117855:26;;;:19;:26;;;;;;:30;;117884:1;;117855:30;:::i;:::-;117896:20;117919:27;;;:17;:27;;;;;;117832:53;;-1:-1:-1;117963:28:0;;;117959:786;;-1:-1:-1;;;;;118052:27:0;;118096:1;118052:27;;;:20;:27;;;;;;;;:41;;;;;;;;:45;;;118153:27;;;:17;:27;;;;;:31;117959:786;;;-1:-1:-1;;;;;118239:27:0;;;;118217:19;118239:27;;;:20;:27;;;;;;;;:41;;;;;;;;;;;118361;;;;;;:55;;;118472:30;;:17;:30;;;;;;:45;;;;118601;;;;118702:27;;;;;:31;117725:1027::o;58095:229::-;58232:12;58264:52;58286:6;58294:4;58300:1;58303:12;58232;59469;59483:23;59510:6;-1:-1:-1;;;;;59510:11:0;59529:5;59536:4;59510:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59468:73;;;;59559:69;59586:6;59594:7;59603:10;59615:12;59559:26;:69::i;:::-;59552:76;;;;59181:455;;;;;;;:::o;61754:644::-;61939:12;61968:7;61964:427;;;61996:10;:17;62017:1;61996:22;61992:290;;-1:-1:-1;;;;;55634:19:0;;;62206:60;;;;-1:-1:-1;;;62206:60:0;;26105:2:1;62206:60:0;;;26087:21:1;26144:2;26124:18;;;26117:30;26183:31;26163:18;;;26156:59;26232:18;;62206:60:0;25903:353:1;62206:60:0;-1:-1:-1;62303:10:0;62296:17;;61964:427;62346:33;62354:10;62366:12;63101:17;;:21;63097:388;;63333:10;63327:17;63390:15;63377:10;63373:2;63369:19;63362:44;63097:388;63460:12;63453:20;;-1:-1:-1;;;63453:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:250::-;859:1;869:113;883:6;880:1;877:13;869:113;;;959:11;;;953:18;940:11;;;933:39;905:2;898:10;869:113;;;-1:-1:-1;;1016:1:1;998:16;;991:27;774:250::o;1029:271::-;1071:3;1109:5;1103:12;1136:6;1131:3;1124:19;1152:76;1221:6;1214:4;1209:3;1205:14;1198:4;1191:5;1187:16;1152:76;:::i;:::-;1282:2;1261:15;-1:-1:-1;;1257:29:1;1248:39;;;;1289:4;1244:50;;1029:271;-1:-1:-1;;1029:271:1:o;1305:220::-;1454:2;1443:9;1436:21;1417:4;1474:45;1515:2;1504:9;1500:18;1492:6;1474:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:1;;1530:180;-1:-1:-1;1530:180:1:o;1923:131::-;-1:-1:-1;;;;;1998:31:1;;1988:42;;1978:70;;2044:1;2041;2034:12;2059:247;2118:6;2171:2;2159:9;2150:7;2146:23;2142:32;2139:52;;;2187:1;2184;2177:12;2139:52;2226:9;2213:23;2245:31;2270:5;2245:31;:::i;2311:315::-;2379:6;2387;2440:2;2428:9;2419:7;2415:23;2411:32;2408:52;;;2456:1;2453;2446:12;2408:52;2495:9;2482:23;2514:31;2539:5;2514:31;:::i;:::-;2564:5;2616:2;2601:18;;;;2588:32;;-1:-1:-1;;;2311:315:1:o;2631:248::-;2699:6;2707;2760:2;2748:9;2739:7;2735:23;2731:32;2728:52;;;2776:1;2773;2766:12;2728:52;-1:-1:-1;;2799:23:1;;;2869:2;2854:18;;;2841:32;;-1:-1:-1;2631:248:1:o;3066:456::-;3143:6;3151;3159;3212:2;3200:9;3191:7;3187:23;3183:32;3180:52;;;3228:1;3225;3218:12;3180:52;3267:9;3254:23;3286:31;3311:5;3286:31;:::i;:::-;3336:5;-1:-1:-1;3393:2:1;3378:18;;3365:32;3406:33;3365:32;3406:33;:::i;:::-;3066:456;;3458:7;;-1:-1:-1;;;3512:2:1;3497:18;;;;3484:32;;3066:456::o;3527:388::-;3595:6;3603;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:31;3755:5;3730:31;:::i;:::-;3780:5;-1:-1:-1;3837:2:1;3822:18;;3809:32;3850:33;3809:32;3850:33;:::i;:::-;3902:7;3892:17;;;3527:388;;;;;:::o;4109:118::-;4195:5;4188:13;4181:21;4174:5;4171:32;4161:60;;4217:1;4214;4207:12;4232:382;4297:6;4305;4358:2;4346:9;4337:7;4333:23;4329:32;4326:52;;;4374:1;4371;4364:12;4326:52;4413:9;4400:23;4432:31;4457:5;4432:31;:::i;:::-;4482:5;-1:-1:-1;4539:2:1;4524:18;;4511:32;4552:30;4511:32;4552:30;:::i;4619:309::-;4684:6;4692;4745:2;4733:9;4724:7;4720:23;4716:32;4713:52;;;4761:1;4758;4751:12;4713:52;4797:9;4784:23;4774:33;;4857:2;4846:9;4842:18;4829:32;4870:28;4892:5;4870:28;:::i;5288:251::-;5474:3;5459:19;;5487:46;5463:9;5515:6;5029:5;5023:12;5019:2;5008:28;5003:3;4996:41;5101:4;5094:5;5090:16;5084:23;5080:2;5069:39;5062:4;5057:3;5053:14;5046:63;5158:4;5151:5;5147:16;5141:23;5134:4;5129:3;5125:14;5118:47;5214:4;5207:5;5203:16;5197:23;5190:4;5185:3;5181:14;5174:47;5270:4;5263:5;5259:16;5253:23;5246:4;5241:3;5237:14;5230:47;;;4933:350;5797:383;5874:6;5882;5890;5943:2;5931:9;5922:7;5918:23;5914:32;5911:52;;;5959:1;5956;5949:12;5911:52;5998:9;5985:23;6017:31;6042:5;6017:31;:::i;:::-;6067:5;6119:2;6104:18;;6091:32;;-1:-1:-1;6170:2:1;6155:18;;;6142:32;;5797:383;-1:-1:-1;;;5797:383:1:o;6386:127::-;6447:10;6442:3;6438:20;6435:1;6428:31;6478:4;6475:1;6468:15;6502:4;6499:1;6492:15;6518:342;6664:2;6649:18;;6697:1;6686:13;;6676:144;;6742:10;6737:3;6733:20;6730:1;6723:31;6777:4;6774:1;6767:15;6805:4;6802:1;6795:15;6676:144;6829:25;;;6518:342;:::o;6865:681::-;6976:6;6984;6992;7000;7008;7016;7024;7077:3;7065:9;7056:7;7052:23;7048:33;7045:53;;;7094:1;7091;7084:12;7045:53;7130:9;7117:23;7107:33;;7187:2;7176:9;7172:18;7159:32;7149:42;;7238:2;7227:9;7223:18;7210:32;7200:42;;7289:2;7278:9;7274:18;7261:32;7251:42;;7343:3;7332:9;7328:19;7315:33;7388:4;7381:5;7377:16;7370:5;7367:27;7357:55;;7408:1;7405;7398:12;7357:55;6865:681;;;;-1:-1:-1;6865:681:1;;;;7431:5;7483:3;7468:19;;7455:33;;-1:-1:-1;7535:3:1;7520:19;;;7507:33;;6865:681;-1:-1:-1;;6865:681:1:o;8218:127::-;8279:10;8274:3;8270:20;8267:1;8260:31;8310:4;8307:1;8300:15;8334:4;8331:1;8324:15;8350:275;8421:2;8415:9;8486:2;8467:13;;-1:-1:-1;;8463:27:1;8451:40;;8521:18;8506:34;;8542:22;;;8503:62;8500:88;;;8568:18;;:::i;:::-;8604:2;8597:22;8350:275;;-1:-1:-1;8350:275:1:o;8630:186::-;8678:4;8711:18;8703:6;8700:30;8697:56;;;8733:18;;:::i;:::-;-1:-1:-1;8799:2:1;8778:15;-1:-1:-1;;8774:29:1;8805:4;8770:40;;8630:186::o;8821:1016::-;8916:6;8924;8932;8940;8993:3;8981:9;8972:7;8968:23;8964:33;8961:53;;;9010:1;9007;9000:12;8961:53;9049:9;9036:23;9068:31;9093:5;9068:31;:::i;:::-;9118:5;-1:-1:-1;9175:2:1;9160:18;;9147:32;9188:33;9147:32;9188:33;:::i;:::-;9240:7;-1:-1:-1;9294:2:1;9279:18;;9266:32;;-1:-1:-1;9349:2:1;9334:18;;9321:32;9376:18;9365:30;;9362:50;;;9408:1;9405;9398:12;9362:50;9431:22;;9484:4;9476:13;;9472:27;-1:-1:-1;9462:55:1;;9513:1;9510;9503:12;9462:55;9549:2;9536:16;9574:48;9590:31;9618:2;9590:31;:::i;:::-;9574:48;:::i;:::-;9645:2;9638:5;9631:17;9685:7;9680:2;9675;9671;9667:11;9663:20;9660:33;9657:53;;;9706:1;9703;9696:12;9657:53;9761:2;9756;9752;9748:11;9743:2;9736:5;9732:14;9719:45;9805:1;9800:2;9795;9788:5;9784:14;9780:23;9773:34;9826:5;9816:15;;;;;8821:1016;;;;;;;:::o;9842:383::-;9919:6;9927;9935;9988:2;9976:9;9967:7;9963:23;9959:32;9956:52;;;10004:1;10001;9994:12;9956:52;10040:9;10027:23;10017:33;;10097:2;10086:9;10082:18;10069:32;10059:42;;10151:2;10140:9;10136:18;10123:32;10164:31;10189:5;10164:31;:::i;:::-;10214:5;10204:15;;;9842:383;;;;;:::o;10230:348::-;10297:6;10305;10358:2;10346:9;10337:7;10333:23;10329:32;10326:52;;;10374:1;10371;10364:12;10326:52;10410:9;10397:23;10387:33;;10470:2;10459:9;10455:18;10442:32;10514:14;10507:5;10503:26;10496:5;10493:37;10483:65;;10544:1;10541;10534:12;11238:127;11299:10;11294:3;11290:20;11287:1;11280:31;11330:4;11327:1;11320:15;11354:4;11351:1;11344:15;11370:128;11437:9;;;11458:11;;;11455:37;;;11472:18;;:::i;11764:125::-;11829:9;;;11850:10;;;11847:36;;;11863:18;;:::i;11894:127::-;11955:10;11950:3;11946:20;11943:1;11936:31;11986:4;11983:1;11976:15;12010:4;12007:1;12000:15;12026:120;12066:1;12092;12082:35;;12097:18;;:::i;:::-;-1:-1:-1;12131:9:1;;12026:120::o;12151:168::-;12224:9;;;12255;;12272:15;;;12266:22;;12252:37;12242:71;;12293:18;;:::i;12603:184::-;12673:6;12726:2;12714:9;12705:7;12701:23;12697:32;12694:52;;;12742:1;12739;12732:12;12694:52;-1:-1:-1;12765:16:1;;12603:184;-1:-1:-1;12603:184:1:o;12792:127::-;12853:10;12848:3;12844:20;12841:1;12834:31;12884:4;12881:1;12874:15;12908:4;12905:1;12898:15;12924:729;13094:4;13142:2;13131:9;13127:18;13172:6;13161:9;13154:25;13198:2;13236;13231;13220:9;13216:18;13209:30;13259:6;13294;13288:13;13325:6;13317;13310:22;13363:2;13352:9;13348:18;13341:25;;13401:2;13393:6;13389:15;13375:29;;13422:1;13432:195;13446:6;13443:1;13440:13;13432:195;;;13511:13;;-1:-1:-1;;;;;13507:39:1;13495:52;;13602:15;;;;13567:12;;;;13543:1;13461:9;13432:195;;;-1:-1:-1;13644:3:1;;12924:729;-1:-1:-1;;;;;;;12924:729:1:o;13658:249::-;13758:2;13747:17;;;13728;;;;13724:41;-1:-1:-1;;;;;;13780:50:1;;-1:-1:-1;;;;;13832:45:1;;13777:101;13774:127;;;13881:18;;:::i;13912:251::-;13982:6;14035:2;14023:9;14014:7;14010:23;14006:32;14003:52;;;14051:1;14048;14041:12;14003:52;14083:9;14077:16;14102:31;14127:5;14102:31;:::i;14168:135::-;14207:3;14228:17;;;14225:43;;14248:18;;:::i;:::-;-1:-1:-1;14295:1:1;14284:13;;14168:135::o;14617:385::-;14696:6;14704;14757:2;14745:9;14736:7;14732:23;14728:32;14725:52;;;14773:1;14770;14763:12;14725:52;14805:9;14799:16;14824:31;14849:5;14824:31;:::i;:::-;14924:2;14909:18;;14903:25;14874:5;;-1:-1:-1;14937:33:1;14903:25;14937:33;:::i;17862:489::-;-1:-1:-1;;;;;18131:15:1;;;18113:34;;18183:15;;18178:2;18163:18;;18156:43;18230:2;18215:18;;18208:34;;;18278:3;18273:2;18258:18;;18251:31;;;18056:4;;18299:46;;18325:19;;18317:6;18299:46;:::i;:::-;18291:54;17862:489;-1:-1:-1;;;;;;17862:489:1:o;18356:249::-;18425:6;18478:2;18466:9;18457:7;18453:23;18449:32;18446:52;;;18494:1;18491;18484:12;18446:52;18526:9;18520:16;18545:30;18569:5;18545:30;:::i;18610:648::-;18690:6;18743:2;18731:9;18722:7;18718:23;18714:32;18711:52;;;18759:1;18756;18749:12;18711:52;18792:9;18786:16;18825:18;18817:6;18814:30;18811:50;;;18857:1;18854;18847:12;18811:50;18880:22;;18933:4;18925:13;;18921:27;-1:-1:-1;18911:55:1;;18962:1;18959;18952:12;18911:55;18991:2;18985:9;19016:48;19032:31;19060:2;19032:31;:::i;19016:48::-;19087:2;19080:5;19073:17;19127:7;19122:2;19117;19113;19109:11;19105:20;19102:33;19099:53;;;19148:1;19145;19138:12;19099:53;19161:67;19225:2;19220;19213:5;19209:14;19204:2;19200;19196:11;19161:67;:::i;19263:245::-;19361:2;19331:17;;;19350;;;;19327:41;-1:-1:-1;;;;;19383:44:1;;-1:-1:-1;;;;;;19429:49:1;;19380:99;19377:125;;;19482:18;;:::i;20819:305::-;20858:1;20900;20896:2;20885:17;20937:1;20933:2;20922:17;20958:3;20948:37;;20965:18;;:::i;:::-;-1:-1:-1;;;;;;21001:48:1;;-1:-1:-1;;21051:15:1;;20997:70;20994:96;;;21070:18;;:::i;:::-;21104:14;;;20819:305;-1:-1:-1;;;20819:305:1:o;21129:241::-;21168:7;21247:1;21243:2;21232:17;21228:1;21224:2;21213:17;21209:41;21285:11;21281:2;21270:27;21259:38;;21328:11;21319:7;21316:24;21306:58;;21344:18;;:::i;21958:127::-;22019:10;22014:3;22010:20;22007:1;22000:31;22050:4;22047:1;22040:15;22074:4;22071:1;22064:15;24163:245;24230:6;24283:2;24271:9;24262:7;24258:23;24254:32;24251:52;;;24299:1;24296;24289:12;24251:52;24331:9;24325:16;24350:28;24372:5;24350:28;:::i;25611:287::-;25740:3;25778:6;25772:13;25794:66;25853:6;25848:3;25841:4;25833:6;25829:17;25794:66;:::i;:::-;25876:16;;;;;25611:287;-1:-1:-1;;25611:287:1:o
Swarm Source
ipfs://b3b1b41a766901a8b8f6fa1e5e3839da187c0861202c702ea1956c8cfd7971e8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.