Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GasPorter
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 999999 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity 0.8.28; import {Initializable} from "@openzeppelin-contracts-upgradeable/proxy/utils/Initializable.sol"; import {ERC20PermitUser} from "src/other/ERC20PermitUser.sol"; import {EIP712Upgradeable} from "@openzeppelin-contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol"; import {IERC20} from "@openzeppelin-contracts/token/ERC20/IERC20.sol"; import {SafeERC20} from "@openzeppelin-contracts/token/ERC20/utils/SafeERC20.sol"; import {ECDSA} from "@openzeppelin-contracts/utils/cryptography/ECDSA.sol"; import {IVersioned} from "src/other/IVersioned.sol"; /** * @title AggLayer Gas Porter * @notice Bridge ERC-20 tokens and gas* from any AggLayer network to another. * @notice *A gasset is a dynamic asset that can be used to pay for gas on any AggLayer network. When a gasset arrives on the destination network, it becomes, or gets converted to, the native token of that network. * @dev Works with LxLy Bridge and any DEX. * @dev This contract does not have setters. To make changes to it, upgrade it. * @dev GitHub repository: https://github.com/agglayer/gas-porter. */ contract GasPorter is Initializable, ERC20PermitUser, EIP712Upgradeable, IVersioned { using SafeERC20 for IERC20; enum GassetType { NATIVE_TOKEN, ERC20_TOKEN, SETTLEMENT_TOKEN } enum GassetSource { MSG_VALUE, ERC20_ALLOWANCE, DEX_SWAP } /** * @param gassetType The type of gasset that will be bridged. * @param gassetSource From where Gas Porter will get the gasset. * @param gassetAmount If the gasset source is the DEX, specify the minimum expected amount here. * @param swapCalldata If the gasset source is the DEX. * @param gassetPermitData If any. Additionaly, if the asset and gasset are the same ERC20 token, the permitted amount must be the sum of `gassetAmount` and `tokenAmount`, and `tokenPermitData` must be empty. * @param tokenPermitData If any. Must be empty if the asset and gasset are the same ERC20 token and `gassetPermitData` is provided. For more information, see the documentation for `gassetPermitData`. * @param trackingNumber Enables reverse look-up of a `ConversionRequested` event, given a `GassetConverted` or `ConversionFailed` event. Using the current UNIX timestamp is recommended. */ struct Cargo { // Call: uint256 msgValue; // Destination: uint32 destinationNetwork; uint32 destinationNetworkGasTokenNetwork; address destinationNetworkGasTokenAddress; address destinationAddress; address destinationGasPorterDex; // Gasset: GassetType gassetType; GassetSource gassetSource; uint256 gassetAmount; // Asset: address token; uint256 tokenAmount; // Enforced, but not verified: bytes gassetPermitData; bytes swapCalldata; bytes tokenPermitData; bool forceUpdateGlobalExitRoot; // Tracking: uint256 trackingNumber; } /** * @dev A signature that authorizes anyone to convert the settlement token to the native token for the recipient on a destination network, as long as the requirements the recipient set are satisfied. See the documentation for `ConversionAuthorizationData`. * @dev Terminology: Gas Porter allows a sender to bridge an asset and gas to themselves or another EOA. When bridging to another EOA, that EOA must signs the authorization. For this reason, the word 'recipient' is used to distinguish who performs an action when the sender and recipient are different. * @param signature The signer must be the recipient. */ struct ConversionAuthorization { ConversionAuthorizationData data; bytes signature; } /** * @dev Conversion requirements set and signed by the recipient, and submitted by the sender. See the documentation for `_CONVERSION_AUTHORIZATION_DATA_TYPE_HASH`. * @param trackingNumber See the documentation for `Cargo`. * @param gassetDestinationPermitData If any. * @param gassetDestinationAmount The amount of the gasset that will be exchanged for the native token on the destination network. * @param destinationNativeTokenMinimumAmount The minimum amount of the native token the recipient must receive from the DEX swap. * @param deadline The timestamp after which the authorization is no longer valid. */ struct ConversionAuthorizationData { uint32 originNetworkID; uint256 trackingNumber; address signer; uint256 conversionNonce; address gassetDestinationAddress; bytes gassetDestinationPermitData; uint256 gassetDestinationAmount; bytes destinationSwapCalldata; uint256 destinationNativeTokenMinimumAmount; uint256 deadline; } /** * @dev Storage of the Gas Porter contract. * @dev It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions when using with upgradeable contracts. * @custom:storage-location erc7201:agglayer.storage.GasPorter */ struct GasPorterStorage { /** * @dev Nonces prevent replay attacks for `convertGasset`. * @dev Implementing a custom nonce mechanism in Gas Porter, rather then relying on ERC-20 permit nonce, lowers the chance of nonce collisions. For more information, see the documentation for `convertGasset`. */ mapping(address user => mapping(uint32 originNetworkID => uint256 nonce)) _conversionNonces; } /// @dev The storage slot at which Gas Porter storage starts, following the EIP-7201 standard. /// @dev Calculated as `keccak256(abi.encode(uint256(keccak256("agglayer.storage.GasPorter")) - 1)) & ~bytes32(uint256(0xff))`. bytes32 private constant _GAS_PORTER_STORAGE = 0xe95e2b6c2122717d5b0c6c83181db905f0f9f127ac1a07137c3b512219374c00; /// @dev The EIP-712 type hash for `ConversionAuthorizationData`. bytes32 private constant _CONVERSION_AUTHORIZATION_DATA_TYPE_HASH = keccak256( "ConversionAuthorizationData(uint32 originNetworkID,uint256 trackingNumber,address signer,uint256 conversionNonce,address gassetDestinationAddress,bytes gassetDestinationPermitData,uint256 gassetDestinationAmount,bytes destinationSwapCalldata,uint256 destinationNativeTokenMinimumAmount,uint256 deadline)" ); /// @dev See the documentation for `gasTokenAddress`. address internal constant _NON_ETH_ORIGINAL_NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; ILxlyBridge public immutable lxlyBridge; uint32 public immutable networkID; /// @notice The gas token network represents the LxLy ID of the network the native token of this network originated on. For example, if this network's native token is ABC, but ABC was originally created on Ethereum and bridged to this network, the gas token network will be the LxLy ID of Ethereum. uint32 public immutable gasTokenNetwork; /// @notice The gas token address represents the address of the native token of this network on the network it originated on. For example, if this network's native token is ABC, but ABC was originally created on Ethereum and bridged to this network, the gas token address will be the address of ABC on Ethereum. Important: LxLy Bridged assumes that address zero always means ETH. It is proposed that address `0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE` (a.k.a., the dolphin address) should be used for original native tokens of other L1s (a.k.a., "non-ETH original native tokens"). address public immutable gasTokenAddress; address public immutable dex; /// @notice Settlement token can be used when there is no liqudity on an origin network to swap the native token of that network for the original or representative native token of a destination network. /// @notice Terminology: Origin network can mean different things, depending on whether we are talking about transactions or tokens. In context of transactions, it refers to the network `bridgeAssetAndGas` is called from, as opposed to the 'destination' network (where `convertGasset` may be called after bridging). In context of tokens, it refers to the network the token was originally created on, before it got bridged to other networks. /// @dev The token must support ERC-20 permit (ERC-2612). address public immutable settlementToken; /// @notice Whether the settlement token happens to be the native token on this network. bool public immutable settlementTokenIsNativeToken; /// @dev Reverse look-up is possible via `trackingNumber`. See `ConversionRequested` and `ConversionFailed`. event ConversionRequested( uint256 indexed trackingNumber, uint32 destinationNetwork, address destinationAddress, address gasset, uint256 bridgedGassetAmount ); /// @dev Without `signer`, anyone can fake `originNetworkID` and `trackingNumber`. event GassetConverted(uint32 indexed originNetworkID, uint256 indexed trackingNumber, address indexed signer); /// @dev Without `signer`, anyone can fake `originNetworkID` and `trackingNumber`. event ConversionFailed( uint32 indexed originNetworkID, uint256 indexed trackingNumber, address indexed signer, address msgSender, bytes reason ); error InvalidGassetTypeAndGassetSourceCombination(); error GasPorterOnCurrentNetworkDoesNotSupportDexSwapAsGassetSourceYet(); error InsufficientMessageValue(uint256 amount, uint256 minimumAmount); error DestinationNetworkCannotBeCurrentNetwork(); error InvalidToken(); error TokenAmountCannotBeZero(); error GassetAmountCannotBeZero(); error DestinationAddressCannotBeAddressZero(); error GassetPermitDataMustBeEmptyWhenGassetIsNativeToken(); error SwapCalldataCannotBeEmptyWhenGassetSourceIsDexSwap(); error SwapCalldataMustBeEmptyWhenGassetSourceIsNotDexSwap(); error TokenPermitDataMustBeEmptyWhenAssetIsNativeToken(); error GassetTypeCannotBeNativeTokenWhenNativeTokensAreDifferent(); error GassetTypeCannotBeERC20TokenWhenNativeTokensAreTheSame(); error CannotDetermineGassetMakeSureDestinationNetworkParametersAreCorrect(); error CannotDetermineGassetBecauseRepresentativeTokenDoesNotExist(); error TokenPermitDataMustBeEmptyWhenAssetAndGassetAreTheSameAndGassetPermitDataIsProvided(); error GassetCannotBeDolphinAddressDidYouMeanAddressZero(); error CannotDetermineConversionMakeSureDestinationNetworkParametersAreCorrect(); error CannotDetermineConversionBecauseRepresentativeTokenDoesNotExist(); error GasPorterOnDestinationNetworkDoesNotSupportGassetConversionYet(); error SwapFailedBecauseDexRevertedWithoutExplanation(); error SwapFailedBecauseDexGaveInsufficientAmount(uint256 amount); error CannotReturnExcessiveMessageValueToYou(); error SwapCalldataCannotBeProvidedWhenMessageValueIsProvided(); error GasPorterOnCurrentNetworkDoesNotSupportGassetConversionYet(); error SignerInAuthorizationDataAndActualSignerDoNotMatch(); error ThisFunctionCanOnlyBeCalledByGasPorter(); error OriginNetworkCannotBeCurrentNetwork(); error AuthorizationExpired(); error InvalidConversionNonce(); error CannotDeliverNativeTokenToRecipient(); constructor(address lxlyBridge_, address dex_, address settlementToken_) { _disableInitializers(); lxlyBridge = ILxlyBridge(lxlyBridge_); networkID = lxlyBridge.networkID(); gasTokenNetwork = lxlyBridge.gasTokenNetwork(); gasTokenAddress = lxlyBridge.gasTokenAddress(); dex = dex_; settlementToken = settlementToken_; settlementTokenIsNativeToken = settlementToken == address(0); } // The DEX may return excessive message value on a swap. receive() external payable {} modifier onlySelf() { if (msg.sender != address(this)) revert ThisFunctionCanOnlyBeCalledByGasPorter(); _; } function initialize() external initializer { __EIP712_init("GasPorter", "1.0.0"); } function conversionNonce(address user, uint32 originNetworkID) external view returns (uint256) { return _getGasPorterStorage()._conversionNonces[user][originNetworkID]; } /* 0. GAS PORTER IS DESIGNED TO BE USED WITH POLYGON PORTAL UI AND THE AUTO-CLAIM SERVICE WITH THE GAS PORTING FUNCTIONALITY. */ /* 1. USE `plotRoute` OFFCHAIN TO GENERATE CALLDATA FOR `bridgeAssetAndGas`. */ /** * @notice Verifies inputs and generates calldata for `bridgeAssetAndGas` (including the four-byte function selector). * @dev You can use `determineGasset` prior to calling this function to check if your expected gasset matches the actual gasset. * @dev This function was not designed to be used onchain. */ function plotRoute(Cargo calldata cargo) external view returns (uint256 msgValue, bytes memory callData) { // =============== ::: VERIFY INPUTS ::: =============== bool assetIsNativeToken = cargo.token == address(0); bool gassetIsNativeToken = cargo.gassetType == GassetType.NATIVE_TOKEN || cargo.gassetType == GassetType.SETTLEMENT_TOKEN && settlementTokenIsNativeToken; if ( cargo.gassetSource == GassetSource.MSG_VALUE && !gassetIsNativeToken || cargo.gassetSource == GassetSource.ERC20_ALLOWANCE && gassetIsNativeToken || cargo.gassetSource == GassetSource.DEX_SWAP && gassetIsNativeToken ) revert InvalidGassetTypeAndGassetSourceCombination(); if (cargo.gassetSource == GassetSource.DEX_SWAP && dex == address(0)) { revert GasPorterOnCurrentNetworkDoesNotSupportDexSwapAsGassetSourceYet(); } if (cargo.destinationNetwork == networkID) revert DestinationNetworkCannotBeCurrentNetwork(); if (cargo.token == _NON_ETH_ORIGINAL_NATIVE_TOKEN) revert InvalidToken(); if (cargo.tokenAmount == 0) revert TokenAmountCannotBeZero(); if (cargo.gassetAmount == 0) revert GassetAmountCannotBeZero(); if (cargo.destinationAddress == address(0)) revert DestinationAddressCannotBeAddressZero(); if (gassetIsNativeToken && cargo.gassetPermitData.length != 0) { revert GassetPermitDataMustBeEmptyWhenGassetIsNativeToken(); } if (cargo.gassetSource == GassetSource.DEX_SWAP && cargo.swapCalldata.length == 0) { revert SwapCalldataCannotBeEmptyWhenGassetSourceIsDexSwap(); } if (cargo.gassetSource != GassetSource.DEX_SWAP && cargo.swapCalldata.length != 0) { revert SwapCalldataMustBeEmptyWhenGassetSourceIsNotDexSwap(); } if (assetIsNativeToken && cargo.tokenPermitData.length != 0) { revert TokenPermitDataMustBeEmptyWhenAssetIsNativeToken(); } uint256 minMsgValue = (assetIsNativeToken ? cargo.tokenAmount : 0) + (gassetIsNativeToken ? cargo.gassetAmount : 0) + (cargo.gassetSource == GassetSource.DEX_SWAP ? 1 : 0); if (cargo.msgValue < minMsgValue) revert InsufficientMessageValue(cargo.msgValue, minMsgValue); // =============== ::: DETERMINE GASSET ::: =============== address gasset = determineGasset( cargo.destinationNetworkGasTokenNetwork, cargo.destinationNetworkGasTokenAddress, cargo.gassetType ); if (gasset == cargo.token && cargo.gassetPermitData.length != 0 && cargo.tokenPermitData.length != 0) { revert TokenPermitDataMustBeEmptyWhenAssetAndGassetAreTheSameAndGassetPermitDataIsProvided(); } // =============== ::: DETERMINE CONVERSION ::: =============== bool conversionRequired = determineConversion( cargo.destinationNetworkGasTokenNetwork, cargo.destinationNetworkGasTokenAddress, gasset ); if (conversionRequired && cargo.destinationGasPorterDex == address(0)) { revert GasPorterOnDestinationNetworkDoesNotSupportGassetConversionYet(); } // =============== ::: PLOT ROUTE ::: =============== // Solves the stack-too-deep error. bytes memory tokenPermitData = cargo.tokenPermitData; msgValue = cargo.msgValue; callData = abi.encodeCall( GasPorter.bridgeAssetAndGas, ( conversionRequired, cargo.forceUpdateGlobalExitRoot, cargo.destinationNetwork, cargo.destinationAddress, cargo.trackingNumber, gasset, cargo.gassetSource, cargo.gassetPermitData, cargo.gassetAmount, cargo.swapCalldata, cargo.token, cargo.tokenAmount, tokenPermitData ) ); } /* 2. CALL `bridgeAssetAndGas` WITH THE CALLDATA YOU GENERATED WITH `plotRoute`. */ /** * @notice IMPORTANT: This function does NOT verify inputs! Please use `plotRoute` to generate correct calldata (including the four-byte function selector). * @notice Bridge an ERC-20 token and gas to another AggLayer network. * @dev This function emits a `ConversionRequested` event. UIs or backends should record the transaction hash to track conversions they are responsible for. */ function bridgeAssetAndGas( bool requestConversion, bool forceUpdateGlobalExitRoot, uint32 destinationNetwork, address destinationAddress, uint256 trackingNumber, address gasset, GassetSource gassetSource, bytes calldata gassetPermitData, uint256 gassetAmount, bytes calldata swapCalldata, address token, uint256 tokenAmount, bytes calldata tokenPermitData ) external payable { // =============== ::: PREPARE GASSET ::: =============== bool assetIsNativeToken = token == address(0); bool assetAndGassetAreTheSame = gasset == token; // Used for return data of low-level calls. bool ok; bytes memory data; // Used when the asset and gasset are the same ERC-20 token. uint256 tokenAndGassetSum; if (gassetSource == GassetSource.ERC20_ALLOWANCE) { // Try to save gas by bundling the asset and gasset together. if (assetAndGassetAreTheSame) { tokenAndGassetSum = tokenAmount + gassetAmount; // We override the `gassetAmount` temporarily. gassetAmount += tokenAmount; } if (gassetPermitData.length != 0) _permit(gasset, gassetAmount, gassetPermitData); IERC20(gasset).safeTransferFrom(msg.sender, address(this), gassetAmount); gassetAmount = IERC20(gasset).balanceOf(address(this)); IERC20(gasset).forceApprove(address(lxlyBridge), gassetAmount); if (assetAndGassetAreTheSame) { // Separate `gassetAmount` and `tokenAmount`. uint256 tokenProportion = tokenAmount * 1e18 / tokenAndGassetSum; tokenAmount = (gassetAmount * tokenProportion + 1e18 - 1) / 1e18; gassetAmount -= tokenAmount; } } else if (gassetSource == GassetSource.DEX_SWAP) { (ok, data) = dex.call{value: assetIsNativeToken ? msg.value - tokenAmount : msg.value}(swapCalldata); if (!ok) { if (data.length == 0) revert SwapFailedBecauseDexRevertedWithoutExplanation(); // Surface the original error. assembly { revert(add(32, data), mload(data)) } } uint256 actualGassetAmount = IERC20(gasset).balanceOf(address(this)); if (actualGassetAmount < gassetAmount) { revert SwapFailedBecauseDexGaveInsufficientAmount(actualGassetAmount); } gassetAmount = actualGassetAmount; IERC20(gasset).forceApprove(address(lxlyBridge), gassetAmount); } // =============== ::: BRIDGE GASSET ::: =============== bool gassetIsNativeToken = gasset == address(0); uint256 bridgedGassetAmount = gassetIsNativeToken ? gassetAmount : IERC20(gasset).balanceOf(address(lxlyBridge)); // `bridgedGassetAmount` will be adjusted below. // Try to save gas by bundling the asset and gasset together. if (assetAndGassetAreTheSame) { tokenAndGassetSum = tokenAmount + gassetAmount; // We override the `gassetAmount`. gassetAmount += tokenAmount; } lxlyBridge.bridgeAsset{value: gassetIsNativeToken ? gassetAmount : 0}( destinationNetwork, destinationAddress, gassetAmount, gasset, assetAndGassetAreTheSame ? forceUpdateGlobalExitRoot : false, "" ); if (!gassetIsNativeToken) { bridgedGassetAmount = IERC20(gasset).balanceOf(address(lxlyBridge)) - bridgedGassetAmount; if (assetAndGassetAreTheSame) { // Separate `bridgedGassetAmount`. uint256 tokenProportion = tokenAmount * 1e18 / tokenAndGassetSum; tokenAmount = (bridgedGassetAmount * tokenProportion + 1e18 - 1) / 1e18; bridgedGassetAmount -= tokenAmount; } } // =============== ::: BRIDGE ASSET ::: =============== if (!assetAndGassetAreTheSame) { if (!assetIsNativeToken) { if (tokenPermitData.length != 0) _permit(token, tokenAmount, tokenPermitData); IERC20(token).safeTransferFrom(msg.sender, address(this), tokenAmount); tokenAmount = IERC20(token).balanceOf(address(this)); IERC20(token).forceApprove(address(lxlyBridge), tokenAmount); } lxlyBridge.bridgeAsset{value: assetIsNativeToken ? tokenAmount : 0}( destinationNetwork, destinationAddress, tokenAmount, token, forceUpdateGlobalExitRoot, "" ); } // =============== ::: DRAIN CONTRACT ::: =============== if (address(this).balance > 0) { (ok,) = msg.sender.call{value: address(this).balance}(""); if (!ok) revert CannotReturnExcessiveMessageValueToYou(); } // =============== ::: EMIT EVENT ::: =============== if (requestConversion) { emit ConversionRequested( trackingNumber, destinationNetwork, destinationAddress, gasset, bridgedGassetAmount ); } } /* 3. IF `bridgeAssetAndGas` EMITTED `ConversionRequested`, REQUEST FROM `destinationAddress` TO SIGN CONVERSION AUTHORIZATION. How to do this: - If the sender is the `destinationAddress`, show the relevant data and prompt the sender to sign the authorization. - If the sender is not the `destinationAddress`, the UI should generate a sharable link. - When the link is opened, it shows the relevant data with a button to sign it. - Once signed, it checks that the signer is the `destinationAddress`. */ /* 4. AFTER THE ASSET AND GASSET HAVE BEEN BRIDGED, THE AUTO-CLAIM SERVICE NEEDS TO CALL `convertGasset` ON THE DESTINATION NETWORK WITH THE AUTHORIZATION YOU GOT FROM `destinationAddress`. */ /** * @notice Called by the Auto-Claim Service on the destination network when the settlement token has been bridged and needs to be converted to the native token. (See https://github.com/0xPolygon/auto-claim-service). * @dev This function also supports conversion of any ERC-20 token the user already has on the destination network to the native token. That means LxLy Bridge's `bridgeAsset` can be called directly on an origin network to bridge a desired asset, followed by a call to `convertGasset` on the destination network to deliver the native token, without waiting. * @dev Using a permit with the infinite amount may be more convenient because the user won't necessarily have to approve Gas Porter (or submit a permit) when they use `bridgeAssetAndGas` or `convertGasset` next time. * @dev The DEX may change before the gasset arrives on the destination network. In a such case, new authorization may be required. Additionally, due to the fact that the Auto-Claim Service may use different accounts for gasset conversions, it is not possible to use message-sender-specific conversion nonces (as opposed to recipient-specific nonces), which would have prevented nonce collisions when `bridgeAssetAndGas` is called multiple times from the same origin network in a short period of time. */ function convertGasset(ConversionAuthorization calldata authorization) external { // =============== ::: CHECK AVAILABILITY ::: =============== if (dex == address(0)) revert GasPorterOnCurrentNetworkDoesNotSupportGassetConversionYet(); // =============== ::: AUTHENTICATE RECIPIENT ::: =============== bytes32 digest = _hashTypedDataV4( keccak256( abi.encode( _CONVERSION_AUTHORIZATION_DATA_TYPE_HASH, authorization.data.originNetworkID, authorization.data.trackingNumber, authorization.data.signer, authorization.data.conversionNonce, authorization.data.gassetDestinationAddress, keccak256(authorization.data.gassetDestinationPermitData), authorization.data.gassetDestinationAmount, keccak256(authorization.data.destinationSwapCalldata), authorization.data.destinationNativeTokenMinimumAmount, authorization.data.deadline ) ) ); // This should be `destinationAddress` from `bridgeAssetAndGas`. address signer = ECDSA.recover(digest, authorization.signature); // This prevents recovery of a random address. if (signer != authorization.data.signer) revert SignerInAuthorizationDataAndActualSignerDoNotMatch(); // =============== ::: SELF-CALL & EMIT EVENT ::: =============== try this.convertGasset_(authorization.data, signer) { emit GassetConverted(authorization.data.originNetworkID, authorization.data.trackingNumber, signer); } catch (bytes memory reason) { emit ConversionFailed( authorization.data.originNetworkID, authorization.data.trackingNumber, signer, msg.sender, reason ); } } /** * @notice This function can only be called by Gas Porter. Please use `convertGasset` instead. */ function convertGasset_(ConversionAuthorizationData calldata authorizationData, address signer) external onlySelf { // =============== ::: VERIFY CONVERSION ::: =============== if (authorizationData.originNetworkID == networkID) revert OriginNetworkCannotBeCurrentNetwork(); if (block.timestamp > authorizationData.deadline) revert AuthorizationExpired(); // Verify the nonce and increment it. if ( authorizationData.conversionNonce != _getGasPorterStorage()._conversionNonces[signer][authorizationData.originNetworkID]++ ) { revert InvalidConversionNonce(); } // =============== ::: PREPARE GASSET ::: =============== if (authorizationData.gassetDestinationPermitData.length != 0) { _permit( authorizationData.gassetDestinationAddress, authorizationData.gassetDestinationAmount, authorizationData.gassetDestinationPermitData ); } IERC20 gasset = IERC20(authorizationData.gassetDestinationAddress); gasset.safeTransferFrom(signer, address(this), authorizationData.gassetDestinationAmount); uint256 gassetBalance = gasset.balanceOf(address(this)); gasset.forceApprove(dex, gassetBalance); // =============== ::: CONVERT GASSET ::: =============== // Used for return data of low-level calls. bool ok; bytes memory data; (ok, data) = dex.call(authorizationData.destinationSwapCalldata); if (!ok) { if (data.length == 0) revert SwapFailedBecauseDexRevertedWithoutExplanation(); // Surface the original error. assembly { revert(add(32, data), mload(data)) } } uint256 nativeTokenAmount = address(this).balance; if (nativeTokenAmount < authorizationData.destinationNativeTokenMinimumAmount) { revert SwapFailedBecauseDexGaveInsufficientAmount(nativeTokenAmount); } // =============== ::: DELIVER NATIVE TOKEN ::: =============== (ok,) = signer.call{value: nativeTokenAmount}(""); if (!ok) revert CannotDeliverNativeTokenToRecipient(); // ================= ::: DRAIN CONTRACT ::: =============== gassetBalance = gasset.balanceOf(address(this)); if (gassetBalance > 0) { gasset.safeTransfer(signer, gassetBalance); } } /* 5. NOTIFY `destinationAddress` IF THE CONVERSION FAILED TO RETRY. */ /** * @notice Invalidates the current conversion nonce of the message sender for a given origin network. * @notice This will cause all conversion authorizations with that nonce to fail. */ function invalidateConversionNonce(uint32 originNetworkID) external { ++_getGasPorterStorage()._conversionNonces[msg.sender][originNetworkID]; } /// @inheritdoc IVersioned function version() external pure returns (string memory) { return "1.0.0"; } /** * @notice Determines the gasset based on the destination network's gas token network, gas token address, and the selected gasset type. * @dev This function is used by `plotRoute` to determine the gasset. For more information, see the documentation for `plotRoute`. */ function determineGasset( uint32 destinationNetworkGasTokenNetwork, address destinationNetworkGasTokenAddress, GassetType gassetType ) public view returns (address gasset) { address WETHToken_ = WETHToken(); bool nativeTokensAreTheSame = destinationNetworkGasTokenNetwork == gasTokenNetwork && destinationNetworkGasTokenAddress == gasTokenAddress; // This prevents incorrectly pointing the gas token of the destination network to the native token of the current network, when the native token of the current network originates from another network, or to an ERC-20 token on the current network, when the ERC-20 token originates from another network. if (destinationNetworkGasTokenNetwork == networkID) { if ( destinationNetworkGasTokenAddress == address(0) || destinationNetworkGasTokenAddress == _NON_ETH_ORIGINAL_NATIVE_TOKEN ) { if (!nativeTokensAreTheSame) { revert CannotDetermineGassetMakeSureDestinationNetworkParametersAreCorrect(); } } else { // Caution: WETH is unmapped on LxLy Bridge: `lxlyBridge.wrappedTokenToTokenInfo` returns `(0, address(0))` for both WETH and non-existent wrapped tokens so that case must be handled manually. if (destinationNetworkGasTokenAddress == WETHToken_ && WETHToken_ != address(0)) { revert CannotDetermineGassetMakeSureDestinationNetworkParametersAreCorrect(); } else { (uint32 originNetwork, address originTokenAddress) = lxlyBridge.wrappedTokenToTokenInfo(destinationNetworkGasTokenAddress); if (originNetwork != 0 || originTokenAddress != address(0)) { revert CannotDetermineGassetMakeSureDestinationNetworkParametersAreCorrect(); } } } } if (gassetType == GassetType.NATIVE_TOKEN) { // The native tokens are the same. if (!nativeTokensAreTheSame) revert GassetTypeCannotBeNativeTokenWhenNativeTokensAreDifferent(); } else if (gassetType == GassetType.ERC20_TOKEN) { if (nativeTokensAreTheSame) revert GassetTypeCannotBeERC20TokenWhenNativeTokensAreTheSame(); if (destinationNetworkGasTokenNetwork == networkID) { // The native token of the destination network originates from this network as an ERC-20 token. if ( destinationNetworkGasTokenAddress == address(0) || destinationNetworkGasTokenAddress == _NON_ETH_ORIGINAL_NATIVE_TOKEN ) { revert CannotDetermineGassetMakeSureDestinationNetworkParametersAreCorrect(); } gasset = destinationNetworkGasTokenAddress; } else { // The native token of the destination network does not originate from this network. // Caution: WETH is unmapped on LxLy Bridge: `lxlyBridge.getTokenWrappedAddress(0, address(0))` returns `address(0)`, so that case must be handled manually. if (destinationNetworkGasTokenNetwork == 0 && destinationNetworkGasTokenAddress == address(0)) { gasset = WETHToken_; } else { gasset = lxlyBridge.getTokenWrappedAddress( destinationNetworkGasTokenNetwork, destinationNetworkGasTokenAddress ); if (gasset == address(0)) revert CannotDetermineGassetBecauseRepresentativeTokenDoesNotExist(); } } } else { gasset = settlementToken; } } /** * @notice Determines whether a gasset conversion will be required on the destination network. */ function determineConversion( uint32 destinationNetworkGasTokenNetwork, address destinationNetworkGasTokenAddress, address gasset ) public view returns (bool conversionRequired) { if (gasset == _NON_ETH_ORIGINAL_NATIVE_TOKEN) revert GassetCannotBeDolphinAddressDidYouMeanAddressZero(); address WETHToken_ = WETHToken(); bool nativeTokensAreTheSame = destinationNetworkGasTokenNetwork == gasTokenNetwork && destinationNetworkGasTokenAddress == gasTokenAddress; bool gassetIsNativeToken = gasset == address(0); // This prevents incorrectly pointing the gas token of the destination network to the native token of the current network, when the native token of the current network originates from another network, or to an ERC-20 token on the current network, when the ERC-20 token originates from another network. if (destinationNetworkGasTokenNetwork == networkID) { if ( destinationNetworkGasTokenAddress == address(0) || destinationNetworkGasTokenAddress == _NON_ETH_ORIGINAL_NATIVE_TOKEN ) { if (!nativeTokensAreTheSame) { revert CannotDetermineConversionMakeSureDestinationNetworkParametersAreCorrect(); } } else { // Caution: WETH is unmapped on LxLy Bridge: `lxlyBridge.wrappedTokenToTokenInfo` returns `(0, address(0))` for both WETH and non-existent wrapped tokens so that case must be handled manually. if (destinationNetworkGasTokenAddress == WETHToken_ && WETHToken_ != address(0)) { revert CannotDetermineConversionMakeSureDestinationNetworkParametersAreCorrect(); } else { (uint32 originNetwork, address originTokenAddress) = lxlyBridge.wrappedTokenToTokenInfo(destinationNetworkGasTokenAddress); if (originNetwork != 0 || originTokenAddress != address(0)) { revert CannotDetermineConversionMakeSureDestinationNetworkParametersAreCorrect(); } } } } // (The native tokens are the same). if (nativeTokensAreTheSame && gassetIsNativeToken) { /* conversion not required */ } else { // (The native token of the destination network originates from this network). if (destinationNetworkGasTokenNetwork == networkID) { conversionRequired = gasset != destinationNetworkGasTokenAddress; } else { // (The native token of the destination network does not originate from this network). // Caution: WETH is unmapped on LxLy Bridge: `lxlyBridge.wrappedTokenToTokenInfo` returns `(0, address(0))` for both WETH and non-existent wrapped tokens so that case must be handled manually. if (destinationNetworkGasTokenNetwork == 0 && destinationNetworkGasTokenAddress == address(0)) { conversionRequired = gasset != WETHToken_; } else { (uint32 originNetwork, address originTokenAddress) = lxlyBridge.wrappedTokenToTokenInfo(gasset); if (originNetwork == 0 && originTokenAddress == address(0)) { revert CannotDetermineConversionBecauseRepresentativeTokenDoesNotExist(); } conversionRequired = originNetwork != destinationNetworkGasTokenNetwork || originTokenAddress != destinationNetworkGasTokenAddress; } } } } /** * @dev Info: `WETHToken` can change on LxLy Bridge if there is `setSovereignWETHAddress` function (part of the LxLy custom mappings update). */ function WETHToken() public view returns (address) { return lxlyBridge.WETHToken(); } /** * @dev Returns a pointer to the ERC-7201 storage namespace. */ function _getGasPorterStorage() private pure returns (GasPorterStorage storage $) { assembly { $.slot := _GAS_PORTER_STORAGE } } } interface ILxlyBridge { function networkID() external returns (uint32); function gasTokenAddress() external returns (address); function gasTokenNetwork() external returns (uint32); // Info: `WETHToken` can change on LxLy Bridge if there is `setSovereignWETHAddress` function (part of the LxLy custom mappings update). function WETHToken() external view returns (address); // Caution: WETH is unmapped on LxLy Bridge: `lxlyBridge.wrappedTokenToTokenInfo` returns `(0, address(0))` for both WETH and non-existent wrapped tokens so that case must be handled manually. function wrappedTokenToTokenInfo(address wrappedToken) external view returns (uint32 originNetwork, address originTokenAddress); // Caution: WETH is unmapped on LxLy Bridge: `lxlyBridge.getTokenWrappedAddress(0, address(0))` returns `address(0)`, so that case must be handled manually. function getTokenWrappedAddress(uint32 originNetwork, address originTokenAddress) external view returns (address); function bridgeAsset( uint32 destinationNetwork, address destinationAddress, uint256 amount, address token, bool forceUpdateGlobalExitRoot, bytes calldata permitData ) external payable; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._initialized = version; $._initializing = true; _; $._initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity 0.8.28; abstract contract ERC20PermitUser { /// @dev Calculated as `bytes4(keccak256(bytes("permit(address,address,uint256,uint256,uint8,bytes32,bytes32)")))`. bytes4 private constant _PERMIT_SIGNATURE = 0xd505accf; // Calculated as `bytes4(keccak256(bytes("permit(address,address,uint256,uint256,bool,uint8,bytes32,bytes32)")))`. bytes4 private constant _PERMIT_SIGNATURE_DAI = 0x8fcbaf0c; error InsufficientAmountInERC20Permit(uint256 amount, uint256 minimumAmount); error UnknownFunctionSelectorInERC20Permit(); function _permit(address token, uint256 minimumAmount, bytes calldata permitData) internal { bytes4 sig = bytes4(permitData[:4]); if (sig == _PERMIT_SIGNATURE) { uint256 amount = abi.decode(permitData[68:100], (uint256)); if (amount < minimumAmount) { revert InsufficientAmountInERC20Permit(amount, minimumAmount); } } else if (sig == _PERMIT_SIGNATURE_DAI) { bool allowed = abi.decode(permitData[132:164], (bool)); if (!allowed) { revert InsufficientAmountInERC20Permit(0, minimumAmount); } } else { // This prevents arbitrary calls to arbitrary addresses. revert UnknownFunctionSelectorInERC20Permit(); } (bool ok,) = address(token).call(permitData); // We do not revert on failure to avoid potential DoS attacks caused by frontrunning the permit application. // If the allowance is insufficient, the subsequent transfer call will fail. ok; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.20; import {MessageHashUtils} from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol"; import {IERC5267} from "@openzeppelin/contracts/interfaces/IERC5267.sol"; import {Initializable} from "../../proxy/utils/Initializable.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. */ abstract contract EIP712Upgradeable is Initializable, IERC5267 { bytes32 private constant TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); /// @custom:storage-location erc7201:openzeppelin.storage.EIP712 struct EIP712Storage { /// @custom:oz-renamed-from _HASHED_NAME bytes32 _hashedName; /// @custom:oz-renamed-from _HASHED_VERSION bytes32 _hashedVersion; string _name; string _version; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.EIP712")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant EIP712StorageLocation = 0xa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100; function _getEIP712Storage() private pure returns (EIP712Storage storage $) { assembly { $.slot := EIP712StorageLocation } } /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ function __EIP712_init(string memory name, string memory version) internal onlyInitializing { __EIP712_init_unchained(name, version); } function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing { EIP712Storage storage $ = _getEIP712Storage(); $._name = name; $._version = version; // Reset prior values in storage if upgrading $._hashedName = 0; $._hashedVersion = 0; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { return _buildDomainSeparator(); } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash(), block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {IERC-5267}. */ function eip712Domain() public view virtual returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { EIP712Storage storage $ = _getEIP712Storage(); // If the hashed name and version in storage are non-zero, the contract hasn't been properly initialized // and the EIP712 domain is not reliable, as it will be missing name and version. require($._hashedName == 0 && $._hashedVersion == 0, "EIP712: Uninitialized"); return ( hex"0f", // 01111 _EIP712Name(), _EIP712Version(), block.chainid, address(this), bytes32(0), new uint256[](0) ); } /** * @dev The name parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712Name() internal view virtual returns (string memory) { EIP712Storage storage $ = _getEIP712Storage(); return $._name; } /** * @dev The version parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712Version() internal view virtual returns (string memory) { EIP712Storage storage $ = _getEIP712Storage(); return $._version; } /** * @dev The hash of the name parameter for the EIP712 domain. * * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Name` instead. */ function _EIP712NameHash() internal view returns (bytes32) { EIP712Storage storage $ = _getEIP712Storage(); string memory name = _EIP712Name(); if (bytes(name).length > 0) { return keccak256(bytes(name)); } else { // If the name is empty, the contract may have been upgraded without initializing the new storage. // We return the name hash in storage if non-zero, otherwise we assume the name is empty by design. bytes32 hashedName = $._hashedName; if (hashedName != 0) { return hashedName; } else { return keccak256(""); } } } /** * @dev The hash of the version parameter for the EIP712 domain. * * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Version` instead. */ function _EIP712VersionHash() internal view returns (bytes32) { EIP712Storage storage $ = _getEIP712Storage(); string memory version = _EIP712Version(); if (bytes(version).length > 0) { return keccak256(bytes(version)); } else { // If the version is empty, the contract may have been upgraded without initializing the new storage. // We return the version hash in storage if non-zero, otherwise we assume the version is empty by design. bytes32 hashedVersion = $._hashedVersion; if (hashedVersion != 0) { return hashedVersion; } else { return keccak256(""); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../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; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @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); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @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). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS } /** * @dev The signature derives the `address(0)`. */ error ECDSAInvalidSignature(); /** * @dev The signature has an invalid length. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError, bytes32) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS, s); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } }
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity 0.8.28; interface IVersioned { /// @return The version of the contract. function version() external pure returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol) pragma solidity ^0.8.20; import {Strings} from "../Strings.sol"; /** * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. * * The library provides methods for generating a hash of a message that conforms to the * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] * specifications. */ library MessageHashUtils { /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing a bytes32 `messageHash` with * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with * keccak256, although any bytes32 value can be safely used because the final digest will * be re-hashed. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20) } } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing an arbitrary `message` with * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x00` (data with intended validator). * * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended * `validator` address. Then hashing the result. * * See {ECDSA-recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } /** * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`). * * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with * `\x19\x01` and hashing the result. It corresponds to the hash signed by the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712. * * See {ECDSA-recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.20; interface IERC5267 { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @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. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ 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]. * * CAUTION: See Security Considerations above. */ 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 v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) 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 FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
{ "remappings": [ "@openzeppelin-contracts-upgradeable/=dependencies/@openzeppelin-contracts-upgradeable-5.0.2/", "@openzeppelin-contracts/=dependencies/@openzeppelin-contracts-5.0.2/", "@openzeppelin/contracts/=dependencies/@openzeppelin-contracts-5.0.2/", "forge-std/=dependencies/forge-std-1.9.4/src/", "@openzeppelin-contracts-5.0.2/=dependencies/@openzeppelin-contracts-5.0.2/", "@openzeppelin-contracts-upgradeable-5.0.2/=dependencies/@openzeppelin-contracts-upgradeable-5.0.2/", "forge-std-1.9.4/=dependencies/forge-std-1.9.4/src/" ], "optimizer": { "enabled": true, "runs": 999999 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "shanghai", "viaIR": true, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"lxlyBridge_","type":"address"},{"internalType":"address","name":"dex_","type":"address"},{"internalType":"address","name":"settlementToken_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"AuthorizationExpired","type":"error"},{"inputs":[],"name":"CannotDeliverNativeTokenToRecipient","type":"error"},{"inputs":[],"name":"CannotDetermineConversionBecauseRepresentativeTokenDoesNotExist","type":"error"},{"inputs":[],"name":"CannotDetermineConversionMakeSureDestinationNetworkParametersAreCorrect","type":"error"},{"inputs":[],"name":"CannotDetermineGassetBecauseRepresentativeTokenDoesNotExist","type":"error"},{"inputs":[],"name":"CannotDetermineGassetMakeSureDestinationNetworkParametersAreCorrect","type":"error"},{"inputs":[],"name":"CannotReturnExcessiveMessageValueToYou","type":"error"},{"inputs":[],"name":"DestinationAddressCannotBeAddressZero","type":"error"},{"inputs":[],"name":"DestinationNetworkCannotBeCurrentNetwork","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"GasPorterOnCurrentNetworkDoesNotSupportDexSwapAsGassetSourceYet","type":"error"},{"inputs":[],"name":"GasPorterOnCurrentNetworkDoesNotSupportGassetConversionYet","type":"error"},{"inputs":[],"name":"GasPorterOnDestinationNetworkDoesNotSupportGassetConversionYet","type":"error"},{"inputs":[],"name":"GassetAmountCannotBeZero","type":"error"},{"inputs":[],"name":"GassetCannotBeDolphinAddressDidYouMeanAddressZero","type":"error"},{"inputs":[],"name":"GassetPermitDataMustBeEmptyWhenGassetIsNativeToken","type":"error"},{"inputs":[],"name":"GassetTypeCannotBeERC20TokenWhenNativeTokensAreTheSame","type":"error"},{"inputs":[],"name":"GassetTypeCannotBeNativeTokenWhenNativeTokensAreDifferent","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minimumAmount","type":"uint256"}],"name":"InsufficientAmountInERC20Permit","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minimumAmount","type":"uint256"}],"name":"InsufficientMessageValue","type":"error"},{"inputs":[],"name":"InvalidConversionNonce","type":"error"},{"inputs":[],"name":"InvalidGassetTypeAndGassetSourceCombination","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"InvalidToken","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OriginNetworkCannotBeCurrentNetwork","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"SignerInAuthorizationDataAndActualSignerDoNotMatch","type":"error"},{"inputs":[],"name":"SwapCalldataCannotBeEmptyWhenGassetSourceIsDexSwap","type":"error"},{"inputs":[],"name":"SwapCalldataCannotBeProvidedWhenMessageValueIsProvided","type":"error"},{"inputs":[],"name":"SwapCalldataMustBeEmptyWhenGassetSourceIsNotDexSwap","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapFailedBecauseDexGaveInsufficientAmount","type":"error"},{"inputs":[],"name":"SwapFailedBecauseDexRevertedWithoutExplanation","type":"error"},{"inputs":[],"name":"ThisFunctionCanOnlyBeCalledByGasPorter","type":"error"},{"inputs":[],"name":"TokenAmountCannotBeZero","type":"error"},{"inputs":[],"name":"TokenPermitDataMustBeEmptyWhenAssetAndGassetAreTheSameAndGassetPermitDataIsProvided","type":"error"},{"inputs":[],"name":"TokenPermitDataMustBeEmptyWhenAssetIsNativeToken","type":"error"},{"inputs":[],"name":"UnknownFunctionSelectorInERC20Permit","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"originNetworkID","type":"uint32"},{"indexed":true,"internalType":"uint256","name":"trackingNumber","type":"uint256"},{"indexed":true,"internalType":"address","name":"signer","type":"address"},{"indexed":false,"internalType":"address","name":"msgSender","type":"address"},{"indexed":false,"internalType":"bytes","name":"reason","type":"bytes"}],"name":"ConversionFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"trackingNumber","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"destinationNetwork","type":"uint32"},{"indexed":false,"internalType":"address","name":"destinationAddress","type":"address"},{"indexed":false,"internalType":"address","name":"gasset","type":"address"},{"indexed":false,"internalType":"uint256","name":"bridgedGassetAmount","type":"uint256"}],"name":"ConversionRequested","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"originNetworkID","type":"uint32"},{"indexed":true,"internalType":"uint256","name":"trackingNumber","type":"uint256"},{"indexed":true,"internalType":"address","name":"signer","type":"address"}],"name":"GassetConverted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"inputs":[],"name":"WETHToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"requestConversion","type":"bool"},{"internalType":"bool","name":"forceUpdateGlobalExitRoot","type":"bool"},{"internalType":"uint32","name":"destinationNetwork","type":"uint32"},{"internalType":"address","name":"destinationAddress","type":"address"},{"internalType":"uint256","name":"trackingNumber","type":"uint256"},{"internalType":"address","name":"gasset","type":"address"},{"internalType":"enum GasPorter.GassetSource","name":"gassetSource","type":"uint8"},{"internalType":"bytes","name":"gassetPermitData","type":"bytes"},{"internalType":"uint256","name":"gassetAmount","type":"uint256"},{"internalType":"bytes","name":"swapCalldata","type":"bytes"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"bytes","name":"tokenPermitData","type":"bytes"}],"name":"bridgeAssetAndGas","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint32","name":"originNetworkID","type":"uint32"}],"name":"conversionNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"uint32","name":"originNetworkID","type":"uint32"},{"internalType":"uint256","name":"trackingNumber","type":"uint256"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"conversionNonce","type":"uint256"},{"internalType":"address","name":"gassetDestinationAddress","type":"address"},{"internalType":"bytes","name":"gassetDestinationPermitData","type":"bytes"},{"internalType":"uint256","name":"gassetDestinationAmount","type":"uint256"},{"internalType":"bytes","name":"destinationSwapCalldata","type":"bytes"},{"internalType":"uint256","name":"destinationNativeTokenMinimumAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct GasPorter.ConversionAuthorizationData","name":"data","type":"tuple"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct GasPorter.ConversionAuthorization","name":"authorization","type":"tuple"}],"name":"convertGasset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint32","name":"originNetworkID","type":"uint32"},{"internalType":"uint256","name":"trackingNumber","type":"uint256"},{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"conversionNonce","type":"uint256"},{"internalType":"address","name":"gassetDestinationAddress","type":"address"},{"internalType":"bytes","name":"gassetDestinationPermitData","type":"bytes"},{"internalType":"uint256","name":"gassetDestinationAmount","type":"uint256"},{"internalType":"bytes","name":"destinationSwapCalldata","type":"bytes"},{"internalType":"uint256","name":"destinationNativeTokenMinimumAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"internalType":"struct GasPorter.ConversionAuthorizationData","name":"authorizationData","type":"tuple"},{"internalType":"address","name":"signer","type":"address"}],"name":"convertGasset_","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"destinationNetworkGasTokenNetwork","type":"uint32"},{"internalType":"address","name":"destinationNetworkGasTokenAddress","type":"address"},{"internalType":"address","name":"gasset","type":"address"}],"name":"determineConversion","outputs":[{"internalType":"bool","name":"conversionRequired","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"destinationNetworkGasTokenNetwork","type":"uint32"},{"internalType":"address","name":"destinationNetworkGasTokenAddress","type":"address"},{"internalType":"enum GasPorter.GassetType","name":"gassetType","type":"uint8"}],"name":"determineGasset","outputs":[{"internalType":"address","name":"gasset","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dex","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gasTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gasTokenNetwork","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"originNetworkID","type":"uint32"}],"name":"invalidateConversionNonce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lxlyBridge","outputs":[{"internalType":"contract ILxlyBridge","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"networkID","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"msgValue","type":"uint256"},{"internalType":"uint32","name":"destinationNetwork","type":"uint32"},{"internalType":"uint32","name":"destinationNetworkGasTokenNetwork","type":"uint32"},{"internalType":"address","name":"destinationNetworkGasTokenAddress","type":"address"},{"internalType":"address","name":"destinationAddress","type":"address"},{"internalType":"address","name":"destinationGasPorterDex","type":"address"},{"internalType":"enum GasPorter.GassetType","name":"gassetType","type":"uint8"},{"internalType":"enum GasPorter.GassetSource","name":"gassetSource","type":"uint8"},{"internalType":"uint256","name":"gassetAmount","type":"uint256"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"bytes","name":"gassetPermitData","type":"bytes"},{"internalType":"bytes","name":"swapCalldata","type":"bytes"},{"internalType":"bytes","name":"tokenPermitData","type":"bytes"},{"internalType":"bool","name":"forceUpdateGlobalExitRoot","type":"bool"},{"internalType":"uint256","name":"trackingNumber","type":"uint256"}],"internalType":"struct GasPorter.Cargo","name":"cargo","type":"tuple"}],"name":"plotRoute","outputs":[{"internalType":"uint256","name":"msgValue","type":"uint256"},{"internalType":"bytes","name":"callData","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"settlementToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"settlementTokenIsNativeToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610160806040523461029057606081614e0e80380380916100208285610359565b8339810103126102905761003381610390565b9061004c604061004560208401610390565b9201610390565b915f516020614dee5f395f51905f525460ff8160401c1661034a575f916020916002600160401b03196001600160401b038216016102f5575b506001600160a01b0316608081905260405163bab161bf60e01b815292839160049183915af190811561029c575f916102d6575b5060a052608051604051633cbc795b60e01b815290602090829060049082905f906001600160a01b03165af190811561029c575f916102a7575b5060c0526080516040516303c351e160e41b815290602090829060049082905f906001600160a01b03165af190811561029c575f9161025e575b5060e052610100526101208190526001600160a01b03161561014052604051614a2d90816103c18239608051818181610b340152818161234b0152818161254c0152818161267d01528181612745015281816128e00152818161298701528181612a7a01528181612b1801528181612c9e01528181612ec3015281816131080152818161332b0152818161391a0152613b24015260a0518181816102eb01528181610d4701528181611ce501528181612ffd0152613793015260c05181818161146d01528181612fce0152613763015260e05181818161140f015281816134210152613c1b01526101005181818161045501528181610762015281816112df015281816117360152612e170152610120518181816117a401526139fd015261014051818181610b8d01526113a10152f35b90506020813d602011610294575b8161027960209383610359565b810103126102905761028a90610390565b5f61012d565b5f80fd5b3d915061026c565b6040513d5f823e3d90fd5b6102c9915060203d6020116102cf575b6102c18183610359565b8101906103a4565b5f6100f3565b503d6102b7565b6102ef915060203d6020116102cf576102c18183610359565b5f6100b9565b6001600160401b0319166001600160401b039081175f516020614dee5f395f51905f52556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2908390a15f610085565b63f92ee8a960e01b5f5260045ffd5b601f909101601f19168101906001600160401b0382119082101761037c57604052565b634e487b7160e01b5f52604160045260245ffd5b51906001600160a01b038216820361029057565b90816020910312610290575163ffffffff81168103610290579056fe6080604052600436101561001a575b3615610018575f80fd5b005b5f3560e01c80631b48f96d146101495780632103accb1461014457806326f59dd11461013f5780632bdbe6fb1461013a5780632c00872f146101355780633553f566146101305780633c351e101461012b5780633cbc795b146101265780634b2f336d146101215780634f14fd621461011c57806351789e631461011757806354fd4d5014610112578063692058c21461010d5780637b9e618d146101085780638129fc1c1461010357806384b0196e146100fe5780639792096c146100f9578063bab161bf146100f45763f78b2ec00361000e57611d09565b611cab565b611bfc565b611aed565b6117c8565b61175a565b6116ec565b61169f565b611637565b611550565b611491565b611433565b6113c5565b610c29565b610b58565b610aea565b6106d9565b610255565b61017a565b63ffffffff81160361015c57565b5f80fd5b6044359061016d8261014e565b565b359061016d8261014e565b3461015c5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c576101f66004356101b88161014e565b335f527fe95e2b6c2122717d5b0c6c83181db905f0f9f127ac1a07137c3b512219374c0060205260405f209063ffffffff165f5260205260405f2090565b6102008154611d94565b9055005b73ffffffffffffffffffffffffffffffffffffffff81160361015c57565b6064359061016d82610204565b60a4359061016d82610204565b610144359061016d82610204565b359061016d82610204565b3461015c5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760043567ffffffffffffffff811161015c57806004016101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc833603011261015c576024356102d381610204565b3033036106b1576102e382611dc6565b63ffffffff807f00000000000000000000000000000000000000000000000000000000000000001691161461068957610124830135421161066157606483013561038861036d8373ffffffffffffffffffffffffffffffffffffffff165f527fe95e2b6c2122717d5b0c6c83181db905f0f9f127ac1a07137c3b512219374c0060205260405f2090565b61037685611dc6565b63ffffffff165f5260205260405f2090565b9081549161039583611d94565b9055036106395760a483016103aa8184611dd0565b905061060c575b506103da6103c160848501611e21565b73ffffffffffffffffffffffffffffffffffffffff1690565b926103eb60c4820135308487613e8d565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff85169390602081602481885afa8015610556575f92839283926105e5575b50610486839161047c7f000000000000000000000000000000000000000000000000000000000000000094858c613ef9565b60e4870190611dd0565b919061049760405180948193611eb8565b03925af16104a3611eff565b90156105ae5750610104479101358110610583575f80808093855af16104c7611eff565b501561055b576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015291602090839060249082905afa918215610556575f92610525575b508161051c57005b61001892614041565b61054891925060203d60201161054f575b6105408183611e58565b810190611e9e565b905f610514565b503d610536565b611ead565b7f405bbd15000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f861360da000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b8051156105bd57805190602001fd5b7f2e129c09000000000000000000000000000000000000000000000000000000005f5260045ffd5b839192506106046104869160203d60201161054f576105408183611e58565b92915061044a565b6106339061061c60848601611e21565b61062b60c48701359286611dd0565b929091613d13565b5f6103b1565b7f42f4fbd8000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f0f05f5bf000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f0d9f3764000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f53e68858000000000000000000000000000000000000000000000000000000005f5260045ffd5b3461015c5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760043567ffffffffffffffff811161015c57806004019060407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc823603011261015c5773ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001615610ab85761093e9061093861080a60246109306107a86107a38880611f2e565b611dc6565b60206107b48980611f2e565b01356109286107ce60406107c88c80611f2e565b01611e21565b916108fc60606107de8d80611f2e565b01358c6107f060806107c88380611f2e565b61081161080a6108008480611f2e565b60a0810190611dd0565b3691611f61565b6020815191012060c06108248480611f2e565b01359061084161080a6108378680611f2e565b60e0810190611dd0565b602081519101209261012061086561010061085c8880611f2e565b01359680611f2e565b0135956040519a8b9960208b019d8e969373ffffffffffffffffffffffffffffffffffffffff6101409996929c9b9a9794819463ffffffff6101608c019f7f7d532fad6286ac526bd02996da7a54122e7978beed7f87ab34ae40b985faaf7f8d521660208c015260408b015216606089015260808801521660a086015260c085015260e08401526101008301526101208201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282611e58565b5190206140a3565b930185611dd0565b90614140565b906109516103c160406107c88480611f2e565b9173ffffffffffffffffffffffffffffffffffffffff8116928303610a905761097a8280611f2e565b303b1561015c576109bb915f9160405193849283927f2103accb00000000000000000000000000000000000000000000000000000000845260048401612025565b038183305af19081610a76575b50610a2e576109d5611eff565b7f42f1e8a61dc739ab60f5d2019e017990c7766f58657f5d36913b28611228f04063ffffffff6020610a14610a0d6107a38780611f2e565b9580611f2e565b013593610a2960405192839216943383612158565b0390a4005b63ffffffff6020610a4c610a456107a38580611f2e565b9380611f2e565b013591167f7918f283eec56c3370cc1b56093fff7fe82a9827525989c87cc9f8efd68a4cd25f80a4005b80610a845f610a8a93611e58565b80610ae0565b5f6109c8565b7f1b45f354000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f904ac55d000000000000000000000000000000000000000000000000000000005f5260045ffd5b5f91031261015c57565b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760206040517f000000000000000000000000000000000000000000000000000000000000000015158152f35b91908251928382525f5b848110610bfa5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6020809697860101520116010190565b80602080928401015182828601015201610bbc565b604090610c26939281528160208201520190610bb2565b90565b3461015c5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760043567ffffffffffffffff811161015c57806004016102007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc833603011261015c5761012482019173ffffffffffffffffffffffffffffffffffffffff610cbf84611e21565b16159160c4820191610cd0836121c1565b610cd9816121b2565b1594851561137b575b60e4820193610cf0856121c1565b610cf9816121b2565b1580611373575b8015611350575b801561132d575b611305576002610d1d866121c1565b610d26816121b2565b14806112c7575b61129f576024830194610d3f86611dc6565b63ffffffff807f0000000000000000000000000000000000000000000000000000000000000000169116146112775773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff610da185611e21565b161461124f57610144840135928315611227576101048501359889156111ff576084860198610dd26103c18b611e21565b156111d75781806111bf575b611197576002610ded856121c1565b610df6816121b2565b1480611180575b611158576002610e0c856121c1565b610e15816121b2565b141580611140575b611118578080611100575b6110d857610e6d91610e4891156110d15786905b156110ca578b906121e0565b6002610e53856121c1565b610e5c816121b2565b036110c25760ff60015b16906121e0565b98863599808b1061109257506044860193610ea7610e8a86611dc6565b6064890192610ea1610e9b85611e21565b916121c1565b91613748565b94610eb46103c185611e21565b73ffffffffffffffffffffffffffffffffffffffff8716148061107a575b80611062575b61103a57610ef991610ef3610eed8893611dc6565b91611e21565b90612f80565b968780611024575b610ffc57610f136101a4880182611dd0565b3690610f1e92611f61565b96610f2c6101c482016121ed565b99610f3690611dc6565b9a610f4090611e21565b956101e482013595610f51906121c1565b90610f60610164840185611dd0565b94909361018401610f7091611dd0565b979096610f7c90611e21565b986040519e8f9e8f602081017f4f14fd620000000000000000000000000000000000000000000000000000000090526024019e610fb89f612204565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018252610fe89082611e58565b604051918291610ff89183610c0f565b0390f35b7f9027df3d000000000000000000000000000000000000000000000000000000005f5260045ffd5b506110346103c160a48901611e21565b15610f01565b7f76cbe3fc000000000000000000000000000000000000000000000000000000005f5260045ffd5b506110716101a489018a611dd0565b90501515610ed8565b5061108961016489018a611dd0565b90501515610ed2565b7f785fa129000000000000000000000000000000000000000000000000000000005f5260048b905260245260445ffd5b60ff5f610e66565b5f906121e0565b5f90610e3c565b7f35e4ae6f000000000000000000000000000000000000000000000000000000005f5260045ffd5b5061110f6101a4880189611dd0565b90501515610e28565b7febc2aeb9000000000000000000000000000000000000000000000000000000005f5260045ffd5b5061114f610184880189611dd0565b90501515610e1d565b7fdce5ae78000000000000000000000000000000000000000000000000000000005f5260045ffd5b5061118f610184880189611dd0565b905015610dfd565b7fcf64c71c000000000000000000000000000000000000000000000000000000005f5260045ffd5b506111ce610164880189611dd0565b90501515610dde565b7f846b3697000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f0d39233d000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f8b1fa9dd000000000000000000000000000000000000000000000000000000005f5260045ffd5b7fc1ab6dc1000000000000000000000000000000000000000000000000000000005f5260045ffd5b7fecbd2743000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f58271a09000000000000000000000000000000000000000000000000000000005f5260045ffd5b5073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001615610d2d565b7f83f0ad8c000000000000000000000000000000000000000000000000000000005f5260045ffd5b506002611339866121c1565b611342816121b2565b148015610d0e575086610d0e565b50600161135c866121c1565b611365816121b2565b148015610d07575086610d07565b508615610d00565b94506002611388846121c1565b611391816121b2565b148061139e575b94610ce2565b507f0000000000000000000000000000000000000000000000000000000000000000611398565b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405163ffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760206114c9612308565b73ffffffffffffffffffffffffffffffffffffffff60405191168152f35b8015150361015c57565b6004359061016d826114e7565b6024359061016d826114e7565b6003111561015c57565b60c4359061016d8261150b565b9181601f8401121561015c5782359167ffffffffffffffff831161015c576020838186019501011161015c57565b6101a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c576115836114f1565b61158b6114fe565b611593610160565b9161159c610222565b92608435936115a961022f565b6115b1611515565b9560e43567ffffffffffffffff811161015c576115d2903690600401611522565b6101043591610124359967ffffffffffffffff8b1161015c5761160267ffffffffffffffff9b3690600401611522565b96909561160d61023c565b98610164359a610184359e8f1161015c5761162f6100189f3690600401611522565b9e909d61244f565b3461015c5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760206116956004356116778161014e565b60243561168381610204565b6044359161169083610204565b612f80565b6040519015158152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57610ff86116d8613486565b604051918291602083526020830190610bb2565b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c577ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005467ffffffffffffffff61184460ff604084901c1615611836565b1590565b9267ffffffffffffffff1690565b1680159081611a37575b6001149081611a2d575b159081611a24575b506119fc57806118d460017fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000007ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005416177ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0055565b611981575b6118e16134c1565b6118e757005b6119527fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054167ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0055565b604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602090a1005b6119f7680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005416177ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0055565b6118d9565b7ff92ee8a9000000000000000000000000000000000000000000000000000000005f5260045ffd5b9050155f611860565b303b159150611858565b82915061184e565b92939073ffffffffffffffffffffffffffffffffffffffff92611a93611aa1927f0f00000000000000000000000000000000000000000000000000000000000000875260e0602088015260e0870190610bb2565b908582036040870152610bb2565b9360608401521660808201525f60a082015260c0818303910152602080835192838152019201905f5b818110611ad75750505090565b8251845260209384019390920191600101611aca565b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c577fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100541580611bd3575b15611b7557611b516141a7565b611b596142b8565b90610ff8611b6561372d565b6040519384933091469186611a3f565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4549503731323a20556e696e697469616c697a656400000000000000000000006044820152fd5b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1015415611b44565b3461015c5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c576020611ca2600435611c3c81610204565b611c8f60243591611c4c8361014e565b73ffffffffffffffffffffffffffffffffffffffff165f527fe95e2b6c2122717d5b0c6c83181db905f0f9f127ac1a07137c3b512219374c0060205260405f2090565b9063ffffffff165f5260205260405f2090565b54604051908152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405163ffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461015c5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760206114c9600435611d498161014e565b602435611d5581610204565b60443591611d628361150b565b613748565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dc15760010190565b611d67565b35610c268161014e565b9035907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18136030182121561015c570180359067ffffffffffffffff821161015c5760200191813603831361015c57565b35610c2681610204565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117611e9957604052565b611e2b565b9081602091031261015c575190565b6040513d5f823e3d90fd5b908092918237015f815290565b67ffffffffffffffff8111611e9957601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b3d15611f29573d90611f1082611ec5565b91611f1e6040519384611e58565b82523d5f602084013e565b606090565b9035907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec18136030182121561015c570190565b929192611f6d82611ec5565b91611f7b6040519384611e58565b82948184528183011161015c578281602093845f960137010152565b90357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18236030181121561015c57016020813591019167ffffffffffffffff821161015c57813603831361015c57565b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe093818652868601375f8582860101520116010190565b9291602061016d926040865261204b604087016120418361016f565b63ffffffff169052565b8181013560608701526120806120636040830161024a565b73ffffffffffffffffffffffffffffffffffffffff166080880152565b606081013560a08701526120b66120996080830161024a565b73ffffffffffffffffffffffffffffffffffffffff1660c0880152565b6101206121266120df6120cc60a0850185611f97565b61014060e08c01526101808b0191611fe7565b60c08401356101008a01526120f760e0850185611f97565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08b840301858c0152611fe7565b91610100810135610140890152013561016087015294019073ffffffffffffffffffffffffffffffffffffffff169052565b60409073ffffffffffffffffffffffffffffffffffffffff610c2694931681528160208201520190610bb2565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b600311156121bc57565b612185565b35610c268161150b565b90670de0b6b3a76400008201809211611dc157565b91908201809211611dc157565b35610c26816114e7565b90612201826121b2565b52565b9b9690610c269f9d9e9b9660a08e6122aa9861226c6122df9f9d996122bf9f9961224f906122426122979b61228d9a15158852602088019015159052565b63ffffffff166040860152565b73ffffffffffffffffffffffffffffffffffffffff166060840152565b6080820152019073ffffffffffffffffffffffffffffffffffffffff169052565b60c08c01906121f7565b6101a060e08b01526101a08a0191611fe7565b92610100880152868303610120880152611fe7565b73ffffffffffffffffffffffffffffffffffffffff909516610140840152565b610160820152610180818403910152610bb2565b9081602091031261015c5751610c2681610204565b6040517f4b2f336d00000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa908115610556575f9161237e575090565b610c26915060203d6020116123a0575b6123988183611e58565b8101906122f3565b503d61238e565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8201918211611dc157565b91908203918211611dc157565b90670de0b6b3a7640000820291808304670de0b6b3a76400001490151715611dc157565b81810292918115918404141715611dc157565b8115612422570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b999096929c97919b98939e949a9d959d5f9e61246a816121b2565b60018103612db85750505073ffffffffffffffffffffffffffffffffffffffff881673ffffffffffffffffffffffffffffffffffffffff8b1614612d95575b90816124d59392612d83575b5050303373ffffffffffffffffffffffffffffffffffffffff8b16613e8d565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529960208b60248173ffffffffffffffffffffffffffffffffffffffff8c165afa9a8b15610556575f9b612d62575b508a6125888173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8c16613ef9565b73ffffffffffffffffffffffffffffffffffffffff871673ffffffffffffffffffffffffffffffffffffffff8a1614612d2e575b505b73ffffffffffffffffffffffffffffffffffffffff8816612c76578a5b809b73ffffffffffffffffffffffffffffffffffffffff881673ffffffffffffffffffffffffffffffffffffffff8b1614612c5b575b73ffffffffffffffffffffffffffffffffffffffff8a16612c5457805b73ffffffffffffffffffffffffffffffffffffffff891673ffffffffffffffffffffffffffffffffffffffff8c16145f14612c4d5786905b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163b1561015c578b928e8e61272c5f95604051978896879586957fcd5865790000000000000000000000000000000000000000000000000000000087526004870193909273ffffffffffffffffffffffffffffffffffffffff809363ffffffff60e0989616875216602086015260408501521660608301521515608082015260c060a08201525f60c08201520190565b039173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af1801561055657612c39575b5073ffffffffffffffffffffffffffffffffffffffff8916612af0575b505073ffffffffffffffffffffffffffffffffffffffff851673ffffffffffffffffffffffffffffffffffffffff88160361288e575b505050505047612851575b6127dc575b5050505050565b7fde12dbb9dea31f7175320b35be3985f6b61fa15b7f6bafb4ccdb180824c054929361284491604051948594859094939273ffffffffffffffffffffffffffffffffffffffff908160609463ffffffff60808601991685521660208401521660408201520152565b0390a25f808080806127d5565b5f80808047335af1612861611eff565b506127d0577f85854ffc000000000000000000000000000000000000000000000000000000005f5260045ffd5b73ffffffffffffffffffffffffffffffffffffffff85166129d7575b505073ffffffffffffffffffffffffffffffffffffffff83166129d157815b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163b1561015c576040517fcd58657900000000000000000000000000000000000000000000000000000000815263ffffffff8816600482015273ffffffffffffffffffffffffffffffffffffffff898116602483015260448201949094529383166064850152901515608484015260c060a48401525f60c4840181905291839160e4918391907f0000000000000000000000000000000000000000000000000000000000000000165af18015610556576129bd575b808080806127c5565b80610a845f6129cb93611e58565b5f6129b4565b5f6128c9565b9081612a04939492612ade575b5050303373ffffffffffffffffffffffffffffffffffffffff8616613e8d565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529060208260248173ffffffffffffffffffffffffffffffffffffffff87165afa918215610556575f92612abd575b50612ab68273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8616613ef9565b5f806128aa565b612ad791925060203d60201161054f576105408183611e58565b905f612a5e565b612ae9918387613d13565b5f806129e4565b6040517f70a082310000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166004820152919b506020828060248101038173ffffffffffffffffffffffffffffffffffffffff8d165afa801561055657612b8f925f91612c1a575b506123d4565b9973ffffffffffffffffffffffffffffffffffffffff861673ffffffffffffffffffffffffffffffffffffffff891614612bca575b8061278f565b612bfe612bf9612bf4612bee612c0c94612c13969f99612be9906123e1565b612418565b88612405565b6121cb565b6123a7565b670de0b6b3a7640000900490565b80946123d4565b985f612bc4565b612c33915060203d60201161054f576105408183611e58565b5f612b89565b80610a845f612c4793611e58565b5f612772565b5f90612666565b5f9061262e565b9150612c7186612c6b84826121e0565b936121e0565b612611565b6040517f70a082310000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660048201526020818060248101038173ffffffffffffffffffffffffffffffffffffffff8d165afa908115610556575f91612d0f575b506125db565b612d28915060203d60201161054f576105408183611e58565b5f612d09565b94819b50612bfe612bf9612bf4612d4e612d5b95612be9612d54966123e1565b89612405565b80956123d4565b995f6125bc565b612d7c919b5060203d60201161054f576105408183611e58565b995f61252f565b612d8e91838c613d13565b5f806124b5565b90829c50612db087612daa6124d595826121e0565b9e6121e0565b9250906124a9565b9092506002919350612dcc949e94816121b2565b14612dd9575b50506125be565b5f91829173ffffffffffffffffffffffffffffffffffffffff8a16612f5457612e0289346123d4565b915b612e1360405180938193611eb8565b03917f00000000000000000000000000000000000000000000000000000000000000005af1612e40611eff565b90156105ae57506040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529a60208c60248173ffffffffffffffffffffffffffffffffffffffff8d165afa9b8c15610556575f9c612f33575b508b10612f0657612eff8b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8b16613ef9565b5f80612dd2565b7f861360da000000000000000000000000000000000000000000000000000000005f5260048b905260245ffd5b612f4d919c5060203d60201161054f576105408183611e58565b9a5f612ea1565b3491612e04565b919082604091031261015c5760208251612f748161014e565b920151610c2681610204565b5f939273ffffffffffffffffffffffffffffffffffffffff8116929073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee841461345e5763ffffffff612fc4612308565b93169063ffffffff7f000000000000000000000000000000000000000000000000000000000000000016821480613409575b63ffffffff7f00000000000000000000000000000000000000000000000000000000000000001683149081613226575b8061321e575b1561303a575b505050505050565b90919293949596505f1461307157505073ffffffffffffffffffffffffffffffffffffffff9150161415905b5f8080808080613032565b811580613200575b1561309f5750505073ffffffffffffffffffffffffffffffffffffffff16141590613066565b604080517f318aee3d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9092166004830152929450925090828060248101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa918215610556575f905f936131ca575b5063ffffffff168015806131ac575b61318457149182159261315f575b505090613066565b73ffffffffffffffffffffffffffffffffffffffff9192508116911614155f80613157565b7fb9481906000000000000000000000000000000000000000000000000000000005f5260045ffd5b5073ffffffffffffffffffffffffffffffffffffffff831615613149565b63ffffffff93506131f3915060403d6040116131f9575b6131eb8183611e58565b810190612f5b565b9261313a565b503d6131e1565b5073ffffffffffffffffffffffffffffffffffffffff831615613079565b50851561302c565b73ffffffffffffffffffffffffffffffffffffffff8516801580156133ec575b15613279575080613026577feb86a1b3000000000000000000000000000000000000000000000000000000005f5260045ffd5b73ffffffffffffffffffffffffffffffffffffffff871680911490816133e2575b50156132c8577feb86a1b3000000000000000000000000000000000000000000000000000000005f5260045ffd5b604080517f318aee3d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8716600482015290818060248101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa908115610556575f905f926133bc575b5063ffffffff16159081159161339c575b5015613026577feb86a1b3000000000000000000000000000000000000000000000000000000005f5260045ffd5b73ffffffffffffffffffffffffffffffffffffffff91501615155f61336e565b63ffffffff92506133dc915060403d6040116131f9576131eb8183611e58565b9161335d565b905015155f61329a565b5073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8114613246565b5073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841614612ff6565b7fbb05fd95000000000000000000000000000000000000000000000000000000005f5260045ffd5b60405190613495604083611e58565b600582527f312e302e300000000000000000000000000000000000000000000000000000006020830152565b6040516134cf604082611e58565b600981527f476173506f7274657200000000000000000000000000000000000000000000006020820152613501613486565b9061350a61453d565b61351261453d565b80519067ffffffffffffffff8211611e9957613557826135527fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10254614156565b614594565b602090601f831160011461362b5791806135a9926135d095945f92613620575b50507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c19161790565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10255614652565b6135f85f7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10055565b61016d5f7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10155565b015190505f80613577565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1025f527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0831691907f42ad5d3e1f2e6e70edcf6d991b8a3023d3fca8047a131592f9edb9fd9b89d57d925f5b81811061371557509160019391856135d0979694106136de575b505050811b017fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10255614652565b01517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c191690555f80806136b1565b92936020600181928786015181550195019301613697565b6040519061373c602083611e58565b5f808352366020840137565b5f939291613754612308565b9163ffffffff811663ffffffff7f00000000000000000000000000000000000000000000000000000000000000001681149485613c02575b63ffffffff7f00000000000000000000000000000000000000000000000000000000000000001682149081613a1f575b6137c5816121b2565b806137ff57505050505050156137d757565b7f827ad31e000000000000000000000000000000000000000000000000000000005f5260045ffd5b600191939597985061381481979395976121b2565b036139f5576139cd5715613895575050905073ffffffffffffffffffffffffffffffffffffffff81168015908115613877575b5061384f5790565b7f46f1d30c000000000000000000000000000000000000000000000000000000005f5260045ffd5b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee9150145f613847565b15806139af575b156138a657505090565b6040517f22e95f2c00000000000000000000000000000000000000000000000000000000815263ffffffff909116600482015273ffffffffffffffffffffffffffffffffffffffff90911660248201529190506020828060448101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa918215610556575f9261398e575b5073ffffffffffffffffffffffffffffffffffffffff821661016d577f97fc8687000000000000000000000000000000000000000000000000000000005f5260045ffd5b6139a891925060203d6020116123a0576123988183611e58565b905f61394a565b5073ffffffffffffffffffffffffffffffffffffffff82161561389c565b7f5edafbe7000000000000000000000000000000000000000000000000000000005f5260045ffd5b5050505050507f000000000000000000000000000000000000000000000000000000000000000090565b73ffffffffffffffffffffffffffffffffffffffff851680158015613be5575b15613a725750866137bc577f46f1d30c000000000000000000000000000000000000000000000000000000005f5260045ffd5b73ffffffffffffffffffffffffffffffffffffffff87168091149081613bdb575b5015613ac1577f46f1d30c000000000000000000000000000000000000000000000000000000005f5260045ffd5b604080517f318aee3d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8716600482015290818060248101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa908115610556575f905f92613bb5575b5063ffffffff161590811591613b95575b50156137bc577f46f1d30c000000000000000000000000000000000000000000000000000000005f5260045ffd5b73ffffffffffffffffffffffffffffffffffffffff91501615155f613b67565b63ffffffff9250613bd5915060403d6040116131f9576131eb8183611e58565b91613b56565b905015155f613a93565b5073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8114613a3f565b945073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416149461378c565b9060041161015c5790600490565b9060a41161015c5760840190602090565b9060641161015c5760440190602090565b919091357fffffffff0000000000000000000000000000000000000000000000000000000081169260048110613cbd575050565b7fffffffff00000000000000000000000000000000000000000000000000000000929350829060040360031b1b161690565b9081602091031261015c5735610c26816114e7565b9081602091031261015c573590565b9291907fffffffff00000000000000000000000000000000000000000000000000000000613d4a613d448585613c59565b90613c89565b167fd505accf000000000000000000000000000000000000000000000000000000008103613de65750613d88613d808484613c78565b810190613d04565b818110613db8575050915f92918380935b613da860405180948193611eb8565b03925af150613db5611eff565b50565b7ff48d46ed000000000000000000000000000000000000000000000000000000005f5260045260245260445ffd5b7f8fcbaf0c0000000000000000000000000000000000000000000000000000000003613e6557613e24611832613e1c8585613c67565b810190613cef565b613e355750915f9291838093613d99565b7ff48d46ed000000000000000000000000000000000000000000000000000000005f90815260045260245260445ffd5b7f24724d85000000000000000000000000000000000000000000000000000000005f5260045ffd5b90919273ffffffffffffffffffffffffffffffffffffffff61016d9481604051957f23b872dd000000000000000000000000000000000000000000000000000000006020880152166024860152166044840152606483015260648252613ef4608483611e58565b6143a0565b6040517f095ea7b3000000000000000000000000000000000000000000000000000000006020820190815273ffffffffffffffffffffffffffffffffffffffff841660248301526044808301959095529381529192613f9890613f5d606485611e58565b5f8073ffffffffffffffffffffffffffffffffffffffff85169286519082855af190613f87611eff565b8261400f575b508161400857501590565b613fa157505050565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff90931660248401525f604484015261016d92613ef49061400281606481016108fc565b826143a0565b3b15919050565b80519192508115918215614027575b5050905f613f8d565b61403a925060208091830101910161438b565b5f8061401e565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff92909216602483015260448083019390935291815261016d91613ef4606483611e58565b6042906140ae6148af565b6140b6614919565b6040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815261410760c082611e58565b51902090604051917f19010000000000000000000000000000000000000000000000000000000000008352600283015260228201522090565b610c269161414d91614432565b90929192614476565b90600182811c9216801561419d575b602083101461417057565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b91607f1691614165565b604051905f827fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10254916141d983614156565b808352926001811690811561427b57506001146141fd575b61016d92500383611e58565b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1025f90815290917f42ad5d3e1f2e6e70edcf6d991b8a3023d3fca8047a131592f9edb9fd9b89d57d5b81831061425f57505090602061016d928201016141f1565b6020919350806001915483858901015201910190918492614247565b6020925061016d9491507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682840152151560051b8201016141f1565b604051905f827fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10354916142ea83614156565b808352926001811690811561427b575060011461430d5761016d92500383611e58565b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1035f90815290917f5f9ce34815f8e11431c7bb75a8e6886a91478f7ffc1dbb0a98dc240fddd76b755b81831061436f57505090602061016d928201016141f1565b6020919350806001915483858901015201910190918492614357565b9081602091031261015c5751610c26816114e7565b5f8073ffffffffffffffffffffffffffffffffffffffff6143d693169360208151910182865af16143cf611eff565b908361495e565b8051908115159182614417575b50506143ec5750565b7f5274afe7000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b61442a925060208091830101910161438b565b155f806143e3565b81519190604183036144625761445b9250602082015190606060408401519301515f1a90614820565b9192909190565b50505f9160029190565b600411156121bc57565b61447f8161446c565b80614488575050565b6144918161446c565b600181036144c1577ff645eedf000000000000000000000000000000000000000000000000000000005f5260045ffd5b6144ca8161446c565b600281036144fe57507ffce698f7000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b8061450a60039261446c565b146145125750565b7fd78bce0c000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b60ff7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005460401c161561456c57565b7fd7e6bcf8000000000000000000000000000000000000000000000000000000005f5260045ffd5b601f81116145a0575050565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1025f5260205f20906020601f840160051c830193106145f9575b601f0160051c01905b8181106145ee575050565b5f81556001016145e3565b90915081906145da565b601f821161461057505050565b5f5260205f20906020601f840160051c83019310614648575b601f0160051c01905b81811061463d575050565b5f8155600101614632565b9091508190614629565b90815167ffffffffffffffff8111611e99576146b8816146927fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10354614156565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d103614603565b602092601f821160011461472957614705929382915f926136205750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c19161790565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10355565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1035f527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08216937f5f9ce34815f8e11431c7bb75a8e6886a91478f7ffc1dbb0a98dc240fddd76b75915f5b86811061480857508360019596106147d1575b505050811b017fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10355565b01517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c191690555f80806147a7565b91926020600181928685015181550194019201614794565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116148a4579160209360809260ff5f9560405194855216868401526040830152606082015282805260015afa15610556575f5173ffffffffffffffffffffffffffffffffffffffff81161561489a57905f905f90565b505f906001905f90565b5050505f9160039190565b6148b76141a7565b80519081156148c7576020012090565b50507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1005480156148f45790565b507fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47090565b6149216142b8565b8051908115614931576020012090565b50507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1015480156148f45790565b9061499b575080511561497357805190602001fd5b7f1425ea42000000000000000000000000000000000000000000000000000000005f5260045ffd5b815115806149ee575b6149ac575090565b73ffffffffffffffffffffffffffffffffffffffff907f9996b315000000000000000000000000000000000000000000000000000000005f521660045260245ffd5b50803b156149a456fea26469706673582212204c170504c97c225bf494712487c9ec7614ad9a0e10e8395f47bbcd9555c7aa8f64736f6c634300081c0033f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a000000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede0000000000000000000000006131b5fae19ea4f9d964eac0408e4408b66337b50000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436101561001a575b3615610018575f80fd5b005b5f3560e01c80631b48f96d146101495780632103accb1461014457806326f59dd11461013f5780632bdbe6fb1461013a5780632c00872f146101355780633553f566146101305780633c351e101461012b5780633cbc795b146101265780634b2f336d146101215780634f14fd621461011c57806351789e631461011757806354fd4d5014610112578063692058c21461010d5780637b9e618d146101085780638129fc1c1461010357806384b0196e146100fe5780639792096c146100f9578063bab161bf146100f45763f78b2ec00361000e57611d09565b611cab565b611bfc565b611aed565b6117c8565b61175a565b6116ec565b61169f565b611637565b611550565b611491565b611433565b6113c5565b610c29565b610b58565b610aea565b6106d9565b610255565b61017a565b63ffffffff81160361015c57565b5f80fd5b6044359061016d8261014e565b565b359061016d8261014e565b3461015c5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c576101f66004356101b88161014e565b335f527fe95e2b6c2122717d5b0c6c83181db905f0f9f127ac1a07137c3b512219374c0060205260405f209063ffffffff165f5260205260405f2090565b6102008154611d94565b9055005b73ffffffffffffffffffffffffffffffffffffffff81160361015c57565b6064359061016d82610204565b60a4359061016d82610204565b610144359061016d82610204565b359061016d82610204565b3461015c5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760043567ffffffffffffffff811161015c57806004016101407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc833603011261015c576024356102d381610204565b3033036106b1576102e382611dc6565b63ffffffff807f00000000000000000000000000000000000000000000000000000000000000001691161461068957610124830135421161066157606483013561038861036d8373ffffffffffffffffffffffffffffffffffffffff165f527fe95e2b6c2122717d5b0c6c83181db905f0f9f127ac1a07137c3b512219374c0060205260405f2090565b61037685611dc6565b63ffffffff165f5260205260405f2090565b9081549161039583611d94565b9055036106395760a483016103aa8184611dd0565b905061060c575b506103da6103c160848501611e21565b73ffffffffffffffffffffffffffffffffffffffff1690565b926103eb60c4820135308487613e8d565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff85169390602081602481885afa8015610556575f92839283926105e5575b50610486839161047c7f0000000000000000000000006131b5fae19ea4f9d964eac0408e4408b66337b594858c613ef9565b60e4870190611dd0565b919061049760405180948193611eb8565b03925af16104a3611eff565b90156105ae5750610104479101358110610583575f80808093855af16104c7611eff565b501561055b576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015291602090839060249082905afa918215610556575f92610525575b508161051c57005b61001892614041565b61054891925060203d60201161054f575b6105408183611e58565b810190611e9e565b905f610514565b503d610536565b611ead565b7f405bbd15000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f861360da000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b8051156105bd57805190602001fd5b7f2e129c09000000000000000000000000000000000000000000000000000000005f5260045ffd5b839192506106046104869160203d60201161054f576105408183611e58565b92915061044a565b6106339061061c60848601611e21565b61062b60c48701359286611dd0565b929091613d13565b5f6103b1565b7f42f4fbd8000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f0f05f5bf000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f0d9f3764000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f53e68858000000000000000000000000000000000000000000000000000000005f5260045ffd5b3461015c5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760043567ffffffffffffffff811161015c57806004019060407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc823603011261015c5773ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000006131b5fae19ea4f9d964eac0408e4408b66337b51615610ab85761093e9061093861080a60246109306107a86107a38880611f2e565b611dc6565b60206107b48980611f2e565b01356109286107ce60406107c88c80611f2e565b01611e21565b916108fc60606107de8d80611f2e565b01358c6107f060806107c88380611f2e565b61081161080a6108008480611f2e565b60a0810190611dd0565b3691611f61565b6020815191012060c06108248480611f2e565b01359061084161080a6108378680611f2e565b60e0810190611dd0565b602081519101209261012061086561010061085c8880611f2e565b01359680611f2e565b0135956040519a8b9960208b019d8e969373ffffffffffffffffffffffffffffffffffffffff6101409996929c9b9a9794819463ffffffff6101608c019f7f7d532fad6286ac526bd02996da7a54122e7978beed7f87ab34ae40b985faaf7f8d521660208c015260408b015216606089015260808801521660a086015260c085015260e08401526101008301526101208201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101835282611e58565b5190206140a3565b930185611dd0565b90614140565b906109516103c160406107c88480611f2e565b9173ffffffffffffffffffffffffffffffffffffffff8116928303610a905761097a8280611f2e565b303b1561015c576109bb915f9160405193849283927f2103accb00000000000000000000000000000000000000000000000000000000845260048401612025565b038183305af19081610a76575b50610a2e576109d5611eff565b7f42f1e8a61dc739ab60f5d2019e017990c7766f58657f5d36913b28611228f04063ffffffff6020610a14610a0d6107a38780611f2e565b9580611f2e565b013593610a2960405192839216943383612158565b0390a4005b63ffffffff6020610a4c610a456107a38580611f2e565b9380611f2e565b013591167f7918f283eec56c3370cc1b56093fff7fe82a9827525989c87cc9f8efd68a4cd25f80a4005b80610a845f610a8a93611e58565b80610ae0565b5f6109c8565b7f1b45f354000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f904ac55d000000000000000000000000000000000000000000000000000000005f5260045ffd5b5f91031261015c57565b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede168152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760206040517f000000000000000000000000000000000000000000000000000000000000000115158152f35b91908251928382525f5b848110610bfa5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6020809697860101520116010190565b80602080928401015182828601015201610bbc565b604090610c26939281528160208201520190610bb2565b90565b3461015c5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760043567ffffffffffffffff811161015c57806004016102007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc833603011261015c5761012482019173ffffffffffffffffffffffffffffffffffffffff610cbf84611e21565b16159160c4820191610cd0836121c1565b610cd9816121b2565b1594851561137b575b60e4820193610cf0856121c1565b610cf9816121b2565b1580611373575b8015611350575b801561132d575b611305576002610d1d866121c1565b610d26816121b2565b14806112c7575b61129f576024830194610d3f86611dc6565b63ffffffff807f0000000000000000000000000000000000000000000000000000000000000000169116146112775773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff610da185611e21565b161461124f57610144840135928315611227576101048501359889156111ff576084860198610dd26103c18b611e21565b156111d75781806111bf575b611197576002610ded856121c1565b610df6816121b2565b1480611180575b611158576002610e0c856121c1565b610e15816121b2565b141580611140575b611118578080611100575b6110d857610e6d91610e4891156110d15786905b156110ca578b906121e0565b6002610e53856121c1565b610e5c816121b2565b036110c25760ff60015b16906121e0565b98863599808b1061109257506044860193610ea7610e8a86611dc6565b6064890192610ea1610e9b85611e21565b916121c1565b91613748565b94610eb46103c185611e21565b73ffffffffffffffffffffffffffffffffffffffff8716148061107a575b80611062575b61103a57610ef991610ef3610eed8893611dc6565b91611e21565b90612f80565b968780611024575b610ffc57610f136101a4880182611dd0565b3690610f1e92611f61565b96610f2c6101c482016121ed565b99610f3690611dc6565b9a610f4090611e21565b956101e482013595610f51906121c1565b90610f60610164840185611dd0565b94909361018401610f7091611dd0565b979096610f7c90611e21565b986040519e8f9e8f602081017f4f14fd620000000000000000000000000000000000000000000000000000000090526024019e610fb89f612204565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081018252610fe89082611e58565b604051918291610ff89183610c0f565b0390f35b7f9027df3d000000000000000000000000000000000000000000000000000000005f5260045ffd5b506110346103c160a48901611e21565b15610f01565b7f76cbe3fc000000000000000000000000000000000000000000000000000000005f5260045ffd5b506110716101a489018a611dd0565b90501515610ed8565b5061108961016489018a611dd0565b90501515610ed2565b7f785fa129000000000000000000000000000000000000000000000000000000005f5260048b905260245260445ffd5b60ff5f610e66565b5f906121e0565b5f90610e3c565b7f35e4ae6f000000000000000000000000000000000000000000000000000000005f5260045ffd5b5061110f6101a4880189611dd0565b90501515610e28565b7febc2aeb9000000000000000000000000000000000000000000000000000000005f5260045ffd5b5061114f610184880189611dd0565b90501515610e1d565b7fdce5ae78000000000000000000000000000000000000000000000000000000005f5260045ffd5b5061118f610184880189611dd0565b905015610dfd565b7fcf64c71c000000000000000000000000000000000000000000000000000000005f5260045ffd5b506111ce610164880189611dd0565b90501515610dde565b7f846b3697000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f0d39233d000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f8b1fa9dd000000000000000000000000000000000000000000000000000000005f5260045ffd5b7fc1ab6dc1000000000000000000000000000000000000000000000000000000005f5260045ffd5b7fecbd2743000000000000000000000000000000000000000000000000000000005f5260045ffd5b7f58271a09000000000000000000000000000000000000000000000000000000005f5260045ffd5b5073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000006131b5fae19ea4f9d964eac0408e4408b66337b51615610d2d565b7f83f0ad8c000000000000000000000000000000000000000000000000000000005f5260045ffd5b506002611339866121c1565b611342816121b2565b148015610d0e575086610d0e565b50600161135c866121c1565b611365816121b2565b148015610d07575086610d07565b508615610d00565b94506002611388846121c1565b611391816121b2565b148061139e575b94610ce2565b507f0000000000000000000000000000000000000000000000000000000000000001611398565b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405163ffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760206114c9612308565b73ffffffffffffffffffffffffffffffffffffffff60405191168152f35b8015150361015c57565b6004359061016d826114e7565b6024359061016d826114e7565b6003111561015c57565b60c4359061016d8261150b565b9181601f8401121561015c5782359167ffffffffffffffff831161015c576020838186019501011161015c57565b6101a07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c576115836114f1565b61158b6114fe565b611593610160565b9161159c610222565b92608435936115a961022f565b6115b1611515565b9560e43567ffffffffffffffff811161015c576115d2903690600401611522565b6101043591610124359967ffffffffffffffff8b1161015c5761160267ffffffffffffffff9b3690600401611522565b96909561160d61023c565b98610164359a610184359e8f1161015c5761162f6100189f3690600401611522565b9e909d61244f565b3461015c5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760206116956004356116778161014e565b60243561168381610204565b6044359161169083610204565b612f80565b6040519015158152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57610ff86116d8613486565b604051918291602083526020830190610bb2565b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000006131b5fae19ea4f9d964eac0408e4408b66337b5168152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c577ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005467ffffffffffffffff61184460ff604084901c1615611836565b1590565b9267ffffffffffffffff1690565b1680159081611a37575b6001149081611a2d575b159081611a24575b506119fc57806118d460017fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000007ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005416177ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0055565b611981575b6118e16134c1565b6118e757005b6119527fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054167ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0055565b604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602090a1005b6119f7680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005416177ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0055565b6118d9565b7ff92ee8a9000000000000000000000000000000000000000000000000000000005f5260045ffd5b9050155f611860565b303b159150611858565b82915061184e565b92939073ffffffffffffffffffffffffffffffffffffffff92611a93611aa1927f0f00000000000000000000000000000000000000000000000000000000000000875260e0602088015260e0870190610bb2565b908582036040870152610bb2565b9360608401521660808201525f60a082015260c0818303910152602080835192838152019201905f5b818110611ad75750505090565b8251845260209384019390920191600101611aca565b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c577fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100541580611bd3575b15611b7557611b516141a7565b611b596142b8565b90610ff8611b6561372d565b6040519384933091469186611a3f565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4549503731323a20556e696e697469616c697a656400000000000000000000006044820152fd5b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1015415611b44565b3461015c5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c576020611ca2600435611c3c81610204565b611c8f60243591611c4c8361014e565b73ffffffffffffffffffffffffffffffffffffffff165f527fe95e2b6c2122717d5b0c6c83181db905f0f9f127ac1a07137c3b512219374c0060205260405f2090565b9063ffffffff165f5260205260405f2090565b54604051908152f35b3461015c575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c57602060405163ffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b3461015c5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261015c5760206114c9600435611d498161014e565b602435611d5581610204565b60443591611d628361150b565b613748565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dc15760010190565b611d67565b35610c268161014e565b9035907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18136030182121561015c570180359067ffffffffffffffff821161015c5760200191813603831361015c57565b35610c2681610204565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117611e9957604052565b611e2b565b9081602091031261015c575190565b6040513d5f823e3d90fd5b908092918237015f815290565b67ffffffffffffffff8111611e9957601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b3d15611f29573d90611f1082611ec5565b91611f1e6040519384611e58565b82523d5f602084013e565b606090565b9035907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec18136030182121561015c570190565b929192611f6d82611ec5565b91611f7b6040519384611e58565b82948184528183011161015c578281602093845f960137010152565b90357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe18236030181121561015c57016020813591019167ffffffffffffffff821161015c57813603831361015c57565b601f82602094937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe093818652868601375f8582860101520116010190565b9291602061016d926040865261204b604087016120418361016f565b63ffffffff169052565b8181013560608701526120806120636040830161024a565b73ffffffffffffffffffffffffffffffffffffffff166080880152565b606081013560a08701526120b66120996080830161024a565b73ffffffffffffffffffffffffffffffffffffffff1660c0880152565b6101206121266120df6120cc60a0850185611f97565b61014060e08c01526101808b0191611fe7565b60c08401356101008a01526120f760e0850185611f97565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08b840301858c0152611fe7565b91610100810135610140890152013561016087015294019073ffffffffffffffffffffffffffffffffffffffff169052565b60409073ffffffffffffffffffffffffffffffffffffffff610c2694931681528160208201520190610bb2565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b600311156121bc57565b612185565b35610c268161150b565b90670de0b6b3a76400008201809211611dc157565b91908201809211611dc157565b35610c26816114e7565b90612201826121b2565b52565b9b9690610c269f9d9e9b9660a08e6122aa9861226c6122df9f9d996122bf9f9961224f906122426122979b61228d9a15158852602088019015159052565b63ffffffff166040860152565b73ffffffffffffffffffffffffffffffffffffffff166060840152565b6080820152019073ffffffffffffffffffffffffffffffffffffffff169052565b60c08c01906121f7565b6101a060e08b01526101a08a0191611fe7565b92610100880152868303610120880152611fe7565b73ffffffffffffffffffffffffffffffffffffffff909516610140840152565b610160820152610180818403910152610bb2565b9081602091031261015c5751610c2681610204565b6040517f4b2f336d00000000000000000000000000000000000000000000000000000000815260208160048173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede165afa908115610556575f9161237e575090565b610c26915060203d6020116123a0575b6123988183611e58565b8101906122f3565b503d61238e565b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8201918211611dc157565b91908203918211611dc157565b90670de0b6b3a7640000820291808304670de0b6b3a76400001490151715611dc157565b81810292918115918404141715611dc157565b8115612422570490565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b999096929c97919b98939e949a9d959d5f9e61246a816121b2565b60018103612db85750505073ffffffffffffffffffffffffffffffffffffffff881673ffffffffffffffffffffffffffffffffffffffff8b1614612d95575b90816124d59392612d83575b5050303373ffffffffffffffffffffffffffffffffffffffff8b16613e8d565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529960208b60248173ffffffffffffffffffffffffffffffffffffffff8c165afa9a8b15610556575f9b612d62575b508a6125888173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede1673ffffffffffffffffffffffffffffffffffffffff8c16613ef9565b73ffffffffffffffffffffffffffffffffffffffff871673ffffffffffffffffffffffffffffffffffffffff8a1614612d2e575b505b73ffffffffffffffffffffffffffffffffffffffff8816612c76578a5b809b73ffffffffffffffffffffffffffffffffffffffff881673ffffffffffffffffffffffffffffffffffffffff8b1614612c5b575b73ffffffffffffffffffffffffffffffffffffffff8a16612c5457805b73ffffffffffffffffffffffffffffffffffffffff891673ffffffffffffffffffffffffffffffffffffffff8c16145f14612c4d5786905b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede163b1561015c578b928e8e61272c5f95604051978896879586957fcd5865790000000000000000000000000000000000000000000000000000000087526004870193909273ffffffffffffffffffffffffffffffffffffffff809363ffffffff60e0989616875216602086015260408501521660608301521515608082015260c060a08201525f60c08201520190565b039173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede165af1801561055657612c39575b5073ffffffffffffffffffffffffffffffffffffffff8916612af0575b505073ffffffffffffffffffffffffffffffffffffffff851673ffffffffffffffffffffffffffffffffffffffff88160361288e575b505050505047612851575b6127dc575b5050505050565b7fde12dbb9dea31f7175320b35be3985f6b61fa15b7f6bafb4ccdb180824c054929361284491604051948594859094939273ffffffffffffffffffffffffffffffffffffffff908160609463ffffffff60808601991685521660208401521660408201520152565b0390a25f808080806127d5565b5f80808047335af1612861611eff565b506127d0577f85854ffc000000000000000000000000000000000000000000000000000000005f5260045ffd5b73ffffffffffffffffffffffffffffffffffffffff85166129d7575b505073ffffffffffffffffffffffffffffffffffffffff83166129d157815b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede163b1561015c576040517fcd58657900000000000000000000000000000000000000000000000000000000815263ffffffff8816600482015273ffffffffffffffffffffffffffffffffffffffff898116602483015260448201949094529383166064850152901515608484015260c060a48401525f60c4840181905291839160e4918391907f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede165af18015610556576129bd575b808080806127c5565b80610a845f6129cb93611e58565b5f6129b4565b5f6128c9565b9081612a04939492612ade575b5050303373ffffffffffffffffffffffffffffffffffffffff8616613e8d565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529060208260248173ffffffffffffffffffffffffffffffffffffffff87165afa918215610556575f92612abd575b50612ab68273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede1673ffffffffffffffffffffffffffffffffffffffff8616613ef9565b5f806128aa565b612ad791925060203d60201161054f576105408183611e58565b905f612a5e565b612ae9918387613d13565b5f806129e4565b6040517f70a082310000000000000000000000000000000000000000000000000000000081527f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede73ffffffffffffffffffffffffffffffffffffffff166004820152919b506020828060248101038173ffffffffffffffffffffffffffffffffffffffff8d165afa801561055657612b8f925f91612c1a575b506123d4565b9973ffffffffffffffffffffffffffffffffffffffff861673ffffffffffffffffffffffffffffffffffffffff891614612bca575b8061278f565b612bfe612bf9612bf4612bee612c0c94612c13969f99612be9906123e1565b612418565b88612405565b6121cb565b6123a7565b670de0b6b3a7640000900490565b80946123d4565b985f612bc4565b612c33915060203d60201161054f576105408183611e58565b5f612b89565b80610a845f612c4793611e58565b5f612772565b5f90612666565b5f9061262e565b9150612c7186612c6b84826121e0565b936121e0565b612611565b6040517f70a082310000000000000000000000000000000000000000000000000000000081527f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede73ffffffffffffffffffffffffffffffffffffffff1660048201526020818060248101038173ffffffffffffffffffffffffffffffffffffffff8d165afa908115610556575f91612d0f575b506125db565b612d28915060203d60201161054f576105408183611e58565b5f612d09565b94819b50612bfe612bf9612bf4612d4e612d5b95612be9612d54966123e1565b89612405565b80956123d4565b995f6125bc565b612d7c919b5060203d60201161054f576105408183611e58565b995f61252f565b612d8e91838c613d13565b5f806124b5565b90829c50612db087612daa6124d595826121e0565b9e6121e0565b9250906124a9565b9092506002919350612dcc949e94816121b2565b14612dd9575b50506125be565b5f91829173ffffffffffffffffffffffffffffffffffffffff8a16612f5457612e0289346123d4565b915b612e1360405180938193611eb8565b03917f0000000000000000000000006131b5fae19ea4f9d964eac0408e4408b66337b55af1612e40611eff565b90156105ae57506040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529a60208c60248173ffffffffffffffffffffffffffffffffffffffff8d165afa9b8c15610556575f9c612f33575b508b10612f0657612eff8b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede1673ffffffffffffffffffffffffffffffffffffffff8b16613ef9565b5f80612dd2565b7f861360da000000000000000000000000000000000000000000000000000000005f5260048b905260245ffd5b612f4d919c5060203d60201161054f576105408183611e58565b9a5f612ea1565b3491612e04565b919082604091031261015c5760208251612f748161014e565b920151610c2681610204565b5f939273ffffffffffffffffffffffffffffffffffffffff8116929073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee841461345e5763ffffffff612fc4612308565b93169063ffffffff7f000000000000000000000000000000000000000000000000000000000000000016821480613409575b63ffffffff7f00000000000000000000000000000000000000000000000000000000000000001683149081613226575b8061321e575b1561303a575b505050505050565b90919293949596505f1461307157505073ffffffffffffffffffffffffffffffffffffffff9150161415905b5f8080808080613032565b811580613200575b1561309f5750505073ffffffffffffffffffffffffffffffffffffffff16141590613066565b604080517f318aee3d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9092166004830152929450925090828060248101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede165afa918215610556575f905f936131ca575b5063ffffffff168015806131ac575b61318457149182159261315f575b505090613066565b73ffffffffffffffffffffffffffffffffffffffff9192508116911614155f80613157565b7fb9481906000000000000000000000000000000000000000000000000000000005f5260045ffd5b5073ffffffffffffffffffffffffffffffffffffffff831615613149565b63ffffffff93506131f3915060403d6040116131f9575b6131eb8183611e58565b810190612f5b565b9261313a565b503d6131e1565b5073ffffffffffffffffffffffffffffffffffffffff831615613079565b50851561302c565b73ffffffffffffffffffffffffffffffffffffffff8516801580156133ec575b15613279575080613026577feb86a1b3000000000000000000000000000000000000000000000000000000005f5260045ffd5b73ffffffffffffffffffffffffffffffffffffffff871680911490816133e2575b50156132c8577feb86a1b3000000000000000000000000000000000000000000000000000000005f5260045ffd5b604080517f318aee3d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8716600482015290818060248101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede165afa908115610556575f905f926133bc575b5063ffffffff16159081159161339c575b5015613026577feb86a1b3000000000000000000000000000000000000000000000000000000005f5260045ffd5b73ffffffffffffffffffffffffffffffffffffffff91501615155f61336e565b63ffffffff92506133dc915060403d6040116131f9576131eb8183611e58565b9161335d565b905015155f61329a565b5073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8114613246565b5073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841614612ff6565b7fbb05fd95000000000000000000000000000000000000000000000000000000005f5260045ffd5b60405190613495604083611e58565b600582527f312e302e300000000000000000000000000000000000000000000000000000006020830152565b6040516134cf604082611e58565b600981527f476173506f7274657200000000000000000000000000000000000000000000006020820152613501613486565b9061350a61453d565b61351261453d565b80519067ffffffffffffffff8211611e9957613557826135527fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10254614156565b614594565b602090601f831160011461362b5791806135a9926135d095945f92613620575b50507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c19161790565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10255614652565b6135f85f7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10055565b61016d5f7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10155565b015190505f80613577565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1025f527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0831691907f42ad5d3e1f2e6e70edcf6d991b8a3023d3fca8047a131592f9edb9fd9b89d57d925f5b81811061371557509160019391856135d0979694106136de575b505050811b017fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10255614652565b01517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c191690555f80806136b1565b92936020600181928786015181550195019301613697565b6040519061373c602083611e58565b5f808352366020840137565b5f939291613754612308565b9163ffffffff811663ffffffff7f00000000000000000000000000000000000000000000000000000000000000001681149485613c02575b63ffffffff7f00000000000000000000000000000000000000000000000000000000000000001682149081613a1f575b6137c5816121b2565b806137ff57505050505050156137d757565b7f827ad31e000000000000000000000000000000000000000000000000000000005f5260045ffd5b600191939597985061381481979395976121b2565b036139f5576139cd5715613895575050905073ffffffffffffffffffffffffffffffffffffffff81168015908115613877575b5061384f5790565b7f46f1d30c000000000000000000000000000000000000000000000000000000005f5260045ffd5b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee9150145f613847565b15806139af575b156138a657505090565b6040517f22e95f2c00000000000000000000000000000000000000000000000000000000815263ffffffff909116600482015273ffffffffffffffffffffffffffffffffffffffff90911660248201529190506020828060448101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede165afa918215610556575f9261398e575b5073ffffffffffffffffffffffffffffffffffffffff821661016d577f97fc8687000000000000000000000000000000000000000000000000000000005f5260045ffd5b6139a891925060203d6020116123a0576123988183611e58565b905f61394a565b5073ffffffffffffffffffffffffffffffffffffffff82161561389c565b7f5edafbe7000000000000000000000000000000000000000000000000000000005f5260045ffd5b5050505050507f000000000000000000000000000000000000000000000000000000000000000090565b73ffffffffffffffffffffffffffffffffffffffff851680158015613be5575b15613a725750866137bc577f46f1d30c000000000000000000000000000000000000000000000000000000005f5260045ffd5b73ffffffffffffffffffffffffffffffffffffffff87168091149081613bdb575b5015613ac1577f46f1d30c000000000000000000000000000000000000000000000000000000005f5260045ffd5b604080517f318aee3d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8716600482015290818060248101038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede165afa908115610556575f905f92613bb5575b5063ffffffff161590811591613b95575b50156137bc577f46f1d30c000000000000000000000000000000000000000000000000000000005f5260045ffd5b73ffffffffffffffffffffffffffffffffffffffff91501615155f613b67565b63ffffffff9250613bd5915060403d6040116131f9576131eb8183611e58565b91613b56565b905015155f613a93565b5073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee8114613a3f565b945073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416149461378c565b9060041161015c5790600490565b9060a41161015c5760840190602090565b9060641161015c5760440190602090565b919091357fffffffff0000000000000000000000000000000000000000000000000000000081169260048110613cbd575050565b7fffffffff00000000000000000000000000000000000000000000000000000000929350829060040360031b1b161690565b9081602091031261015c5735610c26816114e7565b9081602091031261015c573590565b9291907fffffffff00000000000000000000000000000000000000000000000000000000613d4a613d448585613c59565b90613c89565b167fd505accf000000000000000000000000000000000000000000000000000000008103613de65750613d88613d808484613c78565b810190613d04565b818110613db8575050915f92918380935b613da860405180948193611eb8565b03925af150613db5611eff565b50565b7ff48d46ed000000000000000000000000000000000000000000000000000000005f5260045260245260445ffd5b7f8fcbaf0c0000000000000000000000000000000000000000000000000000000003613e6557613e24611832613e1c8585613c67565b810190613cef565b613e355750915f9291838093613d99565b7ff48d46ed000000000000000000000000000000000000000000000000000000005f90815260045260245260445ffd5b7f24724d85000000000000000000000000000000000000000000000000000000005f5260045ffd5b90919273ffffffffffffffffffffffffffffffffffffffff61016d9481604051957f23b872dd000000000000000000000000000000000000000000000000000000006020880152166024860152166044840152606483015260648252613ef4608483611e58565b6143a0565b6040517f095ea7b3000000000000000000000000000000000000000000000000000000006020820190815273ffffffffffffffffffffffffffffffffffffffff841660248301526044808301959095529381529192613f9890613f5d606485611e58565b5f8073ffffffffffffffffffffffffffffffffffffffff85169286519082855af190613f87611eff565b8261400f575b508161400857501590565b613fa157505050565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff90931660248401525f604484015261016d92613ef49061400281606481016108fc565b826143a0565b3b15919050565b80519192508115918215614027575b5050905f613f8d565b61403a925060208091830101910161438b565b5f8061401e565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000602082015273ffffffffffffffffffffffffffffffffffffffff92909216602483015260448083019390935291815261016d91613ef4606483611e58565b6042906140ae6148af565b6140b6614919565b6040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815261410760c082611e58565b51902090604051917f19010000000000000000000000000000000000000000000000000000000000008352600283015260228201522090565b610c269161414d91614432565b90929192614476565b90600182811c9216801561419d575b602083101461417057565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b91607f1691614165565b604051905f827fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10254916141d983614156565b808352926001811690811561427b57506001146141fd575b61016d92500383611e58565b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1025f90815290917f42ad5d3e1f2e6e70edcf6d991b8a3023d3fca8047a131592f9edb9fd9b89d57d5b81831061425f57505090602061016d928201016141f1565b6020919350806001915483858901015201910190918492614247565b6020925061016d9491507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682840152151560051b8201016141f1565b604051905f827fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10354916142ea83614156565b808352926001811690811561427b575060011461430d5761016d92500383611e58565b507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1035f90815290917f5f9ce34815f8e11431c7bb75a8e6886a91478f7ffc1dbb0a98dc240fddd76b755b81831061436f57505090602061016d928201016141f1565b6020919350806001915483858901015201910190918492614357565b9081602091031261015c5751610c26816114e7565b5f8073ffffffffffffffffffffffffffffffffffffffff6143d693169360208151910182865af16143cf611eff565b908361495e565b8051908115159182614417575b50506143ec5750565b7f5274afe7000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b61442a925060208091830101910161438b565b155f806143e3565b81519190604183036144625761445b9250602082015190606060408401519301515f1a90614820565b9192909190565b50505f9160029190565b600411156121bc57565b61447f8161446c565b80614488575050565b6144918161446c565b600181036144c1577ff645eedf000000000000000000000000000000000000000000000000000000005f5260045ffd5b6144ca8161446c565b600281036144fe57507ffce698f7000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b8061450a60039261446c565b146145125750565b7fd78bce0c000000000000000000000000000000000000000000000000000000005f5260045260245ffd5b60ff7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005460401c161561456c57565b7fd7e6bcf8000000000000000000000000000000000000000000000000000000005f5260045ffd5b601f81116145a0575050565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1025f5260205f20906020601f840160051c830193106145f9575b601f0160051c01905b8181106145ee575050565b5f81556001016145e3565b90915081906145da565b601f821161461057505050565b5f5260205f20906020601f840160051c83019310614648575b601f0160051c01905b81811061463d575050565b5f8155600101614632565b9091508190614629565b90815167ffffffffffffffff8111611e99576146b8816146927fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10354614156565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d103614603565b602092601f821160011461472957614705929382915f926136205750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c19161790565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10355565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1035f527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08216937f5f9ce34815f8e11431c7bb75a8e6886a91478f7ffc1dbb0a98dc240fddd76b75915f5b86811061480857508360019596106147d1575b505050811b017fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10355565b01517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c191690555f80806147a7565b91926020600181928685015181550194019201614794565b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116148a4579160209360809260ff5f9560405194855216868401526040830152606082015282805260015afa15610556575f5173ffffffffffffffffffffffffffffffffffffffff81161561489a57905f905f90565b505f906001905f90565b5050505f9160039190565b6148b76141a7565b80519081156148c7576020012090565b50507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1005480156148f45790565b507fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47090565b6149216142b8565b8051908115614931576020012090565b50507fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1015480156148f45790565b9061499b575080511561497357805190602001fd5b7f1425ea42000000000000000000000000000000000000000000000000000000005f5260045ffd5b815115806149ee575b6149ac575090565b73ffffffffffffffffffffffffffffffffffffffff907f9996b315000000000000000000000000000000000000000000000000000000005f521660045260245ffd5b50803b156149a456fea26469706673582212204c170504c97c225bf494712487c9ec7614ad9a0e10e8395f47bbcd9555c7aa8f64736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede0000000000000000000000006131b5fae19ea4f9d964eac0408e4408b66337b50000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : lxlyBridge_ (address): 0x2a3DD3EB832aF982ec71669E178424b10Dca2EDe
Arg [1] : dex_ (address): 0x6131B5fae19EA4f9D964eAc0408E4408b66337b5
Arg [2] : settlementToken_ (address): 0x0000000000000000000000000000000000000000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000002a3dd3eb832af982ec71669e178424b10dca2ede
Arg [1] : 0000000000000000000000006131b5fae19ea4f9d964eac0408e4408b66337b5
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.