Source Code
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Apply Chain Upda... | 22132338 | 111 days ago | IN | 0 ETH | 0.00037054 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SourceTokenPool
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {LockReleaseTokenPool} from "ccip/ccip/pools/LockReleaseTokenPool.sol"; import {IERC20} from "ccip/vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol"; contract SourceTokenPool is LockReleaseTokenPool { constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, bool acceptLiquidity, address router ) LockReleaseTokenPool(token, localTokenDecimals, allowlist, rmnProxy, acceptLiquidity, router) {} }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.24; import {ILiquidityContainer} from "../../liquiditymanager/interfaces/ILiquidityContainer.sol"; import {ITypeAndVersion} from "../../shared/interfaces/ITypeAndVersion.sol"; import {Pool} from "../libraries/Pool.sol"; import {TokenPool} from "./TokenPool.sol"; import {IERC20} from "../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol"; import {SafeERC20} from "../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/utils/SafeERC20.sol"; import {IERC165} from "../../vendor/openzeppelin-solidity/v5.0.2/contracts/utils/introspection/IERC165.sol"; /// @notice Token pool used for tokens on their native chain. This uses a lock and release mechanism. /// Because of lock/unlock requiring liquidity, this pool contract also has function to add and remove /// liquidity. This allows for proper bookkeeping for both user and liquidity provider balances. /// @dev One token per LockReleaseTokenPool. contract LockReleaseTokenPool is TokenPool, ILiquidityContainer, ITypeAndVersion { using SafeERC20 for IERC20; error InsufficientLiquidity(); error LiquidityNotAccepted(); event LiquidityTransferred(address indexed from, uint256 amount); string public constant override typeAndVersion = "LockReleaseTokenPool 1.5.1"; /// @dev Whether or not the pool accepts liquidity. /// External liquidity is not required when there is one canonical token deployed to a chain, /// and CCIP is facilitating mint/burn on all the other chains, in which case the invariant /// balanceOf(pool) on home chain >= sum(totalSupply(mint/burn "wrapped" token) on all remote chains) should always hold bool internal immutable i_acceptLiquidity; /// @notice The address of the rebalancer. address internal s_rebalancer; constructor( IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, bool acceptLiquidity, address router ) TokenPool(token, localTokenDecimals, allowlist, rmnProxy, router) { i_acceptLiquidity = acceptLiquidity; } /// @notice Locks the token in the pool /// @dev The _validateLockOrBurn check is an essential security check function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external virtual override returns (Pool.LockOrBurnOutV1 memory) { _validateLockOrBurn(lockOrBurnIn); emit Locked(msg.sender, lockOrBurnIn.amount); return Pool.LockOrBurnOutV1({ destTokenAddress: getRemoteToken(lockOrBurnIn.remoteChainSelector), destPoolData: _encodeLocalDecimals() }); } /// @notice Release tokens from the pool to the recipient /// @dev The _validateReleaseOrMint check is an essential security check function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external virtual override returns (Pool.ReleaseOrMintOutV1 memory) { _validateReleaseOrMint(releaseOrMintIn); // Calculate the local amount uint256 localAmount = _calculateLocalAmount(releaseOrMintIn.amount, _parseRemoteDecimals(releaseOrMintIn.sourcePoolData)); // Release to the recipient getToken().safeTransfer(releaseOrMintIn.receiver, localAmount); emit Released(msg.sender, releaseOrMintIn.receiver, localAmount); return Pool.ReleaseOrMintOutV1({destinationAmount: localAmount}); } /// @inheritdoc IERC165 function supportsInterface( bytes4 interfaceId ) public pure virtual override returns (bool) { return interfaceId == type(ILiquidityContainer).interfaceId || super.supportsInterface(interfaceId); } /// @notice Gets LiquidityManager, can be address(0) if none is configured. /// @return The current liquidity manager. function getRebalancer() external view returns (address) { return s_rebalancer; } /// @notice Sets the LiquidityManager address. /// @dev Only callable by the owner. function setRebalancer( address rebalancer ) external onlyOwner { s_rebalancer = rebalancer; } /// @notice Checks if the pool can accept liquidity. /// @return true if the pool can accept liquidity, false otherwise. function canAcceptLiquidity() external view returns (bool) { return i_acceptLiquidity; } /// @notice Adds liquidity to the pool. The tokens should be approved first. /// @param amount The amount of liquidity to provide. function provideLiquidity( uint256 amount ) external { if (!i_acceptLiquidity) revert LiquidityNotAccepted(); if (s_rebalancer != msg.sender) revert Unauthorized(msg.sender); i_token.safeTransferFrom(msg.sender, address(this), amount); emit LiquidityAdded(msg.sender, amount); } /// @notice Removed liquidity to the pool. The tokens will be sent to msg.sender. /// @param amount The amount of liquidity to remove. function withdrawLiquidity( uint256 amount ) external { if (s_rebalancer != msg.sender) revert Unauthorized(msg.sender); if (i_token.balanceOf(address(this)) < amount) revert InsufficientLiquidity(); i_token.safeTransfer(msg.sender, amount); emit LiquidityRemoved(msg.sender, amount); } /// @notice This function can be used to transfer liquidity from an older version of the pool to this pool. To do so /// this pool will have to be set as the rebalancer in the older version of the pool. This allows it to transfer the /// funds in the old pool to the new pool. /// @dev When upgrading a LockRelease pool, this function can be called at the same time as the pool is changed in the /// TokenAdminRegistry. This allows for a smooth transition of both liquidity and transactions to the new pool. /// Alternatively, when no multicall is available, a portion of the funds can be transferred to the new pool before /// changing which pool CCIP uses, to ensure both pools can operate. Then the pool should be changed in the /// TokenAdminRegistry, which will activate the new pool. All new transactions will use the new pool and its /// liquidity. Finally, the remaining liquidity can be transferred to the new pool using this function one more time. /// @param from The address of the old pool. /// @param amount The amount of liquidity to transfer. function transferLiquidity(address from, uint256 amount) external onlyOwner { LockReleaseTokenPool(from).withdrawLiquidity(amount); emit LiquidityTransferred(from, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.0; /// @notice Interface for a liquidity container, this can be a CCIP token pool. interface ILiquidityContainer { event LiquidityAdded(address indexed provider, uint256 indexed amount); event LiquidityRemoved(address indexed provider, uint256 indexed amount); /// @notice Provide additional liquidity to the container. /// @dev Should emit LiquidityAdded function provideLiquidity(uint256 amount) external; /// @notice Withdraws liquidity from the container to the msg sender /// @dev Should emit LiquidityRemoved function withdrawLiquidity(uint256 amount) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface ITypeAndVersion { function typeAndVersion() external pure returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @notice This library contains various token pool functions to aid constructing the return data. library Pool { // The tag used to signal support for the pool v1 standard // bytes4(keccak256("CCIP_POOL_V1")) bytes4 public constant CCIP_POOL_V1 = 0xaff2afbf; // The number of bytes in the return data for a pool v1 releaseOrMint call. // This should match the size of the ReleaseOrMintOutV1 struct. uint16 public constant CCIP_POOL_V1_RET_BYTES = 32; // The default max number of bytes in the return data for a pool v1 lockOrBurn call. // This data can be used to send information to the destination chain token pool. Can be overwritten // in the TokenTransferFeeConfig.destBytesOverhead if more data is required. uint32 public constant CCIP_LOCK_OR_BURN_V1_RET_BYTES = 32; struct LockOrBurnInV1 { bytes receiver; // The recipient of the tokens on the destination chain, abi encoded uint64 remoteChainSelector; // ─╮ The chain ID of the destination chain address originalSender; // ─────╯ The original sender of the tx on the source chain uint256 amount; // The amount of tokens to lock or burn, denominated in the source token's decimals address localToken; // The address on this chain of the token to lock or burn } struct LockOrBurnOutV1 { // The address of the destination token, abi encoded in the case of EVM chains // This value is UNTRUSTED as any pool owner can return whatever value they want. bytes destTokenAddress; // Optional pool data to be transferred to the destination chain. Be default this is capped at // CCIP_LOCK_OR_BURN_V1_RET_BYTES bytes. If more data is required, the TokenTransferFeeConfig.destBytesOverhead // has to be set for the specific token. bytes destPoolData; } struct ReleaseOrMintInV1 { bytes originalSender; // The original sender of the tx on the source chain uint64 remoteChainSelector; // ─╮ The chain ID of the source chain address receiver; // ───────────╯ The recipient of the tokens on the destination chain. uint256 amount; // The amount of tokens to release or mint, denominated in the source token's decimals address localToken; // The address on this chain of the token to release or mint /// @dev WARNING: sourcePoolAddress should be checked prior to any processing of funds. Make sure it matches the /// expected pool address for the given remoteChainSelector. bytes sourcePoolAddress; // The address of the source pool, abi encoded in the case of EVM chains bytes sourcePoolData; // The data received from the source pool to process the release or mint /// @dev WARNING: offchainTokenData is untrusted data. bytes offchainTokenData; // The offchain data to process the release or mint } struct ReleaseOrMintOutV1 { // The number of tokens released or minted on the destination chain, denominated in the local token's decimals. // This value is expected to be equal to the ReleaseOrMintInV1.amount in the case where the source and destination // chain have the same number of decimals. uint256 destinationAmount; } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.24; import {IPoolV1} from "../interfaces/IPool.sol"; import {IRMN} from "../interfaces/IRMN.sol"; import {IRouter} from "../interfaces/IRouter.sol"; import {Ownable2StepMsgSender} from "../../shared/access/Ownable2StepMsgSender.sol"; import {Pool} from "../libraries/Pool.sol"; import {RateLimiter} from "../libraries/RateLimiter.sol"; import {IERC20} from "../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/IERC20.sol"; import {IERC20Metadata} from "../../vendor/openzeppelin-solidity/v4.8.3/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import {IERC165} from "../../vendor/openzeppelin-solidity/v5.0.2/contracts/utils/introspection/IERC165.sol"; import {EnumerableSet} from "../../vendor/openzeppelin-solidity/v5.0.2/contracts/utils/structs/EnumerableSet.sol"; /// @dev This pool supports different decimals on different chains but using this feature could impact the total number /// of tokens in circulation. Since all of the tokens are locked/burned on the source, and a rounded amount is minted/released on the /// destination, the number of tokens minted/released could be less than the number of tokens burned/locked. This is because the source /// chain does not know about the destination token decimals. This is not a problem if the decimals are the same on both /// chains. /// /// Example: /// Assume there is a token with 6 decimals on chain A and 3 decimals on chain B. /// - 1.234567 tokens are burned on chain A. /// - 1.234 tokens are minted on chain B. /// When sending the 1.234 tokens back to chain A, you will receive 1.234000 tokens on chain A, effectively losing /// 0.000567 tokens. /// In the case of a burnMint pool on chain A, these funds are burned in the pool on chain A. /// In the case of a lockRelease pool on chain A, these funds accumulate in the pool on chain A. abstract contract TokenPool is IPoolV1, Ownable2StepMsgSender { using EnumerableSet for EnumerableSet.Bytes32Set; using EnumerableSet for EnumerableSet.AddressSet; using EnumerableSet for EnumerableSet.UintSet; using RateLimiter for RateLimiter.TokenBucket; error CallerIsNotARampOnRouter(address caller); error ZeroAddressNotAllowed(); error SenderNotAllowed(address sender); error AllowListNotEnabled(); error NonExistentChain(uint64 remoteChainSelector); error ChainNotAllowed(uint64 remoteChainSelector); error CursedByRMN(); error ChainAlreadyExists(uint64 chainSelector); error InvalidSourcePoolAddress(bytes sourcePoolAddress); error InvalidToken(address token); error Unauthorized(address caller); error PoolAlreadyAdded(uint64 remoteChainSelector, bytes remotePoolAddress); error InvalidRemotePoolForChain(uint64 remoteChainSelector, bytes remotePoolAddress); error InvalidRemoteChainDecimals(bytes sourcePoolData); error OverflowDetected(uint8 remoteDecimals, uint8 localDecimals, uint256 remoteAmount); error InvalidDecimalArgs(uint8 expected, uint8 actual); event Locked(address indexed sender, uint256 amount); event Burned(address indexed sender, uint256 amount); event Released(address indexed sender, address indexed recipient, uint256 amount); event Minted(address indexed sender, address indexed recipient, uint256 amount); event ChainAdded( uint64 remoteChainSelector, bytes remoteToken, RateLimiter.Config outboundRateLimiterConfig, RateLimiter.Config inboundRateLimiterConfig ); event ChainConfigured( uint64 remoteChainSelector, RateLimiter.Config outboundRateLimiterConfig, RateLimiter.Config inboundRateLimiterConfig ); event ChainRemoved(uint64 remoteChainSelector); event RemotePoolAdded(uint64 indexed remoteChainSelector, bytes remotePoolAddress); event RemotePoolRemoved(uint64 indexed remoteChainSelector, bytes remotePoolAddress); event AllowListAdd(address sender); event AllowListRemove(address sender); event RouterUpdated(address oldRouter, address newRouter); event RateLimitAdminSet(address rateLimitAdmin); struct ChainUpdate { uint64 remoteChainSelector; // Remote chain selector bytes[] remotePoolAddresses; // Address of the remote pool, ABI encoded in the case of a remote EVM chain. bytes remoteTokenAddress; // Address of the remote token, ABI encoded in the case of a remote EVM chain. RateLimiter.Config outboundRateLimiterConfig; // Outbound rate limited config, meaning the rate limits for all of the onRamps for the given chain RateLimiter.Config inboundRateLimiterConfig; // Inbound rate limited config, meaning the rate limits for all of the offRamps for the given chain } struct RemoteChainConfig { RateLimiter.TokenBucket outboundRateLimiterConfig; // Outbound rate limited config, meaning the rate limits for all of the onRamps for the given chain RateLimiter.TokenBucket inboundRateLimiterConfig; // Inbound rate limited config, meaning the rate limits for all of the offRamps for the given chain bytes remoteTokenAddress; // Address of the remote token, ABI encoded in the case of a remote EVM chain. EnumerableSet.Bytes32Set remotePools; // Set of remote pool hashes, ABI encoded in the case of a remote EVM chain. } /// @dev The bridgeable token that is managed by this pool. Pools could support multiple tokens at the same time if /// required, but this implementation only supports one token. IERC20 internal immutable i_token; /// @dev The number of decimals of the token managed by this pool. uint8 internal immutable i_tokenDecimals; /// @dev The address of the RMN proxy address internal immutable i_rmnProxy; /// @dev The immutable flag that indicates if the pool is access-controlled. bool internal immutable i_allowlistEnabled; /// @dev A set of addresses allowed to trigger lockOrBurn as original senders. /// Only takes effect if i_allowlistEnabled is true. /// This can be used to ensure only token-issuer specified addresses can move tokens. EnumerableSet.AddressSet internal s_allowlist; /// @dev The address of the router IRouter internal s_router; /// @dev A set of allowed chain selectors. We want the allowlist to be enumerable to /// be able to quickly determine (without parsing logs) who can access the pool. /// @dev The chain selectors are in uint256 format because of the EnumerableSet implementation. EnumerableSet.UintSet internal s_remoteChainSelectors; mapping(uint64 remoteChainSelector => RemoteChainConfig) internal s_remoteChainConfigs; /// @notice A mapping of hashed pool addresses to their unhashed form. This is used to be able to find the actually /// configured pools and not just their hashed versions. mapping(bytes32 poolAddressHash => bytes poolAddress) internal s_remotePoolAddresses; /// @notice The address of the rate limiter admin. /// @dev Can be address(0) if none is configured. address internal s_rateLimitAdmin; constructor(IERC20 token, uint8 localTokenDecimals, address[] memory allowlist, address rmnProxy, address router) { if (address(token) == address(0) || router == address(0) || rmnProxy == address(0)) revert ZeroAddressNotAllowed(); i_token = token; i_rmnProxy = rmnProxy; try IERC20Metadata(address(token)).decimals() returns (uint8 actualTokenDecimals) { if (localTokenDecimals != actualTokenDecimals) { revert InvalidDecimalArgs(localTokenDecimals, actualTokenDecimals); } } catch { // The decimals function doesn't exist, which is possible since it's optional in the ERC20 spec. We skip the check and // assume the supplied token decimals are correct. } i_tokenDecimals = localTokenDecimals; s_router = IRouter(router); // Pool can be set as permissioned or permissionless at deployment time only to save hot-path gas. i_allowlistEnabled = allowlist.length > 0; if (i_allowlistEnabled) { _applyAllowListUpdates(new address[](0), allowlist); } } /// @inheritdoc IPoolV1 function isSupportedToken( address token ) public view virtual returns (bool) { return token == address(i_token); } /// @notice Gets the IERC20 token that this pool can lock or burn. /// @return token The IERC20 token representation. function getToken() public view returns (IERC20 token) { return i_token; } /// @notice Get RMN proxy address /// @return rmnProxy Address of RMN proxy function getRmnProxy() public view returns (address rmnProxy) { return i_rmnProxy; } /// @notice Gets the pool's Router /// @return router The pool's Router function getRouter() public view returns (address router) { return address(s_router); } /// @notice Sets the pool's Router /// @param newRouter The new Router function setRouter( address newRouter ) public onlyOwner { if (newRouter == address(0)) revert ZeroAddressNotAllowed(); address oldRouter = address(s_router); s_router = IRouter(newRouter); emit RouterUpdated(oldRouter, newRouter); } /// @notice Signals which version of the pool interface is supported function supportsInterface( bytes4 interfaceId ) public pure virtual override returns (bool) { return interfaceId == Pool.CCIP_POOL_V1 || interfaceId == type(IPoolV1).interfaceId || interfaceId == type(IERC165).interfaceId; } // ================================================================ // │ Validation │ // ================================================================ /// @notice Validates the lock or burn input for correctness on /// - token to be locked or burned /// - RMN curse status /// - allowlist status /// - if the sender is a valid onRamp /// - rate limit status /// @param lockOrBurnIn The input to validate. /// @dev This function should always be called before executing a lock or burn. Not doing so would allow /// for various exploits. function _validateLockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) internal { if (!isSupportedToken(lockOrBurnIn.localToken)) revert InvalidToken(lockOrBurnIn.localToken); if (IRMN(i_rmnProxy).isCursed(bytes16(uint128(lockOrBurnIn.remoteChainSelector)))) revert CursedByRMN(); _checkAllowList(lockOrBurnIn.originalSender); _onlyOnRamp(lockOrBurnIn.remoteChainSelector); _consumeOutboundRateLimit(lockOrBurnIn.remoteChainSelector, lockOrBurnIn.amount); } /// @notice Validates the release or mint input for correctness on /// - token to be released or minted /// - RMN curse status /// - if the sender is a valid offRamp /// - if the source pool is valid /// - rate limit status /// @param releaseOrMintIn The input to validate. /// @dev This function should always be called before executing a release or mint. Not doing so would allow /// for various exploits. function _validateReleaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) internal { if (!isSupportedToken(releaseOrMintIn.localToken)) revert InvalidToken(releaseOrMintIn.localToken); if (IRMN(i_rmnProxy).isCursed(bytes16(uint128(releaseOrMintIn.remoteChainSelector)))) revert CursedByRMN(); _onlyOffRamp(releaseOrMintIn.remoteChainSelector); // Validates that the source pool address is configured on this pool. if (!isRemotePool(releaseOrMintIn.remoteChainSelector, releaseOrMintIn.sourcePoolAddress)) { revert InvalidSourcePoolAddress(releaseOrMintIn.sourcePoolAddress); } _consumeInboundRateLimit(releaseOrMintIn.remoteChainSelector, releaseOrMintIn.amount); } // ================================================================ // │ Token decimals │ // ================================================================ /// @notice Gets the IERC20 token decimals on the local chain. function getTokenDecimals() public view virtual returns (uint8 decimals) { return i_tokenDecimals; } function _encodeLocalDecimals() internal view virtual returns (bytes memory) { return abi.encode(i_tokenDecimals); } function _parseRemoteDecimals( bytes memory sourcePoolData ) internal view virtual returns (uint8) { // Fallback to the local token decimals if the source pool data is empty. This allows for backwards compatibility. if (sourcePoolData.length == 0) { return i_tokenDecimals; } if (sourcePoolData.length != 32) { revert InvalidRemoteChainDecimals(sourcePoolData); } uint256 remoteDecimals = abi.decode(sourcePoolData, (uint256)); if (remoteDecimals > type(uint8).max) { revert InvalidRemoteChainDecimals(sourcePoolData); } return uint8(remoteDecimals); } /// @notice Calculates the local amount based on the remote amount and decimals. /// @param remoteAmount The amount on the remote chain. /// @param remoteDecimals The decimals of the token on the remote chain. /// @return The local amount. /// @dev This function protects against overflows. If there is a transaction that hits the overflow check, it is /// probably incorrect as that means the amount cannot be represented on this chain. If the local decimals have been /// wrongly configured, the token issuer could redeploy the pool with the correct decimals and manually re-execute the /// CCIP tx to fix the issue. function _calculateLocalAmount(uint256 remoteAmount, uint8 remoteDecimals) internal view virtual returns (uint256) { if (remoteDecimals == i_tokenDecimals) { return remoteAmount; } if (remoteDecimals > i_tokenDecimals) { uint8 decimalsDiff = remoteDecimals - i_tokenDecimals; if (decimalsDiff > 77) { // This is a safety check to prevent overflow in the next calculation. revert OverflowDetected(remoteDecimals, i_tokenDecimals, remoteAmount); } // Solidity rounds down so there is no risk of minting more tokens than the remote chain sent. return remoteAmount / (10 ** decimalsDiff); } // This is a safety check to prevent overflow in the next calculation. // More than 77 would never fit in a uint256 and would cause an overflow. We also check if the resulting amount // would overflow. uint8 diffDecimals = i_tokenDecimals - remoteDecimals; if (diffDecimals > 77 || remoteAmount > type(uint256).max / (10 ** diffDecimals)) { revert OverflowDetected(remoteDecimals, i_tokenDecimals, remoteAmount); } return remoteAmount * (10 ** diffDecimals); } // ================================================================ // │ Chain permissions │ // ================================================================ /// @notice Gets the pool address on the remote chain. /// @param remoteChainSelector Remote chain selector. /// @dev To support non-evm chains, this value is encoded into bytes function getRemotePools( uint64 remoteChainSelector ) public view returns (bytes[] memory) { bytes32[] memory remotePoolHashes = s_remoteChainConfigs[remoteChainSelector].remotePools.values(); bytes[] memory remotePools = new bytes[](remotePoolHashes.length); for (uint256 i = 0; i < remotePoolHashes.length; ++i) { remotePools[i] = s_remotePoolAddresses[remotePoolHashes[i]]; } return remotePools; } /// @notice Checks if the pool address is configured on the remote chain. /// @param remoteChainSelector Remote chain selector. /// @param remotePoolAddress The address of the remote pool. function isRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) public view returns (bool) { return s_remoteChainConfigs[remoteChainSelector].remotePools.contains(keccak256(remotePoolAddress)); } /// @notice Gets the token address on the remote chain. /// @param remoteChainSelector Remote chain selector. /// @dev To support non-evm chains, this value is encoded into bytes function getRemoteToken( uint64 remoteChainSelector ) public view returns (bytes memory) { return s_remoteChainConfigs[remoteChainSelector].remoteTokenAddress; } /// @notice Adds a remote pool for a given chain selector. This could be due to a pool being upgraded on the remote /// chain. We don't simply want to replace the old pool as there could still be valid inflight messages from the old /// pool. This function allows for multiple pools to be added for a single chain selector. /// @param remoteChainSelector The remote chain selector for which the remote pool address is being added. /// @param remotePoolAddress The address of the new remote pool. function addRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner { if (!isSupportedChain(remoteChainSelector)) revert NonExistentChain(remoteChainSelector); _setRemotePool(remoteChainSelector, remotePoolAddress); } /// @notice Removes the remote pool address for a given chain selector. /// @dev All inflight txs from the remote pool will be rejected after it is removed. To ensure no loss of funds, there /// should be no inflight txs from the given pool. function removeRemotePool(uint64 remoteChainSelector, bytes calldata remotePoolAddress) external onlyOwner { if (!isSupportedChain(remoteChainSelector)) revert NonExistentChain(remoteChainSelector); if (!s_remoteChainConfigs[remoteChainSelector].remotePools.remove(keccak256(remotePoolAddress))) { revert InvalidRemotePoolForChain(remoteChainSelector, remotePoolAddress); } emit RemotePoolRemoved(remoteChainSelector, remotePoolAddress); } /// @inheritdoc IPoolV1 function isSupportedChain( uint64 remoteChainSelector ) public view returns (bool) { return s_remoteChainSelectors.contains(remoteChainSelector); } /// @notice Get list of allowed chains /// @return list of chains. function getSupportedChains() public view returns (uint64[] memory) { uint256[] memory uint256ChainSelectors = s_remoteChainSelectors.values(); uint64[] memory chainSelectors = new uint64[](uint256ChainSelectors.length); for (uint256 i = 0; i < uint256ChainSelectors.length; ++i) { chainSelectors[i] = uint64(uint256ChainSelectors[i]); } return chainSelectors; } /// @notice Sets the permissions for a list of chains selectors. Actual senders for these chains /// need to be allowed on the Router to interact with this pool. /// @param remoteChainSelectorsToRemove A list of chain selectors to remove. /// @param chainsToAdd A list of chains and their new permission status & rate limits. Rate limits /// are only used when the chain is being added through `allowed` being true. /// @dev Only callable by the owner function applyChainUpdates( uint64[] calldata remoteChainSelectorsToRemove, ChainUpdate[] calldata chainsToAdd ) external virtual onlyOwner { for (uint256 i = 0; i < remoteChainSelectorsToRemove.length; ++i) { uint64 remoteChainSelectorToRemove = remoteChainSelectorsToRemove[i]; // If the chain doesn't exist, revert if (!s_remoteChainSelectors.remove(remoteChainSelectorToRemove)) { revert NonExistentChain(remoteChainSelectorToRemove); } // Remove all remote pool hashes for the chain bytes32[] memory remotePools = s_remoteChainConfigs[remoteChainSelectorToRemove].remotePools.values(); for (uint256 j = 0; j < remotePools.length; ++j) { s_remoteChainConfigs[remoteChainSelectorToRemove].remotePools.remove(remotePools[j]); } delete s_remoteChainConfigs[remoteChainSelectorToRemove]; emit ChainRemoved(remoteChainSelectorToRemove); } for (uint256 i = 0; i < chainsToAdd.length; ++i) { ChainUpdate memory newChain = chainsToAdd[i]; RateLimiter._validateTokenBucketConfig(newChain.outboundRateLimiterConfig, false); RateLimiter._validateTokenBucketConfig(newChain.inboundRateLimiterConfig, false); if (newChain.remoteTokenAddress.length == 0) { revert ZeroAddressNotAllowed(); } // If the chain already exists, revert if (!s_remoteChainSelectors.add(newChain.remoteChainSelector)) { revert ChainAlreadyExists(newChain.remoteChainSelector); } RemoteChainConfig storage remoteChainConfig = s_remoteChainConfigs[newChain.remoteChainSelector]; remoteChainConfig.outboundRateLimiterConfig = RateLimiter.TokenBucket({ rate: newChain.outboundRateLimiterConfig.rate, capacity: newChain.outboundRateLimiterConfig.capacity, tokens: newChain.outboundRateLimiterConfig.capacity, lastUpdated: uint32(block.timestamp), isEnabled: newChain.outboundRateLimiterConfig.isEnabled }); remoteChainConfig.inboundRateLimiterConfig = RateLimiter.TokenBucket({ rate: newChain.inboundRateLimiterConfig.rate, capacity: newChain.inboundRateLimiterConfig.capacity, tokens: newChain.inboundRateLimiterConfig.capacity, lastUpdated: uint32(block.timestamp), isEnabled: newChain.inboundRateLimiterConfig.isEnabled }); remoteChainConfig.remoteTokenAddress = newChain.remoteTokenAddress; for (uint256 j = 0; j < newChain.remotePoolAddresses.length; ++j) { _setRemotePool(newChain.remoteChainSelector, newChain.remotePoolAddresses[j]); } emit ChainAdded( newChain.remoteChainSelector, newChain.remoteTokenAddress, newChain.outboundRateLimiterConfig, newChain.inboundRateLimiterConfig ); } } /// @notice Adds a pool address to the allowed remote token pools for a particular chain. /// @param remoteChainSelector The remote chain selector for which the remote pool address is being added. /// @param remotePoolAddress The address of the new remote pool. function _setRemotePool(uint64 remoteChainSelector, bytes memory remotePoolAddress) internal { if (remotePoolAddress.length == 0) { revert ZeroAddressNotAllowed(); } bytes32 poolHash = keccak256(remotePoolAddress); // Check if the pool already exists. if (!s_remoteChainConfigs[remoteChainSelector].remotePools.add(poolHash)) { revert PoolAlreadyAdded(remoteChainSelector, remotePoolAddress); } // Add the pool to the mapping to be able to un-hash it later. s_remotePoolAddresses[poolHash] = remotePoolAddress; emit RemotePoolAdded(remoteChainSelector, remotePoolAddress); } // ================================================================ // │ Rate limiting │ // ================================================================ /// @dev The inbound rate limits should be slightly higher than the outbound rate limits. This is because many chains /// finalize blocks in batches. CCIP also commits messages in batches: the commit plugin bundles multiple messages in /// a single merkle root. /// Imagine the following scenario. /// - Chain A has an inbound and outbound rate limit of 100 tokens capacity and 1 token per second refill rate. /// - Chain B has an inbound and outbound rate limit of 100 tokens capacity and 1 token per second refill rate. /// /// At time 0: /// - Chain A sends 100 tokens to Chain B. /// At time 5: /// - Chain A sends 5 tokens to Chain B. /// At time 6: /// The epoch that contains blocks [0-5] is finalized. /// Both transactions will be included in the same merkle root and become executable at the same time. This means /// the token pool on chain B requires a capacity of 105 to successfully execute both messages at the same time. /// The exact additional capacity required depends on the refill rate and the size of the source chain epochs and the /// CCIP round time. For simplicity, a 5-10% buffer should be sufficient in most cases. /// @notice Sets the rate limiter admin address. /// @dev Only callable by the owner. /// @param rateLimitAdmin The new rate limiter admin address. function setRateLimitAdmin( address rateLimitAdmin ) external onlyOwner { s_rateLimitAdmin = rateLimitAdmin; emit RateLimitAdminSet(rateLimitAdmin); } /// @notice Gets the rate limiter admin address. function getRateLimitAdmin() external view returns (address) { return s_rateLimitAdmin; } /// @notice Consumes outbound rate limiting capacity in this pool function _consumeOutboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal { s_remoteChainConfigs[remoteChainSelector].outboundRateLimiterConfig._consume(amount, address(i_token)); } /// @notice Consumes inbound rate limiting capacity in this pool function _consumeInboundRateLimit(uint64 remoteChainSelector, uint256 amount) internal { s_remoteChainConfigs[remoteChainSelector].inboundRateLimiterConfig._consume(amount, address(i_token)); } /// @notice Gets the token bucket with its values for the block it was requested at. /// @return The token bucket. function getCurrentOutboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory) { return s_remoteChainConfigs[remoteChainSelector].outboundRateLimiterConfig._currentTokenBucketState(); } /// @notice Gets the token bucket with its values for the block it was requested at. /// @return The token bucket. function getCurrentInboundRateLimiterState( uint64 remoteChainSelector ) external view returns (RateLimiter.TokenBucket memory) { return s_remoteChainConfigs[remoteChainSelector].inboundRateLimiterConfig._currentTokenBucketState(); } /// @notice Sets the chain rate limiter config. /// @param remoteChainSelector The remote chain selector for which the rate limits apply. /// @param outboundConfig The new outbound rate limiter config, meaning the onRamp rate limits for the given chain. /// @param inboundConfig The new inbound rate limiter config, meaning the offRamp rate limits for the given chain. function setChainRateLimiterConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) external { if (msg.sender != s_rateLimitAdmin && msg.sender != owner()) revert Unauthorized(msg.sender); _setRateLimitConfig(remoteChainSelector, outboundConfig, inboundConfig); } function _setRateLimitConfig( uint64 remoteChainSelector, RateLimiter.Config memory outboundConfig, RateLimiter.Config memory inboundConfig ) internal { if (!isSupportedChain(remoteChainSelector)) revert NonExistentChain(remoteChainSelector); RateLimiter._validateTokenBucketConfig(outboundConfig, false); s_remoteChainConfigs[remoteChainSelector].outboundRateLimiterConfig._setTokenBucketConfig(outboundConfig); RateLimiter._validateTokenBucketConfig(inboundConfig, false); s_remoteChainConfigs[remoteChainSelector].inboundRateLimiterConfig._setTokenBucketConfig(inboundConfig); emit ChainConfigured(remoteChainSelector, outboundConfig, inboundConfig); } // ================================================================ // │ Access │ // ================================================================ /// @notice Checks whether remote chain selector is configured on this contract, and if the msg.sender /// is a permissioned onRamp for the given chain on the Router. function _onlyOnRamp( uint64 remoteChainSelector ) internal view { if (!isSupportedChain(remoteChainSelector)) revert ChainNotAllowed(remoteChainSelector); if (!(msg.sender == s_router.getOnRamp(remoteChainSelector))) revert CallerIsNotARampOnRouter(msg.sender); } /// @notice Checks whether remote chain selector is configured on this contract, and if the msg.sender /// is a permissioned offRamp for the given chain on the Router. function _onlyOffRamp( uint64 remoteChainSelector ) internal view { if (!isSupportedChain(remoteChainSelector)) revert ChainNotAllowed(remoteChainSelector); if (!s_router.isOffRamp(remoteChainSelector, msg.sender)) revert CallerIsNotARampOnRouter(msg.sender); } // ================================================================ // │ Allowlist │ // ================================================================ function _checkAllowList( address sender ) internal view { if (i_allowlistEnabled) { if (!s_allowlist.contains(sender)) { revert SenderNotAllowed(sender); } } } /// @notice Gets whether the allowlist functionality is enabled. /// @return true is enabled, false if not. function getAllowListEnabled() external view returns (bool) { return i_allowlistEnabled; } /// @notice Gets the allowed addresses. /// @return The allowed addresses. function getAllowList() external view returns (address[] memory) { return s_allowlist.values(); } /// @notice Apply updates to the allow list. /// @param removes The addresses to be removed. /// @param adds The addresses to be added. function applyAllowListUpdates(address[] calldata removes, address[] calldata adds) external onlyOwner { _applyAllowListUpdates(removes, adds); } /// @notice Internal version of applyAllowListUpdates to allow for reuse in the constructor. function _applyAllowListUpdates(address[] memory removes, address[] memory adds) internal { if (!i_allowlistEnabled) revert AllowListNotEnabled(); for (uint256 i = 0; i < removes.length; ++i) { address toRemove = removes[i]; if (s_allowlist.remove(toRemove)) { emit AllowListRemove(toRemove); } } for (uint256 i = 0; i < adds.length; ++i) { address toAdd = adds[i]; if (toAdd == address(0)) { continue; } if (s_allowlist.add(toAdd)) { emit AllowListAdd(toAdd); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } 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"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {Pool} from "../libraries/Pool.sol"; import {IERC165} from "../../vendor/openzeppelin-solidity/v5.0.2/contracts/utils/introspection/IERC165.sol"; /// @notice Shared public interface for multiple V1 pool types. /// Each pool type handles a different child token model (lock/unlock, mint/burn.) interface IPoolV1 is IERC165 { /// @notice Lock tokens into the pool or burn the tokens. /// @param lockOrBurnIn Encoded data fields for the processing of tokens on the source chain. /// @return lockOrBurnOut Encoded data fields for the processing of tokens on the destination chain. function lockOrBurn( Pool.LockOrBurnInV1 calldata lockOrBurnIn ) external returns (Pool.LockOrBurnOutV1 memory lockOrBurnOut); /// @notice Releases or mints tokens to the receiver address. /// @param releaseOrMintIn All data required to release or mint tokens. /// @return releaseOrMintOut The amount of tokens released or minted on the local chain, denominated /// in the local token's decimals. /// @dev The offramp asserts that the balanceOf of the receiver has been incremented by exactly the number /// of tokens that is returned in ReleaseOrMintOutV1.destinationAmount. If the amounts do not match, the tx reverts. function releaseOrMint( Pool.ReleaseOrMintInV1 calldata releaseOrMintIn ) external returns (Pool.ReleaseOrMintOutV1 memory); /// @notice Checks whether a remote chain is supported in the token pool. /// @param remoteChainSelector The selector of the remote chain. /// @return true if the given chain is a permissioned remote chain. function isSupportedChain( uint64 remoteChainSelector ) external view returns (bool); /// @notice Returns if the token pool supports the given token. /// @param token The address of the token. /// @return true if the token is supported by the pool. function isSupportedToken( address token ) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @notice This interface contains the only RMN-related functions that might be used on-chain by other CCIP contracts. interface IRMN { /// @notice A Merkle root tagged with the address of the commit store contract it is destined for. struct TaggedRoot { address commitStore; bytes32 root; } /// @notice Callers MUST NOT cache the return value as a blessed tagged root could become unblessed. function isBlessed( TaggedRoot calldata taggedRoot ) external view returns (bool); /// @notice Iff there is an active global or legacy curse, this function returns true. function isCursed() external view returns (bool); /// @notice Iff there is an active global curse, or an active curse for `subject`, this function returns true. /// @param subject To check whether a particular chain is cursed, set to bytes16(uint128(chainSelector)). function isCursed( bytes16 subject ) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {Client} from "../libraries/Client.sol"; interface IRouter { error OnlyOffRamp(); /// @notice Route the message to its intended receiver contract. /// @param message Client.Any2EVMMessage struct. /// @param gasForCallExactCheck of params for exec /// @param gasLimit set of params for exec /// @param receiver set of params for exec /// @dev if the receiver is a contracts that signals support for CCIP execution through EIP-165. /// the contract is called. If not, only tokens are transferred. /// @return success A boolean value indicating whether the ccip message was received without errors. /// @return retBytes A bytes array containing return data form CCIP receiver. /// @return gasUsed the gas used by the external customer call. Does not include any overhead. function routeMessage( Client.Any2EVMMessage calldata message, uint16 gasForCallExactCheck, uint256 gasLimit, address receiver ) external returns (bool success, bytes memory retBytes, uint256 gasUsed); /// @notice Returns the configured onramp for a specific destination chain. /// @param destChainSelector The destination chain Id to get the onRamp for. /// @return onRampAddress The address of the onRamp. function getOnRamp( uint64 destChainSelector ) external view returns (address onRampAddress); /// @notice Return true if the given offRamp is a configured offRamp for the given source chain. /// @param sourceChainSelector The source chain selector to check. /// @param offRamp The address of the offRamp to check. function isOffRamp(uint64 sourceChainSelector, address offRamp) external view returns (bool isOffRamp); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import {Ownable2Step} from "./Ownable2Step.sol"; /// @notice Sets the msg.sender to be the owner of the contract and does not set a pending owner. contract Ownable2StepMsgSender is Ownable2Step { constructor() Ownable2Step(msg.sender, address(0)) {} }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.4; /// @notice Implements Token Bucket rate limiting. /// @dev uint128 is safe for rate limiter state. /// For USD value rate limiting, it can adequately store USD value in 18 decimals. /// For ERC20 token amount rate limiting, all tokens that will be listed will have at most /// a supply of uint128.max tokens, and it will therefore not overflow the bucket. /// In exceptional scenarios where tokens consumed may be larger than uint128, /// e.g. compromised issuer, an enabled RateLimiter will check and revert. library RateLimiter { error BucketOverfilled(); error OnlyCallableByAdminOrOwner(); error TokenMaxCapacityExceeded(uint256 capacity, uint256 requested, address tokenAddress); error TokenRateLimitReached(uint256 minWaitInSeconds, uint256 available, address tokenAddress); error AggregateValueMaxCapacityExceeded(uint256 capacity, uint256 requested); error AggregateValueRateLimitReached(uint256 minWaitInSeconds, uint256 available); error InvalidRateLimitRate(Config rateLimiterConfig); error DisabledNonZeroRateLimit(Config config); error RateLimitMustBeDisabled(); event TokensConsumed(uint256 tokens); event ConfigChanged(Config config); struct TokenBucket { uint128 tokens; // ──────╮ Current number of tokens that are in the bucket. uint32 lastUpdated; // │ Timestamp in seconds of the last token refill, good for 100+ years. bool isEnabled; // ──────╯ Indication whether the rate limiting is enabled or not uint128 capacity; // ────╮ Maximum number of tokens that can be in the bucket. uint128 rate; // ────────╯ Number of tokens per second that the bucket is refilled. } struct Config { bool isEnabled; // Indication whether the rate limiting should be enabled uint128 capacity; // ────╮ Specifies the capacity of the rate limiter uint128 rate; // ───────╯ Specifies the rate of the rate limiter } /// @notice _consume removes the given tokens from the pool, lowering the /// rate tokens allowed to be consumed for subsequent calls. /// @param requestTokens The total tokens to be consumed from the bucket. /// @param tokenAddress The token to consume capacity for, use 0x0 to indicate aggregate value capacity. /// @dev Reverts when requestTokens exceeds bucket capacity or available tokens in the bucket /// @dev emits removal of requestTokens if requestTokens is > 0 function _consume(TokenBucket storage s_bucket, uint256 requestTokens, address tokenAddress) internal { // If there is no value to remove or rate limiting is turned off, skip this step to reduce gas usage if (!s_bucket.isEnabled || requestTokens == 0) { return; } uint256 tokens = s_bucket.tokens; uint256 capacity = s_bucket.capacity; uint256 timeDiff = block.timestamp - s_bucket.lastUpdated; if (timeDiff != 0) { if (tokens > capacity) revert BucketOverfilled(); // Refill tokens when arriving at a new block time tokens = _calculateRefill(capacity, tokens, timeDiff, s_bucket.rate); s_bucket.lastUpdated = uint32(block.timestamp); } if (capacity < requestTokens) { // Token address 0 indicates consuming aggregate value rate limit capacity. if (tokenAddress == address(0)) revert AggregateValueMaxCapacityExceeded(capacity, requestTokens); revert TokenMaxCapacityExceeded(capacity, requestTokens, tokenAddress); } if (tokens < requestTokens) { uint256 rate = s_bucket.rate; // Wait required until the bucket is refilled enough to accept this value, round up to next higher second // Consume is not guaranteed to succeed after wait time passes if there is competing traffic. // This acts as a lower bound of wait time. uint256 minWaitInSeconds = ((requestTokens - tokens) + (rate - 1)) / rate; if (tokenAddress == address(0)) revert AggregateValueRateLimitReached(minWaitInSeconds, tokens); revert TokenRateLimitReached(minWaitInSeconds, tokens, tokenAddress); } tokens -= requestTokens; // Downcast is safe here, as tokens is not larger than capacity s_bucket.tokens = uint128(tokens); emit TokensConsumed(requestTokens); } /// @notice Gets the token bucket with its values for the block it was requested at. /// @return The token bucket. function _currentTokenBucketState( TokenBucket memory bucket ) internal view returns (TokenBucket memory) { // We update the bucket to reflect the status at the exact time of the // call. This means we might need to refill a part of the bucket based // on the time that has passed since the last update. bucket.tokens = uint128(_calculateRefill(bucket.capacity, bucket.tokens, block.timestamp - bucket.lastUpdated, bucket.rate)); bucket.lastUpdated = uint32(block.timestamp); return bucket; } /// @notice Sets the rate limited config. /// @param s_bucket The token bucket /// @param config The new config function _setTokenBucketConfig(TokenBucket storage s_bucket, Config memory config) internal { // First update the bucket to make sure the proper rate is used for all the time // up until the config change. uint256 timeDiff = block.timestamp - s_bucket.lastUpdated; if (timeDiff != 0) { s_bucket.tokens = uint128(_calculateRefill(s_bucket.capacity, s_bucket.tokens, timeDiff, s_bucket.rate)); s_bucket.lastUpdated = uint32(block.timestamp); } s_bucket.tokens = uint128(_min(config.capacity, s_bucket.tokens)); s_bucket.isEnabled = config.isEnabled; s_bucket.capacity = config.capacity; s_bucket.rate = config.rate; emit ConfigChanged(config); } /// @notice Validates the token bucket config function _validateTokenBucketConfig(Config memory config, bool mustBeDisabled) internal pure { if (config.isEnabled) { if (config.rate >= config.capacity || config.rate == 0) { revert InvalidRateLimitRate(config); } if (mustBeDisabled) { revert RateLimitMustBeDisabled(); } } else { if (config.rate != 0 || config.capacity != 0) { revert DisabledNonZeroRateLimit(config); } } } /// @notice Calculate refilled tokens /// @param capacity bucket capacity /// @param tokens current bucket tokens /// @param timeDiff block time difference since last refill /// @param rate bucket refill rate /// @return the value of tokens after refill function _calculateRefill( uint256 capacity, uint256 tokens, uint256 timeDiff, uint256 rate ) private pure returns (uint256) { return _min(capacity, tokens + timeDiff * rate); } /// @notice Return the smallest of two integers /// @param a first int /// @param b second int /// @return smallest function _min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.20; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position is the index of the value in the `values` array plus 1. // Position 0 is used to mean a value is not in the set. mapping(bytes32 value => uint256) _positions; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._positions[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We cache the value's position to prevent multiple reads from the same storage slot uint256 position = set._positions[value]; if (position != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 valueIndex = position - 1; uint256 lastIndex = set._values.length - 1; if (valueIndex != lastIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the lastValue to the index where the value to delete is set._values[valueIndex] = lastValue; // Update the tracked position of the lastValue (that was just moved) set._positions[lastValue] = position; } // Delete the slot where the moved value was stored set._values.pop(); // Delete the tracked position for the deleted slot delete set._positions[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._positions[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // End consumer library. library Client { /// @dev RMN depends on this struct, if changing, please notify the RMN maintainers. struct EVMTokenAmount { address token; // token address on the local chain. uint256 amount; // Amount of tokens. } struct Any2EVMMessage { bytes32 messageId; // MessageId corresponding to ccipSend on source. uint64 sourceChainSelector; // Source chain selector. bytes sender; // abi.decode(sender) if coming from an EVM chain. bytes data; // payload sent in original message. EVMTokenAmount[] destTokenAmounts; // Tokens and their amounts in their destination chain representation. } // If extraArgs is empty bytes, the default is 200k gas limit. struct EVM2AnyMessage { bytes receiver; // abi.encode(receiver address) for dest EVM chains bytes data; // Data payload EVMTokenAmount[] tokenAmounts; // Token transfers address feeToken; // Address of feeToken. address(0) means you will send msg.value. bytes extraArgs; // Populate this with _argsToBytes(EVMExtraArgsV2) } // bytes4(keccak256("CCIP EVMExtraArgsV1")); bytes4 public constant EVM_EXTRA_ARGS_V1_TAG = 0x97a657c9; struct EVMExtraArgsV1 { uint256 gasLimit; } function _argsToBytes( EVMExtraArgsV1 memory extraArgs ) internal pure returns (bytes memory bts) { return abi.encodeWithSelector(EVM_EXTRA_ARGS_V1_TAG, extraArgs); } // bytes4(keccak256("CCIP EVMExtraArgsV2")); bytes4 public constant EVM_EXTRA_ARGS_V2_TAG = 0x181dcf10; /// @param gasLimit: gas limit for the callback on the destination chain. /// @param allowOutOfOrderExecution: if true, it indicates that the message can be executed in any order relative to other messages from the same sender. /// This value's default varies by chain. On some chains, a particular value is enforced, meaning if the expected value /// is not set, the message request will revert. struct EVMExtraArgsV2 { uint256 gasLimit; bool allowOutOfOrderExecution; } function _argsToBytes( EVMExtraArgsV2 memory extraArgs ) internal pure returns (bytes memory bts) { return abi.encodeWithSelector(EVM_EXTRA_ARGS_V2_TAG, extraArgs); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import {IOwnable} from "../interfaces/IOwnable.sol"; /// @notice A minimal contract that implements 2-step ownership transfer and nothing more. It's made to be minimal /// to reduce the impact of the bytecode size on any contract that inherits from it. contract Ownable2Step is IOwnable { /// @notice The pending owner is the address to which ownership may be transferred. address private s_pendingOwner; /// @notice The owner is the current owner of the contract. /// @dev The owner is the second storage variable so any implementing contract could pack other state with it /// instead of the much less used s_pendingOwner. address private s_owner; error OwnerCannotBeZero(); error MustBeProposedOwner(); error CannotTransferToSelf(); error OnlyCallableByOwner(); event OwnershipTransferRequested(address indexed from, address indexed to); event OwnershipTransferred(address indexed from, address indexed to); constructor(address newOwner, address pendingOwner) { if (newOwner == address(0)) { revert OwnerCannotBeZero(); } s_owner = newOwner; if (pendingOwner != address(0)) { _transferOwnership(pendingOwner); } } /// @notice Get the current owner function owner() public view override returns (address) { return s_owner; } /// @notice Allows an owner to begin transferring ownership to a new address. The new owner needs to call /// `acceptOwnership` to accept the transfer before any permissions are changed. /// @param to The address to which ownership will be transferred. function transferOwnership(address to) public override onlyOwner { _transferOwnership(to); } /// @notice validate, transfer ownership, and emit relevant events /// @param to The address to which ownership will be transferred. function _transferOwnership(address to) private { if (to == msg.sender) { revert CannotTransferToSelf(); } s_pendingOwner = to; emit OwnershipTransferRequested(s_owner, to); } /// @notice Allows an ownership transfer to be completed by the recipient. function acceptOwnership() external override { if (msg.sender != s_pendingOwner) { revert MustBeProposedOwner(); } address oldOwner = s_owner; s_owner = msg.sender; s_pendingOwner = address(0); emit OwnershipTransferred(oldOwner, msg.sender); } /// @notice validate access function _validateOwnership() internal view { if (msg.sender != s_owner) { revert OnlyCallableByOwner(); } } /// @notice Reverts if called by anyone other than the contract owner. modifier onlyOwner() { _validateOwnership(); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IOwnable { function owner() external returns (address); function transferOwnership(address recipient) external; function acceptOwnership() external; }
{ "remappings": [ "forge-std/=lib/forge-std/src/", "ccip/=lib/ccip/contracts/src/v0.8/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": true, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint8","name":"localTokenDecimals","type":"uint8"},{"internalType":"address[]","name":"allowlist","type":"address[]"},{"internalType":"address","name":"rmnProxy","type":"address"},{"internalType":"bool","name":"acceptLiquidity","type":"bool"},{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"capacity","type":"uint256"},{"internalType":"uint256","name":"requested","type":"uint256"}],"name":"AggregateValueMaxCapacityExceeded","type":"error"},{"inputs":[{"internalType":"uint256","name":"minWaitInSeconds","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"AggregateValueRateLimitReached","type":"error"},{"inputs":[],"name":"AllowListNotEnabled","type":"error"},{"inputs":[],"name":"BucketOverfilled","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerIsNotARampOnRouter","type":"error"},{"inputs":[],"name":"CannotTransferToSelf","type":"error"},{"inputs":[{"internalType":"uint64","name":"chainSelector","type":"uint64"}],"name":"ChainAlreadyExists","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"ChainNotAllowed","type":"error"},{"inputs":[],"name":"CursedByRMN","type":"error"},{"inputs":[{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"config","type":"tuple"}],"name":"DisabledNonZeroRateLimit","type":"error"},{"inputs":[],"name":"InsufficientLiquidity","type":"error"},{"inputs":[{"internalType":"uint8","name":"expected","type":"uint8"},{"internalType":"uint8","name":"actual","type":"uint8"}],"name":"InvalidDecimalArgs","type":"error"},{"inputs":[{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"rateLimiterConfig","type":"tuple"}],"name":"InvalidRateLimitRate","type":"error"},{"inputs":[{"internalType":"bytes","name":"sourcePoolData","type":"bytes"}],"name":"InvalidRemoteChainDecimals","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"InvalidRemotePoolForChain","type":"error"},{"inputs":[{"internalType":"bytes","name":"sourcePoolAddress","type":"bytes"}],"name":"InvalidSourcePoolAddress","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"LiquidityNotAccepted","type":"error"},{"inputs":[],"name":"MustBeProposedOwner","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"NonExistentChain","type":"error"},{"inputs":[],"name":"OnlyCallableByOwner","type":"error"},{"inputs":[{"internalType":"uint8","name":"remoteDecimals","type":"uint8"},{"internalType":"uint8","name":"localDecimals","type":"uint8"},{"internalType":"uint256","name":"remoteAmount","type":"uint256"}],"name":"OverflowDetected","type":"error"},{"inputs":[],"name":"OwnerCannotBeZero","type":"error"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"PoolAlreadyAdded","type":"error"},{"inputs":[],"name":"RateLimitMustBeDisabled","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"SenderNotAllowed","type":"error"},{"inputs":[{"internalType":"uint256","name":"capacity","type":"uint256"},{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"TokenMaxCapacityExceeded","type":"error"},{"inputs":[{"internalType":"uint256","name":"minWaitInSeconds","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"TokenRateLimitReached","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"ZeroAddressNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AllowListAdd","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AllowListRemove","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"remoteToken","type":"bytes"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"outboundRateLimiterConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"inboundRateLimiterConfig","type":"tuple"}],"name":"ChainAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"outboundRateLimiterConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"inboundRateLimiterConfig","type":"tuple"}],"name":"ChainConfigured","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"ChainRemoved","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"indexed":false,"internalType":"struct RateLimiter.Config","name":"config","type":"tuple"}],"name":"ConfigChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"provider","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LiquidityRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LiquidityTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"OwnershipTransferRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"rateLimitAdmin","type":"address"}],"name":"RateLimitAdminSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Released","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"RemotePoolAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"RemotePoolRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldRouter","type":"address"},{"indexed":false,"internalType":"address","name":"newRouter","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"TokensConsumed","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"addRemotePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"removes","type":"address[]"},{"internalType":"address[]","name":"adds","type":"address[]"}],"name":"applyAllowListUpdates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64[]","name":"remoteChainSelectorsToRemove","type":"uint64[]"},{"components":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes[]","name":"remotePoolAddresses","type":"bytes[]"},{"internalType":"bytes","name":"remoteTokenAddress","type":"bytes"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"outboundRateLimiterConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"inboundRateLimiterConfig","type":"tuple"}],"internalType":"struct TokenPool.ChainUpdate[]","name":"chainsToAdd","type":"tuple[]"}],"name":"applyChainUpdates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canAcceptLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllowList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllowListEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getCurrentInboundRateLimiterState","outputs":[{"components":[{"internalType":"uint128","name":"tokens","type":"uint128"},{"internalType":"uint32","name":"lastUpdated","type":"uint32"},{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.TokenBucket","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getCurrentOutboundRateLimiterState","outputs":[{"components":[{"internalType":"uint128","name":"tokens","type":"uint128"},{"internalType":"uint32","name":"lastUpdated","type":"uint32"},{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.TokenBucket","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRateLimitAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRebalancer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getRemotePools","outputs":[{"internalType":"bytes[]","name":"","type":"bytes[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"getRemoteToken","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRmnProxy","outputs":[{"internalType":"address","name":"rmnProxy","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouter","outputs":[{"internalType":"address","name":"router","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupportedChains","outputs":[{"internalType":"uint64[]","name":"","type":"uint64[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToken","outputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenDecimals","outputs":[{"internalType":"uint8","name":"decimals","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"isRemotePool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"}],"name":"isSupportedChain","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"isSupportedToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"receiver","type":"bytes"},{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"address","name":"originalSender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"localToken","type":"address"}],"internalType":"struct Pool.LockOrBurnInV1","name":"lockOrBurnIn","type":"tuple"}],"name":"lockOrBurn","outputs":[{"components":[{"internalType":"bytes","name":"destTokenAddress","type":"bytes"},{"internalType":"bytes","name":"destPoolData","type":"bytes"}],"internalType":"struct Pool.LockOrBurnOutV1","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"provideLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes","name":"originalSender","type":"bytes"},{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"localToken","type":"address"},{"internalType":"bytes","name":"sourcePoolAddress","type":"bytes"},{"internalType":"bytes","name":"sourcePoolData","type":"bytes"},{"internalType":"bytes","name":"offchainTokenData","type":"bytes"}],"internalType":"struct Pool.ReleaseOrMintInV1","name":"releaseOrMintIn","type":"tuple"}],"name":"releaseOrMint","outputs":[{"components":[{"internalType":"uint256","name":"destinationAmount","type":"uint256"}],"internalType":"struct Pool.ReleaseOrMintOutV1","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"internalType":"bytes","name":"remotePoolAddress","type":"bytes"}],"name":"removeRemotePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"remoteChainSelector","type":"uint64"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"outboundConfig","type":"tuple"},{"components":[{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"uint128","name":"capacity","type":"uint128"},{"internalType":"uint128","name":"rate","type":"uint128"}],"internalType":"struct RateLimiter.Config","name":"inboundConfig","type":"tuple"}],"name":"setChainRateLimiterConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rateLimitAdmin","type":"address"}],"name":"setRateLimitAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rebalancer","type":"address"}],"name":"setRebalancer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"typeAndVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610120604081815234620003e45762003b8580380380916200002282866200045a565b8439820160c083820312620003e4578251906001600160a01b0380831691828403620003e457602092620000588488016200047e565b878701516001600160401b039290838111620003e45789019380601f86011215620003e45784519484861162000444578560051b908a51966200009e8a8401896200045a565b87528880880192820101928311620003e45788809101915b838310620004295750505050620000d060608a016200048d565b9160808a0151998a15158b03620003e45760a0620000ef91016200048d565b9133156200041857600180546001600160a01b0319908116331782559099909490821580156200040d575b801562000402575b620003f157918893918a96959360805260c0528b519586809263313ce56760e01b825260049889915afa60009181620003ab575b5062000371575b5060a0521690825416178155825115158060e05262000212575b610100888152875161351d91826200066883396080518281816102a7015281816113bd01528181611b9701528181611e5701528181611ea10152611f5e015260a05182818161155701528181611e120152818161270a0152612776015260c051828181610a66015281816114230152611c07015260e051828181610a2b0152818161146701526119e601525181818161023d0152610ee00152f35b865191858301908111838210176200035c5787526000825260e051156200034e575084939291906000855b620002d3575b50506000935b62000256575b8062000177565b8051841015620002cd5784848362000270839785620004a2565b51168015620002c657856200028582620005f7565b62000296575b50505b019362000249565b7f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d8918a51908152a138856200028b565b506200028e565b6200024f565b8195929394955181101562000343578085620002f1859385620004a2565b511687620002ff82620004e9565b62000313575b50500182959493926200023d565b7f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf7566918b51908152a1388762000305565b949392919462000243565b86516335f4a7b360e01b8152fd5b604182634e487b7160e01b6000525260246000fd5b60ff919293501660ff82168181036200038f5788939291506200015d565b60449186918d51926332ad3e0760e11b84528301526024820152fd5b945090508984813d8111620003e9575b620003c781836200045a565b81010312620003e457620003dc89946200047e565b903862000156565b600080fd5b503d620003bb565b8b516342bcdf7f60e11b8152600490fd5b508882161562000122565b50888516156200011a565b8951639b15e16f60e01b8152600490fd5b819062000436846200048d565b8152019101908890620000b6565b634e487b7160e01b600052604160045260246000fd5b601f909101601f19168101906001600160401b038211908210176200044457604052565b519060ff82168203620003e457565b51906001600160a01b0382168203620003e457565b8051821015620004b75760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b600254811015620004b757600260005260206000200190600090565b6000818152600360205260408120549091908015620005f25760001990808201818111620005de5760025490838201918211620005ca5781810362000579575b505050600254801562000565578101906200054482620004cd565b909182549160031b1b19169055600255815260036020526040812055600190565b634e487b7160e01b84526031600452602484fd5b620005b36200058c6200059c93620004cd565b90549060031b1c928392620004cd565b819391549060031b91821b91600019901b19161790565b905584526003602052604084205538808062000529565b634e487b7160e01b86526011600452602486fd5b634e487b7160e01b85526011600452602485fd5b505090565b6000818152600360205260408120546200066257600254680100000000000000008110156200064e5790826200063a6200059c84600160409601600255620004cd565b905560025492815260036020522055600190565b634e487b7160e01b82526041600452602482fd5b90509056fe608080604052600436101561001357600080fd5b600090813560e01c90816301ffc9a714612029575080630a861f2a14611f2e578063181f5a7714611ed057806321df0da714611e8b578063240028e814611e3657806324f65ee714611df85780633907753714611b42578063432a6ba314611b195780634c5ef0ed14611aff57806354c8a4f3146119b257806362ddd3c41461194357806366320087146118855780636cfd1553146118455780636d3d1a581461181c57806379ba5097146117a15780637d54534e146117335780638926f54f146116ee5780638da5cb5b146116c55780639a4575b91461135c578063a42a7b8b14611197578063a7cd63b7146110d8578063acfecf9114610ffa578063af58d59f14610f67578063b0f479a114610f3e578063b794658014610f05578063bb98546b14610ec8578063c0d7865514610e4b578063c4bffe2b14610d23578063c75eea9c14610c3e578063cf7401f314610a95578063dc0bd97114610a50578063e0351e1314610a13578063e8a1da171461031d578063eb521a4c146102265763f2fde38b146101a257600080fd5b34610223576020366003190112610223576101bb6121ae565b6101c3612853565b6001600160a01b03908116903382146102115782546001600160a01b03191682178355600154167fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae12788380a380f35b604051636d6c4ee560e11b8152600490fd5b80fd5b5034610223576020366003190112610223576004357f00000000000000000000000000000000000000000000000000000000000000001561030b57600a546001600160a01b031633036102f3576102cb6040516323b872dd60e01b6020820152336024820152306044820152826064820152606481526102a5816120fc565b7f0000000000000000000000000000000000000000000000000000000000000000612b67565b337fc17cea59c2955cb181b03393209566960365771dbba9dc3d510180e7cb3120888380a380f35b60405163472511eb60e11b8152336004820152602490fd5b604051633a4fe3e960e21b8152600490fd5b50346102235761032c36612261565b93929091610338612853565b83915b8183106108915750505081905b838210610353578280f35b8160051b81013561011e198236030181121561088d57810192610120843603126102235760405193610384856120fc565b80356001600160401b038116810361088857855260208101356001600160401b03811161084e57810136601f8201121561084e578035906103c4826123d2565b916103d26040519384612132565b80835260208084019160051b830101903682116108845760208301905b8282106108525750505050602086015260408101356001600160401b03811161084e57906104236104449236908301612604565b604087015261043536606083016122bf565b606087015260c03691016122bf565b60808501526104566060850151612abf565b6104636080850151612abf565b6040840151511561083c576104816001600160401b03855116613194565b1561081a576001600160401b03845116815260076020526040812061062960608601516001600160801b0390610570826040830151168360208401511692511515928160806040516104d2816120fc565b8381524263ffffffff811660208301526040820188905260608201859052910191909152875463ffffffff60801b1983166001600160a01b03199091161760809190911b63ffffffff60801b161787556001600160801b03199361054a90885460ff60a01b191690151560a01b60ff60a01b16178855565b600187019084825416178155906001600160801b0382549181199060801b169116179055565b6080880151610604836040830151169360208301511691511515846080604051610599816120fc565b8581524263ffffffff81166020830152604082018590526060820187905291019190915260028801805463ffffffff60801b1990871686171660809290921b63ffffffff60801b16919091178155805460ff60a01b191691151560a01b60ff60a01b16919091179055565b6003850191825416178155906001600160801b0382549181199060801b169116179055565b60408501518051906001600160401b0382116108065761064c6004840154612485565b601f81116107c8575b50602090601f831160011461075b579180610689926004948792610750575b50508160011b916000199060031b1c19161790565b9101555b805b602085015180518210156106c657906106c06001926106b9836001600160401b038a51169261245b565b5190612879565b0161068f565b50509392917f8d340f17e19058004c20453540862a9c62778504476f6756755cb33bcd6c38c2600192936001600160401b038151166040820151916107436080606083015192015161073961072e60405196879661010090885280602089015287019061216e565b93604086019061261f565b60a084019061261f565b0390a10190929192610348565b015190503880610674565b906004840185526020852091855b601f19851681106107b05750918391600193600495601f19811610610797575b505050811b0191015561068d565b015160001960f88460031b161c19169055388080610789565b91926020600181928685015181550194019201610769565b6107f69060048501865260208620601f850160051c810191602086106107fc575b601f0160051c01906125c4565b38610655565b90915081906107e9565b634e487b7160e01b84526041600452602484fd5b60246001600160401b0385511660405190631d5ad3c560e01b82526004820152fd5b6040516342bcdf7f60e11b8152600490fd5b8280fd5b81356001600160401b038111610880576020916108758392833691890101612604565b8152019101906103ef565b8780fd5b8580fd5b600080fd5b8380fd5b91939092946005926001600160401b036108ae87861b8301612447565b16906108b982612e40565b156109fa57818452600792602098848a526108d8876040882001612c68565b97865b895181101561091057806109098b6109028f948d60408e8e6001998f83525220019261245b565b5190612ee9565b50016108db565b50969198949097509892919498828a52835260408920908982556001918a838201558a60028201558a60038201558a6004820161094d8154612485565b806109bb575b505050018054908a81558161099e575b505050600192917f5204aec90a3c794d8e90fded8b46ae9c7c552803e7e832e0c1d358396d85991691604051908152a101919094939461033b565b8a52838a20908101905b81811015610963576000815582016109a8565b601f8082116001146109d757505060009150555b8a3880610953565b916109f3600092938286528a86209401871c84018885016125c4565b55556109cf565b604051631e670e4b60e01b815260048101839052602490fd5b503461022357806003193601126102235760206040517f000000000000000000000000000000000000000000000000000000000000000015158152f35b50346102235780600319360112610223576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50346102235760e036600319011261022357610aaf6121c4565b60603660231901126108885760405190610ac882612117565b60243580151581036108885782526001600160801b03906044358281168103610888576020840152606435828116810361088857604084015260603660831901126108885760405191610b1a83612117565b608435801515810361088857835260a435818116810361088857602084015260c4359081168103610888576040830152600954336001600160a01b0391821614159081610c2f575b506102f3576001600160401b031691610b88836000526006602052604060002054151590565b15610c165791610c1260e092610c0885610bc27f0350d63aa5f270e01729d00d627eeb8f3429772b1818c016c66a588a864f912b97612abf565b8488526007602052610bd78160408a20612fe6565b610be083612abf565b8488526007602052610bf883600260408b2001612fe6565b604051948552602085019061261f565b608083019061261f565ba180f35b604051631e670e4b60e01b815260048101849052602490fd5b90506001541633141538610b62565b503461022357602036600319011261022357610cce6040610d1f926001600160401b03610c696121c4565b610c716124e0565b5016815260076020522060405190610c88826120fc565b600181549160ff6001600160801b0393848116865263ffffffff8160801c16602087015260a01c16151560408501520154908116606083015260801c6080820152612a55565b60405191829182919091608060a0820193816001600160801b039182815116855263ffffffff6020820151166020860152604081015115156040860152826060820151166060860152015116910152565b0390f35b5034610223578060031936011261022357604051809160055480835283602080940160056000527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db09260005b86828210610e3557505050610d8692500384612132565b825190610dab610d95836123d2565b92610da36040519485612132565b8084526123d2565b82840190601f1901368237815b8551811015610de957806001600160401b03610dd66001938961245b565b5116610de2828761245b565b5201610db8565b508390839260405193838594850191818652518092526040850193925b828110610e1557505050500390f35b83516001600160401b031685528695509381019392810192600101610e06565b8554845260019586019589955093019201610d6f565b503461022357602036600319011261022357610e656121ae565b610e6d612853565b6001600160a01b03908116801561083c577f02dc5c233404867c793b749c6d644beb2277536d18a7e7974d3f238e4c6f16849160409160045491816001600160601b0360a01b8416176004558351921682526020820152a180f35b503461022357806003193601126102235760206040517f000000000000000000000000000000000000000000000000000000000000000015158152f35b503461022357602036600319011261022357610d1f610f2a610f256121c4565b61250b565b60405191829160208352602083019061216e565b50346102235780600319360112610223576004546040516001600160a01b039091168152602090f35b503461022357602036600319011261022357610cce6040610d1f926001600160401b03610f926121c4565b610f9a6124e0565b5016815260076020522060405190610fb1826120fc565b600360028201549160ff6001600160801b0393848116865263ffffffff8160801c16602087015260a01c16151560408501520154908116606083015260801c6080820152612a55565b5034610223576001600160401b03611011366121da565b92909161101c612853565b1691611035836000526006602052604060002054151590565b15610c165782845260076020526110646005604086200161105736848661233d565b6020815191012090612ee9565b156110a957907f52d00ee4d9bd51b40168f2afc5848837288ce258784ad914278791464b3f4d76916110a36040519283926020845260208401916124bf565b0390a280f35b826110d483604051938493631d3c8f1f60e21b855260048501526040602485015260448401916124bf565b0390fd5b50346102235780600319360112610223576040518091600254908183526020809301809260026000527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9060005b818110611183575050508461113c910385612132565b60405193838594850191818652518092526040850193925b82811061116357505050500390f35b83516001600160a01b031685528695509381019392810192600101611154565b825484529286019260019283019201611126565b503461022357602080600319360112611358576001600160401b036111ba6121c4565b168252600781526005906111d360056040852001612c68565b918251916111f96111e3846123d2565b936111f16040519586612132565b8085526123d2565b601f190181865b82811061134857505050845b84518110156112e75761121f818661245b565b518652600882526040862060405190879080549061123c82612485565b908185526001928784821691826000146112c2575050600114611289575b5050509061126d81600194930382612132565b611277828761245b565b52611282818661245b565b500161120c565b8693508a52828a20918a925b8284106112ad5750505082010161126d82600161125a565b80548685018601528794909301928101611295565b60ff191687820152921515891b8601909201935061126d92508491506001905061125a565b509392505060405191838301848452825180915260408401948060408360051b870101940192955b82871061131c5785850386f35b909192938280611338600193603f198a8203018652885161216e565b960192019601959291909261130f565b6060828288010152018290611200565b5080fd5b5034610223576020600319818136011261084e57600435926001600160401b03918285116113585760a09085360301126102235760608360405161139f816120e1565b828152015260848401936113b285612374565b6001600160a01b03957f00000000000000000000000000000000000000000000000000000000000000008716939187168490036116a3575060248281019667ffffffffffffffff60801b61140589612447565b60801b1660405190632cbc26bb60e01b8252600482015287818481857f0000000000000000000000000000000000000000000000000000000000000000165afa908115611610578491611676575b50611664578061146560448601612374565b7f0000000000000000000000000000000000000000000000000000000000000000611632575b50508561149789612447565b166114af816000526006602052604060002054151590565b1561161b5787826004541691846040518094819363a8d87a3b60e01b835260048301525afa9081156116105784916115da575b501633036115c5575094610d1f9361151d61154c94610f25946040809a606461150a88612447565b93013595869316815260078b5220613238565b86519081527f9f1ec8c880f76798e7b793325d625e9b60e4082a553c98f42b6cda368dd60008863392a2612447565b916115b284519160ff7f00000000000000000000000000000000000000000000000000000000000000001681840152808352611587836120e1565b855194611593866120e1565b855280850192835285519586958287525191860152606085019061216e565b9051838203601f1901604085015261216e565b60405163728fe07b60e01b8152336004820152fd5b90508781813d8311611609575b6115f18183612132565b8101031261088d5751818116810361088d57386114e2565b503d6115e7565b6040513d86823e3d90fd5b9050604051906354c8163f60e11b82526004820152fd5b1680600052600388526040600020541561164d57819061148b565b9050604051906368692cbb60e11b82526004820152fd5b604051630a75a23b60e31b8152600490fd5b6116969150883d8a1161169c575b61168e8183612132565b810190612698565b38611453565b503d611684565b866116af602492612374565b60405163961c9a4f60e01b815291166004820152fd5b50346102235780600319360112610223576001546040516001600160a01b039091168152602090f35b50346102235760203660031901126102235760206117296001600160401b036117156121c4565b166000526006602052604060002054151590565b6040519015158152f35b5034610223576020366003190112610223577f44676b5284b809a22248eba0da87391d79098be38bb03154be88a58bf4d0917460206117706121ae565b611778612853565b600980546001600160a01b0319166001600160a01b03929092169182179055604051908152a180f35b503461022357806003193601126102235780546001600160a01b03808216330361180a57600154916001600160601b0360a01b9033828516176001551683553391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b60405163015aa1e360e11b8152600490fd5b50346102235780600319360112610223576009546040516001600160a01b039091168152602090f35b50346102235760203660031901126102235761185f6121ae565b611867612853565b60018060a01b03166001600160601b0360a01b600a541617600a5580f35b50346102235760403660031901126102235761189f6121ae565b602435906118ab612853565b6001600160a01b031690813b1561084e576040516305430f9560e11b815260048101829052838160248183875af1801561161057611913575b5060207f6fa7abcf1345d1d478e5ea0da6b5f26a90eadb0546ef15ed3833944fbfd1db6291604051908152a280f35b6001600160401b03819492941161192f576040529160206118e4565b634e487b7160e01b82526041600452602482fd5b503461022357611952366121da565b61195a612853565b6001600160401b03831661197b816000526006602052604060002054151590565b1561199a5750611997929161199191369161233d565b90612879565b80f35b60249060405190631e670e4b60e01b82526004820152fd5b5034610223576119db6119e36119c736612261565b94916119d4939193612853565b36916123e9565b9236916123e9565b907f000000000000000000000000000000000000000000000000000000000000000015611aed57825b8151811015611a72576001906001600160a01b03611a2a828561245b565b5116611a3581612d3f565b611a41575b5001611a0c565b60207f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf756691604051908152a138611a3a565b5050815b8151811015611ae9576001906001600160a01b03611a94828561245b565b51168015611ae357611aa581613142565b611ab2575b505b01611a76565b60207f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d891604051908152a138611aaa565b50611aac565b8280f35b6040516335f4a7b360e01b8152600490fd5b5034610223576020611729611b13366121da565b91612388565b5034610223578060031936011261022357600a546040516001600160a01b039091168152602090f35b5034610223576020600319818136011261084e576004356001600160401b03808211611df45761010082600401938336030112611df45784604051611b86816120b0565b526084820192611b9584612374565b7f0000000000000000000000000000000000000000000000000000000000000000966001600160a01b03958689169287168390036116a3575060248581019067ffffffffffffffff60801b611be983612447565b60801b1660405190632cbc26bb60e01b82526004820152898183818c7f0000000000000000000000000000000000000000000000000000000000000000165afa908115611610578491611dd7575b506116645785611c4683612447565b16611c5e816000526006602052604060002054151590565b15611dc257898960045416916044604051809481936383826b2b60e01b8352600483015233878301525afa908115611610578491611da5575b50156115c557611ca682612447565b611cb860a4890191611b13838961230b565b15611d7a57505093611d19611d14611d0d611d3396611d038a97611d389b8e9f9b60449f611d1f9a60076040926064611cf2600296612447565b9601359c8d96168352522001613238565b60c487019061230b565b369161233d565b6126b0565b90612771565b9586910192611d2d84612374565b90612647565b612374565b166040518281527f2d87480f50083e2b2759522a8fdda59802650a8055e609a7772cf70c07748f52843392a380604051611d71816120b0565b52604051908152f35b6110d4611d888b928861230b565b6040519485946324eb47e560e01b865260048601528401916124bf565b611dbc91508a3d8c1161169c5761168e8183612132565b38611c97565b604051906354c8163f60e11b82526004820152fd5b611dee91508a3d8c1161169c5761168e8183612132565b38611c37565b8480fd5b5034610223578060031936011261022357602060405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b5034610223576020366003190112610223576020611e526121ae565b6040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b039081169216919091148152f35b50346102235780600319360112610223576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5034610223578060031936011261022357610d1f604051611ef0816120e1565b601a81527f4c6f636b52656c65617365546f6b656e506f6f6c20312e352e31000000000000602082015260405191829160208352602083019061216e565b503461022357602036600319011261022357600a54600435906001600160a01b0390811633036102f357602460207f000000000000000000000000000000000000000000000000000000000000000092604051928380926370a0823160e01b825230600483015286165afa80156116105783918591611ff4575b5010611fe25781611fba913390612647565b337fc2c3f06e49b9f15e7b4af9055e183b0d73362e033ad82a07dec9bf98401717198380a380f35b60405163bb55fd2760e01b8152600490fd5b9150506020813d602011612021575b8161201060209383612132565b8101031261088d5782905138611fa8565b3d9150612003565b9050346113585760203660031901126113585760043563ffffffff60e01b811680910361084e57602092506370ea02b360e11b811490811561206d575b5015158152f35b63aff2afbf60e01b81149150811561209f575b811561208e575b5038612066565b6301ffc9a760e01b14905038612087565b630e64dd2960e01b81149150612080565b602081019081106001600160401b038211176120cb57604052565b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b038211176120cb57604052565b60a081019081106001600160401b038211176120cb57604052565b606081019081106001600160401b038211176120cb57604052565b90601f801991011681019081106001600160401b038211176120cb57604052565b6001600160401b0381116120cb57601f01601f191660200190565b919082519283825260005b84811061219a575050826000602080949584010152601f8019910116010190565b602081830181015184830182015201612179565b600435906001600160a01b038216820361088857565b600435906001600160401b038216820361088857565b906040600319830112610888576001600160401b0390600435828116810361088857926024359083821161088857806023830112156108885781600401359384116108885760248483010111610888576024019190565b9181601f84011215610888578235916001600160401b038311610888576020808501948460051b01011161088857565b6040600319820112610888576001600160401b0391600435838111610888578261228d91600401612231565b93909392602435918211610888576122a791600401612231565b9091565b35906001600160801b038216820361088857565b9190826060910312610888576040516122d781612117565b8092803590811515820361088857604061230691819385526122fb602082016122ab565b6020860152016122ab565b910152565b903590601e198136030182121561088857018035906001600160401b0382116108885760200191813603831361088857565b92919261234982612153565b916123576040519384612132565b829481845281830111610888578281602093846000960137010152565b356001600160a01b03811681036108885790565b6123cf92916001600160401b036123b292166000526007602052600560406000200192369161233d565b602081519101209060019160005201602052604060002054151590565b90565b6001600160401b0381116120cb5760051b60200190565b92916123f4826123d2565b916124026040519384612132565b829481845260208094019160051b810192831161088857905b8282106124285750505050565b81356001600160a01b038116810361088857815290830190830161241b565b356001600160401b03811681036108885790565b805182101561246f5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b90600182811c921680156124b5575b602083101461249f57565b634e487b7160e01b600052602260045260246000fd5b91607f1691612494565b908060209392818452848401376000828201840152601f01601f1916010190565b604051906124ed826120fc565b60006080838281528260208201528260408201528260608201520152565b6001600160401b03600091168152602060078152600460408320016040519283918181549061253982612485565b808652926001928084169081156125a05750600114612563575b505050506123cf92500382612132565b815285812095935091905b8183106125885750506123cf935082010138808080612553565b8554878401850152948501948694509183019161256e565b93505050506123cf94925060ff191682840152151560051b82010138808080612553565b8181106125cf575050565b600081556001016125c4565b818102929181159184041417156125ee57565b634e487b7160e01b600052601160045260246000fd5b9080601f83011215610888578160206123cf9335910161233d565b604090805115158352816020820151916001600160801b038093166020860152015116910152565b60405163a9059cbb60e01b60208201526001600160a01b03909216602483015260448083019390935291815260808101916001600160401b038311828410176120cb5761269692604052612b67565b565b90816020910312610888575180151581036108885790565b80518015612706576020036126e1576020818051810103126108885760208101519060ff82116126e1575060ff1690565b60405163953576f760e01b8152602060048201529081906110d490602483019061216e565b50507f000000000000000000000000000000000000000000000000000000000000000090565b9060ff8091169116039060ff82116125ee57565b60ff16604d81116125ee57600a0a90565b811561275b570490565b634e487b7160e01b600052601260045260246000fd5b9190917f000000000000000000000000000000000000000000000000000000000000000060ff811660ff851681811461284b5711612820576127b3848261272c565b93604d60ff8616118015612805575b6127db5750506127d56123cf9293612740565b906125db565b60405163a9cb113d60e01b815260ff91821660048201529116602482015260448101829052606490fd5b5061280f85612740565b801561275b576000190483116127c2565b61282a818561272c565b93604d60ff8616116127db5750506128456123cf9293612740565b90612751565b509193505050565b6001546001600160a01b0316330361286757565b6040516315ae3a6f60e11b8152600490fd5b91909182511561083c5782519260209384820120936001600160401b0380931692600095848752600783526128b481600560408a20016131e1565b15612a1d5786526008825260408620908351908111612a09576128d78254612485565b601f81116129db575b508296601f82116001146129595790807f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea969798612932939161294e575b508160011b916000199060031b1c19161790565b90555b61294960405192828493845283019061216e565b0390a2565b90508501513861291e565b96601f198216838952848920985b8181106129c457509782916001937f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea98999a106129ab575b5050811b019055612935565b86015160001960f88460031b161c19169055388061299f565b868301518a55600190990198918501918501612967565b612a0390838952848920601f840160051c8101918685106107fc57601f0160051c01906125c4565b386128e0565b634e487b7160e01b87526041600452602487fd5b60408051631c9dc56960e11b8152600481018790526024810191909152806110d4604482018761216e565b919082039182116125ee57565b612a5d6124e0565b506001600160801b03806060830151169080835116906020840192612aa463ffffffff93612a9e612a918688511642612a48565b8560808a015116906125db565b90612fd9565b80821015612ab857505b1683524216905290565b9050612aae565b805115612b18576001600160801b038060408301511690602083015116811090811591612b0f575b50612aef5750565b604051632008344960e21b8152606491612b0d90600483019061261f565bfd5b90501538612ae7565b6001600160801b03806040830151161590811591612b57575b50612b395750565b6040516335a2be7360e21b8152606491612b0d90600483019061261f565b9050602082015116151538612b31565b604051612be4916001600160a01b0316612b80826120e1565b6000806020958685527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656487860152868151910182855af13d15612c60573d91612bc883612153565b92612bd66040519485612132565b83523d60008785013e61344e565b80519081612bf157505050565b8280612c01938301019101612698565b15612c095750565b6084906040519062461bcd60e51b82526004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152fd5b60609161344e565b90604051918281549182825260209260208301916000526020600020936000905b828210612c9f5750505061269692500383612132565b855484526001958601958895509381019390910190612c89565b60025481101561246f5760026000527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0190600090565b60055481101561246f5760056000527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00190600090565b805482101561246f5760005260206000200190600090565b6000818152600360205260408120549091908015612e3b5760001990808201818111612e275760025490838201918211612e1357818103612dc8575b5050506002548015612db457810190612d9382612cb9565b909182549160031b1b19169055600255815260036020526040812055600190565b634e487b7160e01b84526031600452602484fd5b612dfd612dd7612de693612cb9565b90549060031b1c928392612cb9565b819391549060031b91821b91600019901b19161790565b9055845260036020526040842055388080612d7b565b634e487b7160e01b86526011600452602486fd5b634e487b7160e01b85526011600452602485fd5b505090565b6000818152600660205260408120549091908015612e3b5760001990808201818111612e275760055490838201918211612e1357818103612eb5575b5050506005548015612db457810190612e9482612cf0565b909182549160031b1b19169055600555815260066020526040812055600190565b612ed3612ec4612de693612cf0565b90549060031b1c928392612cf0565b9055845260066020526040842055388080612e7c565b90600182019060009281845282602052604084205490811515600014612fd25760001991808301818111612fbe57825490848201918211612faa57818103612f75575b50505080548015612f6157820191612f448383612d27565b909182549160031b1b191690555582526020526040812055600190565b634e487b7160e01b86526031600452602486fd5b612f95612f85612de69386612d27565b90549060031b1c92839286612d27565b90558652846020526040862055388080612f2c565b634e487b7160e01b88526011600452602488fd5b634e487b7160e01b87526011600452602487fd5b5050505090565b919082018092116125ee57565b7f9ea3374b67bf275e6bb9c8ae68f9cae023e1c528b4b27e092f0bb209d3531c19916130b8606092805463ffffffff613024818360801c1642612a48565b91826130cd575b5050506001600160801b0380916001826020870151169180548481168085106000146130c85750835b885160ff60a01b19919097161674ff00000000ffffffffffffffffffffffffffffffff19919091161794151560a01b60ff60a01b1694909417845560408601516001600160801b0319931660801b929092166001600160801b039190911617910155565b6130c5604051809261261f565ba1565b613054565b6131339260018501546130fa6130f26001600160801b03938484169360801c906125db565b838516612fd9565b8082101561313b57505b63ffffffff60801b199116166001600160a01b031990911617429190911660801b63ffffffff60801b16178255565b38808061302b565b9050613104565b60008181526003602052604081205461318f57600254600160401b81101561192f57908261317b612de684600160409601600255612cb9565b905560025492815260036020522055600190565b905090565b60008181526006602052604081205461318f57600554600160401b81101561192f5790826131cd612de684600160409601600555612cf0565b905560055492815260066020522055600190565b600082815260018201602052604090205461323157805490600160401b8210156120cb578261321a612de6846001809601855584612d27565b905580549260005201602052604060002055600190565b5050600090565b9091815460ff8160a01c16158015613446575b613440576001600160801b03918282169160018501908154908582169161327c63ffffffff809360801c1642612a48565b90816133d0575b50505086811061336e57508583106132e05750509183916132c77f1871cdf8010e63f2eb8384381a68dfa7416dc571a5517e66e88b2d2d0c0a690a95602095612a48565b166001600160801b0319825416179055604051908152a1565b5460801c6132ee8387612a48565b600019820191908183116125ee5761330e9261330991612fd9565b612751565b906001600160a01b0381161561335057604051636864691d60e11b8152600481019290925260248201929092526001600160a01b039091166044820152606490fd5b50604491604051916302a4f38160e31b835260048301526024820152fd5b8690836001600160a01b038116156133b257604051630d3b2b9560e11b8152600481019290925260248201929092526001600160a01b039091166044820152606490fd5b506044916040519163f94ebcd160e01b835260048301526024820152fd5b83879293971161342e576133eb92612a9e9160801c906125db565b80821015613425575061341d815b875463ffffffff60801b19164290961660801b63ffffffff60801b16959095178755565b388080613283565b61341d906133f9565b604051634b92ca1560e11b8152600490fd5b50505050565b50831561324b565b919290156134b05750815115613462575090565b3b1561346b5790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156134c35750805190602001fd5b60405162461bcd60e51b8152602060048201529081906110d490602483019061216e56fea26469706673582212204d153da2293398f68cb943dfb92c2e1651cb03ffc45b993a252370198510614364736f6c63430008180033000000000000000000000000a6422e3e219ee6d4c1b18895275fe43556fd50ed000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e81000000000000000000000000000000000000000000000000000000000000000100000000000000000000000080226fc0ee2b096224eeac085bb9a8cba1146f7d0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608080604052600436101561001357600080fd5b600090813560e01c90816301ffc9a714612029575080630a861f2a14611f2e578063181f5a7714611ed057806321df0da714611e8b578063240028e814611e3657806324f65ee714611df85780633907753714611b42578063432a6ba314611b195780634c5ef0ed14611aff57806354c8a4f3146119b257806362ddd3c41461194357806366320087146118855780636cfd1553146118455780636d3d1a581461181c57806379ba5097146117a15780637d54534e146117335780638926f54f146116ee5780638da5cb5b146116c55780639a4575b91461135c578063a42a7b8b14611197578063a7cd63b7146110d8578063acfecf9114610ffa578063af58d59f14610f67578063b0f479a114610f3e578063b794658014610f05578063bb98546b14610ec8578063c0d7865514610e4b578063c4bffe2b14610d23578063c75eea9c14610c3e578063cf7401f314610a95578063dc0bd97114610a50578063e0351e1314610a13578063e8a1da171461031d578063eb521a4c146102265763f2fde38b146101a257600080fd5b34610223576020366003190112610223576101bb6121ae565b6101c3612853565b6001600160a01b03908116903382146102115782546001600160a01b03191682178355600154167fed8889f560326eb138920d842192f0eb3dd22b4f139c87a2c57538e05bae12788380a380f35b604051636d6c4ee560e11b8152600490fd5b80fd5b5034610223576020366003190112610223576004357f00000000000000000000000000000000000000000000000000000000000000011561030b57600a546001600160a01b031633036102f3576102cb6040516323b872dd60e01b6020820152336024820152306044820152826064820152606481526102a5816120fc565b7f000000000000000000000000a6422e3e219ee6d4c1b18895275fe43556fd50ed612b67565b337fc17cea59c2955cb181b03393209566960365771dbba9dc3d510180e7cb3120888380a380f35b60405163472511eb60e11b8152336004820152602490fd5b604051633a4fe3e960e21b8152600490fd5b50346102235761032c36612261565b93929091610338612853565b83915b8183106108915750505081905b838210610353578280f35b8160051b81013561011e198236030181121561088d57810192610120843603126102235760405193610384856120fc565b80356001600160401b038116810361088857855260208101356001600160401b03811161084e57810136601f8201121561084e578035906103c4826123d2565b916103d26040519384612132565b80835260208084019160051b830101903682116108845760208301905b8282106108525750505050602086015260408101356001600160401b03811161084e57906104236104449236908301612604565b604087015261043536606083016122bf565b606087015260c03691016122bf565b60808501526104566060850151612abf565b6104636080850151612abf565b6040840151511561083c576104816001600160401b03855116613194565b1561081a576001600160401b03845116815260076020526040812061062960608601516001600160801b0390610570826040830151168360208401511692511515928160806040516104d2816120fc565b8381524263ffffffff811660208301526040820188905260608201859052910191909152875463ffffffff60801b1983166001600160a01b03199091161760809190911b63ffffffff60801b161787556001600160801b03199361054a90885460ff60a01b191690151560a01b60ff60a01b16178855565b600187019084825416178155906001600160801b0382549181199060801b169116179055565b6080880151610604836040830151169360208301511691511515846080604051610599816120fc565b8581524263ffffffff81166020830152604082018590526060820187905291019190915260028801805463ffffffff60801b1990871686171660809290921b63ffffffff60801b16919091178155805460ff60a01b191691151560a01b60ff60a01b16919091179055565b6003850191825416178155906001600160801b0382549181199060801b169116179055565b60408501518051906001600160401b0382116108065761064c6004840154612485565b601f81116107c8575b50602090601f831160011461075b579180610689926004948792610750575b50508160011b916000199060031b1c19161790565b9101555b805b602085015180518210156106c657906106c06001926106b9836001600160401b038a51169261245b565b5190612879565b0161068f565b50509392917f8d340f17e19058004c20453540862a9c62778504476f6756755cb33bcd6c38c2600192936001600160401b038151166040820151916107436080606083015192015161073961072e60405196879661010090885280602089015287019061216e565b93604086019061261f565b60a084019061261f565b0390a10190929192610348565b015190503880610674565b906004840185526020852091855b601f19851681106107b05750918391600193600495601f19811610610797575b505050811b0191015561068d565b015160001960f88460031b161c19169055388080610789565b91926020600181928685015181550194019201610769565b6107f69060048501865260208620601f850160051c810191602086106107fc575b601f0160051c01906125c4565b38610655565b90915081906107e9565b634e487b7160e01b84526041600452602484fd5b60246001600160401b0385511660405190631d5ad3c560e01b82526004820152fd5b6040516342bcdf7f60e11b8152600490fd5b8280fd5b81356001600160401b038111610880576020916108758392833691890101612604565b8152019101906103ef565b8780fd5b8580fd5b600080fd5b8380fd5b91939092946005926001600160401b036108ae87861b8301612447565b16906108b982612e40565b156109fa57818452600792602098848a526108d8876040882001612c68565b97865b895181101561091057806109098b6109028f948d60408e8e6001998f83525220019261245b565b5190612ee9565b50016108db565b50969198949097509892919498828a52835260408920908982556001918a838201558a60028201558a60038201558a6004820161094d8154612485565b806109bb575b505050018054908a81558161099e575b505050600192917f5204aec90a3c794d8e90fded8b46ae9c7c552803e7e832e0c1d358396d85991691604051908152a101919094939461033b565b8a52838a20908101905b81811015610963576000815582016109a8565b601f8082116001146109d757505060009150555b8a3880610953565b916109f3600092938286528a86209401871c84018885016125c4565b55556109cf565b604051631e670e4b60e01b815260048101839052602490fd5b503461022357806003193601126102235760206040517f000000000000000000000000000000000000000000000000000000000000000015158152f35b50346102235780600319360112610223576040517f000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e816001600160a01b03168152602090f35b50346102235760e036600319011261022357610aaf6121c4565b60603660231901126108885760405190610ac882612117565b60243580151581036108885782526001600160801b03906044358281168103610888576020840152606435828116810361088857604084015260603660831901126108885760405191610b1a83612117565b608435801515810361088857835260a435818116810361088857602084015260c4359081168103610888576040830152600954336001600160a01b0391821614159081610c2f575b506102f3576001600160401b031691610b88836000526006602052604060002054151590565b15610c165791610c1260e092610c0885610bc27f0350d63aa5f270e01729d00d627eeb8f3429772b1818c016c66a588a864f912b97612abf565b8488526007602052610bd78160408a20612fe6565b610be083612abf565b8488526007602052610bf883600260408b2001612fe6565b604051948552602085019061261f565b608083019061261f565ba180f35b604051631e670e4b60e01b815260048101849052602490fd5b90506001541633141538610b62565b503461022357602036600319011261022357610cce6040610d1f926001600160401b03610c696121c4565b610c716124e0565b5016815260076020522060405190610c88826120fc565b600181549160ff6001600160801b0393848116865263ffffffff8160801c16602087015260a01c16151560408501520154908116606083015260801c6080820152612a55565b60405191829182919091608060a0820193816001600160801b039182815116855263ffffffff6020820151166020860152604081015115156040860152826060820151166060860152015116910152565b0390f35b5034610223578060031936011261022357604051809160055480835283602080940160056000527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db09260005b86828210610e3557505050610d8692500384612132565b825190610dab610d95836123d2565b92610da36040519485612132565b8084526123d2565b82840190601f1901368237815b8551811015610de957806001600160401b03610dd66001938961245b565b5116610de2828761245b565b5201610db8565b508390839260405193838594850191818652518092526040850193925b828110610e1557505050500390f35b83516001600160401b031685528695509381019392810192600101610e06565b8554845260019586019589955093019201610d6f565b503461022357602036600319011261022357610e656121ae565b610e6d612853565b6001600160a01b03908116801561083c577f02dc5c233404867c793b749c6d644beb2277536d18a7e7974d3f238e4c6f16849160409160045491816001600160601b0360a01b8416176004558351921682526020820152a180f35b503461022357806003193601126102235760206040517f000000000000000000000000000000000000000000000000000000000000000115158152f35b503461022357602036600319011261022357610d1f610f2a610f256121c4565b61250b565b60405191829160208352602083019061216e565b50346102235780600319360112610223576004546040516001600160a01b039091168152602090f35b503461022357602036600319011261022357610cce6040610d1f926001600160401b03610f926121c4565b610f9a6124e0565b5016815260076020522060405190610fb1826120fc565b600360028201549160ff6001600160801b0393848116865263ffffffff8160801c16602087015260a01c16151560408501520154908116606083015260801c6080820152612a55565b5034610223576001600160401b03611011366121da565b92909161101c612853565b1691611035836000526006602052604060002054151590565b15610c165782845260076020526110646005604086200161105736848661233d565b6020815191012090612ee9565b156110a957907f52d00ee4d9bd51b40168f2afc5848837288ce258784ad914278791464b3f4d76916110a36040519283926020845260208401916124bf565b0390a280f35b826110d483604051938493631d3c8f1f60e21b855260048501526040602485015260448401916124bf565b0390fd5b50346102235780600319360112610223576040518091600254908183526020809301809260026000527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9060005b818110611183575050508461113c910385612132565b60405193838594850191818652518092526040850193925b82811061116357505050500390f35b83516001600160a01b031685528695509381019392810192600101611154565b825484529286019260019283019201611126565b503461022357602080600319360112611358576001600160401b036111ba6121c4565b168252600781526005906111d360056040852001612c68565b918251916111f96111e3846123d2565b936111f16040519586612132565b8085526123d2565b601f190181865b82811061134857505050845b84518110156112e75761121f818661245b565b518652600882526040862060405190879080549061123c82612485565b908185526001928784821691826000146112c2575050600114611289575b5050509061126d81600194930382612132565b611277828761245b565b52611282818661245b565b500161120c565b8693508a52828a20918a925b8284106112ad5750505082010161126d82600161125a565b80548685018601528794909301928101611295565b60ff191687820152921515891b8601909201935061126d92508491506001905061125a565b509392505060405191838301848452825180915260408401948060408360051b870101940192955b82871061131c5785850386f35b909192938280611338600193603f198a8203018652885161216e565b960192019601959291909261130f565b6060828288010152018290611200565b5080fd5b5034610223576020600319818136011261084e57600435926001600160401b03918285116113585760a09085360301126102235760608360405161139f816120e1565b828152015260848401936113b285612374565b6001600160a01b03957f000000000000000000000000a6422e3e219ee6d4c1b18895275fe43556fd50ed8716939187168490036116a3575060248281019667ffffffffffffffff60801b61140589612447565b60801b1660405190632cbc26bb60e01b8252600482015287818481857f000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e81165afa908115611610578491611676575b50611664578061146560448601612374565b7f0000000000000000000000000000000000000000000000000000000000000000611632575b50508561149789612447565b166114af816000526006602052604060002054151590565b1561161b5787826004541691846040518094819363a8d87a3b60e01b835260048301525afa9081156116105784916115da575b501633036115c5575094610d1f9361151d61154c94610f25946040809a606461150a88612447565b93013595869316815260078b5220613238565b86519081527f9f1ec8c880f76798e7b793325d625e9b60e4082a553c98f42b6cda368dd60008863392a2612447565b916115b284519160ff7f00000000000000000000000000000000000000000000000000000000000000121681840152808352611587836120e1565b855194611593866120e1565b855280850192835285519586958287525191860152606085019061216e565b9051838203601f1901604085015261216e565b60405163728fe07b60e01b8152336004820152fd5b90508781813d8311611609575b6115f18183612132565b8101031261088d5751818116810361088d57386114e2565b503d6115e7565b6040513d86823e3d90fd5b9050604051906354c8163f60e11b82526004820152fd5b1680600052600388526040600020541561164d57819061148b565b9050604051906368692cbb60e11b82526004820152fd5b604051630a75a23b60e31b8152600490fd5b6116969150883d8a1161169c575b61168e8183612132565b810190612698565b38611453565b503d611684565b866116af602492612374565b60405163961c9a4f60e01b815291166004820152fd5b50346102235780600319360112610223576001546040516001600160a01b039091168152602090f35b50346102235760203660031901126102235760206117296001600160401b036117156121c4565b166000526006602052604060002054151590565b6040519015158152f35b5034610223576020366003190112610223577f44676b5284b809a22248eba0da87391d79098be38bb03154be88a58bf4d0917460206117706121ae565b611778612853565b600980546001600160a01b0319166001600160a01b03929092169182179055604051908152a180f35b503461022357806003193601126102235780546001600160a01b03808216330361180a57600154916001600160601b0360a01b9033828516176001551683553391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b60405163015aa1e360e11b8152600490fd5b50346102235780600319360112610223576009546040516001600160a01b039091168152602090f35b50346102235760203660031901126102235761185f6121ae565b611867612853565b60018060a01b03166001600160601b0360a01b600a541617600a5580f35b50346102235760403660031901126102235761189f6121ae565b602435906118ab612853565b6001600160a01b031690813b1561084e576040516305430f9560e11b815260048101829052838160248183875af1801561161057611913575b5060207f6fa7abcf1345d1d478e5ea0da6b5f26a90eadb0546ef15ed3833944fbfd1db6291604051908152a280f35b6001600160401b03819492941161192f576040529160206118e4565b634e487b7160e01b82526041600452602482fd5b503461022357611952366121da565b61195a612853565b6001600160401b03831661197b816000526006602052604060002054151590565b1561199a5750611997929161199191369161233d565b90612879565b80f35b60249060405190631e670e4b60e01b82526004820152fd5b5034610223576119db6119e36119c736612261565b94916119d4939193612853565b36916123e9565b9236916123e9565b907f000000000000000000000000000000000000000000000000000000000000000015611aed57825b8151811015611a72576001906001600160a01b03611a2a828561245b565b5116611a3581612d3f565b611a41575b5001611a0c565b60207f800671136ab6cfee9fbe5ed1fb7ca417811aca3cf864800d127b927adedf756691604051908152a138611a3a565b5050815b8151811015611ae9576001906001600160a01b03611a94828561245b565b51168015611ae357611aa581613142565b611ab2575b505b01611a76565b60207f2640d4d76caf8bf478aabfa982fa4e1c4eb71a37f93cd15e80dbc657911546d891604051908152a138611aaa565b50611aac565b8280f35b6040516335f4a7b360e01b8152600490fd5b5034610223576020611729611b13366121da565b91612388565b5034610223578060031936011261022357600a546040516001600160a01b039091168152602090f35b5034610223576020600319818136011261084e576004356001600160401b03808211611df45761010082600401938336030112611df45784604051611b86816120b0565b526084820192611b9584612374565b7f000000000000000000000000a6422e3e219ee6d4c1b18895275fe43556fd50ed966001600160a01b03958689169287168390036116a3575060248581019067ffffffffffffffff60801b611be983612447565b60801b1660405190632cbc26bb60e01b82526004820152898183818c7f000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e81165afa908115611610578491611dd7575b506116645785611c4683612447565b16611c5e816000526006602052604060002054151590565b15611dc257898960045416916044604051809481936383826b2b60e01b8352600483015233878301525afa908115611610578491611da5575b50156115c557611ca682612447565b611cb860a4890191611b13838961230b565b15611d7a57505093611d19611d14611d0d611d3396611d038a97611d389b8e9f9b60449f611d1f9a60076040926064611cf2600296612447565b9601359c8d96168352522001613238565b60c487019061230b565b369161233d565b6126b0565b90612771565b9586910192611d2d84612374565b90612647565b612374565b166040518281527f2d87480f50083e2b2759522a8fdda59802650a8055e609a7772cf70c07748f52843392a380604051611d71816120b0565b52604051908152f35b6110d4611d888b928861230b565b6040519485946324eb47e560e01b865260048601528401916124bf565b611dbc91508a3d8c1161169c5761168e8183612132565b38611c97565b604051906354c8163f60e11b82526004820152fd5b611dee91508a3d8c1161169c5761168e8183612132565b38611c37565b8480fd5b5034610223578060031936011261022357602060405160ff7f0000000000000000000000000000000000000000000000000000000000000012168152f35b5034610223576020366003190112610223576020611e526121ae565b6040517f000000000000000000000000a6422e3e219ee6d4c1b18895275fe43556fd50ed6001600160a01b039081169216919091148152f35b50346102235780600319360112610223576040517f000000000000000000000000a6422e3e219ee6d4c1b18895275fe43556fd50ed6001600160a01b03168152602090f35b5034610223578060031936011261022357610d1f604051611ef0816120e1565b601a81527f4c6f636b52656c65617365546f6b656e506f6f6c20312e352e31000000000000602082015260405191829160208352602083019061216e565b503461022357602036600319011261022357600a54600435906001600160a01b0390811633036102f357602460207f000000000000000000000000a6422e3e219ee6d4c1b18895275fe43556fd50ed92604051928380926370a0823160e01b825230600483015286165afa80156116105783918591611ff4575b5010611fe25781611fba913390612647565b337fc2c3f06e49b9f15e7b4af9055e183b0d73362e033ad82a07dec9bf98401717198380a380f35b60405163bb55fd2760e01b8152600490fd5b9150506020813d602011612021575b8161201060209383612132565b8101031261088d5782905138611fa8565b3d9150612003565b9050346113585760203660031901126113585760043563ffffffff60e01b811680910361084e57602092506370ea02b360e11b811490811561206d575b5015158152f35b63aff2afbf60e01b81149150811561209f575b811561208e575b5038612066565b6301ffc9a760e01b14905038612087565b630e64dd2960e01b81149150612080565b602081019081106001600160401b038211176120cb57604052565b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b038211176120cb57604052565b60a081019081106001600160401b038211176120cb57604052565b606081019081106001600160401b038211176120cb57604052565b90601f801991011681019081106001600160401b038211176120cb57604052565b6001600160401b0381116120cb57601f01601f191660200190565b919082519283825260005b84811061219a575050826000602080949584010152601f8019910116010190565b602081830181015184830182015201612179565b600435906001600160a01b038216820361088857565b600435906001600160401b038216820361088857565b906040600319830112610888576001600160401b0390600435828116810361088857926024359083821161088857806023830112156108885781600401359384116108885760248483010111610888576024019190565b9181601f84011215610888578235916001600160401b038311610888576020808501948460051b01011161088857565b6040600319820112610888576001600160401b0391600435838111610888578261228d91600401612231565b93909392602435918211610888576122a791600401612231565b9091565b35906001600160801b038216820361088857565b9190826060910312610888576040516122d781612117565b8092803590811515820361088857604061230691819385526122fb602082016122ab565b6020860152016122ab565b910152565b903590601e198136030182121561088857018035906001600160401b0382116108885760200191813603831361088857565b92919261234982612153565b916123576040519384612132565b829481845281830111610888578281602093846000960137010152565b356001600160a01b03811681036108885790565b6123cf92916001600160401b036123b292166000526007602052600560406000200192369161233d565b602081519101209060019160005201602052604060002054151590565b90565b6001600160401b0381116120cb5760051b60200190565b92916123f4826123d2565b916124026040519384612132565b829481845260208094019160051b810192831161088857905b8282106124285750505050565b81356001600160a01b038116810361088857815290830190830161241b565b356001600160401b03811681036108885790565b805182101561246f5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b90600182811c921680156124b5575b602083101461249f57565b634e487b7160e01b600052602260045260246000fd5b91607f1691612494565b908060209392818452848401376000828201840152601f01601f1916010190565b604051906124ed826120fc565b60006080838281528260208201528260408201528260608201520152565b6001600160401b03600091168152602060078152600460408320016040519283918181549061253982612485565b808652926001928084169081156125a05750600114612563575b505050506123cf92500382612132565b815285812095935091905b8183106125885750506123cf935082010138808080612553565b8554878401850152948501948694509183019161256e565b93505050506123cf94925060ff191682840152151560051b82010138808080612553565b8181106125cf575050565b600081556001016125c4565b818102929181159184041417156125ee57565b634e487b7160e01b600052601160045260246000fd5b9080601f83011215610888578160206123cf9335910161233d565b604090805115158352816020820151916001600160801b038093166020860152015116910152565b60405163a9059cbb60e01b60208201526001600160a01b03909216602483015260448083019390935291815260808101916001600160401b038311828410176120cb5761269692604052612b67565b565b90816020910312610888575180151581036108885790565b80518015612706576020036126e1576020818051810103126108885760208101519060ff82116126e1575060ff1690565b60405163953576f760e01b8152602060048201529081906110d490602483019061216e565b50507f000000000000000000000000000000000000000000000000000000000000001290565b9060ff8091169116039060ff82116125ee57565b60ff16604d81116125ee57600a0a90565b811561275b570490565b634e487b7160e01b600052601260045260246000fd5b9190917f000000000000000000000000000000000000000000000000000000000000001260ff811660ff851681811461284b5711612820576127b3848261272c565b93604d60ff8616118015612805575b6127db5750506127d56123cf9293612740565b906125db565b60405163a9cb113d60e01b815260ff91821660048201529116602482015260448101829052606490fd5b5061280f85612740565b801561275b576000190483116127c2565b61282a818561272c565b93604d60ff8616116127db5750506128456123cf9293612740565b90612751565b509193505050565b6001546001600160a01b0316330361286757565b6040516315ae3a6f60e11b8152600490fd5b91909182511561083c5782519260209384820120936001600160401b0380931692600095848752600783526128b481600560408a20016131e1565b15612a1d5786526008825260408620908351908111612a09576128d78254612485565b601f81116129db575b508296601f82116001146129595790807f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea969798612932939161294e575b508160011b916000199060031b1c19161790565b90555b61294960405192828493845283019061216e565b0390a2565b90508501513861291e565b96601f198216838952848920985b8181106129c457509782916001937f7d628c9a1796743d365ab521a8b2a4686e419b3269919dc9145ea2ce853b54ea98999a106129ab575b5050811b019055612935565b86015160001960f88460031b161c19169055388061299f565b868301518a55600190990198918501918501612967565b612a0390838952848920601f840160051c8101918685106107fc57601f0160051c01906125c4565b386128e0565b634e487b7160e01b87526041600452602487fd5b60408051631c9dc56960e11b8152600481018790526024810191909152806110d4604482018761216e565b919082039182116125ee57565b612a5d6124e0565b506001600160801b03806060830151169080835116906020840192612aa463ffffffff93612a9e612a918688511642612a48565b8560808a015116906125db565b90612fd9565b80821015612ab857505b1683524216905290565b9050612aae565b805115612b18576001600160801b038060408301511690602083015116811090811591612b0f575b50612aef5750565b604051632008344960e21b8152606491612b0d90600483019061261f565bfd5b90501538612ae7565b6001600160801b03806040830151161590811591612b57575b50612b395750565b6040516335a2be7360e21b8152606491612b0d90600483019061261f565b9050602082015116151538612b31565b604051612be4916001600160a01b0316612b80826120e1565b6000806020958685527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656487860152868151910182855af13d15612c60573d91612bc883612153565b92612bd66040519485612132565b83523d60008785013e61344e565b80519081612bf157505050565b8280612c01938301019101612698565b15612c095750565b6084906040519062461bcd60e51b82526004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152fd5b60609161344e565b90604051918281549182825260209260208301916000526020600020936000905b828210612c9f5750505061269692500383612132565b855484526001958601958895509381019390910190612c89565b60025481101561246f5760026000527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0190600090565b60055481101561246f5760056000527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00190600090565b805482101561246f5760005260206000200190600090565b6000818152600360205260408120549091908015612e3b5760001990808201818111612e275760025490838201918211612e1357818103612dc8575b5050506002548015612db457810190612d9382612cb9565b909182549160031b1b19169055600255815260036020526040812055600190565b634e487b7160e01b84526031600452602484fd5b612dfd612dd7612de693612cb9565b90549060031b1c928392612cb9565b819391549060031b91821b91600019901b19161790565b9055845260036020526040842055388080612d7b565b634e487b7160e01b86526011600452602486fd5b634e487b7160e01b85526011600452602485fd5b505090565b6000818152600660205260408120549091908015612e3b5760001990808201818111612e275760055490838201918211612e1357818103612eb5575b5050506005548015612db457810190612e9482612cf0565b909182549160031b1b19169055600555815260066020526040812055600190565b612ed3612ec4612de693612cf0565b90549060031b1c928392612cf0565b9055845260066020526040842055388080612e7c565b90600182019060009281845282602052604084205490811515600014612fd25760001991808301818111612fbe57825490848201918211612faa57818103612f75575b50505080548015612f6157820191612f448383612d27565b909182549160031b1b191690555582526020526040812055600190565b634e487b7160e01b86526031600452602486fd5b612f95612f85612de69386612d27565b90549060031b1c92839286612d27565b90558652846020526040862055388080612f2c565b634e487b7160e01b88526011600452602488fd5b634e487b7160e01b87526011600452602487fd5b5050505090565b919082018092116125ee57565b7f9ea3374b67bf275e6bb9c8ae68f9cae023e1c528b4b27e092f0bb209d3531c19916130b8606092805463ffffffff613024818360801c1642612a48565b91826130cd575b5050506001600160801b0380916001826020870151169180548481168085106000146130c85750835b885160ff60a01b19919097161674ff00000000ffffffffffffffffffffffffffffffff19919091161794151560a01b60ff60a01b1694909417845560408601516001600160801b0319931660801b929092166001600160801b039190911617910155565b6130c5604051809261261f565ba1565b613054565b6131339260018501546130fa6130f26001600160801b03938484169360801c906125db565b838516612fd9565b8082101561313b57505b63ffffffff60801b199116166001600160a01b031990911617429190911660801b63ffffffff60801b16178255565b38808061302b565b9050613104565b60008181526003602052604081205461318f57600254600160401b81101561192f57908261317b612de684600160409601600255612cb9565b905560025492815260036020522055600190565b905090565b60008181526006602052604081205461318f57600554600160401b81101561192f5790826131cd612de684600160409601600555612cf0565b905560055492815260066020522055600190565b600082815260018201602052604090205461323157805490600160401b8210156120cb578261321a612de6846001809601855584612d27565b905580549260005201602052604060002055600190565b5050600090565b9091815460ff8160a01c16158015613446575b613440576001600160801b03918282169160018501908154908582169161327c63ffffffff809360801c1642612a48565b90816133d0575b50505086811061336e57508583106132e05750509183916132c77f1871cdf8010e63f2eb8384381a68dfa7416dc571a5517e66e88b2d2d0c0a690a95602095612a48565b166001600160801b0319825416179055604051908152a1565b5460801c6132ee8387612a48565b600019820191908183116125ee5761330e9261330991612fd9565b612751565b906001600160a01b0381161561335057604051636864691d60e11b8152600481019290925260248201929092526001600160a01b039091166044820152606490fd5b50604491604051916302a4f38160e31b835260048301526024820152fd5b8690836001600160a01b038116156133b257604051630d3b2b9560e11b8152600481019290925260248201929092526001600160a01b039091166044820152606490fd5b506044916040519163f94ebcd160e01b835260048301526024820152fd5b83879293971161342e576133eb92612a9e9160801c906125db565b80821015613425575061341d815b875463ffffffff60801b19164290961660801b63ffffffff60801b16959095178755565b388080613283565b61341d906133f9565b604051634b92ca1560e11b8152600490fd5b50505050565b50831561324b565b919290156134b05750815115613462575090565b3b1561346b5790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156134c35750805190602001fd5b60405162461bcd60e51b8152602060048201529081906110d490602483019061216e56fea26469706673582212204d153da2293398f68cb943dfb92c2e1651cb03ffc45b993a252370198510614364736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a6422e3e219ee6d4c1b18895275fe43556fd50ed000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e81000000000000000000000000000000000000000000000000000000000000000100000000000000000000000080226fc0ee2b096224eeac085bb9a8cba1146f7d0000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : token (address): 0xa6422E3E219ee6d4C1B18895275FE43556fd50eD
Arg [1] : localTokenDecimals (uint8): 18
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000a6422e3e219ee6d4c1b18895275fe43556fd50ed
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 000000000000000000000000411de17f12d1a34ecc7f45f49844626267c75e81
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 00000000000000000000000080226fc0ee2b096224eeac085bb9a8cba1146f7d
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.